Skip to content

Instantly share code, notes, and snippets.

View vvps's full-sized avatar

Vijay Parsi vvps

  • Germany
View GitHub Profile
@vvps
vvps / jekyll-new-post.sh
Last active February 11, 2016 12:56 — forked from flohei/jekyll-new-post.sh
This script creates a new blog post for Jekyll.
#!/bin/sh
# variables
title="New Post"
postdate=`date +%Y-%m-%d`
posttime=`date +%H:%M:%S`
timezone="+0100"
publishdate="$postdate $posttime $timezone"
tags=
categories=
@vvps
vvps / balloontip.py
Last active August 29, 2015 14:17 — forked from boppreh/balloontip.py
# -- coding: utf-8 --
from win32api import *
from win32gui import *
import win32con
import sys, os
import struct
import time
class WindowsBalloonTip: