GAURYAN.BLOGSPOT.COM
취미개발자"Carpe Diem"
http://gauryan.blogspot.com/
"Carpe Diem"
http://gauryan.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.4 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
18
SSL
EXTERNAL LINKS
0
SITE IP
216.58.194.161
LOAD TIME
0.405 sec
SCORE
6.2
취미개발자 | gauryan.blogspot.com Reviews
https://gauryan.blogspot.com
"Carpe Diem"
gauryan.blogspot.com
취미개발자: 2014-01
http://gauryan.blogspot.com/2014_01_01_archive.html
FreeBSD 10.0 설치후 작업. FreeBSD 10.0 이 릴리즈된 기념으로, OS 설치후에 기본적으로 해야할 작업을 정리하였습니다. 기존에 9.1 에서 했던 것과 거의 비슷하고, 패키지 관리프로그램이 전격적으로 바뀐 것이 큰 특징입니다. Sshd 부팅시 자동시작 설정 : /etc/rc.conf. Sshd config 수정 / 재시작 : root로 로그인하는 것은 보안상 문제가 있지만, 편의를 위해 일단 이렇게 해놓자. Vi /etc/ssh/sshd config PasswordAuthentication yes PermitRootLogin yes # /etc/rc.d/sshd restart. 이제, ssh 로 원격 접속한다. Root, toor 계정쉘을 bash로 변경. Pkg install bash; rehash; chsh -s bash root; chsh -s bash toor # ln -s /usr/local/bin/bash /bin/bash. 쉘을 바꾸었으니, 로그아웃하고 다시 로그인하자.
취미개발자: CentOS에서 PostgreSQL 설치/사용하기
http://gauryan.blogspot.com/2011/03/centos-postgresql.html
Yum install postgresql84 postgresql84-devel postgresql84-libs postgresql84-contrib postgresql84-server. Var/lib/pgsql/data 에 초기화된 파일들이 생성된다. 설정파일 위치 : /var/lib/pgsql/data. 시스템 부팅시 자동으로 실행되게 하려면, ntsysv. 에서 postgresql 을 체크해주어야 한다. 사용자, DB 생성. Su - postgres # psql postgres=# CREATE USER 아이디 WITH PASSWORD '비밀번호'; postgres=# CREATE DATABASE 디비이름 WITH ENCODING='utf-8' OWNER 아이디;. 계정으로 로그인할 수 있도록 연결설정. 피드 구독하기: 댓글 (Atom). Carpe Diem, 汉语, (Spinning) Bike, Swimming, Weight Training, Trumpet, Flute, Go, Python, .
취미개발자: 2012-05
http://gauryan.blogspot.com/2012_05_01_archive.html
Ruby : 특정 디렉토리 밑에 있는 파일중에 200MB 넘는 파일 찾기. 다음은 특정 디렉토리 아래에 있는 파일 중에서 200MB 넘는 파일을 찾아서, 크기로 정렬하여 출력하는 프로그램이다. 어려운 것은 아니지만, 필요할 때 찾아보면 좋을 듯 하여. Coding: cp949 -*- require 'find' $TARGET = "C: " $SIZE LIMIT = 200 000 000 start time = Time.now puts "Script Start." puts "= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = n n" file list = Array.new Find.find($TARGET) do path if File.file? Path) and File.size(path) $SIZE LIMIT file size = File.size(path) file list. 이 게시물에 대한 링크. 이 게시물에 대한 링크.
취미개발자: 2014-07
http://gauryan.blogspot.com/2014_07_01_archive.html
자전거) 장안동 의정부(외곽순환고속) 코스 (왕복 31Km) (루이가르노 CR23). Http:/ www.strava.com/activities/165117658. 어제 운동화 밑창이 떨어져서 중간에 돌아와서 오늘은 새로운 운동화로 라이딩을 다녀왔습니다. 9,000원 짜리 운동화였는데, 접지력도 좋고 라이딩이 한결 수월해졌네요. 어제 주문한 돌기 많은 운동화는 접지력이 정말 훌륭할 것으로 예상됩니다. 굳이 자전거 전용 신발을 살 필요가 있을까 하는 생각이 드네요. 클릿 패달인 경우에나 어쩔 수 없이 클릿 슈즈를 신어야 하겠지만, 일반 평페달에서는 저렴한 보통 운동화로 충분할 것 같습니다. 아직 안장 피팅 중인데요. 오늘은 2칸에서 4칸으로 더 올려보았습니다. 대략 이정도가 저에게 맞는 것 같네요. 다음에는 5칸으로 올려보고 확인해봐야겠어요. 편리함을 위해서 킥스탠드도 달았습니다. ; 로드의 간지가 좀 줄어들어 보이나요? 이 게시물에 대한 링크. 자전거) 자전거용 신발 정리 (평페달용). 1주일만에 ...
취미개발자: 2012-12
http://gauryan.blogspot.com/2012_12_01_archive.html
쉽고 빠른 웹개발 Django' 버전 1.4 이상에서 진도나가기. 쉽고 빠른 웹개발 Django'은 1.0버전 기준이어서 최신버전 (1.4.3)에서 막히면 진도를 더이상 나갈 수 없게 됩니다. 이에, 최신 버전에서도 진행할 수 있도록 변경된 부분을 반영하여 수정본을 작성해보았습니다. 1.4 이후 부터 디렉토리 구조가 조금 변경이 되었는데, 대부분 이 것 때문에 기존버전과 맞지 않는 부분이 생기는 것입니다. 추후 더 변경할 것이 발견되면 추가하도록 하겠습니다. Django bookmarks/ init .py manage.py settings.py urls.py. Django bookmarks/ manage.py django bookmarks/ init .py settings.py urls.py wsgi.py. Import os.path TEMPLATE DIRS = ( os.path.join(os.path.dirname( file ), 'templates'), ). Import os URLS DIR =...
TOTAL PAGES IN THIS WEBSITE
18
Gaur Yamuna City - Gaur Yamuna Expressway Noida - Gaur Yamuna City Price
Call Us: 91 92787 21212. Strategically located in Sector-19, Yamuna Expressway, the project is in close proximity to all social facilities. Interested in Gaur Yamuna City? Occupying the prime location of Yamuna Expressway, Gaur Yamuna City is well-connected to all points of interest located in and around Noida. Gaur Yamuna City Yamuna Expressway , Noida. The project site is well-connected to Delhi by DND Flyway, Expressway and Highway. Gaur Yamuna City- Amenities. All apartments also come readily equippe...
gauryamunacitynoida.net
The Sponsored Listings displayed above are served automatically by a third party. Neither the service provider nor the domain owner maintain any relationship with the advertisers. In case of trademark issues please contact the domain owner directly (contact information can be found in whois).
gauryamunacityplot.com - Crazy Domains
Search and register domain names. World's cheapest domain names. 700 New generic domains. Move your domains to us FREE. Express cheap domain renewal. Get the domain name you want. Everything you need for your domains. Control your CNAME, MX and A records. Find who owns a particular domain. COM only $9.00 Get yours! Join The Domain Club. Fast, reliable space for your website. Defend your site against hackers. Secure your site and data. Get your own me@mydomain.com. Automatic Spam and Virus protection.
Gaur Yamuna City Plots Yamuna Expressway Gaursons Plot Noida
Gaur Yamuna City Plots - Yamuna Expressway - Overview. About Gaur Yamuna City - Yamuna Expressway. By Gaursons, India will be launched soon at Yamuna Expressway. With a lot of green area and absolute fantastic design, Gaur Yamuna City has the natural advantage of being located within a mega township with full infrastructural support and facilities like Five Star Hotel, School, Shopping Facility, Hospital and a Golf Course. About Gaur Yamuna City Plots - Yamuna Expressway. Also to gain the return value on...
Gaur Yamuna City Plots, Plots in Greater Noida
Gaur Yamuna City Plots. To join this exclusive neighborhood, you can now buy affordable plots in Greater Noida. Gaur Yamuna City Greater Noida Amenities. Sprawling plots largely of 120, 150 and 200 sq. yd. and above. Gated Community with 24x7 Security. Proper boundary wall around the periphery. Access-controlled entry and exits. In premise maintenance services. Gaur Yamuna City Yamuna Expressway Location. Tactically located at Yamuna Expressway. Superb Infrastructure preeminent in Delhi NCR.
취미개발자
AdonisJS 4.0 Tutorial. 본 튜토리얼에서는 대부분의 사이트에 기본적으로 필요한 기능을 익히는데 목적이 있습니다. 예제에서는 관리자로 로그인/로그아웃하고, 관리자를 등록/수정/삭제 등을 할 수 있는 기본적인 기능을 포함하는 예제를 만들어봅니다. 그리고, 비밀번호의 단방향 암호화(SHA-256)를 해보고, 개인정보(이름,전화번호,이메일 등)을 AES-256 로 암호화하여 DBMS에 저장/관리하는 기능도 포함됩니다. 이 게시물에 대한 링크. 피드 구독하기: 글 (Atom). 여름이 되니, 몸에서 땀이 나게 되어 가죽끈 시계가 불편하게 되었습니다. 그래서 이참에 괜찮은 메탈시계를 구하자고 하여 열심히 이것 저것 찾아보다가 CITIZEN 의 BK2410-51E 이라는 모델을 발견하고 구입했습니다. 티타늄으로 제조되었고, 10. Visual Studio 인코딩 설정하기. 바이엘 피아노 교본 (BEYER, VORSCHULE IM KLAVIERSPIEL Op. 101).
gaurzilla (Gaurav) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 12 Years. This deviant's full pageview. Last Visit: 472 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Why," you ask? Favourite ca...
Home - Gaus Consulting
Welcome to my website. Hier finden Sie Informationen zu meinem. Unternehmen, meinen Produkten und Leistungen. It provides information about my company,. My programmes and services. Bertold Gaus, Leiblstraße 22, D-14467 Potsdam, info@gaus-consulting.de.
Etta Gaus-Faltings
Etta Gaus-Faltings ist diplomierte Mathematikerin. Sie verfügt. 252;ber umfangreiche Erfahrung im Bereich Statistik-Lehre. Die von mir erstellte Klausuraufgabensammlung mit. Lösungen für den Statistik-Grundkurs - Modul 31101 -. Des Fachbereichs Wirtschaftswissenschaften der. Klausurschulungen und individuelle Nachhilfeangebote. In Statistik und Mathematik. Wer Klausurhilfen für den Mathematikteil des Moduls 33101 sucht, ist richtig bei Fabianca.
Web Site Currently Not Available
SOCIAL ENGAGEMENT