Skip to main content

Routespunkt Hiking Grid Diary - an iOS app for Hikers 'n Bikers

 

 


A group of people with their mountain bikes, posing for a camera photo, in the middle of a forest


About Routespunkt Hiking Grid Diary:

 * Write Hiking and Biking Stories in your own handwriting

 * Show places visited in your Trip, using maps

 * Illustrate what you found exciting, with sketches and drawings

 * Create a Collage with photos and map snaps of places visited

 * Share the Adventure Story Articles with your friends/ family/ dear one, on Social Media platforms


This is a Subscriptions based app.





Comments

Popular posts from this blog

Hello World in iPhone

meines erstes iphone Programm - Gemacht durch Code

Code share - Test Run Summary Table with collapsible point of failure details

Video is here . Code is here: File: myscript1.js function repeatTest($scope) {   $scope.tests = [     {testName: "Test1", overallResult: "Pass", firstError: "-", lastError: "-"},     {testName: "Test2", overallResult: "Fail", firstError: "Page not found", lastError: "Page not found"},     {testName: "Test3", overallResult: "Fail", firstError: "Could not select value in combobox - EmpAgeRange", lastError: "Could not find editbox - EmpAddressLine2"}   ]; } File: index.html <!DOCTYPE html> <html>   <head>     <script src="http://code.angularjs.org/1.2.0-rc.2/angular.js"></script>     <link rel="stylesheet" href="style.css" />     <script src="myscript1.js"></script>   </head>   <body ng-app="">     <h1>Test Run Summary</h1...

Experimenting with Visio and VBScript

This diagram is created:               using this code:                                                                         Copy the code: Option Explicit Dim strVSDPath, filesys Dim vsoApplication, vsoDocument, vsoPages, vsoPage Dim vsoMaster1, vsoMaster2, vsoStencil Dim vsoShape1, vsoShape2, vsoConnector1 Dim itr Const visAutoConnectDirDown = 2     'Connect down. Const visAutoConnectDirLeft = 3     'Connect to the left. Const visAutoConnectDirNone = 0     'Connect without relocating the shapes. Const visAutoConnectDirRight = 4     'Connect to the right. Const visAutoConnectDirUp = 1         'Connect up....