http://www.youtube.com/watch?v=3rIO_McRPwQ
this is tai zen aka asian pepper. give him some donations.
done
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
script AppDelegate
property parent : class "NSObject"
property secretPhrase : missing value
property messageFee : missing value
property accountReceiver : missing value
property messageEncrypted : missing value
property keyReceiver : missing value
on assimilateFile_(sender)
set base64path to "/Library/NXTFileClient/tempfile.txt"
set inFilePath to POSIX path of (choose file with prompt "Please select file for assimilation." )
do shell script "openssl base64 -in " & inFilePath & " -out " & base64path
open for access base64path
tell current application to set ciphertext to read base64path
close access base64path
--cipher to hex
set thelist to "0123456789ABCDEF"
set hexvalue to ""
repeat with i in ciphertext
set theAscii to ASCII number of i
set hexvalue to hexvalue & character (theAscii div 16 + 1) of thelist & character (theAscii mod 16 + 1) of thelist
end repeat
set secretPhrase to "0"
set finalText to (hexvalue as text)
--cipher to hex
set messageLength to the length of finalText
set var_a to messageLength / 4
set var_b to var_a / 200
set iterations to round var_b rounding up
set counter to 1
repeat iterations times
if messageLength is less than 800 then
set charnumberalpha to 1
set charnumberbeta to messageLength
else
set charmaximum to messageLength
if counter is equal to iterations then
set charnumberalpha to 1 + 800 * (counter - 1)
set charnumberbeta to charmaximum
else
set charnumberalpha to 1 + 800 * (counter - 1)
set charnumberbeta to 800 + 800 * (counter -1)
end if
end if
set messageFinal to (text charnumberalpha thru charnumberbeta of finalText)
if counter is less than 10 then
set identifierLength to 1
else
set identifierLength to the length of counter
end if
set completeMessage to identifierLength & "000" & counter & "000" & messageFinal
set urlMassive to "http://localhost:7874/nxt?requestType=sendMessage&secretPhrase=" & secretPhrase & "&recipient=" & accountReceiver & "&fee=" & messageFee & "&deadline=1440" & "&message=" & completeMessage
do shell script "open " & quoted form of urlMassive
set counter to counter + 1
end repeat
end assimilateFile_
on applicationWillFinishLaunching_(aNotification)
-- Insert code here to initialize your application before any files are opened
end applicationWillFinishLaunching_
on applicationShouldTerminate_(sender)
-- Insert code here to do any housekeeping before your application quits
return current application's NSTerminateNow
end applicationShouldTerminate_
end script