Subj : Re: Progamming language for hackers? To : alt.hackers.malicious,comp.programming From : makc.the.great Date : Fri Oct 07 2005 12:29 pm Juuso Hukkanen wrote: > >...why? > big question - few answers > I originally tried to organize my C code collection... > Then... I realized that I could locate any piece of code within the > collection, AND also noticed that there no longer was a need to know > what codes I had, because... I would know exatly in which > folders it could be located. Oh man, with any decent C++ IDE you could do something like #include "huge_header_of_generally_useless_crap.h", and then use intellisense-like IDE feature to construct things like this: MyGreatNameSpace::MyGreatClass obj = MyGreatNameSpace::MyGreatClass.Create(); obj->MethodName(); ....well, that's the way the world is doing it in C++. in C#, it's even better, you mostly type dots instead of "::" and "->" all the time. It's quite convenient, really. No need to prove the world that Visual Studio is written by idiots, because it's not. > Ok, it was obviously a programming language - with a slogan "one codes > once". I realized that it would be valuable, contacted couple of > companies ( new language easy powerful - NDA needed - >no NDA no > show). But while waiting those boneheads to answer thougth, damn I > give it to charity they get money I get chicks / wife. Community gets > the most powerfull programmign language ever Well, I don't think you can actually call it language. Your idea to map file path to token is somewhat interesting, but in C++ I can achieve same effect with a few tricky #define-s, and, I guess, I can actually do even more. But the thing is that I never need it (see above why). Also, if my libraries would ever need to be relocated, I would loose all my code, which is not a good thing to happen. > Back to original question" Google told us: Expert > hackers can tell a good language when they see one"... well? I'm not "expert hacker", I'm just professional coder with few years of experience, but, trust me, you've gotta learn existing stuff real limits before try to step out. Regards. .