I hereby claim:
- I am iksaku on github.
- I am iksaku (https://keybase.io/iksaku) on keybase.
- I have a public key ASACFE1uAbEfXqwzTxdt6Hs0vHPP9cuouB_7f6j8jOoDEAo
To claim this, I am signing this object:
| <?php | |
| /** | |
| * @name VirtualInventories | |
| * @main VirtualInventories\Loader | |
| * @version 1.0.0 | |
| * @api 1.12.0 | |
| * @description Way to open virtual custom inventories | |
| * @author iksaku | |
| */ |
| <?php | |
| /** | |
| * @name ServerUpdater | |
| * @main ServerUpdater\Loader | |
| * @version 1.0.0 | |
| * @api 1.12.0 | |
| * @description Updates all server's PHAR file | |
| * @author iksaku | |
| */ |
| <?php | |
| /** | |
| * @name SkinR | |
| * @main SkinR\Loader | |
| * @version 1.0.0 | |
| * @api 1.12.0 | |
| * @description Little PocketMine-MP Script to randomize player's skins | |
| * @author iksaku | |
| */ | |
I hereby claim:
To claim this, I am signing this object:
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac |
| import console | |
| def tryInput(prompt=None): | |
| value = input(prompt) | |
| try: | |
| if int(value) <= 0: | |
| raise ValueError | |
| return int(value) | |
| except ValueError: | |
| print('Numbers should be integers, and here must be higher than Zero...') |
| #include <iostream> | |
| using namespace std; | |
| int main() { | |
| int numeros[999][999]; | |
| int filas, columnas; | |
| int i, j; | |
| int x; | |
| ctrl_interface=DIR=/var/run/wpa_supplicant | |
| update_config=1 | |
| network={ | |
| ssid="<SSID Goes Here>" | |
| proto=RSN | |
| key_mgmt=WPA-PSK | |
| pairwise=CCMP TKIP | |
| group=CCMP TKIP | |
| psk="<Password Goes Here>" |
| #!/bin/bash | |
| # Add Microsoft's APT Repository | |
| curl -s https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - | |
| sudo bash -c "curl -s https://packages.microsoft.com/config/ubuntu/18.04/prod.list > /etc/apt/sources.list.d/mssql-release.list" | |
| # Get the packages | |
| sudo apt update | |
| sudo ACCEPT_EULA=Y apt -y install msodbcsql17 mssql-tools | |
| sudo apt -y install unixodbc-dev |
| <?php | |
| namespace App\Http\Middleware; | |
| use Cache; | |
| use Closure; | |
| use GuzzleHttp\Client; | |
| use GuzzleHttp\Exception\GuzzleException; | |
| use GuzzleHttp\RequestOptions; | |
| use Illuminate\Http\Request; |