Skip to content

Instantly share code, notes, and snippets.

View Ytrog's full-sized avatar

Ytrog

  • ABC de Cirkel
  • Netherlands
View GitHub Profile
@Ytrog
Ytrog / Tibees interesting links exp1
Created December 31, 2020 10:13
Manual export of a part of the interesting-links channel from Tibees
@Ytrog
Ytrog / dnd.ahk
Last active March 27, 2019 15:27
DND AutoHotKey script
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; ctrl+o
^o::
Send, (())
Send, {Left}{Left}
Return

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

cls
$path = "<yourpath>.csproj"
[xml] $file = Get-Content $path
$ns = new-object Xml.XmlNamespaceManager $file.NameTable
$ns.AddNamespace("msb", "http://schemas.microsoft.com/developer/msbuild/2003")
$refs = $file.SelectNodes("//msb:Reference", $ns)
$prefs = $file.SelectNodes("//msb:ProjectReference", $ns)
@Ytrog
Ytrog / wufoo-form.css
Last active May 14, 2016 12:46
Wufoo custom css
.notBold legend
{
font-weight: normal !important;
}
@Ytrog
Ytrog / choco.ps1
Last active January 3, 2016 07:59
my choco bootstrapper
choco install googlechrome linqpad evernote free-hex-editor-neo peazip emacs sumatrapdf doublecmd windirstat everything fiddler4 xmind notepadplusplus sysinternals --force
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using NUnit.Framework;
namespace MyProject
{
[TestFixture]