I hereby claim:
- I am 71 on github.
- I am 71 (https://keybase.io/71) on keybase.
- I have a public key ASBQya_3rkXhK63rxpae_sICqJTKCqbm5aUgYjseLWoycQo
To claim this, I am signing this object:
/* | |
______ _ _ _ _____ _ _ ___________ ___ ______ _____ ___________ | |
| ___| | | | | | ___| \ | |_ _| ___ \/ _ \ | ___ \/ ___| ___| ___ \ | |
| |_ | | | | | | |__ | \| | | | | |_/ / /_\ \| |_/ /\ `--.| |__ | |_/ / | |
| _| | | | | | | __|| . ` | | | | __/| _ || / `--. \ __|| / | |
| | | |___| |_| | |___| |\ | | | | | | | | || |\ \ /\__/ / |___| |\ \ | |
\_| \_____/\___/\____/\_| \_/ \_/ \_| \_| |_/\_| \_|\____/\____/\_| \_| | |
/* | |
______ _____ _____ _____ _ _ ___________ _____ | |
| ___ \ ___/ ___|_ _| | | || ___| ___ \ _ | | |
| |_/ / |__ \ `--. | | | |_| || |__ | |_/ / | | | | |
| /| __| `--. \ | | | _ || __|| /| | | | | |
| |\ \| |___/\__/ / | | | | | || |___| |\ \\ \_/ / | |
\_| \_\____/\____/ \_/ \_| |_/\____/\_| \_|\___/ | |
namespace SystemApp | |
{ | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using System.Diagnostics; | |
using System.Threading; | |
using System; | |
using System.Reflection; |
I hereby claim:
To claim this, I am signing this object:
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Runtime.CompilerServices; | |
using System.Threading.Tasks; | |
namespace Tests | |
{ | |
/// <summary> |
// ==UserScript== | |
// @name Facebook watcher | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Makes sure you don't spend too much time on Facebook | |
// @author You | |
// @require http://coffeescript.org/v1/browser-compiler/coffee-script.js | |
// @match https://www.facebook.com/* | |
// ==/UserScript== |
<# | |
.SYNOPSIS | |
Gets the status of an Ngrok user. | |
.EXAMPLE | |
Get-NgrokStatus -Credential (Get-Credential) | |
#> | |
function Get-NgrokStatus([Parameter(Mandatory=$true)] [PSCredential] $Credential) { | |
# Find CSRF Token | |
$Req = Invoke-WebRequest 'https://dashboard.ngrok.com/user/login' -UseBasicParsing -SessionVariable Session |
# Load all init scripts | |
Get-ChildItem $Home\OneDrive\Code\PowerShellInit\* -Include *.ps1 -Recurse | % { . $_ } |
<# | |
.SYNOPSIS | |
Creates a .zip file matching the submission format required by EPITA. | |
.EXAMPLE | |
Make-Submission -Author gregoire.geis -Nth 0 -Items ./TP0 -Exclude bin,obj -ReadMe "First submission!" | |
Make-Submission -Author gregoire.geis -Nth 0 -Items tp0.ml | |
#> | |
function Make-Submission ( | |
[Parameter(Mandatory=$true)] [string] $Author, |
; AutoHotKey script that sends the right symbols to Windows. | |
; Useful, since I can reprogram most of my keys on my keyboard, but not special characters. | |
#NoEnv | |
SendMode Input | |
$1::Send {1} | |
$2::Send {2} | |
$3::Send {3} | |
$4::Send {4} |