Skip to content

Instantly share code, notes, and snippets.

View unChartedZone's full-sized avatar
👨‍💻
Coding

Christian Valdez unChartedZone

👨‍💻
Coding
View GitHub Profile
@unChartedZone
unChartedZone / keymap.cson
Last active August 24, 2016 03:33
My atom keybindings
# Your keymap
#
# Atom keymaps work similarly to style sheets. Just as style sheets use
# selectors to apply styles to elements, Atom keymaps use selectors to associate
# keystrokes with events in specific contexts. Unlike style sheets however,
# each selector can only be declared once.
#
# You can create a new keybinding in this file by typing "key" and then hitting
# tab.
#
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
@unChartedZone
unChartedZone / FizzBuzz.cc
Created April 13, 2016 03:29
This is a c++ file of the classic game Fizz Buzz for children
//
// Created by Chris on 4/11/16.
//
#include <iostream>
#include <sstream>
using namespace std;
bool checkString(string string1) {
for(unsigned int i = 0; i < string1.length(); i++) {