From nabeelmoidu at gmail.com Sun Feb 3 22:17:58 2008 From: nabeelmoidu at gmail.com (Nabeel Moidu) Date: Sat Jun 20 18:18:53 2009 Subject: [QGLUG] Site update and Installfest Plan In-Reply-To: <3fd6d7cc0712230211v159892bfmcc81087986e09349@mail.gmail.com> References: <3fd6d7cc0712212327s256c2fc0u84aefbc0a7a266d0@mail.gmail.com> <1198397564.22321.9.camel@kutch-desktop> <3fd6d7cc0712230211v159892bfmcc81087986e09349@mail.gmail.com> Message-ID: <3fd6d7cc0802032017h39a8906o711a7a74db5210e0@mail.gmail.com> Kutch Any updates to this ? Regards Nabeel On Dec 23, 2007 1:11 PM, Nabeel Moidu wrote: > > > On Dec 23, 2007 11:12 AM, Kutch wrote: > > > > > > > > Here's the update.... > > 1. You (Kutch) | 2 Desktop 2 Display 1 Laptop > > > > 2. Cristian B. > > > > 3. Kosala Atapattu | old laptop and my MacMini (running apple) > > > > 4. old Shivin Hameed with a new dell inspiron 1520 Laptop which has > > Ubuntu 7.10 installed in ( I have also tried the all new Fedora core 8 > > on it ) > > > > 5.Iestyn Best - 1 Desktop / 1 Laptop (Debian on the box) > > > > 6. Nabeel Moidu - no laptop/desktop for now :( > > > > 7. Andy Fletcher - Amilo Pro 3515 laptop (Debian Etch) > > > > 8. Muhammad Zulfikar Rakhmat - 1 Notebook (HP Pavilion 6383ea with Ubuntu > 7.10) > > > > 9. . > > > > 10. . > > > > > > Updated: 23.12.07 > > > > > > I don't believe it! list is growing weheeeee.... Now we have lot of box to > use next level is I need to sort out Host/Sponsors/Guest... I'm trying to > contact Novell Dubai but it seems they still in holiday these days I will > contact again they might be interested to be Sponsor and put their Ads :) > > > > Ok keep the list grow and grow and grow.............. > > > > Merry Christmas to all! > > > > /me is signing off going some shops in doha for christmas > > > > Kutch > > > > > > > > Novell...thats a nice choice if it works out.I've started using Suse of late > I really like it. > I can do a presentation of OpenSuse at the fest, and any Fedora customized > live cds - eg. arabic, malayalam etc if reqd. > > For those who haven't seen the latest Suse version, here's a screenshot :) > > > -- > Thanks and Regards > Nabeel Moidu > Doha, Qatar -- Thanks and Regards Nabeel Moidu Doha, Qatar From kutch at km33.com Mon Feb 4 23:43:07 2008 From: kutch at km33.com (Kutch Villasor) Date: Sat Jun 20 18:18:53 2009 Subject: [QGLUG] The Evolution of a Programmer Message-ID: <1202190187.6172.2.camel@dorkbox> Interesting The Evolution of a Programmer http://www.ariel.com.au/jokes/The_Evolution_of_a_Programmer.html ------------------------------------------------------ High School/Jr.High 10 PRINT "HELLO WORLD" 20 END First year in College program Hello(input, output) begin writeln('Hello World') end. Senior year in College (defun hello (print (cons 'Hello (list 'World)))) New professional #include void main(void) { char *message[] = {"Hello ", "World"}; int i; for(i = 0; i < 2; ++i) printf("%s", message[i]); printf("\n"); } Seasoned professional #include #include class string { private: int size; char *ptr; string() : size(0), ptr(new char[1]) { ptr[0] = 0; } string(const string &s) : size(s.size) { ptr = new char[size + 1]; strcpy(ptr, s.ptr); } ~string() { delete [] ptr; } friend ostream &operator <<(ostream &, const string &); string &operator=(const char *); }; ostream &operator<<(ostream &stream, const string &s) { return(stream << s.ptr); } string &string::operator=(const char *chrs) { if (this != &chrs) { delete [] ptr; size = strlen(chrs); ptr = new char[size + 1]; strcpy(ptr, chrs); } return(*this); } int main() { string str; str = "Hello World"; cout << str << endl; return(0); } Master Programmer [ uuid(2573F8F4-CFEE-101A-9A9F-00AA00342820) ] library LHello { // bring in the master library importlib("actimp.tlb"); importlib("actexp.tlb"); // bring in my interfaces #include "pshlo.idl" [ uuid(2573F8F5-CFEE-101A-9A9F-00AA00342820) ] cotype THello { interface IHello; interface IPersistFile; }; }; [ exe, uuid(2573F890-CFEE-101A-9A9F-00AA00342820) ] module CHelloLib { // some code related header files importheader(); importheader(); importheader(); importheader("pshlo.h"); importheader("shlo.hxx"); importheader("mycls.hxx"); // needed typelibs importlib("actimp.tlb"); importlib("actexp.tlb"); importlib("thlo.tlb"); [ uuid(2573F891-CFEE-101A-9A9F-00AA00342820), aggregatable ] coclass CHello { cotype THello; }; }; #include "ipfix.hxx" extern HANDLE hEvent; class CHello : public CHelloBase { public: IPFIX(CLSID_CHello); CHello(IUnknown *pUnk); ~CHello(); HRESULT __stdcall PrintSz(LPWSTR pwszString); private: static int cObjRef; }; #include #include #include #include #include "thlo.h" #include "pshlo.h" #include "shlo.hxx" #include "mycls.hxx" int CHello::cObjRef = 0; CHello::CHello(IUnknown *pUnk) : CHelloBase(pUnk) { cObjRef++; return; } HRESULT __stdcall CHello::PrintSz(LPWSTR pwszString) { printf("%ws ", pwszString); return(ResultFromScode(S_OK)); } CHello::~CHello(void) { // when the object count goes to zero, stop the server cObjRef--; if( cObjRef == 0 ) PulseEvent(hEvent); return; } #include #include #include "pshlo.h" #include "shlo.hxx" #include "mycls.hxx" HANDLE hEvent; int _cdecl main( int argc, char * argv[] ) { ULONG ulRef; DWORD dwRegistration; CHelloCF *pCF = new CHelloCF(); hEvent = CreateEvent(NULL, FALSE, FALSE, NULL); // Initialize the OLE libraries CoInitializeEx(NULL, COINIT_MULTITHREADED); CoRegisterClassObject(CLSID_CHello, pCF, CLSCTX_LOCAL_SERVER, REGCLS_MULTIPLEUSE, &dwRegistration); // wait on an event to stop WaitForSingleObject(hEvent, INFINITE); // revoke and release the class object CoRevokeClassObject(dwRegistration); ulRef = pCF->Release(); // Tell OLE we are going away. CoUninitialize(); return(0); } extern CLSID CLSID_CHello; extern UUID LIBID_CHelloLib; CLSID CLSID_CHello = { /* 2573F891-CFEE-101A-9A9F-00AA00342820 */ 0x2573F891, 0xCFEE, 0x101A, { 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 } }; UUID LIBID_CHelloLib = { /* 2573F890-CFEE-101A-9A9F-00AA00342820 */ 0x2573F890, 0xCFEE, 0x101A, { 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 } }; #include #include #include #include #include #include "pshlo.h" #include "shlo.hxx" #include "clsid.h" int _cdecl main( int argc, char * argv[] ) { HRESULT hRslt; IHello *pHello; ULONG ulCnt; IMoniker * pmk; WCHAR wcsT[_MAX_PATH]; WCHAR wcsPath[2 * _MAX_PATH]; // get object path wcsPath[0] = '\0'; wcsT[0] = '\0'; if( argc > 1) { mbstowcs(wcsPath, argv[1], strlen(argv[1]) + 1); wcsupr(wcsPath); } else { fprintf(stderr, "Object path must be specified\n"); return(1); } // get print string if(argc > 2) mbstowcs(wcsT, argv[2], strlen(argv[2]) + 1); else wcscpy(wcsT, L"Hello World"); printf("Linking to object %ws\n", wcsPath); printf("Text String %ws\n", wcsT); // Initialize the OLE libraries hRslt = CoInitializeEx(NULL, COINIT_MULTITHREADED); if(SUCCEEDED(hRslt)) { hRslt = CreateFileMoniker(wcsPath, &pmk); if(SUCCEEDED(hRslt)) hRslt = BindMoniker(pmk, 0, IID_IHello, (void **)&pHello); if(SUCCEEDED(hRslt)) { // print a string out pHello->PrintSz(wcsT); Sleep(2000); ulCnt = pHello->Release(); } else printf("Failure to connect, status: %lx", hRslt); // Tell OLE we are going away. CoUninitialize(); } return(0); } Apprentice Hacker #!/usr/local/bin/perl $msg="Hello, world.\n"; if ($#ARGV >= 0) { while(defined($arg=shift(@ARGV))) { $outfilename = $arg; open(FILE, ">" . $outfilename) || die "Can't write $arg: $!\n"; print (FILE $msg); close(FILE) || die "Can't close $arg: $!\n"; } } else { print ($msg); } 1; Experienced Hacker #include #define S "Hello, World\n" main(){exit(printf(S) == strlen(S) ? 0 : 1);} Seasoned Hacker % cc -o a.out ~/src/misc/hw/hw.c % a.out Guru Hacker % echo "Hello, world." New Manager 10 PRINT "HELLO WORLD" 20 END Middle Manager mail -s "Hello, world." bob@b12 Bob, could you please write me a program that prints "Hello, world."? I need it by tomorrow. ^D Senior Manager % zmail jim I need a "Hello, world." program by this afternoon. Chief Executive % letter letter: Command not found. % mail To: ^X ^F ^C % help mail help: Command not found. % damn! !: Event unrecognized % logout ------------------------------------------------------ -- Kutch Villasor http://km33.com E-Mail: kutch@km33.com PGP Key: 0xF88AD972 Key Fingerprint: 01A1 2A2A 6451 DF19 5EFE 6946 BC9A 9A9B F88A D972 Note: Please do send me encrypted messages using my key if it is very sensitive e-mail. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://lists.qglug.org/pipermail/list/attachments/20080205/863a94a6/attachment.bin From kutch at km33.com Mon Feb 4 23:47:30 2008 From: kutch at km33.com (Kutch Villasor) Date: Sat Jun 20 18:18:53 2009 Subject: [QGLUG] Site update and Installfest Plan In-Reply-To: <3fd6d7cc0802032017h39a8906o711a7a74db5210e0@mail.gmail.com> References: <3fd6d7cc0712212327s256c2fc0u84aefbc0a7a266d0@mail.gmail.com> <1198397564.22321.9.camel@kutch-desktop> <3fd6d7cc0712230211v159892bfmcc81087986e09349@mail.gmail.com> <3fd6d7cc0802032017h39a8906o711a7a74db5210e0@mail.gmail.com> Message-ID: <1202190450.6172.7.camel@dorkbox> Hi Nabeel, So far I cannot complete all requirements. I really need someone physically to give me assistance. And to assign a task to people. I can't just do it my self (honest). Ok Daryle came back to me yesterday regarding on the Venue he want's to meet us this week. Any interesting parties wants to join the meetup with Daryle? In this time we will make it bit formal discussion so that we can end up a good solution. I will bring log-book with me :D Kind regards, Kutch On Mon, 2008-02-04 at 07:17 +0300, Nabeel Moidu wrote: > Kutch > > Any updates to this ? > > Regards > Nabeel > > > On Dec 23, 2007 1:11 PM, Nabeel Moidu wrote: > > > > > > On Dec 23, 2007 11:12 AM, Kutch wrote: > > > > > > > > > > > > Here's the update.... > > > 1. You (Kutch) | 2 Desktop 2 Display 1 Laptop > > > > > > 2. Cristian B. > > > > > > 3. Kosala Atapattu | old laptop and my MacMini (running apple) > > > > > > 4. old Shivin Hameed with a new dell inspiron 1520 Laptop which has > > > Ubuntu 7.10 installed in ( I have also tried the all new Fedora core 8 > > > on it ) > > > > > > 5.Iestyn Best - 1 Desktop / 1 Laptop (Debian on the box) > > > > > > 6. Nabeel Moidu - no laptop/desktop for now :( > > > > > > 7. Andy Fletcher - Amilo Pro 3515 laptop (Debian Etch) > > > > > > 8. Muhammad Zulfikar Rakhmat - 1 Notebook (HP Pavilion 6383ea with Ubuntu > > 7.10) > > > > > > 9. . > > > > > > 10. . > > > > > > > > > Updated: 23.12.07 > > > > > > > > > I don't believe it! list is growing weheeeee.... Now we have lot of box to > > use next level is I need to sort out Host/Sponsors/Guest... I'm trying to > > contact Novell Dubai but it seems they still in holiday these days I will > > contact again they might be interested to be Sponsor and put their Ads :) > > > > > > Ok keep the list grow and grow and grow.............. > > > > > > Merry Christmas to all! > > > > > > /me is signing off going some shops in doha for christmas > > > > > > Kutch > > > > > > > > > > > > > Novell...thats a nice choice if it works out.I've started using Suse of late > > I really like it. > > I can do a presentation of OpenSuse at the fest, and any Fedora customized > > live cds - eg. arabic, malayalam etc if reqd. > > > > For those who haven't seen the latest Suse version, here's a screenshot :) > > > > > > -- > > Thanks and Regards > > Nabeel Moidu > > Doha, Qatar > > > -- Kutch Villasor http://km33.com E-Mail: kutch@km33.com PGP Key: 0xF88AD972 Key Fingerprint: 01A1 2A2A 6451 DF19 5EFE 6946 BC9A 9A9B F88A D972 Note: Please do send me encrypted messages using my key if it is very sensitive e-mail. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://lists.qglug.org/pipermail/list/attachments/20080205/0d2e9b88/attachment.bin From kutch at km33.com Tue Feb 5 00:04:48 2008 From: kutch at km33.com (Kutch Villasor) Date: Sat Jun 20 18:18:54 2009 Subject: [QGLUG] Re: Installfest In-Reply-To: <7B67B9D9982AA44697FFDEDB72593E9D027C9E99@srvex01sf3> References: <1200399960.8760.19.camel@dorkbox.alwabra.local> <7B67B9D9982AA44697FFDEDB72593E9D027C9E99@srvex01sf3> Message-ID: <1202191488.6172.13.camel@dorkbox> Hello Daryle, It's fine, I was way to busy as well last January a lot of things change from my department. Hmmmmm how about Saturday? is that good for you? Because most of us is not working on Saturday. Let me know what you think? Kind regards, Kutch On Mon, 2008-02-04 at 07:32 +0300, Niedermayer, Daryle wrote: > Kutch, > > Sorry for taking so long. I've finally come up for air. > > I have tentative approval from the College to host the event. I'd like > to meet with you to discuss needs and issues: > 1. Physical security > 2. Network security > 3. Hospitality services > 4. Advertising/promotion/branding > > I'm good every evening this week except Tuesday. (How about Wednesday?) > > Otherwise, we could maybe meet over the weekend--have some plans in the > works but am sure we could fit them in. > > My mob: 506-3619. > > Take care. > > -----Original Message----- > From: Kutch Villasor [mailto:kutch@km33.com] > Sent: Tuesday, January 15, 2008 3:26 PM > To: Shivin S > Cc: Niedermayer, Daryle > Subject: Linux Geek > > Shivin, > > Here is the e-mail for Daryle > daryle.niedermayer@cna-qatar.edu.qa > > Hi Daryle, How are you hope you are back in town and having a good > vacation. One of my friend as well from qglug.org a linux geek knows a > lot with Redhat is looking for a job vacancy, just wondering maybe you > have some idea in CNA-Q if they are looking for a Linux Geek. > > Ah BTW still need to discuss with you regarding the Installfest, I will > get back to you this week, and probably if possible we can have some > coffee somewhere with other QGLUG mates. > > Have a nice cold day in Doha. > > Regards, > > Kutch -- Kutch Villasor http://km33.com E-Mail: kutch@km33.com PGP Key: 0xF88AD972 Key Fingerprint: 01A1 2A2A 6451 DF19 5EFE 6946 BC9A 9A9B F88A D972 Note: Please do send me encrypted messages using my key if it is very sensitive e-mail. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://lists.qglug.org/pipermail/list/attachments/20080205/46aeea85/attachment.bin From kutch at km33.com Tue Feb 5 07:55:50 2008 From: kutch at km33.com (Kutch Villasor) Date: Sat Jun 20 18:18:54 2009 Subject: [QGLUG] Extra work urgent for Thursday Message-ID: <1202219750.6702.6.camel@dorkbox> Does anyone here working or know how to config outdoor wireless Access Point? If yes let me know. I have a extra job in Ras Laffan just to configure their outdoor wireless access point. Using D-Link DWL-7700 and DWL-2700 The network was existing a year old (I'm the one who installed it) but suddenly it happen that they don't have link anymore. Work Description: 1. Troubleshoot the Access Point 2. Install again to the roof with Aerial Pay: 800 QR (negotiable) Regards, Kutch -- Kutch Villasor http://km33.com E-Mail: kutch@km33.com PGP Key: 0xF88AD972 Key Fingerprint: 01A1 2A2A 6451 DF19 5EFE 6946 BC9A 9A9B F88A D972 Note: Please do send me encrypted messages using my key if it is very sensitive e-mail. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://lists.qglug.org/pipermail/list/attachments/20080205/d61fd960/attachment.bin From kutch at km33.com Fri Feb 22 22:24:26 2008 From: kutch at km33.com (Kutch Villasor) Date: Sat Jun 20 18:18:54 2009 Subject: [QGLUG] Animator vs Animation really cool flash Message-ID: <1203740666.6088.0.camel@dorkbox> I like it! http://fc01.deviantart.com/fs13/f/2007/077/2/e/Animator_vs__Animation_by_alanbecker.swf -- Kutch Villasor http://km33.com E-Mail: kutch@km33.com PGP Key: 0xF88AD972 Key Fingerprint: 01A1 2A2A 6451 DF19 5EFE 6946 BC9A 9A9B F88A D972 Note: Please do send me encrypted messages using my key if it is very sensitive e-mail. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://lists.qglug.org/pipermail/list/attachments/20080223/45571445/attachment.bin From kutch at km33.com Fri Feb 22 22:40:48 2008 From: kutch at km33.com (Kutch Villasor) Date: Sat Jun 20 18:18:54 2009 Subject: [QGLUG] Macrusoft warns on Vista update Message-ID: <1203741648.6088.3.camel@dorkbox> Well nothing is new, keep people buggered! "Microsoft is warning Windows Vista users that a forthcoming service pack for the operating system may stop some third-party programs working." http://news.bbc.co.uk/2/hi/technology/7205059.stm -- Kutch Villasor http://km33.com E-Mail: kutch@km33.com PGP Key: 0xF88AD972 Key Fingerprint: 01A1 2A2A 6451 DF19 5EFE 6946 BC9A 9A9B F88A D972 Note: Please do send me encrypted messages using my key if it is very sensitive e-mail. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://lists.qglug.org/pipermail/list/attachments/20080223/c0f755eb/attachment.bin From leo.ren at furry.be Sat Feb 23 07:27:42 2008 From: leo.ren at furry.be (Tomas Ghijsens) Date: Sat Jun 20 18:18:54 2009 Subject: [QGLUG] Re: [Lbw] Animator vs Animation really cool flash In-Reply-To: <1203740666.6088.0.camel@dorkbox> References: <1203740666.6088.0.camel@dorkbox> Message-ID: <3b48a1e60802230527p1492931cr88640fa0c69e24d6@mail.gmail.com> that isn't something new, but it keeps on being funny :) 2008/2/23, Kutch Villasor : > > I like it! > > > http://fc01.deviantart.com/fs13/f/2007/077/2/e/Animator_vs__Animation_by_alanbecker.swf > > > > -- > > Kutch Villasor > http://km33.com > E-Mail: kutch@km33.com > PGP Key: 0xF88AD972 > Key Fingerprint: 01A1 2A2A 6451 DF19 5EFE 6946 BC9A 9A9B F88A D972 > > Note: Please do send me encrypted messages using my key if it is very > sensitive e-mail. > > > > _______________________________________________ > LBW mailing list > LBW@x31.com > https://mail.x31.com/mailman/listinfo/lbw > > 2008 Event: 9th-17th August http://lbw2008.palfreman.com/ > -- > Previous events: > http://lbw2007.hellug.gr/ > http://www.mkuncaitis.com/lbw06/ > http://www.levkowetz.com/2005/lbw-killin/ > http://www.lbw2004.eu.org/ > http://lbw2003.anteus.hu/ > http://www.lbw2002.draiocht.net/ > http://lbw2001.ynfonatic.de/ > http://www.lbw2000.eu.org/ > http://www.lbw99.eu.org/ > > http://www.linuxbierwanderung.org/ > > -- Be deviant Be cute :B -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.qglug.org/pipermail/list/attachments/20080223/a93b11a7/attachment.html