Skip to main content

Posts

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

    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.
Recent posts

Study of an AngularJS application: Feeding Excel based data into an SVG Flowchart with AngularJS and NodeJS

Reference article Implementing a Flowchart with SVG and AngularJS Source code from original article is here .   Customization goals a) Feed the SVG flowchart nodes from excel datasheet b) Understand a bit of the AngularJS and NodeJS client-server communication c) Learn javascript debugging on server side as well as client side using VS Code editor As a beginner to AngularJS-NodeJS, the customization is based on a partial study of the original article .   Most challenging challenge as a dummy There was a space of time when I thought I was publishing the server side JSON data to the same URL as the front-end html page. And then trying to debug it and not knowing why: in one case the data was coming from the server side only, while in the other case it was coming from mocked data on client side. Kept on looking for whether data was getting lost, or did I need routing. There were debug sessions where both server side and client side individually appeared workin

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&g

Multi XSD XML Validation

  This program validates XMLs against referenced XSDs. The XSDs are assumed to be external to (not embedded in) the XML. List the XSDs and XMLs details in separate sheets in the program’s excel book and run the program. The program will generate errors/ warnings in console window.

Hello World in iPhone

meines erstes iphone Programm - Gemacht durch Code

Two-way XML Diffgram (XML structure sensitive)

     With pretty printed source XMLs: Same source XMLs, but in single line – diffgram output remains the same: Download the program files from here .