CreateMutex
까보면 다나와~
분류 전체보기 (216)

PPT 활용에 대한 네이버 카페.
정말 대단한 사람들 많다~
http://opencast.naver.com/PT827/33/flow  
  Comments,     Trackbacks

IRP_MJ_QUERY_SECURITY ?

IRP_MJ_QUERY_SECURITY ?

보안정보를 가져올 때 사용하는 함수이다. 봇에서 후킹을 하는 데, 알아보기엔 시간이...

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


Anti AV 관련한거로 추측해봅니다만, 누구 악성코드에서 왜 사용하는지 알려주세요.
plz, let me know why they are using.
  Comments,     Trackbacks

Linux에서 파일 내에 특정 문자열을 검색
Linux에서 파일 내에 특정 문자열을 검색해야 하는 경우가 종종 있다.


- 현재 디렉토리 내 확장자가 txt인 파일들을 중에서 "홍길동"이라는 문자열을 갖고 있는 파일의 한 줄과 이름을 보여준다.
find . -name "*.txt" | xargs grep 홍길동

- 이 때 검색어로 사용된 문자열은 색을 달리하여 표시하고 싶다면

find . -name "*.txt" | xargs grep --color=auto 홍길동


 - 검색어의 위치(줄번호)를 같이 표기하고 싶다면

find . -name "*.txt" | xargs grep -n 홍길동


- 대소문자를 구분하고 싶지 않다면

find . -name "*.txt" | xargs grep -i LgMobile

즉, LGMobile, LGMOBILE, lgMobile을 가리지 않고 찾는다.

- 현재 디렉토리 내 확장자가 txt인 파일들을 중에서 "홍길동"이라는 문자열을 갖고 있는 파일의 이름만 보고 싶다면
find . -name "*.txt" | xargs grep -l 홍길동

- 검색 결과에 다음과 같은 메시지가 포함된다면

grep: [특정경로]: No such file or directory


2>/dev/null 을 추가하면 해당 메시지를 표시하지 않고 찾은 결과만 볼 수 있다. 즉,

find . | xargs grep 2>/dev/null 홍길동


- 모든 옵션은 함께 사용 가능하다.

find . -name "*.txt" | xargs grep --color=auto -n 2>/dev/null 홍길동


※출처 : [리눅스나라]
[unix.com
  Comments,     Trackbacks

봄이 오고 있다~
콜로라도 thornton에 있는 공원이라고 하네요.
http://interfacelift.com/wallpaper/details/2844/your_world.html

'멋진 사진들' 카테고리의 다른 글

근사한 집~  (0) 2012.10.23
우연히 2일째 보는 사진 - Manarola, Cinque Terre  (0) 2012.01.11
새로 바꾼 배경화면  (0) 2011.12.07
내가 좋아하는 색감  (0) 2011.12.02
합성같은..  (0) 2011.11.30
  Comments,     Trackbacks

실내 인테리어.
퍼왔는데.. 멋지네요.. 집안은 요렇게 따뜻한 느낌도 좋은거 같음
http://blog.naver.com/cool1962/60052402977

 
  Comments,     Trackbacks

대용량 DB를 빠르게 import 하거나 조회하는 방법
1. CSV와 동일한 구조의 Table 생성
2. 주요 필드에 index설정
3. import -> format은 CSV using LOAD DATA
4. go, take a cup of coffee.
  Comments,     Trackbacks

mysql 큰용량 import 할때..

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

; Maximum execution time of each script, in seconds
; http://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
max_execution_time = 36000     

; Maximum amount of time each script may spend parsing request data. It's a good
; idea to limit this time on productions servers in order to eliminate unexpectedly
; long running scripts. 
; Note: This directive is hardcoded to -1 for the CLI SAPI
; Default Value: -1 (Unlimited)
; Development Value: 60 (60 seconds)
; Production Value: 60 (60 seconds)
; http://php.net/max-input-time
max_input_time = 36000

; Maximum input variable nesting level
; http://php.net/max-input-nesting-level
;max_input_nesting_level = 64

; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit
memory_limit = 312M

..............

 post_max_size = 1024m
  Comments,     Trackbacks

adding-unallocated-partition-to-ubuntu-in-vmware

http://superuser.com/questions/72309/adding-unallocated-partition-to-ubuntu-in-vmware

VMWARE에 Ubuntu깔고 용량작아서 할당을 더 해줬는데, 실제 용량이 커지지 않았다.

방법은 위 사이트에 잘 나와있다.

Live CD로 부팅 후에 Gparted를 사용한다.
  Comments,     Trackbacks

Python-magic 윈도우에서 설치
1) Install setuptools 
2) Get 
python-magic
* python setup.py build 
* python setup.py install
 
3) Get the GnuWin32's
 File utility 
* Place magic1.dll from the Binaries package into your system32 dir
 
* Place "magic" from the Binaries package into your system32 dir (or anywhere else, just as long as you remember the path)
 
* Place zlib1.dll and regex2.dll from the Dependencies package into your system32 dir
 
4) Test your installation
 

  Comments,     Trackbacks

python setuptool

오늘도 하나 건짐 ㅋ

http://pypi.python.org/pypi/setuptools

파이썬으로 모듈 쉽게 설치해주는 툴!~!~!~!~!

ex) python-magic

  Comments,     Trackbacks