Tested in Mac OS X: super == command
Open/Goto
- super+t: go to file
- super+ctrl+p: go to project
- super+r: go to methods
For those who has problems with OpenSSL::SSL::SSLError SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed on your machine: | |
rvm remove 2.1.5 | |
brew install openssl | |
rvm install 2.1.5 --with-openssl-dir=`brew --prefix openssl` |
# http://stackoverflow.com/questions/19262312/installing-pg-gem-on-os-x-failure-to-build-native-extension | |
same error for me and I didn't experience it until I downloaded OS X 10.9 (Mavericks). Sigh, another OS upgrade headache. | |
Here's how I fixed it (with homebrew): | |
Install another build of Xcode Tools (typing 'brew update' in the terminal will prompt you to update the Xcode build tools) | |
brew update | |
brew install postgresql | |
After that 'gem install pg' worked for me. |
git remote -v | |
git remote rm heroku | |
git remote add heroku GIT_APP_HTTPS_OR_SSH | |
>> ex: | |
GIT_APP_HTTPS_OR_SSH = [email protected]:electric-meadow-15.git |
git checkout master | |
git fetch | |
git reset --hard origin/master | |
git checkout -b new-structure-data | |
git merge --squash structured-data-for-search-results | |
(resolve conflict & add .) | |
git rebase -i HEAD~2 | |
git push -f origin new-structure-data | |
-- credit : bong Borey Lim |
1. xcode agreement | |
$ sudo xcodebuild -license | |
2. Install sqlite | |
$ brew install sqlite | |
3. Bundle install gemfile | |
$ bundle install |
DUMP:: | |
mysqldump -uroot -Q1p2m3g4 yoolk_api_development > db.sql | |
#good | |
mysqldump -uroot -pQ1p2m3g4 --no-data yoolk_core_api_development -r db-201509291633.dump | |
SOURCE :: | |
mysql -uroot -Q1p2m3g4 yoolk_api_development < db.sql | |
#good | |
mysql -uroot -p --default-character-set=utf8 database | |
mysql> SET names='utf8' |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.