'be the Geek!'에 해당하는 글 544건


a) $ sudo apt-get vino

b) $ vino-preferences

c) setup accordingly on  vino-preference GUI (disable 'encyrption')

d) $ sudo apt-get install dconf-editor

e) $ dconf-editor

f) setup accordingly based on 'vino-preference' ('org' --> 'gnome' --> 'desktop' --> 'remote-access' --> unset 'require-encryption')





WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,

새우 버터 오븐 구이

Food 2018. 9. 23. 14:18



재료 : 갈릭 파우더, 파프리카 파우더, 소금, 후추, 편마늘, 손질된 생새우


0) 새우는 잘 손질해서 물기를 닦아낸다.

1) 볼에 새우와 편마늘을 담고 소금, 후추로 밑간을 한다. 

2) 녹인 버터를 볼에 넣어 새우와 편마ㄴ를 잘 버무린다 (모든 새우에 버터가 묻도록, 충분한 양의 버터를 녹인다)

3) 볼에 파프리카 파우더 및 갈릭파우더를 충분히 넣어, 모든 새우에 잘 묻도록 버무린다. (+ 사랑 2스푼)

4) 180도로 예열된 오븐에 15분 익히고, 새우를 뒤집어서  200도로올린 오븐에 10분정도 더 익힌다 (마늘의 굽기 기호에따라, 조리시간은 늘어날수 있다)



'Food' 카테고리의 다른 글

바지락 술찜  (0) 2020.03.17
까르보나라 알리오올리오 혼종  (0) 2019.03.09
tartar sauce for chicken wing (타르타르 소스) 레시피  (0) 2017.08.12
뉴욕 스트립 스테이크  (0) 2017.07.29
버섯 아스파라거스 오븐구이  (0) 2017.07.28

WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,


latex이 아닌 OS X 환경에서 문서작업시 footnote symbol 입력을 고민할때가 종종 있음


3종류의 footnote symbol : *, †, ‡


특히 dagger 는 "Option + t"

double dagger 는 "Option + Shift + 7"




WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,


To check the BIOS release date


$ sudo apt install dmidecode

$ sudo dmidecode -t bios

$ sudo dmidecode -t bios  | grep "Release Date"






WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,


mysql > SELECT User, Host FROM mysql.user;    # Show Users;


mysql > CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';         # Create an user


mysql > SET PASSWORD FOR 'username'@'localhost' = PASSWORD('new password');        # Set new password

mysql > FLUSH PRIVILEGES;



mysql> CREATE TABLE 'new_database'.'table' SELECT * FROM 'old_database'.'table';    # copy table to another database


mysql> SHOW TABLE STATUS FROM 'database';    # check Engine, Collation (e.g., character set) for all tables in a 'database'


mysql> DESCRIBE 'table' ;


mysql > DELETE FROM 'table_name';        # delete all rows in 'table_name'


WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,

"한글" insert DB 할때의, "Incorrect string value" Error 문제.


$ cd /etc/mysql

$ sudo vim ./my.cnf


[ mysql ]

default-character-set=utf8


[ client ]

default-character-set=utf8


[ mysqld ]

character-set-server=utf8

collation-server=utf8_unicode_ci

init_connect='SET NAMES utf8'


$ sudo service mysql restart


$ mysql -utest -p


mysql> ALTER TABLE table_name CONVERT TO character SET utf8;   /* 기존 table 변환 */






WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,


$ mysqldump -uroot -p "db_name" > dump_db.sql


$ mysqladmin -uroot -p create "new_db_name" (or just "db_name")

$ mysql -uroot -p "new_db_name" < dump_db.sql



WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,

git readme

카테고리 없음 2018. 8. 14. 10:39

branch name on bash prompt

 #!/bin/bash

 parse_git_branch() {

         git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'

 }

 export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ " 



[ new branch ]

$ git branch                          ## branch list 

$ git branch "new branch name"             ## branch create 

$ git checkout "new branch name"          ##branch change 

$ git checkout -b "name"     ##branch create and change  

$ git add. 

$ git commit -m "message"

$ git push origin "new branch name".     ## git push [remote name] [branch name]


[ modification on branch ]

$ git push origin "branch name"


[ branch merge ]

$ git checkout master        # firstly, move to master

$ git merge [branchname]


[ branch del ]

$ git branch -d [branchname]





WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,

$ sudo yum install ntp xinetd

$ sudo vim/etc/ntp.conf

 

comment out

# server 0.centos.pool.ntp.org iburst

# server 1.centos.pool.ntp.org iburst

# server 2.centos.pool.ntp.org iburst

# server 3.centos.pool.ntp.org iburst

 

add

server kr.pool.ntp.org

server time.bora.net

server time.nuri.net

 

$sudo chkconfig ntpd on

$sudo chkconfig xinetd on

 

$ sudo service ntpd start

$ sudo service xinetd start

 

$ date

 

#done.

 


WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,


Copy : "Shift" +"double right click" 

Paste : "Shift" + "single right click"



WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,