I hereby claim:
- I am hoolean on github.
- I am hoolean (https://keybase.io/hoolean) on keybase.
- I have a public key whose fingerprint is 9715 87AE D82A 91B9 2AEE 78C4 16DB 0FFF 3CA0 B5B8
To claim this, I am signing this object:
import pygame | |
import glob | |
import math | |
tiles = [pygame.image.load(tile) for tile in glob.glob('*.png')] | |
tile_length = max([max([tile.get_width(), tile.get_height()]) for tile in tiles]) | |
side = math.ceil(math.sqrt(len(tiles))) |
var images = document.getElementsByTagName("img"); | |
var image; | |
for (var i = 0; i < images.length; i++) | |
{ | |
image = images[i]; | |
void(image.src = "http://www.placecage.com/" + image.width + "/" + image.height + "?" + Math.random()); | |
} |
a | |
aaa | |
aba | |
ababa | |
abbe | |
abc | |
abe | |
abed | |
ac | |
accede |
I hereby claim:
To claim this, I am signing this object:
/'''''''''\ | |
(oOOo) | |
/ / I I I \ \ |
// this should be in your main class - more on that later | |
public static void main(String[] args) | |
{ | |
System.out.println(args); | |
/* | |
If user ran: | |
java -jar FuelChecker.jar check diesal | |
Output: (or similar) | |
{"check", "diesal"} | |
*/ |
public interface Drivable | |
{ | |
public void drive(); | |
} | |
public abstract Plane implements Drivable | |
{ | |
@Override | |
public void drive() | |
{ |