Waits a certain amount of time, then returns with a promise
let waitAWhile = (timeToWait) => new Promise(resolve => setTimeout(resolve, timeToWait));| declare @tableName varchar(200) | |
| declare @columnName varchar(200) | |
| declare @nullable varchar(50) | |
| declare @datatype varchar(50) | |
| declare @maxlen int | |
| declare @sType varchar(50) | |
| declare @sProperty varchar(200) | |
| DECLARE table_cursor CURSOR FOR |
| <img src="/images/brainum_logo.png" style="background:none; border:none; box-shadow:none; position:absolute;top:0px;left:-200px" width="200px"/> | |
| <section> | |
| <section data-background-video="https://1drv.ms/v/s!At63FI3udbqWh90s5qsL5JaQ-ctjTg" data-background-video-loop="true" data-background-opacity="0.2"> | |
| <span class="fragment fade-in"><h2>Introduction</h2></span> | |
| <span class="fragment fade-in">Jacques van der Merwe</span> | |
| <span class="fragment fade-in"><img src="/images/brainum_logo.png" style="background:none; border:none; box-shadow:none;"/></span> | |
| </section> | |
| <section data-background-video="/videos/background_graph.mp4" data-background-video-loop="true" data-background-opacity="0.2"> | |
| <h2>Software Developer</h2> | |
| <span class="fragment fade-in"><img src="/images/whatido.png" style="background:none; border:none; box-shadow:none;"/></span> |
| <templateSet group="JavaScript"> | |
| <template name="forof" value="for (let $VAR$ of $ARRAY$) { $END$ }" description="Iterate (for..of) - ES6" toReformat="true" toShortenFQNames="true"> | |
| <variable name="ARRAY" expression="jsArrayVariable()" defaultValue="" alwaysStopAt="true" /> | |
| <variable name="VAR" expression="jsSuggestVariableName()" defaultValue="" alwaysStopAt="true" /> | |
| <context> | |
| <option name="JS_STATEMENT" value="true" /> | |
| </context> | |
| </template> | |
| <template name="for" value="for (let $INDEX$ = 0; $INDEX$ < $ARRAY$.length; $INDEX$++) { let $VAR$ = $ARRAY$[$INDEX$]; $END$ }" description="Iterate elements of array" toReformat="true" toShortenFQNames="true"> | |
| <variable name="INDEX" expression="jsSuggestIndexName()" defaultValue=""i"" alwaysStopAt="true" /> |
| { | |
| "emojis": [ | |
| {"emoji": "👩👩👧👧", "name": "family_mothers_two_girls", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👧", "category": "p", "order": ""}, | |
| {"emoji": "👩👩👧👦", "name": "family_mothers_children", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👩👩👦👦", "name": "family_mothers_two_boys", "shortname": "", "unicode": "", "html": "👩‍👩‍👦‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👧👧", "name": "family_two_girls", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👧", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👧👦", "name": "family_children", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👦👦", "name": "family_two_biys", "shortname": "", "unicode": "", "html": "👨&zw |
Simplest intro to git by github and codeschool - Try Git
[Intro to github]