Skip to content

Instantly share code, notes, and snippets.

@datchley
datchley / react-redux-style-guide.md
Last active September 12, 2024 04:07
React + Redux Style Guide
@thegitfather
thegitfather / vanilla-js-cheatsheet.md
Last active September 2, 2024 13:10
Vanilla JavaScript Quick Reference / Cheatsheet
@theasta
theasta / openLC
Last active March 31, 2021 08:41
Download and open a file at a specific line and column
#!/bin/bash
# $1 has to match this pattern: http://example.com/file.js:3:10
# First get back the url, the line and the column
regex="(https?:.*):([0-9]+):([0-9]+)"
dir="/tmp/"
[[ $1 =~ $regex ]]