-
Install Q3 fork ioquake3 along with original game patch files (baseq3/pak{1-8}.pk3, missionpack/pak{1-3}.pk3)
brew cask reinstall ioquake3
-
Build ioquake3 master branch
git clone https://github.com/ioquake/ioq3
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
--- youtube-dl.orig 2012-02-28 00:24:14.664150644 +0200 | |
+++ youtube-dl 2012-02-28 00:27:40.810150644 +0200 | |
@@ -55,6 +55,7 @@ | |
import email.utils | |
except ImportError: # Python 2.4 | |
import email.Utils | |
+ email.utils = email.Utils | |
try: | |
import cStringIO as StringIO | |
except ImportError: |
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
--- s3curl.pl.orig 2011-08-16 22:23:39.000000000 +0300 | |
+++ s3curl.pl 2012-02-14 22:37:01.594635639 +0200 | |
@@ -26,11 +26,14 @@ | |
use constant STAT_UID => 4; | |
# begin customizing here | |
+# http://docs.amazonwebservices.com/general/latest/gr/rande.html#s3_region | |
my @endpoints = ( 's3.amazonaws.com', | |
+ 's3-us-west-2.amazonaws.com', | |
's3-us-west-1.amazonaws.com', |
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/sh | |
# thin This shell script takes care of starting and stopping | |
# thin daemon from rbenv shared install | |
# | |
# chkconfig: 2345 85 15 | |
# description: thin is an Ruby web server | |
# config: /etc/sysconfig/thin | |
### BEGIN INIT INFO |
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
#!/usr/bin/env python3 | |
# vim: autoindent tabstop=4 shiftwidth=4 expandtab softtabstop=4 filetype=python | |
# This file is part of Supermicro IPMI certificate updater. | |
# Supermicro IPMI certificate updater is free software: you can | |
# redistribute it and/or modify it under the terms of the GNU General Public | |
# License as published by the Free Software Foundation, version 2. | |
# | |
# This program is distributed in the hope that it will be useful, but WITHOUT |
Ansible Vault passwords and ansible_become_pass variable stored in pass https://www.passwordstore.org or gopass https://www.gopass.pw
Create encrypted password file with pass or gopass
pass insert ansible/test
or gopass insert ansible/test
Now you can access become password stored in ansible/test using lookup plugin passwordstore
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
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
# Copyright (c) Rau Systemberatung GmbH (rausys.de) | |
# MIT License | |
# credits: https://pyimagesearch.com/start-here/ | |
import argparse | |
import os | |
from datetime import datetime, timedelta |