Skip to content

Instantly share code, notes, and snippets.

View kepta's full-sized avatar
🐒
What

Kushan Joshi kepta

🐒
What
  • Toronto
View GitHub Profile
#include <stdio.h>
// #include <stack>
//
// using namespace std;
//
// void pushNeighbours(int x, int t, int *grid, stack<int> s) {
// for (int i =0 ; i < t ; i++) {
// if (grid[x][i] == 1) {
// s.push(i);
// }
@kepta
kepta / linter.md
Last active September 15, 2016 17:09

Setting up linters

Pre requisites

Basic setup

To setup a new project.

@kepta
kepta / drive_left_countries.geojson
Last active June 8, 2016 06:31
A geojson containing a Feature Collection of all countries which drive on left.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kepta
kepta / config.json
Created October 21, 2015 15:01
config.json for 0.17 jspm
System.config({
baseURL: "/",
transpiler: "babel",
packageConfigPaths: [
"npm:*.json"
],
paths: {
"npm:*": "jspm_packages/npm/*"
},