Skip to content

Instantly share code, notes, and snippets.

@anthonycoffey
anthonycoffey / jetbrains-regex-match-all-log-statements
Last active August 23, 2025 23:45
Match all console.log() statements in a project with JetBrains RegEx
console.log\((.+)\);\n # this will match most console.log(); statements, unless they contain brackets or operators
@mshafrir
mshafrir / states_hash.json
Created May 9, 2012 17:05
US states in JSON form
{
"AL": "Alabama",
"AK": "Alaska",
"AS": "American Samoa",
"AZ": "Arizona",
"AR": "Arkansas",
"CA": "California",
"CO": "Colorado",
"CT": "Connecticut",
"DE": "Delaware",