of     2   
chevron_rightchevron_rightchevron_right

kingimpy
#8208216Monday, May 04, 2009 7:08 PM GMT

.-- . .-.. -.-. --- -- . / - --- / - .... . / -... .. -. .- .-. -.-- / .- -. -.. / -- --- .-. ... . / -.-. --- -.. . / - .... .-. . .- -.. --..-- / ... .... .- .-. . / -- . ... ... .- --. . ... / .. -. / -... .. -. .- .-. .-. -.-- / .- -. -.. / -- --- .-. ... . / -.-. --- -.. . / .- -. -.. / .... .- ...- . / ..-. ..- -. Translated for anyone who does not understand morsecode: Welcome to the binary and morse code thread, share messages in binarry and morse code and have fun 01010111 01100101 01101100 01100011 01101111 01101101 01100101 00100000 01110100 01101111 00100000 01110100 01101000 01100101 00100000 01100010 01101001 01101110 01100001 01110010 01111001 00100000 01100001 01101110 01100100 00100000 01101101 01101111 01110010 01110011 01100101 00100000 01100011 01101111 01100100 01100101 00100000 01110100 01101000 01110010 01100101 01100001 01100100 00101100 00100000 01110011 01101000 01100001 01110010 01100101 00100000 01101101 01100101 01110011 01110011 01100001 01100111 01100101 01110011 00100000 01101001 01101110 00100000 01100010 01101001 01101110 01100001 01110010 01110010 01111001 00100000 01100001 01101110 01100100 00100000 01101101 01101111 01110010 01110011 01100101 00100000 01100011 01101111 01100100 01100101 00100000 01100001 01101110 01100100 00100000 01101000 01100001 01110110 01100101 00100000 01100110 01110101 01101110 I understand morse but i have to translate binary with the internet.
MrBlockson
#8208232Monday, May 04, 2009 7:08 PM GMT

...---...
kingimpy
#8208431Monday, May 04, 2009 7:13 PM GMT

.... --- .-- / -.-. .- -. / .. / .... . .-.. .--. ..--..
tovtov
#8208702Monday, May 04, 2009 7:20 PM GMT

.../---/...
kingimpy
#8208717Monday, May 04, 2009 7:20 PM GMT

Sos again?
Dr01d3k4
#8208750Monday, May 04, 2009 7:21 PM GMT

I would have to use an internet translator for binary, but for morse I use my custom translator made in Lua which can use all letters, numbers and some punctuation: convert = { a = ".-", b = "-...", c = "-.-.", d = "-..", e = ".", f = "..-.", g = "--.", h = "....", i = "..", j = ".---", k = "-.-", l = "._..", m = "--", n = "-.", o = "---", p = ".--.", q = "--.-", r = ".-.", s = "...", t = "-", u = "..-", v = "...-", w = ".--", x = "-..-", y = "-.--", z = "--..", } punc = { {".", "._._._"}, {",", "__..__"}, {"?", "..__.."}, {"'", ".____."}, {"!", "_._.__"}, {"/", "_.._."}, {"(", "_.__."}, {")", "_.__._"}, {"&", "._..."}, {":", "___..."}, {";", "_._._."}, {"=", "_..._"}, {"+", "._._."}, {"-", "_...._"}, {"_", "..__._"}, {"\"", "._.._."}, {"$", "..._.._"}, {"@", ".__._."}, } numbers = { {1, ".----"}, {2, "..---"}, {3, "...--"}, {4, "....-"}, {5, "....."}, {6, "-...."}, {7, "--..."}, {8, "---.."}, {9, "----."}, {0, "-----"}, } function _G.tomorse(str) local sstr = tostring(str) if (sstr == nil) then return str end local a = "" for b = 1, #str do local d = string.lower(string.sub(str, b, b)) if (d == " ") then a = a.."/ " elseif (tonumber(d) ~= nil) then for c = 1, #numbers do if (numbers[c][1] == tonumber(d)) then a = a..""..numbers[c][2].." " end end else for i, v in pairs(convert) do if (d == i) then a = a..""..v.. " " end end for _, e in pairs(punc) do if (d == e[1]) then a = a..""..e[2].." " end end end end return a end function _G.tostr(m) local sm = tostring(m) if (sm == nil) then return m end local am = string.gsub(sm, " ", "|") local tbl = { } local curstr = "" local str = "" for a = 1, #am do if (string.sub(am, a, a) ~= "|") then curstr = curstr..""..string.sub(am, a, a) else table.insert(tbl, curstr) curstr = "" end end for b = 1, #tbl do for c = 1, #numbers do if (tbl[b] == numbers[c][2]) then str = str..""..numbers[c][1].. "" end end for i, v in pairs(convert) do if (tbl[b] == v) then str = str..""..tostring(i) end end for _, d in pairs(punc) do if (tbl[b] == d[2]) then str = str..""..tostring(d[1]) end end if (tbl[b] == "/") then str = str.." " end end return str end local a = tomorse("Input the string you want to morse here") local b = tostr("Input the morse you want to string here") print(a, "| |", b)
Bloxmasters1029
#8208766Monday, May 04, 2009 7:21 PM GMT

011010010111010001110011 0010000001101111011101100110010101110010 0010000000111001001100000011000000110000001000010010000100100001 Translation: IT'S OVER 9000!!!
Dr01d3k4
#8208814Monday, May 04, 2009 7:22 PM GMT

.. - .____. ... / --- ...- . .-. / ----. ----- ----- ----- _._.__ _._.__ Is morse code for: IT'S OVER 9000!
MrBlockson
#8208836Monday, May 04, 2009 7:23 PM GMT

I can convert between Dec, Hex, Oct and Bin.
kingimpy
#8209222Monday, May 04, 2009 7:33 PM GMT

I tryed learning hex but i couldn't seem to get it quite right... i'll try again though. 54 65 73 73 20 69 73 20 74 68 6f 73 20 61 20 66 61 69 6c 21 20 3d 2a
Tyson5000
#8209281Monday, May 04, 2009 7:35 PM GMT

.-.. --- .-.. / .. / .-.. ..- ...- / --. --- --- --. .-.. . / .. / ..-. .. -. -.. / .--. .-- -. .-.. -.-- ... --- -- . / ... .. - . ...
Dr01d3k4
#8209320Monday, May 04, 2009 7:36 PM GMT

Tyson5000 said: o i uv googe i find pwnysome site
MrBlockson
#8211121Monday, May 04, 2009 8:16 PM GMT

Yeah...
spencer102
#8211164Monday, May 04, 2009 8:17 PM GMT

Mrblockson, did you say SOS?
MrBlockson
#8211225Monday, May 04, 2009 8:18 PM GMT

Indeed I did...
raegirl1
#8211471Monday, May 04, 2009 8:23 PM GMT

......___...___..___ ___ ___ .___..___ ___ ___ .___. Translation: Hello lol.
MrBlockson
#8211533Monday, May 04, 2009 8:25 PM GMT

7A69 = [Decimal] Can anyone work out what that means?
c12
#8211541Monday, May 04, 2009 8:25 PM GMT

01101100011001010110011101101111001000000110110001100101011001110110111100100000011000100110110001101111011000110110101101101100011000010110111001100100
MrBlockson
#8211701Monday, May 04, 2009 8:29 PM GMT

Not quite, I need it in Decimal...
Insidebox
#8211844Monday, May 04, 2009 8:31 PM GMT

I know morse code: -.- lol
Bzirt
#8212054Monday, May 04, 2009 8:36 PM GMT

Looks like 37337 in dec, Blox. MS-Calculator skillz.
Bzirt
#8212089Monday, May 04, 2009 8:36 PM GMT

*31337 Oh poo. Edit function now please.
MrBlockson
#8212211Monday, May 04, 2009 8:38 PM GMT

hah you got it right though! [in the end heh heh]
c12
#8221607Monday, May 04, 2009 11:23 PM GMT

Translate my binery I posted above.
TheBlox
#8222069Monday, May 04, 2009 11:31 PM GMT

...... --...--.--..._._.__

    of     2   
chevron_rightchevron_rightchevron_right