Skip to content

Instantly share code, notes, and snippets.

View TheFox's full-sized avatar

Christian Mayer TheFox

View GitHub Profile
@TheFox
TheFox / sibyte.php
Last active February 12, 2017 16:10
<?php
function sibyte($byte){
$e = array('B', 'K', 'M', 'G');
$n = 0;
while($byte >= 1024 && $n < 10){
$n++;
$byte = $byte / 1024;
}
$sbyte = ''.$byte;
@TheFox
TheFox / helloworld.pl
Last active September 25, 2015 18:18
Hello World in Perl
#!/usr/bin/perl -w
print "Hello World!";
#test2
# EOF