User Rocky Luck - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T04:53:07Zhttp://stackoverflow.com/feeds/user/98062http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1387005/how-safe-is-javascript-e-mail-obfuscation-really/1465807#14658071Answer by Rocky Luck for How safe is javascript e-mail obfuscation really?Rocky Luck2009-09-23T12:55:46Z2009-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><script type="text/javascript">
function mailMe(sDom, sUser)
{
return("mail"+"to:"+sUser+"@"+sDom.replace(/%23/g,"."));
}
</script>
<a href="/contact/" title="Contact Me!"
onmouseover="javascript:this.href=mailMe('example%23com','me');"
onfocus="javascript:this.href=mailMe('example%23com','me');">Contact
Me!</a>
</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#13122384Answer by Rocky Luck for Delphi: .exe with built-in packages: 600kb, .exe + external BPLs: 6MB. Why is that?Rocky Luck2009-08-21T14:18:34Z2009-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#11594440Answer by Rocky Luck for Javascript BeautifierRocky Luck2009-07-21T14:10:25Z2009-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-73How to get the GIT in Delphi 7?Rocky Luck2009-07-01T18:11:56Z2009-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-7Comment by Rocky Luck on How to get the GIT in Delphi 7?Rocky Luck2009-07-01T21:33:13Z2009-07-01T21:33:13ZThis 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#1071393Comment by Rocky Luck on How to get the GIT in Delphi 7?Rocky Luck2009-07-01T21:31:00Z2009-07-01T21:31:00ZThis 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#1070644Comment by Rocky Luck on How to get the GIT in Delphi 7?Rocky Luck2009-07-01T21:30:24Z2009-07-01T21:30:24ZMichael: you had the absolute right answer. Thank you!!http://stackoverflow.com/questions/1070571/how-to-get-the-git-in-delphi-7/1070644#1070644Comment by Rocky Luck on How to get the GIT in Delphi 7?Rocky Luck2009-07-01T19:03:28Z2009-07-01T19:03:28ZThanks 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#1070644Comment by Rocky Luck on How to get the GIT in Delphi 7?Rocky Luck2009-07-01T19:02:07Z2009-07-01T19:02:07ZMy 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#1070660Comment by Rocky Luck on How to get the GIT in Delphi 7?Rocky Luck2009-07-01T18:52:49Z2009-07-01T18:52:49ZI 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#1070644Comment by Rocky Luck on How to get the GIT in Delphi 7?Rocky Luck2009-07-01T18:42:32Z2009-07-01T18:42:32ZThis 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