Difference between revisions of "User:Q-Owl"

From Geohashing
imported>Q-Owl
(Ferry Achievement)
imported>Q-Owl
Line 1: Line 1:
 +
{{ASG|Y=1955|m=11|d=28|gender=m|lat=49|lon=8}}
 
== About Me ==
 
== About Me ==
 
I like Geocaching since 2011 and I discovered geohashing 2013-09-25.  
 
I like Geocaching since 2011 and I discovered geohashing 2013-09-25.  
Line 7: Line 8:
  
 
== Expeditions ==
 
== Expeditions ==
 +
* [[2014-05-12 49 8]]: In a wood near [http://de.wikipedia.org/wiki/Hochst%C3%A4dten_(Bensheim) Bensheim-Hochstädten].
 
* [[2014-03-29 49 8]]: On a vineyard near [[wikipedia:Nierstein|Nierstein]] not far from the [[wikipedia:Rhine|Rhine]].
 
* [[2014-03-29 49 8]]: On a vineyard near [[wikipedia:Nierstein|Nierstein]] not far from the [[wikipedia:Rhine|Rhine]].
 
* [[2013-12-11 49 8]]: In the southern part of [[wikipedia:Darmstadt|Darmstadt]]: Rüthleinweg/Edith-Stein-Weg.
 
* [[2013-12-11 49 8]]: In the southern part of [[wikipedia:Darmstadt|Darmstadt]]: Rüthleinweg/Edith-Stein-Weg.

Revision as of 08:24, 12 May 2014

Lol-asg.png 68 / m / 49,8

About Me

I like Geocaching since 2011 and I discovered geohashing 2013-09-25.

My home graticule is Mannheim, Germany (see today's point on the peeron map). Meetups in this graticule: meetups.

My Homepage: www.KlickTipps.de

Expeditions

Plans and ideas

  • Visit my Birtdayhash 1955-11-28 49 8
  • Meet up with other Geohashers
  • Cross the border to: France, Swizerland, Austria and other countries
  • get some Achievements

Achievements

Landgeohash.png
Q-Owl earned the Land geohash achievement
by reaching the (49, 8) geohash on 2013-09-27.
Circusgeohash.GIF
Q-Owl earned the Circus Geohash Achievement
by juggling a diabolo at the (49, 8) geohash on 2013-11-14.
2013-11-14 juggling-kl.jpg
Ferry-pic44x44.jpg
Q-Owl earned the Ferry Achievement
by reaching and leaving the hash by ferry (49, 8) geohash on 2014-03-29.


Minesweeper geohash empty.png Minesweeper geohash empty.png Minesweeper geohash empty.png
Minesweeper geohash empty.png Minesweeper geohash 0.png Minesweeper geohash empty.png
Minesweeper geohash empty.png Minesweeper geohash empty.png Minesweeper geohash empty.png
Q-Owl achieved level 0 of the Minesweeper Geohash achievement
by visiting coordinates in Mannheim,_Germany and 0 of the surrounding graticules.

little joke ;-)

PHP

I like programming PHP. If you need a little PHP function to link from your own homepage to the geohashes of a certain day in the past, here is it:

  function geohashing_textlink( $my_date = -1 , $klasse = "" ){
      /* a text link to a special day 
         Parameters: $my_date (optional):  0 heute
                                          -1 yesterday and so on
                     $klasse (optional):   CSS Class for the link */

      $complete_date = mktime(0, 0, 0, date("m"), date("d") + $my_date, date("Y"));   

      //check inputs
      if ( $my_date > 0 ){ $my_date = 0; }
      $klasse = trim( $klasse ); 

      //build link
      $text   =  date("j.n.Y" , $complete_date );  
 
      $outp  = "<a href=\"http://wiki.xkcd.com/geohashing/";
      $outp .= date("Y-n-j" , $complete_date ) . "\"";
      $outp .= " target=\"_blank\"" ;

      if ( $klasse != "" ){ $outp .= " class=\"" . $klasse . "\""; }

      $outp .= " >" . $text .  "</a>" ;

      return( $outp );
  }