mycodestories.blogspot.com
My code stories: Painting using Canvas and JS.
http://mycodestories.blogspot.com/2015/01/painting-using-canvas-and-js.html
A small contribution to the world of programming. A mix of web programming, .Net, Qt/C etc. Your everyday pink tech-blog ;). Tuesday, January 6, 2015. Painting using Canvas and JS. Lately I've been playing around with HTML5 and Canvas trying to render icons and graphics without the use of image files. This blog post is simply showing how to render the HTML5 logo using only code. We make sure to call our function rendering the logo as the page is loaded. Tuesday, January 06, 2015. View my complete profile.
mycodestories.blogspot.com
My code stories: Resizing your canvas drawings properly using repaint
http://mycodestories.blogspot.com/2015/03/resizing-your-canvas-drawings-properly.html
A small contribution to the world of programming. A mix of web programming, .Net, Qt/C etc. Your everyday pink tech-blog ;). Friday, March 20, 2015. Resizing your canvas drawings properly using repaint. This post will be a short one attending a problem I briefly touched upon in my previous post on animation using canvas. We live in a "mobile first" world and need to pay attention to responsive designing. Var ic = window.innerWidth / (canvas.width * 1.2) 1? 0, speed: 1 }); . . . Now, make sure to use the ...
mycodestories.blogspot.com
My code stories: Using parameters in XSLT
http://mycodestories.blogspot.com/2014/07/using-parameters-in-xslt.html
A small contribution to the world of programming. A mix of web programming, .Net, Qt/C etc. Your everyday pink tech-blog ;). Friday, July 4, 2014. Using parameters in XSLT. If you've read some of my previous posts, you've seen examples of using parameters when calling templates. I earlier wrote about assigning XML structures to variables. Now we are going to use a variable as parameter for a template call. Create the variable and send it as a parameter to your template of choice:. Friday, July 04, 2014.
mycodestories.blogspot.com
My code stories: Rendering shapes in Canvas using objects
http://mycodestories.blogspot.com/2015/03/rendering-shapes-in-canvas-using-objects.html
A small contribution to the world of programming. A mix of web programming, .Net, Qt/C etc. Your everyday pink tech-blog ;). Friday, March 20, 2015. Rendering shapes in Canvas using objects. I create an object called CustFigure. It has X and Y values and a height and width. This is all we need in order to place it in the grid and to get the size of the figure, say a box. Var custFigures = []; var custFigure1 = new CustFigure(10, 10, 75 10, 75 10, " Hello Nerd! Friday, March 20, 2015. Follow me on Twitter.
mycodestories.blogspot.com
My code stories: Open termbased navigation links in new window in SharePoint 2013
http://mycodestories.blogspot.com/2014/06/open-termbased-navigation-links-in-new.html
A small contribution to the world of programming. A mix of web programming, .Net, Qt/C etc. Your everyday pink tech-blog ;). Wednesday, June 11, 2014. Open termbased navigation links in new window in SharePoint 2013. Term based navigation has been greatly improved in SharePoint 2013, but sometimes you want to open navigation URLs in a new window. However, the term store does not offer such a property so we'll solve it using JavaScript instead. Element add this script:. Wednesday, June 11, 2014.
mycodestories.blogspot.com
My code stories: Execute Canvas rendering based on scroll event.
http://mycodestories.blogspot.com/2015/03/execute-canvas-rendering-based-on.html
A small contribution to the world of programming. A mix of web programming, .Net, Qt/C etc. Your everyday pink tech-blog ;). Friday, March 27, 2015. Execute Canvas rendering based on scroll event. I have been showing animations using canvas in several blog posts lately and implemented a lot of this in my own homepage. Now, if you are doing animations you need to plan how the animations should execute so that the user does not miss the whole show. :). For the scroll event you need to grab the window object.
mycodestories.blogspot.com
My code stories: XSLT transformations with .Net
http://mycodestories.blogspot.com/2012/08/xslt-transformations-with-net.html
A small contribution to the world of programming. A mix of web programming, .Net, Qt/C etc. Your everyday pink tech-blog ;). Sunday, August 5, 2012. XSLT transformations with .Net. How the transformation works with .Net. Using .Net and C# you can do XSL transformations using XslCompiledTransform(). As input to the XSLT engine we use an XSLT sheet, settings (optional), parameters (optional), an XML source and the output path. C# code - using .Net 4.0. This is the XSLT engine object. It as a parameter.
mycodestories.blogspot.com
My code stories: Structuring the XML output.
http://mycodestories.blogspot.com/2012/09/structuring-xml-output.html
A small contribution to the world of programming. A mix of web programming, .Net, Qt/C etc. Your everyday pink tech-blog ;). Friday, September 7, 2012. Structuring the XML output. Note: This post will be used as reference for several posts on XSLT. If you just want to do a simple transformation where you do the same thing over and over again when a template hits, you don't really need to call templates. Given a structure like this one. Like a prair /. Friday, September 07, 2012. XPath - the keymaster.
mycodestories.blogspot.com
My code stories: January 2015
http://mycodestories.blogspot.com/2015_01_01_archive.html
A small contribution to the world of programming. A mix of web programming, .Net, Qt/C etc. Your everyday pink tech-blog ;). Wednesday, January 7, 2015. Create an interactive HTML5 Canvas using event handlers. You can use HTML5 Canvas as an alternative approach designing info graphics, branding graphics etc. Using the example in my previous blog post, I will add a clickable area on the canvas and use a JavaScript event handler to execute some logic. Var custFigures = [];. Wednesday, January 07, 2015.
mycodestories.blogspot.com
My code stories: How to create an XSLT template
http://mycodestories.blogspot.com/2012/08/how-to-create-xslt-template.html
A small contribution to the world of programming. A mix of web programming, .Net, Qt/C etc. Your everyday pink tech-blog ;). Tuesday, August 7, 2012. How to create an XSLT template. This is the second post in my flash post series on XSLT. We'll start off with some simple examples and move up to advanced as we get the most important components in place. The most basic thing you should know about is how to create and call a template. A template is a procedure that is executed when a certain criteria is met.
SOCIAL ENGAGEMENT