Skip to content

Instantly share code, notes, and snippets.

View pguyson's full-sized avatar

Panu Guyson pguyson

View GitHub Profile
@pguyson
pguyson / manga-scraper.go
Created January 9, 2018 13:02
html parser image scraper
package main
import (
"fmt"
"io"
"log"
"net/http"
"os"
"strconv"
@pguyson
pguyson / .vimrc
Last active January 31, 2017 03:50
vimrc
set t_Co=256
syntax on
set background=dark
set nocompatible " Enable all the 'improved' features of Vim
filetype off " Also require for Vundle.
" Prevents potential side-effects
" from system ftdetects scripts
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()