What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Release] uTorrentPSM

[Release] uTorrentPSM
Author: Message:
WDZ
Former Admin
*****

Avatar

Posts: 7106
Reputation: 107
– / Male / Flag
Joined: Mar 2002
RE: [Release] uTorrentPSM
Hacked the code a bit, threw some debug timers in there, then executed it with WSH...

---------------------------
Windows Script Host
---------------------------
File loading time: 0 ms, Unicode time: 31672 ms, BDecode time: 312 ms, Total time: 32063 ms


The actual BDecoding seems quite efficient, the bottleneck is this dodgy Unicode conversion code...

code:
// Split the 2 bytes for each Unicode char and add them to an array. Convert both bytes from a charcode to a character.
var UInt8Array = [],charCode;
while(unicodeString.length){
    charCode = unicodeString.charCodeAt(0);
    UInt8Array.push(String.fromCharCode(charCode&255),String.fromCharCode(charCode>>8));
    unicodeString = unicodeString.substr(1);
}
Here's a forum post where the author asks for help with that: http://www.ozoneasylum.com/27909 :zippy:
03-17-2007 05:49 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Release] uTorrentPSM - by vikke on 03-16-2007 at 10:14 PM
RE: [Release] uTorrentPSM - by prashker on 03-16-2007 at 10:21 PM
RE: [Release] uTorrentPSM - by vikke on 03-16-2007 at 10:24 PM
RE: [Release] uTorrentPSM - by prashker on 03-16-2007 at 10:26 PM
RE: [Release] uTorrentPSM - by vaccination on 03-16-2007 at 10:52 PM
RE: [Release] uTorrentPSM - by Voldemort on 03-16-2007 at 10:57 PM
RE: [Release] uTorrentPSM - by Felu on 03-17-2007 at 01:26 AM
RE: [Release] uTorrentPSM - by Voldemort on 03-17-2007 at 01:27 AM
RE: [Release] uTorrentPSM - by MeEtc on 03-17-2007 at 02:32 AM
RE: [Release] uTorrentPSM - by prashker on 03-17-2007 at 02:42 AM
RE: [Release] uTorrentPSM - by ddunk on 03-17-2007 at 02:51 AM
RE: [Release] uTorrentPSM - by WDZ on 03-17-2007 at 03:47 AM
RE: [Release] uTorrentPSM - by -dt- on 03-17-2007 at 04:09 AM
RE: [Release] uTorrentPSM - by ddunk on 03-17-2007 at 04:26 AM
RE: [Release] uTorrentPSM - by WDZ on 03-17-2007 at 05:49 AM
RE: [Release] uTorrentPSM - by vikke on 03-17-2007 at 06:37 AM
RE: [Release] uTorrentPSM - by vaccination on 03-17-2007 at 08:30 AM
RE: [Release] uTorrentPSM - by Silentdragon on 03-17-2007 at 08:32 AM
RE: [Release] uTorrentPSM - by vikke on 03-17-2007 at 09:46 AM
RE: [Release] uTorrentPSM - by prashker on 03-17-2007 at 03:30 PM
RE: [Release] uTorrentPSM - by vikke on 03-17-2007 at 03:39 PM
RE: [Release] uTorrentPSM - by prashker on 03-17-2007 at 03:42 PM
RE: RE: [Release] uTorrentPSM - by vikke on 03-17-2007 at 06:09 PM
RE: [Release] uTorrentPSM - by Supersonicdarky on 03-17-2007 at 07:18 PM
RE: [Release] uTorrentPSM - by vikke on 03-17-2007 at 07:29 PM
RE: [Release] uTorrentPSM - by EBFL on 03-18-2007 at 04:32 PM
RE: [Release] uTorrentPSM - by MeEtc on 03-18-2007 at 05:54 PM
RE: [Release] uTorrentPSM - by vikke on 03-18-2007 at 05:56 PM
RE: [Release] uTorrentPSM - by Oxy on 08-29-2007 at 01:56 PM
RE: RE: [Release] uTorrentPSM - by Aeryn on 08-29-2007 at 02:16 PM
RE: [Release] uTorrentPSM - by Oxy on 08-29-2007 at 02:26 PM
RE: RE: [Release] uTorrentPSM - by Aeryn on 08-29-2007 at 04:11 PM
RE: [Release] uTorrentPSM - by Oxy on 08-29-2007 at 04:36 PM
RE: [Release] uTorrentPSM - by vikke on 09-16-2007 at 08:09 PM
RE: [Release] uTorrentPSM - by prashker on 09-16-2007 at 08:12 PM
RE: RE: [Release] uTorrentPSM - by vikke on 09-16-2007 at 08:13 PM
RE: [Release] uTorrentPSM - by pauloslash on 12-10-2007 at 03:53 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On