I hereby claim:
- I am harakka on github.
- I am harakka (https://keybase.io/harakka) on keybase.
- I have a public key ASAMsqCW776Qyj3vs9_5tw7RNoRLLUTBrW-y6vE6LqZkrwo
To claim this, I am signing this object:
with open("tools/spell_checker/dictionary.txt", "r", encoding="utf-8") as dict_lines: | |
sorted_dict_lines = sorted(dict_lines, key=lambda v: (v.lower(), v)) | |
with open("tools/spell_checker/dictionary.txt", "w", encoding="utf-8") as dict_lines: | |
for line in sorted_dict_lines: | |
dict_lines.write(line) |
diff --git a/data/json/furniture_and_terrain/furniture-decorative.json b/data/json/furniture_and_terrain/furniture-decorative.json | |
index c168cc0cd0..85d9271eff 100644 | |
--- a/data/json/furniture_and_terrain/furniture-decorative.json | |
+++ b/data/json/furniture_and_terrain/furniture-decorative.json | |
@@ -232,6 +232,24 @@ | |
] | |
} | |
}, | |
+ { |
e{"id":"feces_bird","fun":-25} | |
{"id":"brew_mycus_wine","fun":4} | |
{"id":"brew_marloss_wine","fun":4} | |
{"id":"brew_whiskey","fun":-15} | |
{"id":"wash_whiskey","fun":2} | |
{"id":"brew_gin","fun":-15} | |
{"id":"gin_mash","fun":2} | |
{"id":"brew_sake","fun":-5} | |
{"id":"brew_soy_sauce","fun":-15} | |
{"id":"soy_sauce_unstrained","fun":-15} |
[ | |
{ | |
"type": "colordef", | |
"BLACK": [4, 4, 22], | |
"DGRAY": [92, 92, 92], | |
"GRAY": [132, 132, 132], | |
"WHITE": [211, 211, 211], | |
"MAGENTA": [102, 51, 153], | |
"LMAGENTA": [136, 17, 119], | |
"RED": [170, 51, 102], |
<?php | |
/** | |
* @package ARPSMissions | |
*/ | |
/* | |
Plugin Name: ARPSMissions | |
Description: Creates and manages ArmA2-mission related posts, based on files with the Folk naming scheme. | |
Version: 1.0.0 | |
Author: Antti 'harakka' Riikonen | |
License: Modified BSD license |
#!/usr/bin/python | |
# Original file: https://github.com/adafruit/Adafruit_Python_SSD1306/blob/master/examples/stats.py | |
# Modified by Antti 'harakka' Riikonen for personal use, to display readings | |
# from AM2302 sensor, the library for which is also from Adafruit. You rock. | |
# Original license follows. | |
# Copyright (c) 2017 Adafruit Industries | |
# Author: Tony DiCola & James DeVito | |
# |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# MIT License | |
# Copyright (c) 2019 Antti Riikonen | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is |
// todo: figure out common class for bipod/tripod | |
_allCfgs = []; | |
{ | |
for "_i" from 0 to ((count _x) -1) do { | |
_item = _x select _i; | |
_cfgName = configName(_item); | |
if (isClass _item && getText(_x >> _cfgName >> "displayName") != "" && getText(_x >> _cfgName >> "picture") != "") then { | |
_allCfgs = _allCfgs + [([_item] call BIS_fnc_configPath)]; |