root(717)
-
7 Ways To Free Up Hard Disk Space On Windows
Hard drives are getting larger and larger, but somehow they always seem to fill up. This is even more true if you’re using a solid-state drive (SSD), which offers much less hard drive space than traditional mechanical hard drives.If you’re hurting for hard drive space, these tricks should help you free up space for important files and programs by removing the unimportant junk cluttering up your ..
2015.09.28 -
Database Fundamentals for Analysts: Tables -- So what?
We have seen that if database tables are designed to represent a set of (facts about) a single class of attribute-sharing entities each and to preserve the mathematical properties of relations, databases are easier to understand, and query results are guaranteed to be provably correct and easier to interpret. Let's see how and why with the help of an example.Consider numbers. They are abstract -..
2015.09.28 -
6 Alternative Browsers Based on Mozilla Firefox
Mozilla Firefox is an open-source web browser, so anyone can take its source code and modify it. Various projects have taken Firefox and released their own versions, either to optimize it, add new features, or align it with their philosophy.These projects all have to release the source code to their browsers and can’t call them Firefox or use official Mozilla branding, such as the Firefox logo. ..
2015.09.28 -
워드 프레스 암호 방식과 업데이트
워드 프레스 암호 방식과 업데이트 mysql 사용시UPDATE wp_users SET user_pass = MD5('test')WHERE user_login = 'test' LIMIT 1
2015.09.28 -
vim 단축키및 설정
1. 파일 열기 및 저장CommandModeDescriptionRemarkvi fileConsolevi를 시작하여 지정한 파일 편집 vi -R fileConsole읽기 전용(read- only) 편집기로서 vi를 시작하여 지정한 파일 편집 view fileConsole읽기 전용(read- only) 편집기로서 vi를 시작하여 지정한 파일 편집 vimdiff Console두 파일 비교 vim –d Console두 파일 비교 :wqCommand데이터를 저장하고 종료 :qCommand창 닫기 :q!Command데이터를 저장하지 않고 종료 vi -rConsole되살릴 수 있는 모든 파일 이름 보여 주기 vi -r fileConsolevi를 시작하여 지정한 파일 되살리기 :e fileCommand지정한 파일의 편..
2015.09.25 -
cat (concatenate) 사용법
터미널 관리자에게 일상적인 도구 출력 Redirectioncat test.c#include int main(void) { printf("test");} 행번호 출력 (-b)cat -b ./test.c1#include 2int main(void) { 3printf("test");4} 빈행도 번호 출력 (-n)cat -n ./test.c1#include 23int main(void) {456printf("test");7} 연속되는 빈행두개를 하나로 출력 (-s)cat -s -n ./test.c 또는 cat -sn ./test.ccat -s -n ./test.c 1#include 23int main(void) {45printf("test");6} 출력 결과를 파일로 저장cat -sn test.c > readm..
2015.09.24