— Clone repository with submodules automatically:
git clone --recursive [email protected]:name/repo.git
— Initialize submodules after regular cloning:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { | |
// Firstly, we want to figure out who is the currently visible view controller. | |
// There are 4 possibilities here: | |
// 1- They could be a non-nav controller, with a visible tab (ie not under the 'more' tab) | |
// Simple: self.selectedViewController | |
// 2- They could be a nav controller, with a visible tab (ie not under the 'more' tab) | |
// Get it's visible view: self.selectedViewController.visibleViewController | |
// 3- They could be a non-nav controller, under the 'more' tab | |
// Simple: self.selectedViewController | |
// 4- They could be a nav controller, under the 'more' tab |
######################################## | |
##### upstart_virtualenv_test.conf ##### | |
##### install in /etc/init ##### | |
######################################## | |
description "Testing virtualenv and upstart setup" | |
env PYTHON_HOME=/home/steve/.virtualenvs/upstart-test | |
start on runlevel [2345] |
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined in IE 8/9. | |
*/ |
from uuid import UUID | |
def validate_uuid4(uuid_string): | |
""" | |
Validate that a UUID string is in | |
fact a valid uuid4. | |
Happily, the uuid module does the actual | |
checking for us. |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>ssh-add-a</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/bin/ssh-add</string> | |
<string>-A</string> | |
</array> | |
<key>StandardOutPath</key> |
— Clone repository with submodules automatically:
git clone --recursive [email protected]:name/repo.git
— Initialize submodules after regular cloning:
#!/bin/bash | |
# | |
# This extremely rough nonsense is an attempt to automate the disaster recovery | |
# expired certs documentation published at | |
# https://docs.openshift.com/container-platform/4.1/disaster_recovery/scenario-3-expired-certs.html | |
# ... Which was last reviewed on 2019/06/10 | |
# | |
# Please contact [email protected] with suggestions or corrections | |
# CUSTOMIZE THESE: |