Difference between revisions of "User:Q-Owl"

From Geohashing
imported>Q-Owl
(reached)
imported>Q-Owl
(Achievements)
Line 33: Line 33:
 
* get some different Achievements
 
* get some different Achievements
  
== Achievements (first occurrence) ==
+
== Achievements ==
 +
 
 +
'''Transportation''' (first occurrence)
 
{{#vardefine:ribbonwidth|800px}}
 
{{#vardefine:ribbonwidth|800px}}
 
<!-- Add any achievement ribbons you earned below, or remove this section -->
 
<!-- Add any achievement ribbons you earned below, or remove this section -->
Line 42: Line 44:
 
     | name = [[User:Q-Owl|Q-Owl]]
 
     | name = [[User:Q-Owl|Q-Owl]]
 
}}
 
}}
{{Circus_geohash
+
{{bicycle geohash
  | latitude = 49
+
  | latitude = 49  
  | longitude = 8
+
  | longitude = 8
  | date = 2013-11-14
+
  | date = 2014-07-17
  | name = Q-Owl
+
  | name = Q-Owl  
  | performance = juggling a diabolo
+
  | distance = 4 km
  | image = 2013-11-14_juggling-kl.jpg
+
  | bothways = true
}}
+
  | image = 2014-07-17 49 8 east.jpg
 +
}}  
 
{{gratuitous ribbon   
 
{{gratuitous ribbon   
 
| color = green  
 
| color = green  
Line 60: Line 63:
 
| name = Q-Owl  
 
| name = Q-Owl  
 
}} <!-- | image = Hashcat.JPG -->
 
}} <!-- | image = Hashcat.JPG -->
 +
 +
 +
'''Other Achievements '''
 +
{{Déjà vu geohash
 +
  | latitude = 49
 +
  | longitude = 8
 +
  | date = 2014-07-17
 +
  | olddate = 2012-12-11
 +
  | name = Q-Owl
 +
}}
 +
{{Circus_geohash
 +
  | latitude = 49
 +
  | longitude = 8
 +
  | date = 2013-11-14
 +
  | name = Q-Owl
 +
  | performance = juggling a diabolo
 +
  | image = 2013-11-14_juggling-kl.jpg
 +
}}
 
{{gratuitous ribbon
 
{{gratuitous ribbon
 
     | icon = Avoid achievement.png
 
     | icon = Avoid achievement.png
Line 97: Line 118:
 
     </td>
 
     </td>
 
   </tr>
 
   </tr>
</table>  -->  
+
</table>  -->
  
 
== PHP ==
 
== PHP ==

Revision as of 11:44, 18 July 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 with a special geohashing page: www.KlickTipps.de/geohashing.php


Expeditions

reached

not reached

  • Arrow4.png 2014-06-05: In the wood southeast of Lampertheim - but too ill to start an expedition

Plans and ideas

  • Visit my Birthdayhash 1955-11-28 49 8
  • Meet up with other Geohashers
  • Cross the border to: France (specially to the little french triangle in 49,8)
  • Cross the border to: Swizerland, Austria and other countries
  • get some different Achievements

Achievements

Transportation (first occurrence)

Landgeohash.png
Q-Owl earned the Land geohash achievement
by reaching the (49, 8) geohash on 2013-09-27.
Bikegeohash.png
Q-Owl earned the Bicycle geohash achievement
by cycling 4 km to and from the (49, 8) geohash on 2014-07-17.
2014-07-17 49 8 east.jpg
Ferry-pic44x44.jpg
Q-Owl earned the Ferry Achievement
by using a ferry on the way to the hash or back (49, 8) geohash on 2014-03-29.


Other Achievements

Dejavu.png
Q-Owl earned the Déjà Vu Geohash Achievement
by reaching the (49, 8) geohash on 2014-07-17, and previously on 2012-12-11.
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
Avoid achievement.png
DODO, Danatar, Rincewind&Yakamoz and Q-Owl earned the Avoid Each Other Achievement
by launching four independent expeditions without meeting up at the (49, 8) geohash on 2014-04-20.


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 nice little PHP function to link from your own homepage to the geohashes of a certain day in the past, here it is:

  function geohashing_textlink( $my_date = -1 , $klasse = "" ){
      /* a text link to a special day 
         Parameters: $my_date (optional):  2 the day after tomorrow
                                           1 tomorrow
                                           0 today
                                          -1 yesterday and so on
                                          -2 the day before yesterday 
                     $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 > 3 ){ $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 );
  }

Other Version with Date as input:

  function geohashing_textlink2( $my_year , $my_month , $my_day , $klasse = "" ){
      /* a text link to a special day 
         Parameters: Year, Month and Day
                     $klasse (optional):   CSS Class for the link */
      $complete_date 
          = mktime(0, 0, 0, $my_month, $my_day, $my_year);   

      //... continue like the function above