Hello MPGH, This is a program i learned to make from this youtube video ;P.
It converts text to binary or binary to text!
There are a couple errors for the Binary to Text button but it only gives me errors when i enter an incorrect binary code. Tell me if you have any problems!
Screen SHOT
Virus Scans VirusTotal VirusCheif Jotti
Hope you like it x.x
Credits
@youtube Video
@me for actually making it ;P
Posts 1–15 of 16 · Page 1 of 2
Post a Reply
Tags for this Thread
None
Yea I saw that tut on yt a while ago...
Scan the .rar not the .exe
oh sorry o-o, what difference does it make though?
@Jason i fixed the links, sorry ;P
Originally Posted by bboycling
oh sorry o-o, what difference does it make though?
@Jason i fixed the links, sorry ;P
Um because you uploaded a rar, which is an archive, and only scanned the .exe. Means the exe might be safe, but what about the rest of the rar? You could put any files in there.
Decompiling now.
File's clean, approved. Could work on your code though, very few steps involved in this.
Looks good
YOu should put this on Binary Programming Section
Thanks you guys xD i'll work on my coding i wish iw as better at this :P
@Lyoto Machida there's a binary programming section?
Originally Posted by bboycling
Thanks you guys xD i'll work on my coding i wish iw as better at this :P
@Lyoto Machida there's a binary programming section?
i was joking .
@Lyoto Machida yeah i thought so xD , i should of made this whole thingg in binary code lol
Did you use .NET libraries? Or did all the math by yourself?
Doing the math would be funnier..
Originally Posted by Brinuz
Did you use .NET libraries? Or did all the math by yourself?
Doing the math would be funnier..
Gotta love LINQ:
[highlight=vb.net]
Private Function BinaryToInt(ByVal binary As String) As Integer
Dim int As Integer = (From i As Integer In Enumerable.Range(0, binary.Length - 1) Where binary(i) = "1" Select Math.Pow(2, binary.Length - 1 - i)).Sum()
Return int
End Function
[/highlight]
Do you actually understand what binary is?
nice work looks very cool
Yes lol, i learned the beginning of c++ not much of it , but it talked about binary.