Pages
Categories
- Did you find some of my content helpful? Consider a donation to help further my work.
Popular Article Tags
.net .net framework ajax android asp.net c# client cms coding configuration configure custom view design development fix framework git html install java javascript json linux microsoft oracle php process raspberry pi regular expressions research ruby on rails scripting site svn thoughts tip tutorials Uncategorized update vb.net wamp web development web programming wordpress xna-
Most Recent Articles
- GPL-ed my text compare software!
- GPL-ed My 2D Tile Based Map Editor
- Made an app to quickly get short ebay affiliate links.
- Historic frequency based random lotto number generator.
- Updating the Raspberry PI GIT server.
- Adjusting Notepad++ to work with an ASP VBScript project.
- Using Raphael the JavaScript graphics library.
- C#: Using WebClient on CSV Formatted Stock Data
- A simple classic VB code counter made in C#
- Android: Using the CountDownTimer class
- C#: Using the Background Worker to thread your application processing.
- Android: Working with Preferences and Settings
- Javascript & HTML: Async Communication Prototype
- Android: Basic game loop with scaled graphics.
- Android: Get the size of a custom view before display.
Archives
Popular Article Tags
.net .net framework ajax android asp.net c# client cms coding configuration configure custom view design development fix framework git html install java javascript json linux microsoft oracle php process raspberry pi regular expressions research ruby on rails scripting site svn thoughts tip tutorials Uncategorized update vb.net wamp web development web programming wordpress xna-
Most Recent Articles
- GPL-ed my text compare software!
- GPL-ed My 2D Tile Based Map Editor
- Made an app to quickly get short ebay affiliate links.
- Historic frequency based random lotto number generator.
- Updating the Raspberry PI GIT server.
- Adjusting Notepad++ to work with an ASP VBScript project.
- Using Raphael the JavaScript graphics library.
- C#: Using WebClient on CSV Formatted Stock Data
- A simple classic VB code counter made in C#
- Android: Using the CountDownTimer class
- C#: Using the Background Worker to thread your application processing.
- Android: Working with Preferences and Settings
- Javascript & HTML: Async Communication Prototype
- Android: Basic game loop with scaled graphics.
- Android: Get the size of a custom view before display.
Tag Archives: Open Source
GPL-ed my text compare software!
Another piece of software I’m opening up by licensing it with GPLv3. This application allows you to compare text files with a focus on speed and handling larger files through temporary file buffering. GitHub: https://github.com/TheWayOfCoding/TWOCTextFileCompare I also have the first release compiled with Visual Studio’s publish tool if you don’t want to deal with that but want to try the application out. Help me out through donating (Paypal). Here is … Continue reading
Using Raphael the JavaScript graphics library.
In this example, I go over a simple use of Raphael.js. It draws 4 boxes on the page and allows you to move and resize each independently. Here is the graphics library (licenses under the MIT license): https://dmitrybaranovskiy.github.io/raphael/ Here is my code on GitHub. The basic gist of it is to initialize the primary Raphael object and apply it to the page. After that you create the boxes you want … Continue reading