This file contains 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 | |
/** | |
* This file is part of Dope OpenID. | |
* Author: Steve Love (http://www.stevelove.org) | |
* | |
* Some code has been modified from Simple OpenID: | |
* http://www.phpclasses.org/browse/package/3290.html | |
* | |
* Yadis Library provided by JanRain: | |
* http://www.openidenabled.com/php-openid/ |
This file contains 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
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
int main() { | |
int x_max= ,y_max= ; | |
float V[x_max][y_max]; |
This file contains 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
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
int main() { | |
int x_max= ,y_max= ; | |
float V[x_max][y_max]; |
This file contains 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
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
int main() { | |
int x_max= ,y_max= ; | |
float V[x_max][y_max]; |
This file contains 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
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
int main() { | |
const int x_max=20 ,y_max=20; | |
const float y_max_v=1.0, mu=1.0; | |
This file contains 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 | |
define('ACCEPT_IP','127.0.0.1'); | |
define('MONITORED_DIR','');//The directory where the .git directory is located. Leave blank if this script is in the same directory as the .git file | |
define('MAIL_TO','[email protected]'); //mail the report to this email address. Leave blank to disable | |
define('LOG_FILE','_ghupdater.log'); //Log file. Highly recommended | |
//////////////////////////Disable the effect of magic_quotes_gpc//////////////// | |
if (get_magic_quotes_gpc()) { | |
$process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST); | |
while (list($key, $val) = each($process)) { | |
foreach ($val as $k => $v) { |
This file contains 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
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
int main() { | |
const int x_max=20 ,y_max=20; | |
const float y_max_v=1.0, mu=1.0; | |
This file contains 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
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
int main() { | |
const int x_max=20 ,y_max=20; | |
const float y_max_v=1.0, mu=1.0; | |
This file contains 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
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
int main() { | |
const int x_max=20 ,y_max=20; | |
const double y_max_v=1.0, mu=1.0; | |
This file contains 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
#!/usr/bin/python | |
VERSION='0.1.2' | |
from BeautifulSoup import BeautifulSoup as BS | |
from urllib import urlopen,urlencode,basejoin,urlretrieve | |
from urlparse import urlparse | |
import sys,time,os | |
def keepvid_get(loc,keepvid='http://keepvid.com',i=-1): | |
"""keepvid_get(loc,keepvid='http://keepvid.com') -> l | |
Fetch the actual URL of video hosted at Dailymotion,Youtube( and all |
OlderNewer