Skip to content

Instantly share code, notes, and snippets.

View jimbuck's full-sized avatar

Jim Buck jimbuck

View GitHub Profile
@jimbuck
jimbuck / buffered.ts
Created November 30, 2021 21:51
Creates a buffered function using RXJS.
import { Subject, fromEvent } from 'rxjs';
import { buffer, map, filter } from 'rxjs/operators';
function buffered<T>(handler: ((values: T[]) => Promise<void>)) {
const valueQueue = new Subject<T>();
const bufferTrigger = new Subject<void>();
let busy = false;
let destroyed = false;
const sub = valueQueue.pipe(
@jimbuck
jimbuck / debug.css
Created August 25, 2021 13:05
Show debug data on a site.
.show-debug *[data-debug]::after {
content: attr(data-debug);
color: #f00;
position: absolute;
opacity: 0.1;
}
.show-debug *[data-debug]:hover::after {
opacity: 1;
}
@jimbuck
jimbuck / setup-next-ts.bat
Last active August 30, 2019 03:45
Next.js Setup for TypeScript
npm init -y
npm i -P react react-dom next bootstrap react-bootstrap @zeit/next-css @zeit-next-less
npm i -D typescript @types/react @types/react-dom @types/node
npx npm-add-script -k dev -v next -f
npx npm-add-script -k build -v "next build" -f
npx npm-add-script -k start -v "next start" -f
mkdir pages
mkdir components
@jimbuck
jimbuck / update-node.sh
Created May 25, 2018 21:06
PI Zero NodeJS
#!/bin/bash
version=$1
if [ -z "$version" ]; then
echo Must provide a version!
exit;
fi
filename=node-v$version-linux-armv6l
@jimbuck
jimbuck / bump.ps1
Created October 4, 2017 00:05
Bump version of csproj
param(
[string]$csproj = $(throw "-csproj is required."),
[ValidateSet('major', 'minor', 'patch')][string]$part = "patch"
)
Function BumpVersion([string]$csprojPath, [int]$majorInc, [int]$minorInc, [int]$patchInc) {
[xml]$xml = (Get-Content $csprojPath)
$buildInfo = $xml.Project.PropertyGroup | Where-Object {$_.Label -eq 'BuildInfo'}
#split product version in SemVer language
@jimbuck
jimbuck / index.js
Created May 11, 2017 12:52
Get List of Media Devices (not streams)
navigator.mediaDevices.enumerateDevices()
.then(devices => devices.map(d => `[${d.kind}] ${d.label}`))
.then(console.log.bind(console))
@jimbuck
jimbuck / WindowKeeper.cs
Last active May 3, 2016 20:49
Simple class that maintains the position and size of console windows when debugging in VS. Makes rapid debug cycles a little less frustrating.
using System;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using System.Timers;
namespace CodeGear.Utilities
{
@jimbuck
jimbuck / make64-bookmarklet.txt
Last active December 23, 2015 16:12
Converts the current image to the base64 equivalent.
javascript: !function(){var n=new XMLHttpRequest;n.responseType="blob",n.onload=function(){var e=new FileReader;e.onloadend=function(){window.open(e.result,"_blank")},e.readAsDataURL(n.response)},n.open("GET",window.location.href),n.send()}();
@jimbuck
jimbuck / filegen
Created December 19, 2014 18:56
Bulk File Generator
#!/usr/bin/env bash
barWidth=60 # constant
filePadding=8 # constant
extension="file" # constant
count=$1
size=$2
resetFlag=$3
@jimbuck
jimbuck / auto-cookies.js
Last active August 29, 2015 14:05
AutoCookieClicker
//javascript:
(function(){
var bigCookie = document.getElementById('bigCookie');
var cookieClickers;
if(Notification.permission !== 'granted'){
Notification.requestPermission( function(status) {
enableNotifications();
});
} else {
enableNotifications();