This file contains 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
#!/usr/bin/env bash | |
if tmux list-sessions ; then | |
tmux new-window "bash -c \"export STARTUP_DIRT=$(pwd); zsh\"" | |
tmux a | |
else | |
tmux new-session "bash -c \"export STARTUP_DIRT=$(pwd); zsh\"" | |
fi |
This file contains 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
/////////////////////////////////////////////////////////////////////// | |
// TOP SECRET METEORCODE ENGINEERING BULLSHIT -- DO NOT STEAL // | |
// (c) Hawk Weisman, all rights reserved 'n' stuff // | |
/////////////////////////////////////////////////////////////////////// | |
type Payload: Map[String,Object] | |
abstract class Event ( | |
protected val payload: Payload, | |
protected var valid: Boolean = true | |
) extends (Payload)(prefunc: (Payload) => Boolean = { |