Adding Connections in Linked In

Adding Connections in Linked In

Linked In Add Connections

Posted in Uncategorized | Leave a comment

SwhistleSoft Forum

SwhistleSoft Forum

We have added a forum section to our website, please check it out: here

Please act responsibly when interacting with others in the forum.

Thanks

Posted in Uncategorized | Leave a comment

Google Analytics Add users via email to your account

Google Analytics Add users via email to your account

If you have a web site these days, you had better be at least a little bit familiar with google analytics or some form of web analytics software. This helps you to track how people get to your site, and what they do when they get there.

One of the things you will need to do when and if you do a lot of tracking is to be able to share the analytics data with others or instruct others how to share that with you.

Google’s instructions come from the following: Add Users to google

Posted in Uncategorized | Leave a comment

Convert dot net invaders to html5

Convert dot net invaders to html5

UPDATE: Playable

UPDATE: Code Link

So, I wrote a dot net invaders clone and thought that I would try my hand at converting it into an html5 version using canvas, and the same cruddy graphics in the first version. The point of this blog, however, is not about graphics but instead of development. I hacked my way through a simple conversion at the start implementing some of the techniques I presented usage of in the render framework post. Then things turned ugly when I tried to implement inheritance. I was able to actually implement what I desired at first, but found some issues when creating multiple items using the same class seemed to use the same instance for a member object. This was undesireable, but I simply created a new “object” in the “constructor” with the same name and everything worked marvelously.

Continue reading

Posted in Javascript Development, Web Development | Leave a comment

A Simple Javascript Canvas Render Framework

A Simple Javscript Canvas Render Framework

It is possible to do a great number of things in many different languages, and due to the popularity of the some of the particular features of javascript, it is also possible to do these in javascript. The trick is to figure out what is needed in terms of state, and logic, and provide a looping mechanism to make things happen on a regular basis. The particular thing that I am talking about here is rendering a frame – or essentially drawing a picture.

Continue reading

Posted in Javascript Development, Uncategorized | Leave a comment

Breaking Down Space Invaders – A possible implementation in dot net

Breaking Down Space Invaders – A possible implementation in dot net

I have wanted to write a space invaders clone for a while, and thought to myself that it wasn’t really difficult at all, and I should write a blog about it. I am going to try and minimize the BS in order to keep the entry short enough and to the point.
Continue reading

Posted in C#.net, Uncategorized | Leave a comment

Game Editor – Concepts of game creation

Game Editor – Concepts of game creation

Found a nifty little site and editor for assisting with simple game creation and editing. I played around a little bit with it, enough to make a cheap little pacman game. The editor is nice because there is minimal coding required to get up a game running quickly. The main issues in terms of rendering, timing, loading graphics etc. are taken care of you by the click of a mouse.

Game Editor.com

Posted in Uncategorized | Leave a comment

Dot Net html editor to image

Dot Net html editor to image

While working on a commercial project, I was involved in providing a simple html rendering engine. Simple in terms of not being 100% complete, not necessarily in complexity. To help debug this, I created a sample app that demonstrates the workings of an html editor and the rendering in action.

Continue reading

Posted in C#.net, Uncategorized | 1 Comment

Joomla SQL 2 Excel Replacement

Joomla SQL 2 Excel Replacement

Some months ago, almost a year I think there used to be a really ripping piece of software called SQL2Excel that was provided by Joomla R Us. It appears that this site has been down for a while, so I decided I would try to come up with a replacement that gets around some of the limitations.

Continue reading

Posted in Content Management Systems, Joomla Development | 3 Comments

Parsing Html with Web Browser Control

Parsing Html with WebBrowser Control

It is relatively easy to parse html with the WebBrowser for VB and C# or any other .net language. The trick with the WebBrowser Control is to first load a blank document into the control by using one of the following methods:

Continue reading

Posted in Applications Development, C#.net, VB.net | Leave a comment