Skip to content

Instantly share code, notes, and snippets.

View laszlo91's full-sized avatar

Filippo Bonora laszlo91

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@laszlo91
laszlo91 / fb_ripper.pl
Last active August 29, 2015 14:27
Make a two columns spreadsheet (user and text, comma separated) from a single line html of your facebook conversation. User: guy you chat with. Text: what you write to him.
# by phil Bonora for nlpspoiler.it
use strict;
use warnings;
use utf8;
my @t;
my $name="PUT YOUR NAME HERE"; #STDIN html (all in one line)
print "user,text\n2";
@laszlo91
laszlo91 / mat_compiler.pl
Last active August 29, 2015 14:27
Help to fill big matrix and check the correctness. See into the code for more information.
#by Muhammad Khattab and Filippo Bonora
#for nlpspoiler.it
#STDIN: your incomplete matrix, something like B C D
#
# B 1
#
# C 7 1
#
# D 5 2 1