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 | |
/** | |
* Basic script to perform global search on all tables of an AppGini application. | |
* Create a new file inside the hooks folder and name it 'global-search.php' then copy this code to it. | |
* Related post: https://forums.appgini.com/phpbb/viewtopic.php?f=2&t=1689&p=4510 | |
*/ | |
/* Assuming this custom file is placed inside 'hooks' */ | |
define('PREPEND_PATH', '../'); | |
$hooks_dir = dirname(__FILE__); |
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 | |
/* Assuming this custom file is placed inside 'hooks' */ | |
define('PREPEND_PATH', '../'); | |
$hooks_dir = dirname(__FILE__); | |
include("{$hooks_dir}/../defaultLang.php"); | |
include("{$hooks_dir}/../language.php"); | |
include("{$hooks_dir}/../lib.php"); | |
include_once("{$hooks_dir}/../header.php"); | |
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
/* | |
To automate phantomjs using jQuery | |
See also: https://github.com/ariya/phantomjs/blob/master/examples/page_events.js | |
*/ | |
var url = 'http://www.sample.com'; // start url | |
var eval_code = function() { | |
// code to execute here. Use 'page' instance to navigate to other urls if needed | |
$("button").click(); | |
} |
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 | |
/* use this code as a guide for how to fetch bitcoin historical trade data from bitcoincharts, based on Bitstamp.net */ | |
/* historical interval in hours */ | |
define('AVERAGE_INTERVAL', 6); | |
$hist = file("http://api.bitcoincharts.com/v1/trades.csv?symbol=bitstampUSD&start=" . (time() - AVERAGE_INTERVAL * 3600)); | |
if(!is_array($hist)) die("Unable to fetch data .. Try again later!"); |
NewerOlder