2017년 11월 9일 목요일

검색가능한 무료 토렌트 프로그램


토렌트 프로그램이 수십가지가 있지만, 대부분 가장 유명한 uTorrent라는 프로그램을 이용할것이다. 

최근에 놋북을 질러사 새로운 툴이 없나 찾아보다.  신기방기하게도 프로그램 자체에서 토렌트 시드(Seed)파일을 바로  검색 할수 있는 툴이 있는것이다. 

 그래서 간단히 링크를 걸어놨으니, 다운받아서 설치해보길 바란다. 
정말 대박이다. ㅎㅎㅎ

링크 : 토렌트기어





위 화면은 "Photoshop"이라는 키워드로 검색했을때 나타나는 화면이며, 좌측 하단의 다운로드 버튼만 클릭하면 다운 시작된다. 




Qt Tutorials For Beginners (영상강좌,Qt기초강좌)

* QT5 강좌
: 개인 블로그인데 전체 강좌를 목록부터 잘해놨다.
http://www.bogotobogo.com/Qt/




1.QT C++ GUI Tutorial 26- Creating Digital Clock by using QTimer and QDateTime in QT

https://www.youtube.com/watch?v=wmFX8FyCOP0


2. Qt Tutorials For Beginners 10 - Simple Login app using QT
https://www.youtube.com/watch?v=6_elY8O20I8



3. Qt Tutorials For Beginners 13 - Resource Collection Files (.qrc)
https://www.youtube.com/watch?v=CTbpS0PN-JQ




3-1. layouts, tabs and buddies
https://www.youtube.com/watch?v=2edb0VOkx-k




3-2. Horizontal and Vertical Layouts
https://www.youtube.com/watch?v=PQEBoftbtVQ




3-3. Basic Application and HTML Aware Widgets
https://www.youtube.com/watch?v=Gk3zh5lA4ww




3-4. QGridLayout Example

: add item for dynamically
https://www.youtube.com/watch?v=G3iMyvzwQew







4. QSettings
https://www.youtube.com/watch?v=TNIkeFfzH-g


5. Qt Tutorials For Beginners 18 - QAction, QMenu, QToolBar
https://www.youtube.com/watch?v=E9eQO5czNrw




6. QThread


-QThread part 1 creating a thread
https://www.youtube.com/watch?v=JaGqGhRW5Ks


-QThread part 2 the Priority
https://www.youtube.com/watch?v=fM2THwKYqq8




- QThread part 3 the QMutex (* 동시성 제어)
https://www.youtube.com/watch?v=5WEiQ3VJfxc


- QThread part 4 threads with a GUI
https://www.youtube.com/watch?v=PR6wVy7Et1A








9-1. Qt Tutorials For Beginners 26 - Simple Notepad Application Part - 1
https://www.youtube.com/watch?v=j4j1gbYJtUw


9-2.Qt Tutorials For Beginners 27 - Simple Notepad Application Part - 2
https://www.youtube.com/watch?v=ucWsnp064ow



#기타
QComboBox
https://www.youtube.com/watch?v=5Lb8DZhAAi8
QRadioButton
https://www.youtube.com/watch?v=gDaeZtjitc8







2015년 11월 25일 수요일

보고보고 토렌트 사이트 주소

* 보고보고 토렌트 사이트가 또 블럭됐네요.

기존 http://wowbogo.net

새롭게 바뀐 주소는 http://mixbogo.net 입니다. 


기준일자 : 2015.11.25 일입니다. 


*  무료운세보러가기

2015년 5월 25일 월요일

Linux : KISA 제공 . 웹방화벽 ModSecurity 메뉴얼



KISA 한국인터넷 진흥원에서 제공한 웹방화벽 . Mod Security Manual

* Download (PDF format):
https://drive.google.com/open?id=0BxfYnXSNYtnCZzlWd2hCd0h3aE0&authuser=0

2015년 4월 27일 월요일

Eclipse 에서 Project 공유하기(git/share project)


* Git 대박 메뉴얼 : 




* Eclipse 에서 Project 공유하기(git)


#Step 1. 로컬 저장소 셋팅

Eclipse > Team > Share Project > Git > Configure Git Repository (저장소 설정)
1. Use or create repository in parent folder of project 체크
(* Eclipse에서 프로젝트  저장위치와 Git Repository 를 다른  path에 지정하라고하나 그렇게 하면 오류가 난다. )
2. 화면 하단 "Create Repository" 클릭
3. finish
----------------------< Repository설정완료



#Step 2. 원격 저장소 셋팅

1. bitbucket.org : 원격 저정소 생성 
- Create Repository
- 해당 Repository > Overview > Command line  > I have an existsing project  에서 

2. Remote Repository Sync(push)
Eclipse > Team > Add Index > Commit > Push Message  입력 후  > Commit & Push  클릭 

> Destination Git Repository > Location >   위에서 복사한  https:// yourday .... 붙여 넣기  >  finish

Android: onNewIntent

안드로이드는 일반적으로 액티비티에서 액티비티를 호출 할 경우,

onCreate() ->  onStart() -> onResume() 의 순서로 호출이 된다.

그런데 만약 어떤 액티비티에서 자기 자신을 호출하며, 약간의 값만 수정할 경우가 있을 수 있다.

이런 경우 일반 호출 방식으로 하게 되면, 액티비티 스택에는

동일한 액티비티가 중복되어 쌓일 것이다.

자기 자신을 호출하며, 갱신만 할 방법은 없을까?

onNewIntent란 놈이 있다.

이놈은 항상 실행되는 것이 아니고 일정 조건을 갖추었을 때, 자동 호출이 된다.

onNewIntent가 호출되는 조건은 두가지가 있다.



첫째로, 인텐트에 Activity Flag값을 주는것이다.

예)
Intent intent = new Intent(Activity.this,Activity.class);

intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
startActivity(intent);


두번째 라인에 intent.addFlags(intent.FLAG_ACTIVITY_SINGLE_TOP)를 보자.

인텐트에 flag값을 주는 부분이다.  FLAG_ACTIVITY_SINGLE_TOP 속성은

foreground 상태의 액티비티에서 자신을 호출 할 경우 자기 자신을 재활용 하는 속성값이다.


두번째로, Androidmanifest.xml 에서 속성을 주는 방법이다.

 예)
<activity android:name=".TestActivity" android:launchMode="singleTop">
</activity>



위 코드와 같이 매니페스트 파일에서 액티비티에 launchMode 의 속성을 singleTop으로

준다. singleTop 은 위에서 설명한 FLAG_ACTIVITY_SINGLE_TOP과 같은 속성이다.


2015년 4월 26일 일요일

Design: 5 Best Websites to Download Free Design Source (Free Design Source)


 5 Best Websites to Download Free Icons

:  5 Best Websites to Download Free Design Source



5. http://iconfinder.com



* 무료로 앱디자인이나 웹디자인 소스를 제공하는 사이트는 많으나, 위에 사이트가 괜춘하다. 
특히  freepick.com이 거의 무료 디자인 소스 사이트의 포털인듯하다.