해피머니 기프트 자동충전 프로그램 만들기.. 웹개발은 전혀 해본적이 없는 상태에서 최근 급격한 취미적 관심을 갖던 중에 만들어봄.. GitHub 으로 공개를 했으며 여기에서도 다운로드 가능함~ 프로그램만 필요하신 분은 여기에서 다운로드 가능하며, 소프트웨어 개발에 참여를 원하는 분은 GitHub을 참고해주세요. GitHub : https://github.com/richardbang83/GiftACBrowser richardbang83/GiftACBrowser Macro browser system to input codes automatically. - richardbang83/GiftACBrowser github.com Gift Automatic Charging Browser 해피머니 상품권을 자동으로 ..
방법 1. protected void Form1_OnLoad(...) { showOnMonitor(1); } private void showOnMonitor(int showOnMonitor) { Screen[] sc; sc = Screen.AllScreens; if (showOnMonitor >= sc.Length) { showOnMonitor = 0; } this.StartPosition = FormStartPosition.Manual; this.Location = new Point(sc[showOnMonitor].Bounds.Left, sc[showOnMonitor].Bounds.Top); // If you intend the form to be maximized, change it to normal..
The Developer Command Prompt for Visual Studio automatically sets the environment variables that enable you to easily use .NET Framework tools. The Developer Command Prompt is installed with full or community editions of Visual Studio. It is not installed with the Express versions of Visual Studio Running command prompt from inside Visual StudioFor easier access, you can add the Visual Studio De..
Inductor * Current -> Magnetic energy 로 변환 전류가 흐를 때 자기장이 생성되며, 전류가 흐르지 않으면 생성된 자기장 에너지는 전자 에너지로 변환된다. 전류가 흐르면서 충전된 자기장 에너지는 전류가 갑자기 없어졌을 때에 충전되었던 자기장 에너지를 전류로 변환하여, 갑작스런 전류의 변화가 생기는 것을 방지한다. * 작은 inductance -> 고주파 통과, 너무나 빠르게 자기장 에너지가 saturation되기 때문에. * 큰 inductance 는 저주파 통과, saturation이 늦어서 1 nH -> 100MHz 통과 1 uH -> 50kHz ~ 수 MHz 1 mH -> 저주파 통과, Capacitor * Current -> Voltage 전류라 흐르면서 전압으로 충전이..
Before the system searches for a DLL, it checks the following: If a DLL with the same module name is already loaded in memory, the system uses the loaded DLL, no matter which directory it is in. The system does not search for the DLL. If the DLL is on the list of known DLLs for the version of Windows on which the application is running, the system uses its copy of the known DLL (and the known DL..
해당 페이지에 SLA 3D프린팅을 할 때 필요한 모델에 대한 단층 자르는 알고리즘 설명이 되어 있음 https://ravehgonen.wordpress.com/2013/02/19/stereolithography-3d-printing-algorithms-and-thoughts/ 아래는 해당 코드 The Full Source Code (C++): #include #include #include #include #include “glm/glm/glm.hpp” #include “glm/glm/gtc/matrix_transform.hpp” #include “glm/glm/gtc/type_ptr.hpp” #define DEG_TO_RAD(x) (x*0.0174532925199f) using namespace std..
Naver 한글인코딩에 대한 이해 한글 인코딩의 역사와 유니코드 : http://d2.naver.com/helloworld/19187 유니코드와 Java를 이용한 한글 처리 : http://d2.naver.com/helloworld/76650 JAVA - 한글 인코딩 변환 체크 한방에 끝내기 public static void FindEncoding(String s) { try { String word = s; System.out.println("utf-8(1) : " + new String(word.getBytes("utf-8"), "euc-kr")); System.out.println("utf-8(2) : " + new String(word.getBytes("utf-8"), "ksc5601")); Sy..
멀티 스레드 환경에서 Queue는 생산 및 소비의 구조에 필수적인 자료구조이다. 여기서 우리는 BlockingQueue라는 interface를 구현한 객체를 가져다 쓸 수 있다. Block 이라는 것은 먼저 무엇일까? '막는다'는 뜻이다. 그럼 무엇을 막는 다는 것인가? 그것은 바로! Queue가 꽉찼을때의 삽입 시도 / Queue가 비어있을때의 추출 시도 를 막는 다는 것이다. 이 자동으로 '막는' 기능이 있어 BlockingQueue 의 구현체는 모두 Thread-safe 하다. 그럼 이제부터 본격적인 BlockingQueue에 대한 포스팅을 시작한다. 1. ArrayBlockingQueue - 고정배열에 일반적인 Queue를 구현한 클래스, 생성 후 크기변경 불가 - 꽉찼을때 추가 block, 비었..