I hereby claim:
- I am dmorrison42 on github.
- I am dmorrison42 (https://keybase.io/dmorrison42) on keybase.
- I have a public key ASC5-Et1PU1_wdES1YxHy-Mt4uEVZ3YY_sSFkgNMJPgSjQo
To claim this, I am signing this object:
#!/usr/bin/env python | |
# There are a few logical leaps here that should be documented in a writeup | |
# In the mean time this is a simple proof that needs some verification | |
from sympy import Eq, symbols, solve | |
from itertools import combinations | |
from numpy import choose | |
s11, s21, s12, s22 = symbols('s11 s21 s12 s22') | |
c11, c21, c12, c22 = symbols('c11 c21 c12 c22') |
<script> | |
!(function () { | |
const url = 'http://192.168.1.41:8060'; | |
function keypress(button) { | |
const httpRequest = new XMLHttpRequest(); | |
httpRequest.open('POST', url + '/keypress/' + button, true); | |
httpRequest.send(); | |
} | |
window.keypress = keypress; |
/* Usage: Import after Vue but before `new Vue` | |
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
<script src="auto-persist.js"></script> | |
... | |
<script src="script.js"></script> | |
*/ | |
Vue.use({ | |
install(Vue) { | |
const storageName = 'storage'; | |
let restored = false; |
#!/usr/bin/env python | |
# Dependencies: | |
# ffmpeg: https://www.ffmpeg.org/download.html | |
# fpcalc: https://acoustid.org/chromaprint | |
from datetime import datetime | |
import os | |
import os.path | |
import json | |
import math | |
import shutil |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Dynamic; | |
using System.Globalization; | |
using System.Linq; | |
using System.Runtime.ExceptionServices; | |
using System.Text; |
I hereby claim:
To claim this, I am signing this object:
private async void button1_Click(object sender, EventArgs e) | |
{ | |
await Task.Delay(1000); | |
await Task.Run(() => | |
{ | |
var fileName = @"C:\Users\dan\Desktop\Folder\bitmap.png"; | |
var subwindow = new Slave(); | |
subwindow.ShowInTaskbar = false; | |
subwindow.Show(); | |
subwindow.DesktopLocation = new Point(int.MinValue, int.MinValue); |