Skip to content

Instantly share code, notes, and snippets.

@dariye
dariye / tic-tac-toe
Created September 2, 2013 05:57
tic-tac-toe...woeful implementation in C++
#include <iostream>
#include <iomanip>
using namespace std;
using std::cout;
using std::cin;
using std::endl;
const int BOARD_SIZE = 9; //3x3 tic-tac-toe board
@dariye
dariye / Sketch-Pad.markdown
Created November 18, 2013 10:12
A Pen by pauldariye.

Basic iOS

Learn how to make applications using the autogenerator tools of Xcode. These are things like storyboards and the Xcode generators like the master-details template. Inevitably this will be an application that uses a UITableView and then some sort of detail view with some buttons. Understand how connecting UI elements with the IBActions and instance variables works.

Objective-C

@dariye
dariye / devplylist.markdown
Last active August 29, 2015 14:01
music ---coder/gamer style

Music that Keeps you Typing and Thinking

On this very regular day,

I was just skimming the web as I infrequently do :) and came across this article by fast company. I just recently got serious about programming so I'm still in that early stage of easy distractions and child-like concentration spans. Well I've tried all sorts of music, maybe not all though, and none seem to work at keeping my mind at bay. Found a great playlist in the comment by LENA ELCHAMAA . Enjoy and maybe share your own playlists. I hope I can have a listen to all

Gist inspired by post fast company

@dariye
dariye / batcharge.py
Last active September 17, 2015 05:19 — forked from remy/batcharge.py
My zsh set up as of July 25, 2013
#!/usr/bin/env python
# saved to ~/bin/batcharge.py and from
# http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/#my-right-prompt-battery-capacity
#!/usr/bin/env python
# coding=UTF-8
import math, subprocess
p = subprocess.Popen(["ioreg", "-rc", "AppleSmartBattery"], stdout=subprocess.PIPE)
output = p.communicate()[0]
@dariye
dariye / gist:f46afcb481e659af31a5
Created February 28, 2016 20:42
update a forked repo
# source: http://stackoverflow.com/questions/7244321/how-to-update-a-github-forked-repository
# Add the remote, call it "upstream":
git remote add upstream https://github.com/whoever/whatever.git
# Fetch all the branches of that remote into remote-tracking branches,
# such as upstream/master:
git fetch upstream
@dariye
dariye / sc.js
Last active May 11, 2016 22:13
//Inspired by http://g-liu.com/blog/2013/08/tutorial-basic-carouselslideshow-with-javascript/
var SimpleCarousel = function(id, options){
this.id = id || 'slides'; // default id -> #slides
this.class = options.class || 'slide'; // default child class -> .slide
this.w = options.width;
this.h = options.height;
this.duration = options.duration || 4000; // default 4s
this.container = document.getElementById(this.id);
@dariye
dariye / deploy_from_subfolder.md
Last active October 7, 2021 15:23
Deploying to Heroku from Subfolder

Context

What happens when you have a nested directory you want to deploy i.e

./root_dir/
|__sub_dir
|__..

Usage