I hereby claim:
- I am gustavo6046 on github.
- I am gustavo6042 (https://keybase.io/gustavo6042) on keybase.
- I have a public key ASC4LZrps2xmAbNA6RaJCwmWzOxAGsX2HxtqBgTaBXZNPQo
To claim this, I am signing this object:
| #!/bin/bash | |
| # Registers a project into the project management lifesystem. | |
| # This automatically sets up Git, may add to lookup tables (if | |
| # AUTHOR, LANGUAGE or MONTH parameters are specified). | |
| # It will not set up the link from @public for you. To do this, | |
| # you will want to instead use: | |
| # | |
| # ./@@publish my_repo |
| Actor _Call_hRv4Z5llxmKr0u9lqbukCp4DhHVBldKa56E_0 : Inventory {Inventory.MaxAmount 1} | |
| Actor _Call_hRv4Z5llxmKr0u9lqbukCp4DhHVBldKa56E_1 : Inventory {Inventory.MaxAmount 1} | |
| Actor _Call_hRv4Z5llxmKr0u9lqbukCp4DhHVBldKa56E_2 : Inventory {Inventory.MaxAmount 1} | |
| Actor _Call_hRv4Z5llxmKr0u9lqbukCp4DhHVBldKa56E_3 : Inventory {Inventory.MaxAmount 1} | |
| Actor _Call_hRv4Z5llxmKr0u9lqbukCp4DhHVBldKa56E_4 : Inventory {Inventory.MaxAmount 1} | |
| Actor _Call_hRv4Z5llxmKr0u9lqbukCp4DhHVBldKa56E_5 : Inventory {Inventory.MaxAmount 1} | |
| Actor _Call_hRv4Z5llxmKr0u9lqbukCp4DhHVBldKa56E_6 : Inventory {Inventory.MaxAmount 1} | |
| Actor _Call_hRv4Z5llxmKr0u9lqbukCp4DhHVBldKa56E_7 : Inventory {Inventory.MaxAmount 1} | |
| Actor _Call_hRv4Z5llxmKr0u9lqbukCp4DhHVBldKa56E_8 : Inventory {Inventory.MaxAmount 1} | |
| Actor _Call_hRv4Z5llxmKr0u9lqbukCp4DhHVBldKa56E_9 : Inventory {Inventory.MaxAmount 1} |
I hereby claim:
To claim this, I am signing this object:
MushMatch is a Mush-based gameplay ormat, introduced in 2018 as an Unreal Tournament gametype (the spotlight of GusPack 2), and that in 2019 will have a Sentient Mushes version (with planned Zandronum compatibility).
To accompany its diversity of situations is a special soundtrack, meant to represent many kinds of moments.
| func int() PrintBottles(int bottles, float* myPointer, int%* iterListPtr) { | |
| int iters; | |
| while (> bottles, 0) { | |
| array:append(*iterListPtr, bottles); | |
| print(+ "There are ", (+ (set bottles, (- bottles, 1)), 1), " bottles on the wall! Take one, "); | |
| set iters, + iters, 1; | |
| set *myPointer, (* *myPointer, 2); | |
| if (> bottles, 0) print(+ "there are ", bottles, " to go! \n"); | |
| else print("there are no more!\n\n"); |
| Starting Nmap 7.60 ( https://nmap.org ) at 2018-11-15 18:31 -02 | |
| Nmap scan report for hellomouse.net (91.92.144.105) | |
| Host is up (0.25s latency). | |
| Other addresses for hellomouse.net (not scanned): 2a07:5741:0:12ee::1 | |
| rDNS record for 91.92.144.105: new.hellomouse.net | |
| TRACEROUTE (using port 443/tcp) | |
| HOP RTT ADDRESS | |
| 1 5.99 ms _gateway (192.168.0.1) | |
| 2 15.04 ms 10.116.192.1 |
| const QUAD_DIRS_DIAG = ['nw', 'ne', 'sw', 'se']; | |
| const QUAD_DIRS_ORTHO = ['n', 'w', 's', 'e']; | |
| const QUAD_DIRS_ORTHO_MIRROR = { | |
| 'n': 's', | |
| 's': 'n', | |
| 'w': 'e', | |
| 'e': 'w' | |
| }; | |
| const QUAD_MIRRORED_DIRS = { | |
| 'n': ['sw', 'se'], |
| var AjaxRequest = null; | |
| if ((typeof require) === 'undefined') { | |
| if ((typeof XMLHttpRequest) !== 'undefined') | |
| AjaxRequest = function () { | |
| return new XMLHttpRequest(); | |
| }; | |
| else if ((typeof ActiveXObject) !== 'undefined') | |
| AjaxRequest = function () { |
| import time | |
| import threading | |
| import base64 | |
| import io | |
| import random | |
| import socket | |
| import struct | |
| import queue | |
| from typing import Any, Callable, Dict, Generic, Tuple, Type, TypeVar, Union |
| #!/usr/bin/env python | |
| import os | |
| import string | |
| import random | |
| try: | |
| import simplejson as json | |
| except ImportError: | |
| import json |