3D 프린터 관련 정보 수집

IT/프린트드라이버 2013. 10. 7. 09:46 Posted by Imtraveller
반응형



요즘 3D프린터가 주목을 받기 시작한듯하다.

가격도 100만원대의 제품이 보이는것으로 봐선 수년내에 100만원이하의 보급형이 출현 하리라 본다.


이것으로 할 수 있는 것들이 다양해서 한번쯤 관심을 갖을 필요가 있다고 생각된다.

관련 정보를 수집예정이다.


MSDN 관련 정보

http://msdn.microsoft.com/en-us/windows/hardware/bg183398



반응형

'IT > 프린트드라이버' 카테고리의 다른 글

OPOS Printer Device관련 정보  (0) 2013.11.07
[GDI 함수]각종 그리기 함수 관련 정보  (0) 2012.02.10

Google App Engine

IT/개발방법론 2013. 9. 23. 13:25 Posted by Imtraveller
반응형

무료 웹호스팅 사이트를 찾다가 발견했다.

구글에서 이런게 있다더군...


요긴하게 사용할 수 있을 듯 하다.


http://blog.naver.com/PostView.nhn?blogId=joycestudy&logNo=100099704738

http://kimho.pe.kr/wordpress/?p=254


반응형

win 8 metro windows disable

IT/시스템프로그래밍 2013. 9. 23. 10:31 Posted by Imtraveller
반응형





레지스트리 설정 관련 URL

http://forums.techytohelp.com/index.php?topic=791.0

 

아래대로 했는데 큰효과가 없네..-_-

메트로 UI보다 네 UI가 먼저 나오게 하거나 내리는 기능이 필요한데 애매하다.




반응형

GPLv2 포함된 제품 배포 관련

IT/라이센스관련 2013. 9. 16. 14:47 Posted by Imtraveller
반응형


출처 : http://www.oss.kr/?mid=oss_open1_3&listStyle=webzine&document_srl=70750


오픈소스SW 라이선스 가이드 19Page~20Page

 3) 공개의 범위
GPL 2.0의 경우, GPL 프로그램의 소스코드를 개발자가 개발중인 프로그램 코드에 삽입하거
나 링크시켜 이를 배포하는 경우에 개발한 프로그램의 소스코드도 공개해야 한다. 다만, 원본
프로그램과 별개의 독립된 프로그램은 GPL 2.0 제2조 후단7)에 따라 GPL 프로그램과 단순히
동일한 매체에 저장하여 배포하는 경우 GPL 2.0이 아닌 다른 라이선스 조건에 의해 배포할 수있다.

 



반응형

'IT > 라이센스관련' 카테고리의 다른 글

About WinHTTP SSL communication  (0) 2013.04.11
gnu 라이센스 관련 정보  (0) 2012.12.13
반응형

deviceiocontrol disk용량 확인

http://msdn.microsoft.com/en-us/library/windows/desktop/aa363147(v=vs.85).aspx


Registering for Device Notification

http://msdn.microsoft.com/en-us/library/windows/desktop/aa363432(v=vs.85).aspx


Detecting Media Insertion or Removal

http://msdn.microsoft.com/en-us/library/windows/desktop/aa363215(v=vs.85).aspx


Processing a Request to Remove a Device

http://msdn.microsoft.com/en-us/library/windows/desktop/aa363427(v=vs.85).aspx



반응형

[샘플]주민번호검증 C소스

IT/개발관련 담기+ 2013. 9. 10. 15:21 Posted by Imtraveller
반응형


BOOL IsJuMinNo(char *pJuminData)

{

int i = 0;

int nJumin[12] = {0};

int CheckData[] = { 2, 3, 4, 5, 6, 7, 8, 9, 2, 3, 4, 5};

int nLen = strlen(pJuminData);

for(i=0; i < 13; i++)

{

nJumin[i] = pJuminData[i] - '0';

//DBGLOG(L"%d", nJumin[i]);

}


// Check Sum 코드의 유효성 검사

int nSum = 0;

   for (i = 0; i < 12; i++) 

   nSum += (nJumin[i] * CheckData[i]);


int nChkNo = (11 - (nSum % 11)) % 10;

//DBGLOG(L"nChkNo [%d==%d]", nChkNo, nJumin[12]);

if(nChkNo == nJumin[12])

return TRUE;


return FALSE;

}


개선사항 : 루프를 하나로 만든다면 성능 향상될듯...


반응형
반응형



[come from http://stackoverflow.com/questions/5979675/visual-studio-2008-c-no-x64-platform]


If I recall VS 2008 Pro doesn't install the 64-bit compiler and tools by default. You have to explicitly select them during the installation.

  1. Control Panel -> Uninstall Programs.
  2. Select Visual Studio and click Uninstall/Change.
  3. Wait. Wait some more. Click Next.
  4. Choose Add or Remove Features.
  5. Expand MSVC 2008 -> Language Tools -> Visual C++.
  6. Select X64 Compilers and Tools.

You'll probably need your original installation media.

Once the 64-bit compiler and tools are installed, you should be able to add a 64-bit configuration to your solution.


위에서 시키는대로 하니 X64 설정이 나타났다.


반응형
반응형

락이 걸린경우 해제하려고 알아보았는데, 여러가지 의견들이 많긴하나 내가 성공한 방법은 이렇다.

1. DOS부팅전 HDD 나 SSD의 전원을 뺀놓는다.(이때 데이터 케이블은 연결된 상태)

2. DOS부팅이되면 전원케이블 연결

3. MHDD나 HDDERASE와 같은 툴 실행

4.  락이 해제되었다면 Erase수행

5. 해제되지 않았다면 종료 후 전원케이블 제거 후 재부팅 위의 1번 부터 다시 수행

이렇게 하니 잘되었다.


Tried all those things except n0 4 as can't set a password in my bios.

Q: How can I bypass the Security Lock?
A: You can try the following:
1. Boot your SSD to another computer. 
2. Switch your SSD to another SATA channel.
3. Hot Plug your SSD (Dangerous):
Turn your PC off.
Unplug your SSD power cable but leave signal cable in.
Power back on your system, complete boot, re-attach your SSD power.
4. Set a password for your SSD in your BIOS.

 

 

MHDD fast erase method

get from http://forum.hddguru.com/viewtopic.php?t=884&start=

To erase :
1) Issue LOCK
2) Select 0 (user)
3) type a password es. 1234
4) Issue EID command to verify the locking. PWD will lit and the warning "drive is locked with ATA password" will appear
5) at this point issue FASTERASE
6) type the user password in this case 1234
7) wait a few seconds and MHDD will show "OK FASTERASE STARTED"... otherwise the entered PW is incorrect.
 wait until BSY turns off. You can be warned with a beep issuing WAIT command (the pc wll beep when the drive is not busy anymore)
9) the drive is erased.

Most drives unlock automatically after fasterase, other have to be UNLOCKed (issue UNLOCK command and type user or master pwd.) then DISPWD.
Turn off then on the drive and you'll see the drive is not locked anymore.

FASTERASE uses internal security functions so is much faster than erasing the LBAs . It took me about 40 min. for a Maxtor 160GB. , may vary depending on brand and capacity.

반응형
반응형

NSIS 설치본에 버전정보추가하기

http://nsis.sourceforge.net/Version_Info_manipulations_on_compile-time

 

 

 

반응형
반응형


UserMode 파일, 디렉토리 변경사항 통지

http://qualapps.blogspot.kr/2010/05/understanding-readdirectorychangesw_19.html

 

 

http://msdn.microsoft.com/en-US/aa363798.aspx

http://www.codeproject.com/Articles/950/CDirectoryChangeWatcher-ReadDirectoryChangesW-all

http://www.experts-exchange.com/Programming/Languages/CPP/Q_22507220.html

 

http://www.benjaminlog.com/entry/ReadDirectoryChangesW

 


 

 

반응형