Skip to content

Instantly share code, notes, and snippets.

View JanDeDobbeleer's full-sized avatar

Jan De Dobbeleer JanDeDobbeleer

View GitHub Profile
<?xml version="1.0" encoding="utf-8"?>
<key name="Software">
<key name="ConEmu">
<key name=".Vanilla" modified="2018-03-16 12:27:08" build="180206">
<value name="StartType" type="hex" data="02"/>
<value name="CmdLine" type="string" data=""/>
<value name="StartTasksFile" type="string" data=""/>
<value name="StartTasksName" type="string" data="{Shells::PowerShell}"/>
<value name="StartFarFolders" type="hex" data="00"/>
<value name="StartFarEditors" type="hex" data="00"/>
@JanDeDobbeleer
JanDeDobbeleer / .env
Last active August 15, 2017 18:25
GitHub Tools
XHUB_SECRET=your_secret
GITHUB_API_KEY=your_personal_access_token
@JanDeDobbeleer
JanDeDobbeleer / mastodon.herebedragons.io
Last active May 2, 2017 06:07
nginx configuration for mastodon.herebedragons.io
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
# set root and server_name here
root /var/www/html;
server_name mastodon.herebedragons.io;
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
listen [::]:80;
server_name mastodon.herebedragons.io;
return 301 https://$host$request_uri;
@JanDeDobbeleer
JanDeDobbeleer / start.ps1
Last active November 8, 2018 22:00
Boxstarter
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
cinst fiddler4
cinst git
cinst gpg4win-vanilla
cinst keeweb
cinst slack
cinst VisualStudioCode
cinst vlc
cinst transmission-qt
@JanDeDobbeleer
JanDeDobbeleer / darkconemu.xml
Last active August 10, 2023 09:41
DarkConEmu.xml
<key name="Palette4" modified="2016-08-07 14:21:13" build="160724">
<value name="Name" type="string" data="DarkConEmu"/>
<value name="ExtendColors" type="hex" data="01"/>
<value name="ExtendColorIdx" type="hex" data="0f"/>
<value name="TextColorIdx" type="hex" data="0f"/>
<value name="BackColorIdx" type="hex" data="0d"/>
<value name="PopTextColorIdx" type="hex" data="0d"/>
<value name="PopBackColorIdx" type="hex" data="0d"/>
<value name="ColorTable00" type="dword" data="001e1e1e"/>
<value name="ColorTable01" type="dword" data="00cc7a00"/>

Keybase proof

I hereby claim:

  • I am jandedobbeleer on github.
  • I am jandedobbeleer (https://keybase.io/jandedobbeleer) on keybase.
  • I have a public key ASDWX_t2ynzDTNCKIZy3QqfKi1QOdeRhXmW_BLTd4sp6FQo

To claim this, I am signing this object:

@JanDeDobbeleer
JanDeDobbeleer / commit-msg
Last active March 7, 2017 09:40
A commit-msg hook Enrico Campidoglio demonstrated at Techorama 2016. I found the code on his blog and as I don't trust myself, I tweaked the script to rerun the check until I get it right.
#!/bin/sh
#
# A hook script that checks the length of the commit message.
#
# Called by "git commit" with one argument, the name of the file
# that has the commit message. The hook should exit with non-zero
# status after issuing an appropriate message if it wants to stop the
# commit. The hook is allowed to edit the commit message file.
DEFAULT="\033[0m"
@JanDeDobbeleer
JanDeDobbeleer / phone.runsettings
Created April 6, 2016 10:41
.runsettings file example
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<!-- Configurations that affect the Test Framework -->
<RunConfiguration>
<!-- Path relative to solution directory -->
<ResultsDirectory>.\TestResults</ResultsDirectory>
<!-- [x86] | x64
- You can also change it from menu Test, Test Settings, Default Processor Architecture -->
<TargetPlatform>x86</TargetPlatform>
#requires -Version 3
function Get-SolutionFolder
{
return (Get-Item $PSScriptRoot).Parent.FullName
}
function Get-SolutionPath
{
param
(