⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains 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
var assert = require('assert') | |
var util = require('util') | |
var testUtils = require('./utils') | |
var vows = require('vows') | |
var should = require('should') | |
var APIeasy = require('api-easy') | |
var _ = require('underscore') | |
var Logger = require('../lib/logger') | |
var settings = require('../lib/global').settings | |
var global = require('../lib/global') |
This file contains 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
play_url: { | |
url: 'http:/api/broadcast/id.smil', | |
passwordProtected: true | |
} |
:super = ctrl on PC or cmd on Mac
Find
find :super+f
find in files :super+shift+f
replace :super+alt+f
find_next :super+g
find_prev :super+shift+g
find the next occurrence of the word under the caret (and won’t show the find panel) :super+alt+g
This file contains 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
require 'rubygems' | |
require 'httpclient' | |
client = HTTPClient.new | |
puts "client.connect_timeout = #{client.connect_timeout}" # => client.connect_timeout = 60 | |
puts "client.send_timeout = #{client.send_timeout}" # => client.send_timeout = 120 | |
puts "client.receive_timeout = #{client.receive_timeout}" # => client.receive_timeout = 60 | |
puts "client.keep_alive_timeout = #{client.keep_alive_timeout}" # => client.keep_alive_timeout = 15 |