I hereby claim:
- I am narvey on github.
- I am narvey (https://keybase.io/narvey) on keybase.
- I have a public key ASA6aH67S1zZaRHa3p3UWn-fl7VFJHrsQd48Ffpa8TOPrwo
To claim this, I am signing this object:
var modeBtn = BTN1; //set the pin here used for mode button. | |
var actBtn = A2; | |
var flashDelay = 370; //milliman | |
pinMode(modeBtn, "input_pulldown"); | |
pinMode(actBtn, "input_pulldown"); | |
function blink(times, led) { | |
times = +times; | |
var count = 0; | |
var ivF = setInterval(function () { |
var title = "Put Title with num 8345834 Here" | |
var nums = match(/\d\d+\d/)[0] | |
var html = "<h4>" + title + "</h4><img src=\"http://api.labelary.com/v1/printers/8dpmm/labels/2.5x1.2/0/^xa^fo100,100^bcn,100^fd" + nums + "^fs^xz\" />" |
{ | |
"$jason": { | |
"head": { | |
"title": "Afternoon Devotions", | |
"description": "for Harveys", | |
"offline": "true", | |
"styles": {}, | |
"actions": {"$load":[{ | |
"{{#if $global.curDate}}": { | |
"type": "$util.banner", |
Windows Registry Editor Version 5.00 | |
;disable CAPS | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] | |
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,00,00,3a,00,00,00,00,00 | |
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
"DisallowShaking"=hex:01 |
contacts = [] | |
;[...document.getElementsByClassName("household")].forEach(div=> | |
{ | |
let names = [... div.getElementsByTagName("b")].map(e=>e.innerText) | |
let results = /(\w+)['’]s Cell ([-0-9]+)/.exec(div.innerText) | |
let surname = names[0] | |
if (surname.split(" ").length>1)//check for the unmarried | |
{ | |
surname = surname.split(" ")[1] //grab surname | |
console.log(surname) |
deb http://deb.debian.org/debian/ stretch main contrib non-free | |
deb-src http://deb.debian.org/debian/ stretch main contrib non-free | |
deb http://security.debian.org/ stretch/updates main contrib non-free | |
deb-src http://security.debian.org/ stretch/updates main contrib non-free |
#Just a couple of lines | |
#written in Powershell but how would you know? |
I hereby claim:
To claim this, I am signing this object:
working = working.replace(/C/,'2') | |
.replace(/H/,'7') | |
.replace(/E/,'4') | |
.replace(/A/,'0') | |
.replace(/D/,'3') | |
.replace(/B/,'1') | |
.replace(/O/,'e') | |
.replace(/J/,'9') | |
.replace(/K/,'a') | |
.replace(/M/,'c') |
$daysBack = 3 | |
$list = ls "$env:LOCALAPPDATA\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets" | ` | |
Where-Object {$_.Length -gt 90000 -and ([datetime]::Now - $_.LastWriteTime) -lt [timespan]::FromDays($daysBack)} | |
foreach ($file in $list) | |
{ | |
& "C:\Program Files\Mozilla Firefox\firefox.exe" $file.FullName | |
} |