Thursday, November 11, 2010

Andriod Spy v1.0



download here android spy here
http://www.mediafire.com/?5cdkjk4ebo94guk

for those of you who dont have frame work 4.0 you need to download net.40 before you can run this unlocking tool applicaiton

download framework v4.0 here http://msdn.microsoft.com/en-us/netframework/aa569263.aspx







Iphone Jail break
MyOS - Jailbreak App Allows You To Enable Or Disable iOS Features

A new jailbreak app aptly called MyOS is available on the Cydia App Store that allows users to enable or disable features (mostly) introduced in iOS 4 or later.
So if you think that multitasking is slowing your iPhone (especially older iPhone models) then disable it to see if it helps, if it doesn’t then you can re-enable it.
You can achieve all this via the Settings app.
Here is a brief description of MyOS app:
Toggle one or more features and then press the Respring button.
By default, only the default features for your platform are enabled as of version 1.0.1.
You can enable or disable the following features using MyOS app:
● Multitasking - Gives you the user the option to turn Apples native multitasking feature on and off at will.
● Homescreen Wallpapers - The ability to enable and disable Apples own implementation of backgrounds in SpringBoard on and off.
● Unified iPod - Whether you like iPod.app on your iPod Touch or having Music.app and Video.app on your iPhone, this gives you the choice.
● AppStore - Don't like what the official AppStore has to offer, or want to prevent people from using it? this gives the ability to turn off the AppStore.
● Contacts (iPhone models only) - Stand-alone contacts make no sense when you have the Address Book in Phone.app? using this option you can turn it off.
● HDR (Requires hardware camera) - Enable HDR on unsupported devices or disable it from your iPhone 4, the decision is yours.
● GameCenter (iPhone 3G only) - Enable GameCenter on your iPhone 3G.
● Camera.app (Requires hardware camera) - Disable the camera on your device.
● Voice Control (Voice control capable devices only) - Disable Voice Control on all supported devices.

As always, please let us know what you think of MyOS and which feature you're planning to enable or disable using this jailbreak app in the comments section below.

Sending eMail using SMTP Gmail yahoo hotmail in Visual Basic 2010

Imports System.Net.Mail

Public Class Form1


Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim msg As String
Dim feedback As String

msg = "Sender's Name: " & tbName.Text
msg = msg + vbCrLf
msg = msg + "Sender's email Address: " & tbEmail.Text


feedback = SendEmailMessage("your email@gmail.com", "your email@gmail.com", "your password", "Phone Unlock Enquiry", msg)
feedback = feedback + vbCrLf + "In order to help improve our services, please feel free to donate by send us a paypal or Western Union."
feedback = feedback + vbCrLf + "Thank you for using our free software. We will get back to you within 48 hours."

End Sub




Function SendEmailMessag(ByVal sendTo As String, _
ByVal sendFrom As String, _
ByVal password As String, _
ByVal sendSubject As String, _
ByVal sendMessage As String) As String

Try

' validate recipient email address
Dim bTest As Boolean = ValidateEmailAddress(sendTo)

If (bTest = False) Then
Return "Invalid recipient email address: " + sendTo
End If

' validate sender email address
bTest = ValidateEmailAddress(sendFrom)

If (bTest = False) Then
Return "Invalid sender email address: " + sendTo
End If

' Create the basic message
Dim message As New MailMessage( _
sendFrom, _
sendTo, _
sendSubject, _
sendMessage)

' create smtp client at mail server location
Dim client As New SmtpClient()

' Add credentials
client.Credentials = New System.Net.NetworkCredential(sendFrom, password)
client.Port = 587
client.Host = "smtp.gmail.com"

' send message
client.Send(message)

Return "Message sent to " + sendTo + " at " +
DateTime.Now.ToString() + "."

Catch ex As Exception

Return ex.Message.ToString()

End Try

End Function


Function ValidateEmailAddress(ByVal emailAddress As String) As Boolean

Try

Dim TextToValidate As String = emailAddress
Dim expression As New Regex("\w+@[a-zA-Z_]+?\.[a-zA-Z]{2,3}")

' test email address with expression
If (expression.IsMatch(TextToValidate)) Then
' is valid email address
Return True
Else
' is not valid email address
Return False
End If

Catch ex As Exception

Throw ex

End Try

End Function