Skip to content

Instantly share code, notes, and snippets.

View kendaganio's full-sized avatar
🏠
staying at home

Ken-Lauren Daganio kendaganio

🏠
staying at home
View GitHub Profile
webpack(config, (err, stats) => {
if (err) {
console.error(err.stack || err);
if (err.details) {
console.error(err.details);
}
return;
}
const info = stats.toJson();

Keybase proof

I hereby claim:

  • I am kendaganio on github.
  • I am kendaganio (https://keybase.io/kendaganio) on keybase.
  • I have a public key ASAWQ480bCTzMAw2iZUqzh4EGtDhg4X2dZ4PU0KvLi9QHQo

To claim this, I am signing this object:

@kendaganio
kendaganio / bayantel.rb
Created February 5, 2013 13:24
How awesome is bayantel
require 'net/http'
require 'uri'
require 'json'
total = 100
uri = URI.parse("http://search.twitter.com/search.json?q=bayantel&rpp=#{total}&include_entities=true&result_type=mixed");
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri);
response = http.request(request)
@kendaganio
kendaganio / .vimrc
Created November 19, 2012 09:54
Office vimrc
" Its 2012 man.
set nocompatible
" Syntax higlighting and color schemes
syntax enable
set t_Co=256
set background=dark
let base16colorspace=256
" colorscheme solarized
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Text.RegularExpressions;
using System.Collections;
using System.IO;
namespace PeteApplication1