- Advanced GIT for Developers - Lorna Jane Mitchell - Laracon EU 2015
- What is Git rebase? - Wallace Kelly
- Git MERGE vs REBASE - Academind
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
var result = [...new Set([1, 2, 1, 4, 1, 3])]; | |
console.log(result) |
notifications:
email:
on_success: never
on_failure: always
A JavaScript library for building user interfaces
Webpack is a popular module
bundling system
built on top ofNode.js
. It can handle not onlycombination
andminification
of JavaScript and CSS files, but also other assets such as image files (spriting) through the use ofplugins
.
With Webpack, you give a single path. The path to your entry point. This is typically index.js or main.js. Webpack will now investigate your application. It will figure out how everything is connected through require, import, etc. statements, url values in your CSS, href values in image tags, etc. It creates a complete dependency graph of all the assets your application needs to run. All of this just pointing to one single file.
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 | |
# ECHO COMMAND | |
# echo Hello World! | |
# VARIABLES | |
# Uppercase by convention | |
# Letters, numbers, underscores | |
NAME="Bob" | |
# echo "My name is $NAME" |
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-based Tree Shaking](https://www.youtube.com/watch?v=lsd2-TCgHEs) | |
- [Libraries vs Frameworks](https://www.youtube.com/watch?v=t_pxnrLktNI) |
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
- [REST Client](https://marketplace.visualstudio.com/items?itemName=humao.rest-client) | |
- [Bracket Pair Colorizer](https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer) | |
- [Todo Highlighter](https://marketplace.visualstudio.com/items?itemName=wayou.vscode-todo-highlight) | |
- [Auto Close Tag](https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-close-tag) | |
- [Auto Rename Tag](https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-rename-tag) | |
- [Quokka.js](https://quokkajs.com/) | |
- [JavaScript (ES6) code snippets](https://marketplace.visualstudio.com/items?itemName=xabikos.JavaScriptSnippets) | |
- [Import Cost](https://marketplace.visualstudio.com/items?itemName=wix.vscode-import-cost) |
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
var exists = []; | |
function randNumGen($len) { | |
do { | |
randomNumber = Math.floor(Math.random() * 5); | |
} while (exists[randomNumber]); | |
exists[randomNumber] = true; | |
return randomNumber; | |
} | |
console.log(randNumGen(5)); |
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() { | |
/** | |
* @description Establish a reference to the `window` object of the `Firechat` variable. | |
*/ | |
var root = this; | |
/** | |
* Firechat | |
* @description Firechat constructor function | |
* @constructs |