A good Guide to typography

Nicely done guide to typography

 

http://typographyhandbook.com/

Posted in Uncategorized | Comments Off on A good Guide to typography

John Muir Trail Adventure Journal: Day Six | fordsbasement

In June 2012 I started and completed a 13-day solo hike of the 212-mile John Muir Trail. This is what happened on the sixth day.

Source: John Muir Trail Adventure Journal: Day Six | fordsbasement

Posted in Uncategorized | Comments Off on John Muir Trail Adventure Journal: Day Six | fordsbasement

Bohemian Rhapsody Played by 100+ year old fairground organ – YouTube

 

this is sooo cool!

Posted in Uncategorized | Comments Off on Bohemian Rhapsody Played by 100+ year old fairground organ – YouTube

Encrypt MySQL data using AES techniques

Sometimes clients want that the information they collected from the user should be encrypted and stored in database. Data encryption and decryption is a common technique for secured data. In this article I’ll show how could you use mysql’s built in function to encrypt and decrypt data. Suppose you’ve a table where you want to […]

Source: Encrypt MySQL data using AES techniques

 

Encrypting a MYSQL database

Posted in Uncategorized | Comments Off on Encrypt MySQL data using AES techniques

thoughts on logins

http://blog.codinghorror.com/the-god-login/

 

Pretty well thought out some nice ideas

Posted in Uncategorized, web, Web Technology, website creation | Comments Off on thoughts on logins

BACKPACKING GEAR CHECKLIST – StumbleUpon

Source: BACKPACKING GEAR CHECKLIST – StumbleUpon

Posted in outdoors | Comments Off on BACKPACKING GEAR CHECKLIST – StumbleUpon

Some old pictures

old house in Farmersbridge 07730035 07750016 07750023

Posted in Uncategorized | Comments Off on Some old pictures

Adding a Widget Area to a child theme

So I made a Child theme of WordPress’s twenty twelve theme and needed to put a list of links in the footer. fairly standard type of thing you might expect in a website and should be fairly straight forward thing. You would be right! no thisi is not a bitching post I looked up ‘wordpress: adding a widget area to theme’ First result was a link to the Word press site and I did what it told me and hey presto it worked!

first you register the widget area and give it a name and an id

then you place code where you want this widget to appear.

Here is the page

note  3 things

  • Add the appropriate code to the functions.php file in your child theme,  if your child theme does not have one just create a new empty functions.php it and add that code there.
  • there is HTML in some of the code to get rid of the ‘widget-area’ style class as it gets it to float right. The colophon class style rule will take care of the styling in the case of a single footer area.
  • Remember to change the ID and name of the widget area to something appropriate

Finally something that should be easy to do turns out to be easy to do! I’m so Happy.

 

Posted in knowledgebase, Web, web, Web Technology, website creation, Wordpress, wordpress | Comments Off on Adding a Widget Area to a child theme

Herp derpsum

The refreshing alternative lorum ipsum lol. available here

 

Herp derpsum perp dee derp, mer herderder. Sherp berp derpler, herpem serp tee perper merpus terp dee. Sherpus berps herpsum herpler. Berps herderder herpsum herpderpsmer herp. Derperker der herpler derp derpsum berps perp sherpus. Merpus mer perper derpler perp tee. Berps derpus, derpler ler mer nerpy herpem derp der derps. Terp tee herpsum derpus der nerpy herpderpsmer dee. Merpus derp terp ner sherlamer. Derps herpler serp derpus. Derpler sherlamer derpy sherp sherper, ler dee derps. Ler ner derp herpsum sherp. Ler merpus, derp der derpy derperker perp. Der derpler sherlamer herp mer. Herpler derpus mer, derps ner herpy. Merpus herp, nerpy merp herderder. Ler herpsum derperker herpderpsmer herderder perper sherp. Serp derpler herderder berps. Derpus mer, merp derp herpler. Herpem terp serp derps herpsum sherper.

Tee mer, derp derpy herp. Perp tee serp, perper herpem. Herderder ner, sherp herpsum tee serp. Perp sherlamer herpy, herp perper. Herpsum ter tee sherp derperker berps. Nerpy ner derp tee. Terp ner berp herpy perper dee derperker. Nerpy herderder berp mer. Sherp derpy sherper herpsum der sherlamer. Nerpy merpus ner perp herpem derpler berps derpus perper. Merp ter perp herpderpsmer berp herpy. Sherper derpus, mer berps herderder derp herpem. Sherlamer herpler perper herpy der. Derps mer derperker terp. Derps derp sherp tee herpem. Herpsum merp, derpsum dee der ler sherp mer merpus.

Posted in Uncategorized, web | Comments Off on Herp derpsum

Converting dates in php

converting a date string 09/17/2014

to a unix time stamp and then to a date format to insert into myql as a date

<?php
 $time = "09/17/2014";
echo $time."<br/>";
 $date = strtotime($time);
echo $date."<br/>";
 $timestamp=$date;
 echo gmdate("Y-m-d", $timestamp);
 ?>

you will have to add an extra day to the resulting day so this is not a solution but a start

 

Posted in php, web, Web Technology | Comments Off on Converting dates in php