Free Backup4all License

What happens when your hard disk dies, will your business survive if you can’t recover all of your important data? What about all those precious personal photos of your children growing up? Start backing up with Backup4all to avoid such risks.

Backup4all is a backup software for Windows. It protects your valuable data from partial or total loss by automating tasks, password protecting and compressing it to save storage space.

Using Backup4all you can easily back up to any local or network drive, backup to FTP, backup to DVD, or other removable media (such as USB HDD or flash drives). Backup4all is one of the best backup solution for desktop and laptop computers, for your business or personal use.

Backup4all creates standard zip files and has its own backup catalog to keep track of the new and modified files. This makes it compatible with any other backup software or zip utility.

This software is worth $20 but available for free! This is for limited period. So grab it now!

How to get free License key?
1. Visit this web-page given in link below and submit your email ID.
2. In few minutes, the license key will be emailed to you.
3. Download Backup4all from the download link given below.
4. Install the software and enter the license key obtained from email.
5. You are done!

Download Now
Click here for free Registration License Key

Platforms: Microsoft Windows® 2008 Server, Windows Vista (with or withouth SP1), Windows XP, Windows 2003 Server, Windows 2000 and 2000 Server, Windows Me, NT 4.0 and 98.

Popularity: unranked [?]

WML – Laptop Recovery Software

For the last 3 years I’ve been working on a laptop recovery application/website. The idea is that upon start-up the service reports information to a website. This information includes but not limited to, IP, MAC, Location, recorded keystrokes, ftp capability, remote desktop and more. Why? If your laptop is stolen simply go to a different computer, run the software, connect to your laptop and retrieve needed files. You can even delete files, lock the system down or just watch your thief in action if you have a built in web-cam. 

I want this service to be free or very cheap. Problem is it takes money to push out an app like this. Hosting resources are outrageously high these days. Maybe I’ll come across a nice sponsor willing to pitch in the needed $5,000 to get this rolling in the right direction.

Popularity: unranked [?]

uStreamer V1.1 Preview

ustreamernew 299x300 uStreamer V1.1 Preview

Check back later for a download link. Maybe tomorrow around noon.

Popularity: unranked [?]

uStreamer: It’s still alive!

I’ve recieved tons of emails wanting to know when an update to uStreamer will be available. Soon! I’ve been working personal things the last 2 weeks but I did not forget about uStreamer! The next version to come will support custom skins, Twitter integration(and maybe Ping.FM), Radio Mode and a few other nice features. So stay tuned and check back around this time next week. 

Remember, if you like my software, Donate!

Popularity: unranked [?]

INI Handling Using VB.NET 2008

Private Declare Ansi Function GetPrivateProfileString Lib "kernel32.dll" Alias "GetPrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As System.Text.StringBuilder, ByVal nSize As Integer, ByVal lpFileName As String) As Integer
    Private Declare Ansi Function WritePrivateProfileString Lib "kernel32.dll" Alias "WritePrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal lpString As String, ByVal lpFileName As String) As Integer
    Private Declare Ansi Function GetPrivateProfileInt Lib "kernel32.dll" Alias "GetPrivateProfileIntA" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal nDefault As Integer, ByVal lpFileName As String) As Integer
    Private Declare Ansi Function FlushPrivateProfileString Lib "kernel32.dll" Alias "WritePrivateProfileStringA" (ByVal lpApplicationName As Integer, ByVal lpKeyName As Integer, ByVal lpString As Integer, ByVal lpFileName As String) As Integer

    Dim sFile As String

    ReadOnly Property FileName() As String
        Get
            Return sFile
        End Get
    End Property

    Public Function GetString(ByVal Section As String, ByVal Key As String, ByVal [Default] As String) As String
        Dim nCharCount As Integer
        Dim oResult As New System.Text.StringBuilder(256)
        nCharCount = GetPrivateProfileString(Section, Key, [Default], oResult, oResult.Capacity, sFile)
        If nCharCount > 0 Then
        End If
        GetString = Strings.Left(oResult.ToString, nCharCount)
    End Function

    Public Function GetInteger(ByVal Section As String, ByVal Key As String, ByVal [Default] As Integer) As Integer
        Return GetPrivateProfileInt(Section, Key, [Default], sFile)
    End Function

    Public Function GetBoolean(ByVal Section As String, ByVal Key As String, ByVal [Default] As Boolean) As Boolean
        Return (GetPrivateProfileInt(Section, Key, CInt([Default]), sFile) = 1)
    End Function

    Public Sub WriteString(ByVal Section As String, ByVal Key As String, ByVal Value As String)
        WritePrivateProfileString(Section, Key, Value, sFile)
        Flush()
    End Sub

    Public Sub WriteInteger(ByVal Section As String, ByVal Key As String, ByVal Value As Integer)
        WriteString(Section, Key, CStr(Value))
        Flush()
    End Sub

    Public Sub WriteBoolean(ByVal Section As String, ByVal Key As String, ByVal Value As Boolean)
        WriteString(Section, Key, CStr(CInt(Value)))
        Flush()
    End Sub

    Private Sub Flush()
        FlushPrivateProfileString(0, 0, 0, sFile)
    End Sub

within my code I use the following to write a to a [setion] key=value

Dim objIniFile As New IniFile("your file path\yourfile.ini")
objIniFile.WriteString("Section name", "Keyname", "your value as string")

‘to read from a [section] key=value

Dim objIniFile As New IniFile("your file path\yourfile.ini")
Dim boolData As Boolean = objIniFile.GetBoolean("your Section name" "yourkey",True)

Popularity: 6% [?]

MySQL & .NET

While coding up an application I’ve been working on I thought about incorporating MySQL to track usage, users and registrations. However, I realized I didn’t know the first thing about MySQL. Of course I use Wordpress, but thats just upload, click, install! So here I am with a complete clientside registration, user and tracking system and no idea how to send it to my MySQL database! So anyway, I’ve decided to brush up on MySQL and using it with .NET. I plan on releasing a few tutorials to simplify the use and help the beginners out there.

Popularity: 1% [?]

Korny Update

I didn’t get to finish the post earlier this week because I had to stop and make dinner. So here is some information on my Rcon Manager and my new project, “Korny”. Korny is a small custom application used to manage your Flickr account. Korny will be a standaline Windows application and a Wordpress plugin model.

Korny will support custom user skins, plugins and Wordpress intergration.

 

….will finish later.

Popularity: 3% [?]

Update

Ok, so I’ve been busy with the site as you can see. It’s got a whole new theme. I’m still working on it a little but plan on working on www.semogeeks.com all day today. I’ve also got some updates on my COD4 Manager. I’ve been able to implement several must have features that no other manager has been able to accomplish yet. 

1. In-Game Admin Menu
2. PBBans Intagration

So check back tomorrow for more information.

Popularity: 1% [?]