vmware 최적화

https://download3.vmware.com/software/WKST-1625-LX/VMware-Workstation-Full-16.2.5-20904516.x86_64.bundle mainMem.useNamedFile = "FALSE" sched.mem.pshare.enable = "FALSE" logging = "FALSE" isolation.tools.unity.disable="TRUE" unity.allowCompositingInGuest="FALSE" vmware 강제 3D 기능 활성 mks.gl.allowBlacklistedDrivers = "TRUE" 3D 기능 활성 mks.enable3d = TRUE svga.vramSize = 67108864 vmmouse.present = FALSE 그 다음 VMWARE를 실행시킨 후 Edit 메뉴의 Preferences 항목을 선택한다. Input 탭에서 Ungrab when cursor leaves window. 항목을 선택 해제한다.      - VMWARE 상에서 메모리와 다른 응용 프로그램간에 메모리 공유 금지 옵션 추가         sched.mem.pshare.enable = "FALSE"        - 기타 sched.mem.pshare.enable = "FALSE" MemTrimRate = "0" mainMem.useNamedFile = "FALSE" logging = "FALSE" isolation.tools.unity.disable="TRUE" unity.allowCompositingInGuest="FALSE" unity.enableLaunchMenu = "FALSE" unity.showBadges = "FALSE...

초소형 PC

초소형 저전력 저발열 저소음 저가격 피씨가 나온다면?

인공지능 앵무새

앵무새 같은 행동패턴 디테일을 살려 저전력 뉴스 기상 시간 유머

작은 스마트폰

LG-F70 갤럭시4 미니 엑스페리아 레이

WiFi Automatic 배터리 절약

WiFi Automatic 와이파이를 수시로 on off 시켜 배터리를 절약해 주는 유용한 앱 https://play.google.com/store/apps/details?id=de.j4velin.wifiAutoOff&hl=ko 아래 오픈소스 링크 주소 https://github.com/j4velin/WiFi-Automatic

볼라텍스 매트리스

볼라텍스 매트리스

테트리스 C 소스

#include <Turboc.h> #define LEFT 75 #define RIGHT 77 #define UP 72 #define DOWN 80 #define ESC 27 #define BX 5 #define BY 1 #define BW 10 #define BH 20 void DrawScreen(); void DrawBoard(); BOOL ProcessKey(); void PrintBrick(BOOL Show); int GetAround(int x,int y,int b,int r); BOOL MoveDown(); void TestFull(); struct Point {      int x,y; }; Point Shape[][4][4]={      { {0,0,1,0,2,0,-1,0}, {0,0,0,1,0,-1,0,-2}, {0,0,1,0,2,0,-1,0}, {0,0,0,1,0,-1,0,-2} },      { {0,0,1,0,0,1,1,1}, {0,0,1,0,0,1,1,1}, {0,0,1,0,0,1,1,1}, {0,0,1,0,0,1,1,1} },      { {0,0,-1,0,0,-1,1,-1}, {0,0,0,1,-1,0,-1,-1}, {0,0,-1,0,0,-1,1,-1}, {0,0,0,1,-1,0,-1,-1} },      { {0,0,-1,-1,0,-1,1,0}, {0,0,-1,0,-1,1,0,-1}, {0,0,-1,-1,0,-1,1,0}, {0,0,-1,0,-1,1,0,-1} },      { {0,0,-1,0,1,0,-1,-1}, {0,0,0,-1,0,1,-1,1}, {0,0,-1,0,1,0,1,1}, {0,0,0,-1,0,1,1,-1} },      { {0,0,1,0,-1,0,1,-1}, {0,0,0...