Create a secrets file:
touch ~/.secret
Make sure it looks like this:
#!/bin/bash
package main | |
import "fmt" | |
type Route struct { | |
routes []int | |
routesM map[int]bool | |
} | |
type track struct { |
#!/bin/bash | |
BRANCH=$1 | |
if [ "$BRANCH" == "" ]; then | |
BRANCH=$(git branch | grep "*" | sed s,*\ *,,g) | |
fi | |
if [ "$BRANCH" == "" ]; then | |
echo -n "No branch found" | |
exit 22; | |
fi | |
GIT_HASH=$(git ls-remote [email protected]:gopherhut/core $BRANCH | awk -F' ' '{print $1}') |
import ( | |
"strings" | |
"sort" | |
) | |
type meta struct { | |
count int | |
matchWords map[string]bool | |
} |
package main | |
import ( | |
"fmt" | |
"reflect" | |
"strings" | |
"unsafe" | |
) | |
func main() { |
package main | |
import ( | |
"fmt" | |
"sync" | |
) | |
func main() { | |
input := []int{1, 2, 3, 4, 5} | |
in := make(chan int) |
// To execute Go code, please declare a func main() in a package "main" | |
package main | |
import ( | |
"fmt" | |
// "strings" | |
) | |
set-window-option -g xterm-keys on | |
set default-terminal "screen-256color" | |
set -ga terminal-overrides ",xterm-256color*:Tc" | |
set-window-option -g mode-keys vi | |
# split panes using | and - | |
unbind '"' | |
unbind % | |
bind | split-window -h | |
bind - split-window -v |
Create a secrets file:
touch ~/.secret
Make sure it looks like this:
#!/bin/bash
#!/bin/sh | |
# | |
DEPENDENCY_XDOTOOL=xdotool | |
DEPENDENCY_TMUXINATOR=tmuxinator | |
# Dependencies: | |
if ! type "$DEPENDENCY_XDOTOOL" > /dev/null; then | |
echo "$DEPENDENCY_XDOTOOL not found. installing it..." | |
sudo apt install xdotool | |
fi | |
if ! type "$DEPENDENCY_TMUXINATOR" > /dev/null; then |
https://www.scala-sbt.org/download.html?_ga=2.245160197.1010337534.1536233338-1561563464.1536228361