Skip to content

Instantly share code, notes, and snippets.

View KDCinfo's full-sized avatar
💭
Flutter Developer | Contra Costa Co. CA

Keith D Commiskey KDCinfo

💭
Flutter Developer | Contra Costa Co. CA
View GitHub Profile
@KDCinfo
KDCinfo / vscode.md
Last active July 28, 2018 00:21
Personal Notes: VS Code Cons and Pros wrt Sublime Text 3

Pros and Cons of Visual Studio Code vs. Sublime Text 3

VS Code vs. ST3 - Overview

VS Code: A lightweight IDE

Sublime Text: A customizable code editor

@KDCinfo
KDCinfo / README.md
Created May 8, 2018 21:23
Code for: CSS Grid Changes EVERYTHING
@KDCinfo
KDCinfo / README.md
Last active May 8, 2018 21:18
Code for: CSS Grid Layout - Rachel Andrew | February 2017
@KDCinfo
KDCinfo / README.md
Last active May 1, 2018 21:52
MobX Uber-Simplified Boilerplate

MobX Uber-Simplified (mostly stripped) Boilerplate

Based on: YouTube: Easy MobX and Redux Comparison (Mar 2018)

MobX: Basic Flow

Action: Functions 
	--> (updates)
		--> Observable Properties: State
			|--> (updates / to render current dom)
@KDCinfo
KDCinfo / example01.js
Last active February 8, 2018 02:41 — forked from mpj/example01.js
Code for the async/await episode of Fun Fun Function from https://www.youtube.com/watch?v=568g8hxJJp4
const response = await fetch(`https://catappapi.herokuapp.com/users/${userId}`)
const data = await response.json()
return data.imageUrl
}
@KDCinfo
KDCinfo / combination-coin-changer.js
Created January 16, 2018 05:10
JavaScript Combination Algorithm (determining proper coin change)
// Codewars Kata [4 kyu] Vending Machine (JavaScript)
// My 3-day (albeit 32-hour) Solution
// Development history details at bottom.
// I may be a bit slower than some, but I'm persistent :), and I pick up on many underlying nuances.
// I got my (final) base model for the 'combination algorithm' from:
// Code Review Stack Exchange: Answer: https://codereview.stackexchange.com/a/7042
// https://codereview.stackexchange.com/questions/7001/generating-all-combinations-of-an-array
@KDCinfo
KDCinfo / README.md
Last active December 25, 2017 08:11
Simon 20: React + TypeScript + Responsive
@KDCinfo
KDCinfo / README.md
Last active December 24, 2017 12:04
Simon 20 React
@KDCinfo
KDCinfo / README.md
Last active December 24, 2017 11:53
Simon - JavaScript Game
@KDCinfo
KDCinfo / README.md
Last active October 2, 2017 06:05
Convert0101 - JavaScript: Convert between ASCII (char), ASCII (int), and 8-bit (Byte)

Convert0101 (JavaScript)

Convert between ASCII (char), ASCII (int), && 8-bit (Byte)

Added: Ability to update the default text being converted.

Code Crux

    /* Convert to ASCII (int) */
 word[idx] = '[' + ltr.charCodeAt().toString() + ']';