Hold down power for 5 seconds then press and hold the home button (while still holding down power) until the Apple logo appears. Release the power button while still holding down the home button until "connect to iTunes" appears.
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
| <Client name="WD TV Live HD Media Player"> | |
| <!-- Author: Plex Inc. --> | |
| <!-- http://www.wdc.com/w...4779-705035.pdf --> | |
| <!-- Model number tested: WDBAAN0000NBK --> | |
| <!-- TODO - a few more limitations around codec profiles, which are high enough that they're probably not worth listing at present --> | |
| <Identification> | |
| <Header name="User-Agent" substring="alphanetworks" /> | |
| <Header name="User-Agent" substring="ALPHA Networks" /> | |
| </Identification> | |
| <Settings> |
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
| CREATE FUNCTION dbo.CleanString ( | |
| @SomeText VARCHAR(8000) | |
| ) | |
| RETURNS VARCHAR(8000) | |
| AS | |
| BEGIN | |
| DECLARE @return VARCHAR(8000) = '' | |
| DECLARE @position int = 1 | |
| WHILE @position <= DATALENGTH(@SomeText) |
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
| import re | |
| from pprint import pprint | |
| import os | |
| debug = True | |
| base_dir = os.path.join(os.path.expanduser('~'),'Documents','Elder Scrolls Online','liveeu','SavedVariables') | |
| print("Assuming working directory of [{0}]\r\n".format(base_dir)) | |
| lua = os.path.join(base_dir,'HarvestMap.lua') |
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
| # Connect to shell on container with ability to exit out again | |
| docker exec -ti <containerId> bash | |
| # Copy from container out to host | |
| docker cp <containerId>:/file/path/within/container /host/path/target | |
| # Remove all Stopped containers | |
| # -f is the filter flag | |
| docker rm $(docker ps -aqf status=exited) |
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
| ## Configuration file for a typical Tor user | |
| ## Last updated 2 September 2014 for Tor 0.2.6.1-alpha. | |
| ## (may or may not work for much older or much newer versions of Tor.) | |
| ## | |
| ## Lines that begin with "## " try to explain what's going on. Lines | |
| ## that begin with just "#" are disabled commands: you can enable them | |
| ## by removing the "#" symbol. | |
| ## | |
| ## See 'man tor', or https://www.torproject.org/docs/tor-manual.html, | |
| ## for more options you can use in this file. |
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
| [noshift] | |
| Key8=0:0 | |
| Key9=65307:27 | |
| Key10=49:49 | |
| Key11=50:50 | |
| Key12=51:51 | |
| Key13=52:52 | |
| Key14=53:53 | |
| Key15=54:54 | |
| Key16=55:55 |
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
| # grab latest LTS version of Django (version 1.8.x) | |
| pip install 'django>=1.8,<1.9' |
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
| echo -e "\n\nLoading simple rc.firewall-iptables version $FWVER..\n" | |
| DEPMOD=/sbin/depmod | |
| MODPROBE=/sbin/modprobe | |
| EXTIF="eth0" | |
| INTIF="eth1" | |
| #INTIF2="eth0" | |
| echo " External Interface: $EXTIF" | |
| echo " Internal Interface: $INTIF" |
OlderNewer