Skip to content

Instantly share code, notes, and snippets.

View reedjones's full-sized avatar
👾
chilling

Reed Jones reedjones

👾
chilling
  • oakland, california
  • 11:07 (UTC -07:00)
View GitHub Profile
@reedjones
reedjones / example.txt
Created October 20, 2024 02:18
test gist
hello world
@reedjones
reedjones / javascript-snippets.md
Last active October 12, 2024 16:50
Javascript Code Snippets

Javascript Code Snippets

hello

asdf

cache-refresh-stratedgy

@reedjones
reedjones / gist:6a1b9f7551ece97144965500a6b34eea
Created September 29, 2024 00:28
v0-download-button.html
<button class="focus-visible:ring-offset-background inline-flex shrink-0 cursor-pointer items-center justify-center gap-1.5 whitespace-nowrap text-nowrap border font-medium outline-none ring-blue-600 transition-all focus-visible:ring-2 focus-visible:ring-offset-1 disabled:pointer-events-none disabled:cursor-not-allowed disabled:ring-0 has-[:focus-visible]:ring-2 aria-disabled:pointer-events-none aria-disabled:cursor-not-allowed aria-disabled:ring-0 [&amp;>svg]:pointer-events-none [&amp;>svg]:size-4 [&amp;_svg]:shrink-0 hover:bg-alpha-200 focus:bg-alpha-200 focus-visible:bg-alpha-200 border-transparent bg-transparent hover:border-transparent focus:border-transparent focus-visible:border-transparent disabled:border-transparent disabled:bg-transparent disabled:text-gray-400 aria-disabled:border-transparent aria-disabled:bg-transparent aria-disabled:text-gray-400 px-2 text-xs has-[>kbd]:gap-2 has-[>svg]:px-1 has-[>kbd]:pr-1 size-[22px] rounded-md text-gray-500" aria-label="Download" data-state="closed"><span aria
@reedjones
reedjones / cli-app-typer.py
Last active September 11, 2024 23:42 — forked from mrjk/cli-app-typer.py
A quite complete example of python CLI Typer boilerplate [python]
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Version: 08-2024
"""{{ app_name }} CLI interface
This CLI provides a similar experience as the git CLI, but in Python with Typer.
Example:
``` py title="test.py"
@reedjones
reedjones / getAllVariables.js
Created August 4, 2024 07:49 — forked from vneri/getAllVariables.js
How to get all variables and search through their values in JavaScript
function getAllVariables(){
var searchVarByValue = function(searchString){
var values = Object.keys(this.ValueToVar);
var findings = [];
for (var i=0; i< values.length; i++){
if (values[i] == undefined)
continue;
var position = values[i].toLowerCase().indexOf(searchString.toLowerCase());
if (position != -1){
findings.push({ 'variable': this.ValueToVar[values[i]], 'value' : values[i] });
@reedjones
reedjones / db.py
Created July 30, 2024 08:11 — forked from rustprooflabs/db.py
Python and Postgres - psycopg2 quick example
import getpass
import psycopg2
import psycopg2.extras
def select_one(sql_raw, params):
""" Runs SELECT query that will return zero or 1 rows. `params` is required."""
return _execute_query(sql_raw, params, 'sel_single')
@reedjones
reedjones / tl06001_bg.geo_30ps.topo.json
Created July 25, 2024 08:30 — forked from rdhyee/tl06001_bg.geo_30ps.topo.json
simplified topjson Census block groups for Alameda County
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@reedjones
reedjones / Search-FilesContent.ps1
Created July 17, 2024 17:58
powershell Get files that match the inclusion and exclusion paths and filename
# Search-FilesContent.ps1
param (
[string]$IncludePath = "*",
[string]$ExcludePath = "*node_modules*",
[string]$Filename = "*",
[string[]]$IncludeContent = @(),
[string[]]$ExcludeContent = @()
)
@reedjones
reedjones / gist:a2b4e2998fbf81ae282257a99edcf677
Created May 13, 2024 21:10
cloud storage containing a bunch of audio sounds/samples
https://pads.storage.googleapis.com/
https://pads.storage.googleapis.com/aug_loops/17fe127a-52b2-442a-990c-e31ea4fc82cb/bpm-122__ps-1/31_leads_120bpm.wav
@reedjones
reedjones / branches.md
Last active May 12, 2024 05:37
Git Branches explainer

Here's how to look at branches: every commit is like a branch, and a branch is just a pointer to a specific commit (so a branch is basically a commit with a pointer to a commit)

main --- c --- c1 

reed creates a commit with a pointer to c1, so we add a 'branch' which is just a commit (c2)

c1 <- c2 <--> r1 -- r2 --r3  --> reed makes a pull request