Skip to content

Instantly share code, notes, and snippets.

View ibnesayeed's full-sized avatar

Sawood Alam ibnesayeed

View GitHub Profile
@ibnesayeed
ibnesayeed / xenforo-downloader.sh
Created April 8, 2015 13:10
A script to automatically download XenForo from customer area
#! /usr/bin/env bash
###############################################################################
# CONFIG #
###############################################################################
EMAIL="xenforo%40gmail.com"
PASSWORD="p4ssw0rd"
LICENSE="12A3B4CD56"
###############################################################################
@imjasonh
imjasonh / markdown.css
Last active February 12, 2024 17:18
Render Markdown as unrendered Markdown (see http://jsbin.com/huwosomawo)
* {
font-size: 12pt;
font-family: monospace;
font-weight: normal;
font-style: normal;
text-decoration: none;
color: black;
cursor: default;
}
@andelf
andelf / sighup.go
Created June 29, 2013 05:25
golang process SIGHUP, HUP signal to reload configuration
// program
package main
import "os/signal"
import "os"
import "fmt"
import "syscall"
import "time"