Skip to content

Instantly share code, notes, and snippets.

View Koleok's full-sized avatar
🧲
drawn to the future

Kyle Chamberlain Koleok

🧲
drawn to the future
View GitHub Profile
@Koleok
Koleok / README.md
Created June 8, 2025 03:32 — forked from reegnz/README.md
Implementing a jq REPL with fzf

Implementing a jq REPL with fzf

Update: I created jq-zsh-plugin that does this.

One of my favourite tools of my trade is jq. It essentially enables you to process json streams with the same power that sed, awk and grep provide you with for editing line-based formats (csv, tsv, etc.).

Another one of my favourite tools is fzf.

@Koleok
Koleok / SketchSystems.spec
Last active June 20, 2023 02:54 — forked from fv-hippo/SketchSystems.spec
# Dashboards
# Dashboards
Viewing
editDashboard -> EditingDashboard
addDashboard -> EditingDashboard
dashboardNameClicked -> EditingDashboardName
EditingDashboard
EditingDashboardIdle
startResizingWidget -> ResizingWidget
startRepositioningWidget -> RepositioningWidget
@Koleok
Koleok / gist:986542f29394f79c7b3a5b499117647e
Created February 1, 2017 22:04 — forked from stuart11n/gist:9628955
rename git branch locally and remotely
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote
@Koleok
Koleok / circle.yml
Last active December 9, 2016 17:58 — forked from nagelflorian/circle.yml
CircleCI File for Meteor using Velocity with Jasmine and Galaxy for deployment
machine:
node:
version: 7.2.0
dependencies:
cache_directories:
- "node_modules"
- "~/.npm"
- "~/_opt"
- "~/.meteor"