This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- https://ellie-app.com/9pLFFWd4m7wa1 | |
module Main exposing (..) | |
import Browser | |
import Html exposing (Html, button, div, text) | |
import Html.Events exposing (onClick) | |
import Process | |
import Task |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Setup GOPATH for individual projects | |
function go { | |
path="$HOME/go" | |
cdir=$PWD | |
while [ "$cdir" != "/" ]; do | |
if [ -e "$cdir/.gopath" ]; then | |
path="$cdir" | |
break | |
fi | |
cdir=$(dirname "$cdir") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git ls-files --others | xargs tar cf un-versioned.tar |