Skip to content

Instantly share code, notes, and snippets.

View damieng's full-sized avatar
🏠
Working from home

Damien Guard damieng

🏠
Working from home
View GitHub Profile
@damieng
damieng / gist:50ccbc199fc251d65d87
Last active August 29, 2015 14:16
build.sbt for a Spark Streaming 1.2.1 job using Scala 2.10 that can assemble (remote) or run (local)
name := "MyApp"
version := "1.0"
scalaVersion := "2.10.4"
libraryDependencies ++= Seq(
// Use Log4J 1.2.17 instead of the unresolvable jmx of 1.2.15
"log4j" % "log4j" % "1.2.17",
// Spark components - some provided on the cluster
@damieng
damieng / gist:5725720
Created June 6, 2013 23:05
Simple pattern for background ASP.NET tasks. Just BackgroundService.Start(SomeMethod, TimeSpan.SomeInterval). Based on Phil Haack's sample.
public class BackgroundService : IRegisteredObject
{
public static void Start(Action action, TimeSpan interval)
{
var backgroundService = new BackgroundService(interval, action);
HostingEnvironment.RegisterObject(backgroundService);
}
private Timer timer;
@damieng
damieng / WordPressNoiseRemoval.php
Last active April 12, 2016 03:51
Remove WordPress noise from pages
<?php
// Put this in your themes functions.php to remove WordPress noise
remove_action('wp_head', 'wp_generator');
remove_action('wp_head', 'index_rel_link');
remove_action('wp_head', 'wlwmanifest_link');
remove_action('wp_head', 'rsd_link');
remove_action('wp_head', 'print_emoji_detection_script', 7);
remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0);
remove_action('wp_print_styles', 'print_emoji_styles');
@damieng
damieng / DownloadAllByNumber.ps1
Created May 27, 2016 00:04
Bulk download files from a url by specifying a wildcard and numeric range
$sourcePattern = "http://something.com/somepath/somefile*.jpg"
$targetDir = "c:\downloads"
$count = 256
New-Item -Path $targetDir -ItemType Directory -Force
for ($i=1; $i -le $count; $i++) {
$source = $sourcePattern.Replace("*", $i)
$parts = $source.Split('/')
$target = Join-Path $targetDir $parts[$parts.Length - 1]
echo "Downloading $source to $target"
@damieng
damieng / start-crash-server.coffee
Created July 20, 2016 23:24
Grunt http server in Coffeescript
http = require('http')
module.exports = (grunt) ->
grunt.registerTask 'local-crash-reporter', 'Start a local crash reporter server.', ->
PORT = 1127
done = this.async()
server = http.createServer (request, response) ->
if request.method is 'POST'
body = []
@damieng
damieng / DoDumpCPC.bat
Created August 29, 2016 06:22
Dump Amstrad CPC and Spectrum +3 disks using Kryoflux
@echo off
:WARMUP
set DTC_GameTitle=none
set DTC_NumberOfDisks=1
set DTC_Publisher=none
set DTC_ReleaseType=none
set DTC_Year=none
set DTC_Platform=none
set DTC_RecommendedModel=none
@damieng
damieng / identify-pe-arch.js
Last active October 28, 2016 18:04
Identify 64-bit and 32-bit PE binaries in a path
#!/usr/bin/env node
const fs = require('fs')
const path = require('path')
const process = require('process')
var rootPath
if (process.argv.length > 2) {
rootPath = process.argv[2]
} else {
@damieng
damieng / Compaq-G80-1800.kbd.json
Last active December 13, 2016 03:55
Compaq G80-1800
[
{
"backcolor": "#000000",
"name": "Compaq G80-1800",
"author": "Damien Guard",
"background": {
"name": "ABS WFK",
"style": "background-image: url('/bg/plastic/abs-wfk.jpg');"
},
"switchMount": "cherry",
@damieng
damieng / Lightsaver-G80-1800-style.kbd.json
Last active December 16, 2016 18:27
Lightsaver G80-1800 style
[
{
"name": "Lightsaver G80-1800 style",
"author": "Damien Guard",
"background": {
"name": "Steel brushed dark",
"style": "background-image: url('/bg/metal/iron_texture1745.jpg');"
},
"switchMount": "cherry",
"switchBrand": "cherry",
@damieng
damieng / getproxieswindows.js
Created January 11, 2017 22:22
Get Proxy servers on Windows
exports.getProxyServers = (callback) => {
try {
new Registry('\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings')
.get('ProxySever', (err, val) => {
callback(err, err ? undefined || Object.assign({}, ...val.split(';').map(v => v.split('=')).map(v => ({[v[0]]: v[1]}))))
})
} catch (err) {
callback(err)
}