User Rocky Luck - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:53:07Z http://stackoverflow.com/feeds/user/98062 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1387005/how-safe-is-javascript-e-mail-obfuscation-really/1465807#1465807 1 Answer by Rocky Luck for How safe is javascript e-mail obfuscation really? Rocky Luck 2009-09-23T12:55:46Z 2009-09-23T12:55:46Z <p>If you're like me and don't mind using javascript, I found this page: <a href="http://reliableanswers.com/js/mailme.asp" rel="nofollow">http://reliableanswers.com/js/mailme.asp</a> It basically uses this snippet:</p> <pre><code>&lt;script type="text/javascript"&gt; function mailMe(sDom, sUser) { return("mail"+"to:"+sUser+"@"+sDom.replace(/%23/g,".")); } &lt;/script&gt; &lt;a href="/contact/" title="Contact Me!" onmouseover="javascript:this.href=mailMe('example%23com','me');" onfocus="javascript:this.href=mailMe('example%23com','me');"&gt;Contact Me!&lt;/a&gt; </code></pre> <p>Quite a good obfuscation.</p> http://stackoverflow.com/questions/1312142/delphi-exe-with-built-in-packages-600kb-exe-external-bpls-6mb-why-is-tha/1312238#1312238 4 Answer by Rocky Luck for Delphi: .exe with built-in packages: 600kb, .exe + external BPLs: 6MB. Why is that? Rocky Luck 2009-08-21T14:18:34Z 2009-08-21T14:18:34Z <p>I think you assume the whole of the BPL files are linked in when you generate a program with built-in BPL's. That is not the case. In the final stage of compilation, the Delphi compiler goes into linking everything together. There it omits the modules, that are in the BPL's but not called directly or indirectly by your program.</p> <p>So, you end up with a much smaller footprint, only the modules actually needed are in the final exe.</p> http://stackoverflow.com/questions/18985/javascript-beautifier/1159444#1159444 0 Answer by Rocky Luck for Javascript Beautifier Rocky Luck 2009-07-21T14:10:25Z 2009-07-21T14:10:25Z <p>This is a free stand-alone beautifier (and much more):</p> <p><a href="http://www.yaldex.com/Free%5FJavaScript%5FEditor.htm" rel="nofollow">http://www.yaldex.com/Free_JavaScript_Editor.htm</a></p> http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7 3 How to get the GIT in Delphi 7? Rocky Luck 2009-07-01T18:11:56Z 2009-07-01T21:04:09Z <p>I'm trying to get the Global Interface Table by using the following code (Delphi):</p> <pre><code>uses Comobj, ActiveX; var cGIT : IGlobalInterfaceTable = NIL; const CLSID_StdGlobalInterfaceTable: TGUID = '{00000146-0000-0000-C000-000000000046}'; function GIT : IGlobalInterfaceTable; begin if (cGIT = NIL) then OleCheck (CoCreateInstance (CLSID_StdGlobalInterfaceTable, NIL, CLSCTX_ALL, IGlobalInterfaceTable, cGIT )); Result := cGIT; end; </code></pre> <p>However, CoCreateInstance throws a "Class Not Registered" exception. And indeed: in HKCR/CLSID there is no entry for {00000146- etc. }.</p> <p>Which dll or ocx should be registered, to get this definition in the registry? Or am I doing it totally wrong?</p> http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7 Comment by Rocky Luck on How to get the GIT in Delphi 7? Rocky Luck 2009-07-01T21:33:13Z 2009-07-01T21:33:13Z This function works, provided you use this: TGUID = '{00000323-0000-0000-C000-000000000046}' Thanks to both commenters for providing this answer. http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7/1071393#1071393 Comment by Rocky Luck on How to get the GIT in Delphi 7? Rocky Luck 2009-07-01T21:31:00Z 2009-07-01T21:31:00Z This is brilliant. I thought the ClassID had to be found in the registry too. But it isn't! Go figure. Thank you for this answer!! http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7/1070644#1070644 Comment by Rocky Luck on How to get the GIT in Delphi 7? Rocky Luck 2009-07-01T21:30:24Z 2009-07-01T21:30:24Z Michael: you had the absolute right answer. Thank you!! http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7/1070644#1070644 Comment by Rocky Luck on How to get the GIT in Delphi 7? Rocky Luck 2009-07-01T19:03:28Z 2009-07-01T19:03:28Z Thanks for the answers, Rob. The code stems from a general library I found on the internet. So, that's wrong too. But still I didn't find the GlobalInterfaceTable classID in the registry. http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7/1070644#1070644 Comment by Rocky Luck on How to get the GIT in Delphi 7? Rocky Luck 2009-07-01T19:02:07Z 2009-07-01T19:02:07Z My previous comment is not very clear. The last sentence should read: {00000323- etc. } is not in the registry either. http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7/1070660#1070660 Comment by Rocky Luck on How to get the GIT in Delphi 7? Rocky Luck 2009-07-01T18:52:49Z 2009-07-01T18:52:49Z I didn't know about this utility. Now for the $100000 question : which class should I be looking for with this utility. Or how should I search for the IGlobalInterfaceTable class? http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7/1070644#1070644 Comment by Rocky Luck on How to get the GIT in Delphi 7? Rocky Luck 2009-07-01T18:42:32Z 2009-07-01T18:42:32Z This is the definition from ActiveX.pas (delphi source): {$EXTERNALSYM IGlobalInterfaceTable} IGlobalInterfaceTable = interface(IUnknown) ['{00000146-0000-0000-C000-000000000046}'] function RegisterInterfaceInGlobal(const pUnk: IUnknown; const riid: TIID; out dwCookie: DWORD): HResult; stdcall; function RevokeInterfaceFromGlobal(dwCookie: DWORD): HResult; stdcall; function GetInterfaceFromGlobal(dwCookie: DWORD; const riid: TIID; out ppv): HResult; stdcall; end; 00000323 is not in the registry