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
| StorySounds Privacy Policy | |
| This Privacy Policy describes how your personal information is collected, used, and shared when you visit https://storysounds.app (the “Site”). | |
| Information that is gathered from visitors | |
| In common with other websites, log files are stored on the web server saving details such as the visitor's IP address, browser type, referring page and time of visit. | |
| Cookies may be used to remember visitor preferences when interacting with the website. | |
| Where registration is required, the visitor's email and a username will be stored on the server. |
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
| <script type="text/javascript" src="http://browsefb.hammersonapps.com/assets/js/iframe.js"></script> | |
| <iframe id="browsefbiframe" name="browsefbiframe" src="http://browsefb.hammersonapps.com/bullring.html" frameborder="0"></iframe> |
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
| Open | |
| new/f17 | |
| open/aaa | |
| retest/0d64ff | |
| needsDeploying/fed815 | |
| featureRequest/ff7937 | |
| Closed |
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
| <iframe id="salesstreamiframe" name="salesstreamiframe" src="http://salesstream.hammersonapps.com/bullring.html" frameborder="0"></iframe> | |
| <iframe id="salesstreamiframe" name="salesstreamiframe" src="http://salesstream.hammersonapps.com/brentcross.html" frameborder="0"></iframe> | |
| <iframe id="salesstreamiframe" name="salesstreamiframe" src="http://salesstream.hammersonapps.com/centrale.html" frameborder="0"></iframe> | |
| <iframe id="salesstreamiframe" name="salesstreamiframe" src="http://salesstream.hammersonapps.com/highcross.html" frameborder="0"></iframe> | |
| <iframe id="salesstreamiframe" name="salesstreamiframe" src="http://salesstream.hammersonapps.com/oracle.html" frameborder="0"></iframe> |
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
| <script type="text/javascript" src="http://salesstream.hammersonapps.com/assets/js/iframe.js"></script> | |
| <iframe id="salesstreamiframe" name="salesstreamiframe" src="http://salesstream.hammersonapps.com/bullring.html" frameborder="0"></iframe> |
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
| Step 1 – Install XCode (it’s available from the Mac App Store now). | |
| Step 2 – Make the Mamp php files executable | |
| sudo chmod +xrw /Applications/MAMP/bin/php5.3/bin/p* | |
| Step 3 – Grab the memcached source | |
| cd ~ | |
| wget http://pecl.php.net/get/memcache-2.2.5.tgz |
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
| security 2>&1 >/dev/null find-generic-password -ga test |
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
| function index(){ | |
| $this->load->library('notifyio_api'); | |
| $commit = $this->input->post('commit'); | |
| $decoded = json_decode($commit,true); | |
| date_default_timezone_set('Europe/London'); | |
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
| function pre(){ | |
| $this->load->library('notifyio_api'); | |
| $handle = fopen('php://input','r'); | |
| $jsonInput = fgets($handle); | |
| $decoded = json_decode($jsonInput,true); | |
| fclose($handle); | |
| $data = array( | |
| 'email'=>$decoded['author_email'], |
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
| $(document).ajaxStart(function() { | |
| //you can do anything here such as showing a loading graphic | |
| console.log('ajax started'); | |
| }); | |
| $(document).ajaxStop(function() { | |
| console.log('ajax stopped'); | |
| }); |