Skip to content

Instantly share code, notes, and snippets.

View conache's full-sized avatar
🔬

Cristian Conache conache

🔬
View GitHub Profile
@conache
conache / Workers.cpp
Last active February 25, 2017 11:59
#include <iostream>
#include <vector>
#include <map>
using namespace std;
class Data{
int an,zi, luna;
public:
Data( int a=0, int z=0, int l=0){
an = a;
zi = z;
@conache
conache / gh-pages-tips.md
Last active August 29, 2015 14:27 — forked from jedschneider/gh-pages-tips.md
github pages tips for jekyll wiki

Working With Github Pages

The FAQ maintained by Github covers most stumbling blocks, some other tips and tricks supplied here.

Gitignore

Add _site to .gitignore. The generated site should not be uploaded to Github since its gets generated by github.

Working With Code Partials