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
#!/bin/bash | |
echo "Downloading ipvtl Software \n" | |
cd /home | |
wget http://www.ipvideotrans.com/download/ipvtl_trial-x64.tar.xz |
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 | |
// code by Mahmoud Gamal | |
function similarity($str1, $str2) | |
{ | |
$str2 = strtoupper($str2); | |
$str1 = strtoupper($str1); | |
$len1 = strlen($str1); | |
$len2 = strlen($str2); | |
$max = max($len1, $len2); |
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 | |
function encrypt($string, $key=5) { | |
$result = ''; | |
for($i=0, $k= strlen($string); $i<$k; $i++) { | |
$char = substr($string, $i, 1); | |
$keychar = substr($key, ($i % strlen($key))-1, 1); | |
$char = chr(ord($char)+ord($keychar)); | |
$result .= $char; | |
} | |
return base64_encode($result); |
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 | |
/** | |
* A helper file for Laravel 5, to provide autocomplete information to your IDE | |
* Generated for Laravel 5.4.11 on 2017-02-14. | |
* | |
* @author Barry vd. Heuvel <[email protected]> | |
* @see https://github.com/barryvdh/laravel-ide-helper | |
*/ | |
namespace { | |
exit("This file should not be included, only analyzed by your IDE"); |
NewerOlder