Skip to content

Instantly share code, notes, and snippets.

View gegdd's full-sized avatar

David TH Kim gegdd

View GitHub Profile
@gegdd
gegdd / PY0101EN-1-2-Strings.ipynb
Created December 20, 2019 04:43
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@gegdd
gegdd / PY0101EN-1-1-Types.ipynb
Created December 20, 2019 04:24
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@gegdd
gegdd / gitcom.md
Created June 18, 2019 15:07 — forked from jednano/gitcom.md
Common git commands in a day-to-day workflow

Git Cheat Sheet

Initial Setup

Create an empty git repo or reinitialize an existing one

$ git init
@gegdd
gegdd / zombie-war.cpp
Created December 5, 2018 04:22 — forked from sagebind/zombie-war.cpp
A simple game in C++ for a class exercise.
#include <iostream>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
using namespace std;
int createZombie() {
if (rand() % 67 < 10)
return 11;