Billing Meter bit.ly link or Billing Meter tech0x20 link.This isn’t perfect. First of all, some connections are just too slow for a constant refresh rate of less than 20-30 seconds. Secondly, I think many mobile browsers have a refresh cut-off at which point they will ask you if you really want to keep refreshing.The first [...]
Two page mobile magic 8-ballHad to use random numbers to prevent caching of pages by mobile web browsers. It’s entirely possible that I made this workaround too complicated, as I had a file version problem on my local drive (I was updating the wrong file.)The first page uses a random number in a hidden field [...]
Magic 8-Ball.I still want to be able to detect the whether mobile or not so that it will work (and be optimized) for where the user is coming from. PHP | copy code |? 01 02<?php03 $responses = array(04 "As I see it, yes",05 "It is certain",06 "It is decidedly so",07 "Most likely",08 "Outlook good",09 "Signs point to yes",10 "Without a [...]
Symfony an Open-Source PHP Web Framework. This would be a nice tool to use to set up a web site in.Maybe I can finally rebuild my accompanists.org website.
In the sidebar section for Blogger template, include:The following is a modified version of tag cloud source I found. PHP | copy code |? 0102define(’PREFIX’, ‘labels/’); // for url03define(’SEARCH_DIR’, ‘/home/username/www/labels’); // server location of labels subdirectory04 05define(’THIS_FILE’, ‘labels.php’); // name of labels file (this file)06 07if(file_exists(SEARCH_DIR.’_cloud_include_cache.php’) &&08 filemtime(SEARCH_DIR.’_cloud_include_cache.php’)>(time()-(60*60)))09{10 echo file_get_contents(SEARCH_DIR.’_cloud_include_cache.php’);11}12else13{14 build_cloud();15}16 17/**18* build_cloud builds a tag cloud from the labels files.19* It actually uses [...]