Skip to content

Instantly share code, notes, and snippets.

View iksaku's full-sized avatar
🎯
Focusing

Jorge González iksaku

🎯
Focusing
View GitHub Profile
@iksaku
iksaku / RUMA.py
Created November 14, 2017 17:58
Pythonista script for recursive summatory of consecutive numbers
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...')
@iksaku
iksaku / .bashrc
Last active January 22, 2019 18:40
Bash CLI Config
# ~/.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

Keybase proof

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:

@iksaku
iksaku / SkinR.php
Last active November 14, 2017 04:59
Little PocketMine-MP Script to randomize player's skins
<?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
*/
@iksaku
iksaku / ServerUpdater.php
Last active June 1, 2016 03:55
Update all the servers located in a "Parent directory" (Need custom "src/" folder method for accessing PocketMine API)
<?php
/**
* @name ServerUpdater
* @main ServerUpdater\Loader
* @version 1.0.0
* @api 1.12.0
* @description Updates all server's PHAR file
* @author iksaku
*/
@iksaku
iksaku / VirtualInventories.php
Created June 11, 2015 21:41
Way to open virtual custom inventories in MCPE :D (Work in progress...) Special thanks to @alejandroliu and @PEMapModder for a previous research :3
<?php
/**
* @name VirtualInventories
* @main VirtualInventories\Loader
* @version 1.0.0
* @api 1.12.0
* @description Way to open virtual custom inventories
* @author iksaku
*/