| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
# This example does an AJAX lookup and is in CoffeeScript
$('.typeahead').typeahead(
# source can be a function
source: (typeahead, query) ->
# this function receives the typeahead object and the query string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // dark theme / light scrollbar fix | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| border-radius: 8px; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| border-radius: 8px; | |
| background: rgba(255,255,255, 0.1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Created Fri Mar 22 2014 | |
| # This is an indirect fork of https://gist.github.com/SeonghoonKim/4378896 | |
| # Most of it was reworked from http://blog.basefarm.com/blog/how-to-install-logstash-with-kibana-interface-on-rhel/ | |
| # This script will download, install and start | |
| # the following items on CentOS 6.5: | |
| # OpenJDK 1.7.0 | |
| # cURL | |
| # ElasticSearch 1.3.2 | |
| # Logstash server 1.4.2 |