Skip to content

Instantly share code, notes, and snippets.

View harryi3t's full-sized avatar
👻
Just do it

Harendra Singh harryi3t

👻
Just do it
  • Rippling
  • Bangalore
View GitHub Profile
@dasgoll
dasgoll / gist:9b341eaa0b54815f28422384092e0f80
Last active February 2, 2025 22:00
Use ⌥ ← and ⌥→ to jump forwards / backwards words in iTerm 2, on OS X
Preferences -> Profiles -> Keys
Left Key change from "Normal" to "Esc+"
Right Key change from "Normal" to "Esc+"
Add Keyboard Shortcut
Keyboard Shortcut: ⌥←
Action: Send Escape Sequence
Esc+: b
Keyboard Shortcut: ⌥→
@yelouafi
yelouafi / algebraic-effects-series-1.md
Last active March 27, 2025 07:46
Operational Introduction to Algebraic Effects and Continuations

Algebraic Effects in JavaScript part 1 - continuations and control transfer

This is the first post of a series about Algebraic Effects and Handlers.

There are 2 ways to approach this topic:

  • Denotational: explain Algebraic Effects in terms of their meaning in mathematics/Category theory
  • Operational: explain the mechanic of Algebraic Effects by showing how they operate under a chosen runtime environment

Both approaches are valuables and give different insights on the topic. However, not everyone (including me), has the prerequisites to grasp the concepts of Category theory and Abstract Algebra. On the other hand, the operational approach is accessible to a much wider audience of programmers even if it doesn't provide the full picture.

@staltz
staltz / introrx.md
Last active April 3, 2025 04:45
The introduction to Reactive Programming you've been missing
#!/bin/bash
#
# Bash script to setup headless Selenium (uses Xvfb and Chrome)
# (Tested on Ubuntu 12.04) trying on ubuntu server 14.04
# Add Google Chrome's repo to sources.list
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee -a /etc/apt/sources.list
# Install Google's public key used for signing packages (e.g. Chrome)
# (Source: http://www.google.com/linuxrepositories/)