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
IGUI_FR = { | |
IGUI_ItemCat_weaponAxe = "Arme - Hache", | |
IGUI_ItemCat_weaponAxe_crafted = "Arme - Hache - Fabriqué", | |
IGUI_ItemCat_weaponAxe_improvised = "Arme - Hache - Improvisé", | |
IGUI_ItemCat_weaponBlade = "Arme - Lame", | |
IGUI_ItemCat_weaponBlade_crafted = "Arme - Lame - Fabriqué", | |
IGUI_ItemCat_weaponBlade_improvised = "Arme - Lame - Improvisé", | |
IGUI_ItemCat_weaponBlunt = "Arme - Émoussé", | |
IGUI_ItemCat_weaponBlunt_crafted = "Arme - Émoussé - Fabriqué", | |
IGUI_ItemCat_weaponBlunt_improvised = "Arme - Émoussé - Improvisé", |
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
<li>zetrith.prepatcher</li> | |
<li>brrainz.harmony</li> | |
<li>bs.fishery</li> | |
<li>ludeon.rimworld</li> | |
<li>bs.performance</li> | |
<li>ludeon.rimworld.royalty</li> | |
<li>ludeon.rimworld.ideology</li> | |
<li>ludeon.rimworld.biotech</li> | |
<li>ludeon.rimworld.anomaly</li> | |
<li>vanillaexpanded.backgrounds</li> |
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
[ | |
{ | |
"Database": "./GeoLite2-City.mmdb", | |
"Records": [ | |
{ | |
"Network": "172.217.20.206/19", | |
"Record": { | |
"continent": { | |
"code": "NA", | |
"geoname_id": 6255149, |
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
Version=4 | |
Map.AllowMiniMap=false | |
Map.AllowWorldMap=true | |
Map.MapAllKnown=false | |
# Controls the zombie movement rate.\nDefault=Fast Shamblers | |
ZombieLore.Speed=2 |
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
# Result of `code --list-extensions` | |
aaron-bond.better-comments | |
alefragnani.project-manager | |
bmewburn.vscode-intelephense-client | |
bradlc.vscode-tailwindcss | |
bungcip.better-toml | |
byCedric.vscode-expo | |
dcortes92.FreeMarker | |
eamodio.gitlens | |
ecmel.vscode-html-css |
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 | |
set -e | |
# Usage: bash setup.sh | |
# This script is supposed to be ran with root user. | |
# @see https://dockerswarm.rocks/gitlab-ci/ | |
# GitLab runner setup | |
register_token=${GITLAB_TOKEN:?} | |
register_host=${GITLAB_HOST:-https://gitlab.com} | |
runner_image='gitlab/gitlab-runner:latest' |
I hereby claim:
- I am soullivaneuh on github.
- I am soullivaneuh (https://keybase.io/soullivaneuh) on keybase.
- I have a public key whose fingerprint is 0446 0CD2 28DF 9E0D 42F0 7643 992E B6FA FD4E 6361
To claim this, I am signing this object:
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
// @see http://www.competa.com/blog/chrome-bug-pageup-pagedown-textarea-moves-website-window/ | |
// @see https://bugs.chromium.org/p/chromium/issues/detail?id=890248 | |
document.querySelector('textarea').addEventListener('keydown', event => { | |
if (event.key === 'PageUp' || event.key === 'PageDown') { | |
const cursorPosition = event.key === 'PageUp' ? 0 : event.target.textLength; | |
event.preventDefault(); | |
event.target.setSelectionRange(cursorPosition, cursorPosition); | |
} | |
}); |
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
/** | |
* @Route("/for", name="for") | |
*/ | |
public function forAction(Request $request) | |
{ | |
return $this->render( | |
$request->query->has('embed') | |
? 'default/for_embed.html.twig' | |
: 'default/for_include.html.twig' | |
); |
NewerOlder