Skip to content

Instantly share code, notes, and snippets.

@brunobuss
brunobuss / rio-pm-rawsocket
Created April 21, 2012 00:36
[Rio-pm] Problemas com rawsocket
##Packs.pm
package Packs;
use v5.10;
use strict;
use warnings;
use diagnostics;
use Net::RawIP;
sub new {
syntax on
set tabstop=4
set shiftwidth=4
set expandtab
set nowrap
@brunobuss
brunobuss / dc.pl
Created March 31, 2012 22:13
MTGO CSV Exporter Converter to MagicCards.info links
use v5.10;
use strict;
use warnings;
my $fname = $ARGV[0];
my $FHi, my $FHo;
open ($FHi, '<', $fname) or die $!;
open ($FHo, '>', $fname . '.out') or die $!;