Skip to content

Instantly share code, notes, and snippets.

Work Between Mod 0 and Mod 1

ABOUT

My daily* practice between mod 0 and mod 1

  • This is a markdown of hopeful daily tasks and projects that will always include a reading and coding practice.
  • By the end of this, we will have created a website, an app, a mini game, then 5 more mini games, and finally gosu interactive game.
  • *I am lucky enough to be out of work right now as I wait for Mod 1 to start.

    This is going to be a lot, so buckle up and keep pushing through! Create discipline for yourself!\
@martensonbj
martensonbj / readme-template.md
Created February 16, 2017 19:21
Personal project README template

Project Name & Pitch

Example:

TweetWorld

An application used to filter data form Twitter based on user preference, built with React, Redux, JavaScript, and CSS.

Project Status

(only necessary if incomplete)

@cferdinandi
cferdinandi / terminal-cheat-sheet.txt
Last active June 8, 2024 15:35
Terminal Cheat Sheet
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help
@jonlabelle
jonlabelle / string-utils.js
Last active May 5, 2024 19:44
Useful collection of JavaScript string utilities.
// String utils
//
// resources:
// -- mout, https://github.com/mout/mout/tree/master/src/string
/**
* "Safer" String.toLowerCase()
*/
function lowerCase(str) {
return str.toLowerCase();
@JeffJacobson
JeffJacobson / splitCamelCase.js
Last active August 26, 2023 10:42
Splits camelCase or PascalCase words into individual words.
/**
* Splits a Pascal-Case word into individual words separated by spaces.
* @param {Object} word
* @returns {String}
*/
function splitPascalCase(word) {
var wordRe = /($[a-z])|[A-Z][^A-Z]+/g;
return word.match(wordRe).join(" ");
}