Skip to content

Instantly share code, notes, and snippets.

View daehli's full-sized avatar

Daehli Nadeau Otis daehli

View GitHub Profile
@daehli
daehli / index.md
Created July 16, 2018 23:23
index.md

Tables

  • Rangé 15 section 18

Hollow walls (Bike storage)

  • M6X70 Aisle 15, Bay 002
  • Washer diamiter 19mm Rangé 11 section 17
@daehli
daehli / set.md
Created January 11, 2018 02:48
Set In Javascript

What's a Set in Javascript

A Set is a Collection of values. You can iterate over your Set and your Set can only have single values

const setOfColors = new Set(['Blue','Red','Orange'])
// setOfColors[0] = Blue
// setOfColors[1] = Red
// setOfColors[2] = Orange
@daehli
daehli / VSCODE.md
Created December 18, 2017 19:51
Install Visual Studio Code on Mac OS and add vscode alias

Brew Install

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null ; brew install caskroom/cask/brew-cask 2> /dev/null

Install Brew Visual-Studio Code

brew cask install visual-studio-code
@daehli
daehli / README.md
Last active December 15, 2017 19:59
Testing RawGit with svg Icon

Testing with a Icon

I was testing svg background in our Application and I was woundering if it was possible to USE RawGit to render our Background. In our case it's possible to render a SVG background with RawGit.

Exemple

// Api to catch out Config File 
fetchConfig() {