Skip to content

Instantly share code, notes, and snippets.

View orjanv's full-sized avatar

Ørjan Hoyd H. Vøllestad orjanv

View GitHub Profile
@orjanv
orjanv / testing for jason.md
Created March 29, 2013 21:09
Jason is a nice guy

GistBlog

My first attempt to learn Python resulted in a Gist Blog.

I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs.

@orjanv
orjanv / easfferg
Created April 1, 2013 22:03
ergergergerg
GistBlog
--------
My first attempt to learn Python resulted in a Gist Blog.
I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs.
@orjanv
orjanv / wekjagfhkjrgfhkj
Created April 1, 2013 22:05
werghkjewrghjerg
GistBlog
--------
My first attempt to learn Python resulted in a Gist Blog.
I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs.
@orjanv
orjanv / sdfkjhsdfkjh.md
Created April 1, 2013 22:08
sdfhkjsdfkjhsdfkjh

GistBlog

My first attempt to learn Python resulted in a Gist Blog.

I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs.

@orjanv
orjanv / sdfsdfsdf.md
Created April 1, 2013 22:10
sdfsdfsdfsdfsdf

GistBlog

My first attempt to learn Python resulted in a Gist Blog.

I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs.

GistBlog

My first attempt to learn Python resulted in a Gist Blog.

I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs.

GistBlog
--------
My first attempt to learn Python resulted in a Gist Blog.
I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs.
@orjanv
orjanv / system32.md
Created April 4, 2013 18:55
syntax error

GistBlog

My first attempt to learn Python resulted in a Gist Blog.

I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs.

@orjanv
orjanv / pdf-compress.sh
Created February 24, 2014 10:34
pdf-compress: compress a PDF file
#!/bin/bash
# pdf-compress: compress a PDF file
Input="$1"
Output="$2"
gs -sDEVICE=pdfwrite \
-dCompatibilityLevel=1.4 \
-dNOPAUSE -dQUIET -dBATCH \
-sOutputFile="$Output" "$Input"
@orjanv
orjanv / createfileandfolders
Last active August 29, 2015 14:00
Create ten folder with ten empty files in each
mkdir folder{1..10} && touch folder{1..10}/file{1..10}.txt