INSPECT
루아(Lua)에서 'nil'은 아무것도 아닌 값의 의미를 가진다.nil자체가 자료형이자 값이기 때문에 변수에 대입도 가능하다. 출처: http://studymake.tistory.com/511
[MySQL] root 비밀번호 변경하기 MySQL을 처음으로 설치한 초기에는 root사용자의 암호가 설정되어 있질않습니다.따라서, MySQL을 설치한 후에 바로 MySQL root사용자의 암호를 설정해주어야 합니다.변경한 이후에도 가끔씩(혹은 정기적으로) MySQL의 root사용자 암호를 변경해 주는 것이 보안을 위해서 좋습니다.MySQL의 root사용자 암호를 변경하는 방법에는 다음과 같은 방법이 있습니다. 방법1. mysqladmin이라는 명령어 사용/usr/local/mysql/bin에 보면 mysql데이터베이스를 관리할 수 있는 몇가지 유용한 명령어들이 있습니다.이중 mysqladmin이라는 명령어는 mysql을 시작, 종료, 재시작등을 할 수 있는 아주 중요한 명령어입니다.이 명령어를 이용하여..
What's a Symbol?You can think of a Ruby symbol as a sort of name. It's important to remember that symbols aren't strings:"string" == :string # false Above and beyond the different syntax, there's a key behavior of symbols that makes them different from strings: while there can be multiple different strings that all have the same value, there's only one copy of any particular symbol at a given ti..