This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a= | |
b= | |
c= | |
d= | |
fix=0 | |
declare -a SEQ=( {0..130} ) | |
for a in ${SEQ[@]}; do | |
for b in ${SEQ[@]}; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# (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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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, |