vrijdag 25 februari 2011

Alternative download for EnQryption Tools!

[Image: logo.png]
EnQryption Tools
So some time ago I created EnQryptionTools. It includes various encryption and decryption tools, as well as online checkers.
Entire thread can with explanation can be found here

Reason
Because I can't keep up with the PMs anymore, I decided to put it on sc. This way I earn a small bit, and you don't have to buy it from my website, which is a normal fee of $5. Quite some copies have been sold before.

The entire thing was written in Java for the people who are interested.

An example of the online scanner :)
 


download:sclink

VirusScan
Of course, always necessary when presenting software:
VirusTotal

dinsdag 22 februari 2011

JScrape - the Java Website Scraping Framework

It recently hit me that I often repeat the same tasks when dealing with websites in my projects. Visiting a website, with or without a proxy is often the same task, and I repeatedly have to create the same classes.

Therefore I decided to write a little framework or module to make the task easier. I just started out, but it's getting along quite fast. I will keep you updated on the project I just named "JScrape - The Java WebScraping Framework".

class diagram until now:




I'll keep you guys updated!
EDIT:
will be able to check the updates here: assembla

kind regards
@_Qkyrie_

woensdag 2 februari 2011

Admin Finder Source - C# + xaml (wpf)

AdminFinder Sources - C# + Xaml

Hello everyone. Lately, after the minor release of my humble adminfinder I've been getting a lot of PMs asking for the sources of my program. Today I decided it was time to put a little time into creating a thread, so some of you could actually learn something from me..


OO-design

First of all, I tried to apply as much as OO-design as possible. Doing this, creating another gui for this backend is child's play. It's a pure MVC design that uses dependency injection for getting the appropriate list of adminpaths.

Basic things like patterns and interfaces are added, for you to learn how to work with them. One could easily do this without interfaces, but you'll see how the dal (the persistence) was worked out, and you'll notice that with the addition of only 1 class, one could get everything out of a database for example...

The controller is the only thing that talks to the gui. It's also the only thing a gui should import (using..) and reference to.
never let the user interface know your domain classes!

WPF

I see a lot of you here use basic Windows Forms. I though, why not play a bit with the Windows Presentation Foundation? I started of creating a normal form, but I then realised I could do more fancy things with WPF. Using the exact same model (no changes whatsoever), I created a frontend in xamlcode.

It's so easy to create a different gui with this model. I mean, a website using this model can be created in less than one hour. Even a silverlight application would be deadly easy.

I recommend not looking at the xamlcode, as it is semi-autogenerated by not only VS Ultimate, but also MS Blend (which you could get as a student from dreamspark..). But the codebehind of the form is very interesting, as it contains a background worker that works with a progressbar ;)

Download program

The software can be downloaded below. This and more software can also be downloaded @ Windscream


Download source

The sources are free to download. If you however would use it somehow, please give credits and send me a mail with the link.

download here

@_Qkyrie_