Skip to content

Instantly share code, notes, and snippets.

View belide's full-sized avatar
💭
Always WEB!

belide

💭
Always WEB!
View GitHub Profile

FWIW: I didn't produce the content presented here (the outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

What's an Effective Engineer?

@belide
belide / composing-software.md
Created January 18, 2020 02:43 — forked from Geoff-Ford/composing-software.md
Eric Elliott's Composing Software Series
@belide
belide / master-javascript-interview.md
Created January 18, 2020 02:42 — forked from Geoff-Ford/master-javascript-interview.md
Eric Elliott's Master the JavaScript Interview Series
@belide
belide / destructuring.js
Created November 20, 2018 07:10 — forked from mikaelbr/destructuring.js
Several demos and usages for ES6 destructuring. Runnable demos and slides about the same topic: http://git.mikaelb.net/presentations/bartjs/destructuring
// === Arrays
var [a, b] = [1, 2];
console.log(a, b);
//=> 1 2
// Use from functions, only select from pattern
var foo = () => [1, 2, 3];
@belide
belide / rxjs_operators_by_example.md
Created November 4, 2018 12:28 — forked from btroncone/rxjs_operators_by_example.md
RxJS 5 Operators By Example
@belide
belide / The Technical Interview Cheat Sheet.md
Created October 19, 2018 00:49 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

###Array ####Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.
@belide
belide / Readme.md
Created October 7, 2018 02:07 — forked from ErikCH/Readme.md
@belide
belide / nodejs-cheatsheet.js
Created August 23, 2018 10:53 — forked from LeCoupa/nodejs-cheatsheet.js
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@belide
belide / 01.ts
Created July 22, 2018 14:43 — forked from jhades/01.ts
ng-template, ng-container and ngTemplateOutlet examples
@Component({
selector: 'app-root',
template: `
<ng-template>
<button class="tab-button"
(click)="login()">{{loginText}}</button>
<button class="tab-button"
(click)="signUp()">{{signUpText}}</button>
</ng-template>
@belide
belide / webdev_online_resources.md
Created July 21, 2018 14:18 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)