start new:
tmux
start new with session name:
tmux new -s myname
| #!/bin/bash | |
| # Set the ROOM_ID & AUTH_TOKEN variables below. | |
| # Further instructions at https://www.hipchat.com/docs/apiv2/auth | |
| ROOM_ID=XXX | |
| AUTH_TOKEN=XXX | |
| MESSAGE="Hello world!" | |
| curl -H "Content-Type: application/json" \ |
| public class SomeActivity extends AppCompatActivity { | |
| Realm realm; | |
| @Override | |
| public void onCreate(Bundle bundle) { | |
| super.onCreate(bundle); | |
| realm = Realm.getDefaultInstance(); | |
| } | |
| @Override |
| { pkgs ? import <nixpkgs> {} }: | |
| pkgs.mkShell { | |
| buildInputs = [ | |
| pkgs.hello | |
| ]; | |
| shellHook = '' | |
| echo env1 | |
| ''; |
See also List of materials about Software Design in Haskell
| Junior | Middle | Senior | Architect | |
|---|---|---|---|---|
| Haskell level | Basic Haskell | Intermediate Haskell | Advanced Haskell | Language-agnostic |
| Haskell knowledge scope | Learn you a Haskell | Get programming with Haskell | Haskell in Depth | Knows several languages from different categories |
| Get programming with Haskell | Haskell in Depth | Functional Design and Architecture | ||
| Soar with Haskell | [Soar |
WARNING: THIS GIST IS OUT OF DATE AND NO LONGER RELEVANT