Here are some shortcut keys worth remembering. They should also work for Sublime Text.
- Toggle view of sidebar -
CMD+K
,CMD+B
- Go to a file -
CMD+P
then type the file name - Select next -
CMD+D
(Find > Select Next) - Select all -
CTRL+CMD+G
(Find > Select All) - Go to beginning/end of the line -
CMD+LEFT/RIGHT
- Select to beginning/end of the line -
SHIFT+CMD+LEFT/RIGHT
(Selection > Select to Beginning/End of Line) - Select the entire line -
CMD+L
(Selection > Select Line) - Select the entire word -
SHIFT+CTRL+W
(Selection > Select Word)
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
class Pet { | |
constructor () { | |
} | |
} |
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.min.js"></script>
<script type="text/babel" src="index.js"></script>
- Write a program that prints the lyrics to the "99 Bottles of Beer on the Wall".
- Your program should take in one argument for the starting number of bottles of beer.
- You can write your program in JavaScript or Ruby.
- Share your solution in the comments below.
99 bottles of beer on the wall, 99 bottles of beer.
- A shared Trello board for all our resources, suggested by Kelvin
- Leave a comment here with your Trello username so I can add you to the baord
Similar shortcuts, plugins, and linters are available for Sublime Text and Brackets.
- Install Arduino IDE
- Open Arduino IDE > File > Examples > Firmata > StandardFirmataPlus
var x = 1
var x = 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
function Ape (name, species, approvedListOfFoods) { | |
this.name = name | |
this.species = species | |
this.approvedListOfFoods = approvedListOfFoods | |
this.introduce = function () { | |
console.log('Hello! My name is ' + this.name + '. I am a ' + this.species + '. I like ' + this.approvedListOfFoods) | |
} | |
this.eat = function (food) { |
$ ping google.com
Copy the IP address and paste it into a browser.
$ traceroute google.com
$ man traceroute
breakdown of a URL - scheme:[//[user:password@]host[:port]][/]path[?query][#fragment]