윈도우 XP는 c:\documents and settings\사용자계정명\application data\mozilla\firefox\profile 에서 저 profile 폴더를 복사해서 나중에 저 부분 백업해 두었다가 복구시키면 되지만..... 이 비스타에서는 저 부분으로 가는 부분이 틀리더군요... 비스타에서는 C:\Users\사용자계정명\AppData\Roaming\Mozilla\Firefox\Profiles 에서 저 profiles 폴더 복사해서 백업~ 그리고 복구하시면 됩니다. 이 경로 찾느라 헤맸네요;; 참고로 그냥 복사하면 기존의 파일과 같이 남으니 기존 파일을 지우시고 복구하시는 것이 좋을 듯 싶어요~ 그럼 파폭 재설치 후 부가기능 설치하고 about:config 설정한 것들 힘들게 셋팅하지..
mysql> select * from names; +------+-------+ | id | name | +------+-------+ | 1 | Lucho | | 2 | Lily | | 3 | Kiro | +------+-------+ 3 rows in set (0.00 sec) mysql> select * from prof; +-----------+------------+ | person_id | prof | +-----------+------------+ | 1 | Programmer | | 2 | QA | | 3 | Sys admin | +-----------+------------+ 3 rows in set (0.00 sec) mysql> update names inner join prof on..
Javascript: The Good Parts (Chapter 5) -Douglas Crockford Prototypal Inheritance in Javascript -Douglas Crockford Object-Oriented Javascript -Stoyan Stefanov Javascript Override Patterns -Andrea Giammarchi Simple JavaScript Inheritance -John Resig http://alexsexton.com/?p=51
Connect to postresql psql or psql db_name Create a user CREATE USER kevin WITH PASSWORD 'my_password'; Create a user from command line createuser kevin Remove a user from command line dropuser kevin Select database \c db_name Show databases select datname from pg_database; List databases \l Show Schemas \dn Show tables \d Show tables in schema \dt my_schema.* Show all sequences \ds Show all view..