Skip to content

Instantly share code, notes, and snippets.

View CaViCcHi's full-sized avatar
🐎
** Developping **

Matteo Bignotti CaViCcHi

🐎
** Developping **
View GitHub Profile
a=
b=
c=
d=
fix=0
declare -a SEQ=( {0..130} )
for a in ${SEQ[@]}; do
for b in ${SEQ[@]}; do
@CaViCcHi
CaViCcHi / perl-version-compare.pl
Created February 13, 2019 20:40
perl version comparison
# (before, after) if after > before; then return 1; else return 0;
sub is_newer_version
{
my $before = shift;
my $after = shift;
_llog("Comparing versions ($before - $after)");
my @b = split(/\./, $before);
my @a = split(/\./, $after);
<?php
/*
* CaViCcHi php PayPal: Copyright 2010 - NOW()
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,