Skip to content

Instantly share code, notes, and snippets.

@algofreak
algofreak / list.md
Created November 29, 2024 06:45 — forked from ih2502mk/list.md
Quantopian Lectures Saved
@algofreak
algofreak / idea
Created December 5, 2016 23:13 — forked from chrisdarroch/idea
Open a project in IntelliJ IDEA from your command line!
#!/bin/sh
# check for where the latest version of IDEA is installed
IDEA=`ls -1d /Applications/IntelliJ\ * | tail -n1`
wd=`pwd`
# were we given a directory?
if [ -d "$1" ]; then
# echo "checking for things in the working dir given"
wd=`ls -1d "$1" | head -n1`