Posted: May 7th, 2012 | Author: jriggs | Filed under: javascript, web | No Comments »
Here is a script that takes a given time and increments each second to make it appear to update in realtime.
Time given, must be in hh:mm:ss format and the div id must be realtime
<span id="realtime">12:12:12</span>
12:12:12
Script that makes everything happen, needs jquery, but could be easily re-written in pure javascript.
$(document).ready (function () {
startCount();
});
function startCount()
{
timer = setInterval(count,1000);
}
function count()
{
var time_shown = $("#realtime").text();
var time_chunks = time_shown.split(":");
var hour, mins, secs;
hour=Number(time_chunks[0]);
mins=Number(time_chunks[1]);
secs=Number(time_chunks[2]);
secs++;
if (secs==60){
secs = 0;
mins=mins + 1;
}
if (mins==60){
mins=0;
hour=hour + 1;
}
if (hour==13){
hour=1;
}
$("#realtime").text(hour +":" + plz(mins) + ":" + plz(secs));
}
function plz(digit){
var zpad = digit + '';
if (digit < 10) {
zpad = "0" + zpad;
}
return zpad;
}
Posted: June 9th, 2011 | Author: jriggs | Filed under: magento, web | Tags: global function magento | 2 Comments »
This code will allow you to add a function that can be called from anywhere within Magento. It extends the helper class
1) Create a file named ‘Mycode.xml’ and copy it to app/etc/modules/ – it should look like this:
<?xml version="1.0"?>
<config>
<modules>
<Mycode_Function>
<active>true</active>
<codePool>local</codePool>
</Mycode_Function>
</modules>
</config>
2) Create the directory
app/code/local/Mycode/Function/etc
and then create a file named ‘config.xml’
In it copy:
<?xml version="1.0"?>
<config>
<modules>
<Mycode_Function>
<version>1.0.0</version>
</Mycode_Function>
</modules>
<global>
<helpers>
<function>
<class>Mycode_Function_Helper</class>
</function>
</helpers>
</global>
</config>
3) Create the directory
app/code/local/Mycode/Function/Helper
and then create a file named ‘Data.php’
In it copy:
<?php
class Mycode_Function_Helper_Data extends Mage_Core_Helper_Abstract
{
public function test(){
return 'works';
}
}
You can now call this function like so
<?php
echo Mage::helper('function')->test();
?>
Posted: May 29th, 2011 | Author: jriggs | Filed under: drupal, web | Tags: drupal, update, upgrade drupal 7.2 | No Comments »
After backing everything up…
# get the upgrade
wget http://ftp.drupal.org/files/projects/drupal-7.2.tar.gz
# uncompress it
tar xfzv drupal-7.2.tar.gz
# copy all files to my document root
cp -r drupal-7.2/. /www/.
found here
Posted: May 13th, 2011 | Author: jriggs | Filed under: html, web | No Comments »
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Blank Strict Template</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="">
<meta name="keywords" content="">
<script type="text/javascript">
</script>
<style type="text/css">
</style>
</head>
<body>
<div>
<p>blank template</p>
</div>
</body>
</html>
Download zipped html file