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
LOST AT SEA, 1803 | |
the good ship | |
"OBRA DINN" | |
---------------- | |
Built 1796, London ~ 800 tons, 18ft draught | |
Captain R. WITTEREL ~ Crew 51 men | |
Last voyage to Orient ~ Cape rendezvous unmet | |
---------------- | |
Contact East India Cy. London Office | |
for enquiries or testimony |
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: '2' | |
services: | |
web: | |
image: hjacobs/tiny-docker-http-test | |
restart: always | |
ports: | |
- 8080:8080 | |
container_name: web | |
networks: |
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
- name: Get Country code with freegeoip.net | |
uri: | |
url: http://freegeoip.net/json | |
method: GET | |
return_content: yes | |
validate_certs: no | |
register: country | |
failed_when: not (Country_Code|upper)|match((country.content|from_json)['country_code']) | |
- debug: |
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
public bool InstiantiationCheck(GameObject GO, out GameObject instGo) | |
{ | |
instGo = null; | |
foreach (GameObject go in ObjectPoolList) | |
{ | |
if ( !ReferenceEquals(GO.GetComponent<PooledObject>(), null) && go.GetComponent<PooledObject>().nbrRef == GO.GetComponent<PooledObject>().nbrRef || GO.name.Equals(go.name) ) | |
{ | |
instGo = go; | |
return true; |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |