Skip to content

Instantly share code, notes, and snippets.

View vvps's full-sized avatar

Vijay Parsi vvps

  • Germany
View GitHub Profile
@flohei
flohei / jekyll-new-post.sh
Last active February 10, 2016 19:41
This script creates a new blog post for Jekyll.
#!/bin/sh
# TODO add parameter for output path
# TODO add usage string
# TODO verify variables
# variables
title="New Post"
linkpost=
permalink=
@boppreh
boppreh / balloontip.py
Created November 2, 2012 11:35 — forked from wontoncc/balloontip.py
Balloon tip module, Python, using win32gui. Display a notification in the tray bar and quits after 10 seconds.
# -- coding: utf-8 --
from win32api import *
from win32gui import *
import win32con
import sys, os
import struct
import time
class WindowsBalloonTip: