- Ryhmänjohtaja saa kierroksen alussa ilmaisen komentoactionin koko ryhmälle
- Kolme komentoa: a) “hyökkää X:ää vastaan” b) “parempaan ilmasuojaan”
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
package main | |
import ( | |
"bufio" | |
"bytes" | |
"fmt" | |
"image" | |
"image/jpeg" | |
"io/ioutil" | |
"os" |
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
# Traefik compose file | |
services: | |
reverse-proxy: | |
# The official v2.1 Traefik docker image | |
image: traefik:v2.2.1 | |
container_name: traefik | |
# Enables the web UI and tells Traefik to listen to docker | |
command: | |
- --log.level=INFO |
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
0.0.0.0:80 { | |
tls off | |
status 404 / | |
} |
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
# Installation | |
# sudo apt-get install libglib2.0-dev | |
# sudo pip install git+https://github.com/kipe/ruuvitag.git | |
# sudo pip install paho-mqtt | |
# | |
# Run with: sudo python3 tag_to_mqtt.py | |
# | |
# Run this script in a while loop or from cron | |
from ruuvitag import RuuviTag |
This file has been truncated, but you can view the full file.
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
"Order","Level","Code","Parent","Code","Parent","Description","Self-explanatory texts" | |
"152692","1","010010000090",,"I",,"SECTION I - LIVE ANIMALS; ANIMAL PRODUCTS", | |
"152693","2","010020000090","010010000090","01","I","CHAPTER 1 - LIVE ANIMALS","LIVE ANIMALS" | |
"152694","3","010100000080","010020000090","0101","01","Live horses, asses, mules and hinnies","Live horses, asses, mules and hinnies" | |
"152695","4","010110000080","010100000080","0101 10","0101"," - Pure-bred breeding animals","Pure-bred breeding horses and asses" | |
"152696","4","010190000080","010100000080","0101 90","0101"," - Other","Live horses, asses, mules and hinnies (excl. pure-bred for breeding)" | |
"152697","3","010200000080","010020000090","0102","01","Live bovine animals","Live bovine animals" | |
"152698","4","010210000080","010200000080","0102 10","0102"," - Pure-bred breeding animals","Pure-bred breeding bovines" | |
"152699","4","010290000080","010200000080","0102 90","0102"," - Other","Live bovine animals (excl. pure-bred for breeding)" | |
"152700","3", |
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
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" |
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
- name: Check timezone | |
command: cat /etc/timezone | |
changed_when: no | |
register: current_timezone | |
- name: Change timezone | |
become: yes | |
copy: content='{{ timezone }}' | |
dest=/etc/timezone | |
owner=root |
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
/bind meta-1 change_window 1 | |
/bind meta-2 change_window 2 | |
/bind meta-4 change_window 4 | |
/bind meta-3 change_window 3 | |
/bind meta-5 change_window 5 | |
/bind meta-6 change_window 6 | |
/bind meta-7 change_window 7 | |
/bind meta-8 change_window 8 | |
/bind meta-9 change_window 9 | |
/bind meta-0 change_window 10 |
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
import requests | |
from datetime import datetime | |
from dateutil import parser | |
from dateutil.relativedelta import relativedelta | |
host = 'localhost' | |
port = 9090 | |
token = 'LOL' | |
get_movies_endpoint = '/api/series/?in_config=all&page=1&number_of_shows=100&sort_by=show_name&order=desc' |
NewerOlder