- Tohtori Mustekala
- Hiekkamies
- Moukantappaja
- Tärisyttäjä
- Robottimestari
- Valomestari
- Virvatuli
- Venom
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
const bookingMachine = Machine({ | |
id: "booking", | |
initial: "idle", | |
context: { | |
fetched: { | |
purposes: undefined, | |
specifiers: undefined, | |
servicePoints: undefined, | |
appointmentTypes: undefined, | |
}, |
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
# Simple nginx reverse proxy for using CORS enabled frontend with non-CORS backend in local development environment | |
# | |
# Usage: | |
# docker run --name reverse-proxy -v /path/to/this/file/reverse-proxy.conf:/etc/nginx/conf.d/default.conf:ro -p 8080:80 -d nginx | |
server { | |
listen 80; | |
server_name localhost; | |
client_max_body_size 1024M; |
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
-- open new iTerm window for each Alfred terminal command | |
-- for iTerm 3.1.1+ | |
-- based on script by Sinan (https://github.com/stuartcryan/custom-iterm-applescripts-for-alfred) | |
on alfred_script(q) | |
if application "iTerm2" is running or application "iTerm" is running then | |
run script " | |
on run {q} | |
tell application \"iTerm\" | |
activate |
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
// rates | |
cl_cmdrate "128" | |
cl_updaterate "128" | |
cl_interp_ratio "1" | |
cl_interp "0" | |
rate "128000" | |
fps_max "0" | |
// crosshair | |
cl_crosshair_drawoutline "1" |
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
use strict; | |
use vars qw($VERSION %IRSSI); | |
use Irssi qw(command_bind signal_add); | |
use IO::File; | |
$VERSION = '0.69'; | |
%IRSSI = ( | |
authors => 'Joonas Tiala', | |
contact => '[email protected]', |
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
#!/bin/bash | |
SESSION=`basename $PWD` | |
tmux -2 new-session -d -s $SESSION | |
tmux rename-window -t $SESSION:1 vim | |
tmux split-window -h | |
tmux split-window -v | |
tmux select-pane -t 0 | |
tmux resize-pane -R 30 |
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
<?php | |
$countries = array( | |
"AC" => "Ascension Island", | |
"AD" => "Andorra", | |
"AE" => "Arabiemiirikunnat", | |
"AF" => "Afganistan", | |
"AG" => "Antigua ja Barbuda", | |
"AI" => "Anguilla", | |
"AL" => "Albania", |