Skip to content

Instantly share code, notes, and snippets.

View syxanash's full-sized avatar

Simone or simply /^syx.*$/ syxanash

View GitHub Profile
@syxanash
syxanash / GOL.java
Last active October 27, 2024 11:59
Implementation of Conway's Game of Life in java
import java.util.ArrayList;
import java.util.Random;
/*
I was bored I tried to implement a Conway's Game of Life
for the first time in my life.
consider the following diagram
grid[i - 1][j - 1] . grid[i - 1][j] . grid[i - 1][j + 1]
@syxanash
syxanash / arpunz.rb
Created January 27, 2016 15:20
Detect if default gateway MAC address changes in LAN
#!/usr/bin/env ruby
require 'logger'
def get_gateway(interface)
got_errors = true
default_gateway = %x[netstat -rn | grep -Eo 'default.*([0-9]{1,3}\.){3}[0-9]{1,3}.*#{interface}']
gateway_ip = %x[echo '#{default_gateway}' | awk '{printf $2}']
gateway_mac = %x[arp -an | grep -w #{gateway_ip} | awk '{print $4}']
@syxanash
syxanash / cowboy.cow
Last active December 19, 2015 21:39
my cows
## (c) 2011 Syxanash <[email protected]>
##
$the_cow = <<EOC;
$thoughts
$thoughts _._
$thoughts ____/___\\____
$thoughts .'|o o|'.
$thoughts .'.| U |.'.
' \\ - / '
/ |=| \\
@syxanash
syxanash / first_japh.pl
Last active December 19, 2015 02:48
my first JAPH
#!/usr/bin/perl
# oh my very first JAPH :-D
# dedicated to one of my good
# old friend plucky
# (C) syxanash 2012
$l=do{local$/;<DATA>};$l=~
s/\#//g ;@u=split (' ',$l)
;@k=('a'..'z',' ');foreach
@syxanash
syxanash / brokyplo.pl
Last active December 19, 2015 02:38
Google Finance client
#!/usr/bin/perl
use strict;
use warnings;
use LWP::UserAgent;
use Getopt::Long;
use File::Slurp;
use Term::ANSIColor;
use Env;
@syxanash
syxanash / hamlet_wifi_switcher.pl
Created January 20, 2013 09:39
it simply switches on and off the wireless device, on Hamlet routers.
#!/usr/bin/perl
# (C) syxanash 2011 - syxanash[ at ] gmail.com
use strict;
use warnings;
use WWW::Mechanize;
use Getopt::Long;
use Tk;
@syxanash
syxanash / aescryptgui.pl
Created August 16, 2012 13:03
a GUI for AESCrypt on GNU/Linux
#!/usr/bin/perl
# AESCrypt GUI for GNU/Linux
# DWTFYWT (c) syxanash
use strict;
use warnings;
use IPC::Open3;
use Symbol qw(gensym);