#PidginScript ###or BrahScript
variable assignment => dakine example: dakine name stay "Jon"
NULL => sostay
= operator => stay
!= operator => not
#PidginScript ###or BrahScript
variable assignment => dakine example: dakine name stay "Jon"
NULL => sostay
= operator => stay
!= operator => not
| //On BitBucket | |
| var user = 'sgnl' //enter your username here | |
| if (!logged_in_at_bitbucket){ | |
| userLogin(); | |
| } | |
| goTo.YourAccountSettings('https://bitbucket.org/account/' + user + '/'); | |
| $('a#SSH-Kets').click(); |
| var usergrid = require('usergrid'); | |
| /* Usergrid */ | |
| var client = new usergrid.client({ | |
| orgName:'lupin', | |
| appName:'sandbox', | |
| logging: true, //optional - turn on logging, off by default | |
| }); |
Build a basic chat room. The purpose of this exercise is to practice getting user input and manipulating the DOM through javascript with jQuery.
Requirements:
Install/Verify you have Sublime Text 3 (http://sublimetext.com/3)
Install/Verify that Package Control Module is installed to for Sublime Text: https://packagecontrol.io/installation
Linux: Click the Preferences > Browse Packages… menu Browse up a folder and then into the Installed Packages/ folder Download Package Control.sublime-package and copy it into the Installed Packages/ directory Restart Sublime Text
PC Install to make use of FuzzySearch to bring up Package Control: Install Packageenter key| :first-child - https://developer.mozilla.org/en-US/docs/Web/CSS/:first-child | |
| :last-child - https://developer.mozilla.org/en-US/docs/Web/CSS/:last-child | |
| :nth-child() - https://developer.mozilla.org/en-US/docs/Web/CSS/:nth-child | |
| 30 Most Helpful CSS Selectors: | |
| http://code.tutsplus.com/tutorials/the-30-css-selectors-you-must-memorize--net-16048 | |
| Special Stuff: |
| var utils = require('utils'); | |
| events.on("player.PlayerMoveEvent", function(evt) { | |
| var playerLoc = utils.getPlayerPos(evt.player); | |
| var drone = new Drone(playerLoc); | |
| // console.log(playerLoc); | |
| drone.box(blocks.wood, 1, 1, 1); | |
| }); |
#tl;dr
pre: assuming you have forked a repo and cloned your fork to your computer
git remote add [maintainer's name] [paste URL here]git fetch --allgit branch --track [maintainer's name]_[branch] [remote name from step 1]/[branch you want to track]
At this point you may watch to checkout to your newly create branch and issue a git pull command.