Skip to content

Instantly share code, notes, and snippets.

View darkturo's full-sized avatar
:octocat:

Arturo Escudero darkturo

:octocat:
  • Stockholm
View GitHub Profile

Keybase proof

I hereby claim:

  • I am darkturo on github.
  • I am darkturo (https://keybase.io/darkturo) on keybase.
  • I have a public key ASBLmZaaQH7KgwyRDp_qwS3UgETXIUZ-QRLvPcM9HxPTzAo

To claim this, I am signing this object:

@darkturo
darkturo / fibonacci.cc
Created December 16, 2013 11:54
Fibonacci in c++ for 50 elements.
#include <sstream>
#include <string>
#include <iostream>
std::string __fibonacci(int a, int b, int iterations)
{
std::stringstream sequence("");
if (iterations > 0) {
sequence << a << " " << __fibonacci(b, b + a, iterations - 1);
@darkturo
darkturo / vimrc
Created October 12, 2013 23:51
My vimrc
" I like syntax highlighting ... mainly the reason why I started to use vim
syntax on
" Make tabs to be represented as 3 spaces
set tabstop=3
" Force tabs to become spaces (3 spaces)
set softtabstop=3
set expandtab
"== Set colorcolumn to be enabled when it goes over colum 80.