
hi how easy is it to stream live video feed through the internet. Do you just need a computer, a video camera and a broadcasting software with internet connections. google gave me these<http://www.nchsoftware.com/broadcam/index.html>........... any ideas of how these can be achieved. thanks

ffmpeg <http://ffmpeg.org/> is good and customizable in terms of formats. And it's free. On Mon, Jun 22, 2009 at 6:42 PM, Steve <sikileng@gmail.com> wrote:
hi
how easy is it to stream live video feed through the internet. Do you just need a computer, a video camera and a broadcasting software with internet connections. google gave me these<http://www.nchsoftware.com/broadcam/index.html>........... any ideas of how these can be achieved.
thanks
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- Regards, Alex If the grass looks greener on the other side, most probably the water bill is higher too

It's a basic question and i'm sure alot of you can answer this but i'm still a bit sure. Take a look at the code below. #include <stdio.h> main() { int i, j; for (i=0, j=1; i<8; i++, j++) printf("%d - %d = %d\n", j, i, j - i); return 0; } Now the results yielded are 1 - 0 = 1 2 - 1 = 1 ... 8 - 7 = 1 i'd like to know what the delimiting factor here is, i.e. considering i've not set a loop limit for j, what's stopping my calculation from being as follows.. 148 - 8 = 0 as an example though from my understanding, it should present an infinite loop. I\ve been pondering this a while, thought i'd get some Guru's out there to help out with my understanding of this. Rahim.

i < 8 is the condition being evaluated so the moment it returns true (when i == 7) thats it. j has no influence on the evaluation of this condition. its same as if you had done main() { int i, j; for (i=0, j=1; i<8; i++) { printf("%d - %d = %d\n", j, i, j - i); *j++;* } return 0; } -Billy 2009/3/22 Rahim Kara <rahim@applecentre.co.ke>
It's a basic question and i'm sure alot of you can answer this but i'm still a bit sure. Take a look at the code below.
#include <stdio.h>
main()
{ int i, j;
for (i=0, j=1; i<8; i++, j++)
printf("%d - %d = %d\n", j, i, j - i); return 0; }
Now the results yielded are
1 - 0 = 1 2 - 1 = 1 ... 8 - 7 = 1
i'd like to know what the delimiting factor here is, i.e. considering i've not set a loop limit for j, what's stopping my calculation from being as follows..
148 - 8 = 0
as an example though from my understanding, it should present an infinite loop.
I\ve been pondering this a while, thought i'd get some Guru's out there to help out with my understanding of this.
Rahim.
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general

Sorry i meant the moment the condition it returns false (when i => 8) the loop is done. -Billy 2009/6/22 Billy <billyx5@gmail.com>
i < 8 is the condition being evaluated so the moment it returns true (when i == 7) thats it. j has no influence on the evaluation of this condition. its same as if you had done
main()
{ int i, j;
for (i=0, j=1; i<8; i++) { printf("%d - %d = %d\n", j, i, j - i); *j++;* } return 0; }
-Billy
2009/3/22 Rahim Kara <rahim@applecentre.co.ke>
It's a basic question and i'm sure alot of you can answer this but i'm
still a bit sure. Take a look at the code below.
#include <stdio.h>
main()
{ int i, j;
for (i=0, j=1; i<8; i++, j++)
printf("%d - %d = %d\n", j, i, j - i); return 0; }
Now the results yielded are
1 - 0 = 1 2 - 1 = 1 ... 8 - 7 = 1
i'd like to know what the delimiting factor here is, i.e. considering i've not set a loop limit for j, what's stopping my calculation from being as follows..
148 - 8 = 0
as an example though from my understanding, it should present an infinite loop.
I\ve been pondering this a while, thought i'd get some Guru's out there to help out with my understanding of this.
Rahim.
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general

muchos gracias bill, simply put. On Jun 22, 2009, at 9:54 PM, Billy wrote:
i < 8 is the condition being evaluated so the moment it returns true (when i == 7) thats it. j has no influence on the evaluation of this condition. its same as if you had done
main()
{ int i, j;
for (i=0, j=1; i<8; i++) { printf("%d - %d = %d\n", j, i, j - i); j++; } return 0; }
-Billy
2009/3/22 Rahim Kara <rahim@applecentre.co.ke> It's a basic question and i'm sure alot of you can answer this but i'm still a bit sure. Take a look at the code below.
#include <stdio.h>
main()
{ int i, j;
for (i=0, j=1; i<8; i++, j++)
printf("%d - %d = %d\n", j, i, j - i); return 0; }
Now the results yielded are
1 - 0 = 1 2 - 1 = 1 ... 8 - 7 = 1
i'd like to know what the delimiting factor here is, i.e. considering i've not set a loop limit for j, what's stopping my calculation from being as follows..
148 - 8 = 0
as an example though from my understanding, it should present an infinite loop.
I\ve been pondering this a while, thought i'd get some Guru's out there to help out with my understanding of this.
Rahim.
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
Rahim Kara | Pro App's Specialist Elite Computers Ltd Apple Premium Reseller Sarit Centre P.O.Box 75289, Nairobi – 00200 KENYA +254 (20) 374 5550 PHONE +254 (20) 375 3509 FAX +254 721 875 042 Safaricom MOBILE +254 734 334 074 Zain MOBILE +254 773 104 250 Orange MOBILE iChat rahim.kara@me.com Mailing List Subscription http://mail.wananchi.com/mailman/listinfo/elitedigitalsolutions

true @ billy j is only incrementing and not being evaluated for the loop. try this main() { int i, j; for (i=0, j=1; i<j; i++, j++) printf("%d - %d = %d\n", j, i, j - i); return 0; } On 6/22/09, Billy <billyx5@gmail.com> wrote:
i < 8 is the condition being evaluated so the moment it returns true (when i == 7) thats it. j has no influence on the evaluation of this condition. its same as if you had done
main()
{ int i, j;
for (i=0, j=1; i<8; i++) { printf("%d - %d = %d\n", j, i, j - i); *j++;* } return 0; }
-Billy
2009/3/22 Rahim Kara <rahim@applecentre.co.ke>
It's a basic question and i'm sure alot of you can answer this but i'm still a bit sure. Take a look at the code below.
#include <stdio.h>
main()
{ int i, j;
for (i=0, j=1; i<8; i++, j++)
printf("%d - %d = %d\n", j, i, j - i); return 0; }
Now the results yielded are
1 - 0 = 1 2 - 1 = 1 ... 8 - 7 = 1
i'd like to know what the delimiting factor here is, i.e. considering i've not set a loop limit for j, what's stopping my calculation from being as follows..
148 - 8 = 0
as an example though from my understanding, it should present an infinite loop.
I\ve been pondering this a while, thought i'd get some Guru's out there to help out with my understanding of this.
Rahim.
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general

lol, i can see where that's going, i thought about what Billy said as well and it made more sense to me, So in essence, if i set values for i and for j, due respect would be given to both and if only one, then the application would only function using that limit i.e. the query i brought forward where i<8 is the only condition set. That making any sense? On Jun 22, 2009, at 10:03 PM, Chris Mwirigi wrote:
true @ billy j is only incrementing and not being evaluated for the loop. try this
main()
{ int i, j;
for (i=0, j=1; i<j; i++, j++)
printf("%d - %d = %d\n", j, i, j - i); return 0; }
On 6/22/09, Billy <billyx5@gmail.com> wrote:
i < 8 is the condition being evaluated so the moment it returns true (when i == 7) thats it. j has no influence on the evaluation of this condition. its same as if you had done
main()
{ int i, j;
for (i=0, j=1; i<8; i++) { printf("%d - %d = %d\n", j, i, j - i); *j++;* } return 0; }
-Billy
2009/3/22 Rahim Kara <rahim@applecentre.co.ke>
It's a basic question and i'm sure alot of you can answer this but i'm still a bit sure. Take a look at the code below.
#include <stdio.h>
main()
{ int i, j;
for (i=0, j=1; i<8; i++, j++)
printf("%d - %d = %d\n", j, i, j - i); return 0; }
Now the results yielded are
1 - 0 = 1 2 - 1 = 1 ... 8 - 7 = 1
i'd like to know what the delimiting factor here is, i.e. considering i've not set a loop limit for j, what's stopping my calculation from being as follows..
148 - 8 = 0
as an example though from my understanding, it should present an infinite loop.
I\ve been pondering this a while, thought i'd get some Guru's out there to help out with my understanding of this.
Rahim.
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
Rahim Kara | Pro App's Specialist Elite Computers Ltd Apple Premium Reseller Sarit Centre P.O.Box 75289, Nairobi – 00200 KENYA +254 (20) 374 5550 PHONE +254 (20) 375 3509 FAX +254 721 875 042 Safaricom MOBILE +254 734 334 074 Zain MOBILE +254 773 104 250 Orange MOBILE iChat rahim.kara@me.com Mailing List Subscription http://mail.wananchi.com/mailman/listinfo/elitedigitalsolutions

@chris your code is extremely dangerous. Theortically your program will never stop execution but again in reality your program is going to crush eventually. You must remember when dealing with C/C++ that its your responsibility to manage the memory on the stack and the heap otherwise you end up with memory leaks, buffer overruns or stack overflows. Like the case in this code. The bounds of a signed int (16bit) are ( -32768 - 32767) so when j crosses the upper bound something has got to give. Seeing your code will cause an infinite loop. REMEMBER C AND C++ DO NOT PROTECT YOU AGAINST OVERWRITTING, ACCESSING OR OVERRUNNING MEMORY, YOU HAVE TO FIGURE ALL THIS OUT YOURSELF AND DECIDE HOW YOU ARE GONNA HANDLE IT. IN THIS CASE MAKE SURE J DOESN'T CROSS THE UPPER BOUND OF int... YOU HAVE BE WARNED!!! Steve Obbayi, Address: P. O. Box 19916 - 00100, Nairobi, Kenya. Tel: +1 202 470 0575 Tel: +254 20 3500525 cell: +254 722 627691 info@sobbayi.com http://www.sobbayi.com :http://www.sceniceastafrica.com :http://blog.andaiconsulting.com/wp -----Original Message----- From: skunkworks-bounces@lists.my.co.ke [mailto:skunkworks-bounces@lists.my.co.ke] On Behalf Of Chris Mwirigi Sent: Monday, June 22, 2009 10:04 PM To: Skunkworks forum Subject: Re: [Skunkworks] C Programming Query true @ billy j is only incrementing and not being evaluated for the loop. try this main() { int i, j; for (i=0, j=1; i<j; i++, j++) printf("%d - %d = %d\n", j, i, j - i); return 0; } On 6/22/09, Billy <billyx5@gmail.com> wrote:
i < 8 is the condition being evaluated so the moment it returns true (when i == 7) thats it. j has no influence on the evaluation of this condition. its same as if you had done
main()
{ int i, j;
for (i=0, j=1; i<8; i++) { printf("%d - %d = %d\n", j, i, j - i); *j++;* } return 0; }
-Billy
2009/3/22 Rahim Kara <rahim@applecentre.co.ke>
It's a basic question and i'm sure alot of you can answer this but i'm still a bit sure. Take a look at the code below.
#include <stdio.h>
main()
{ int i, j;
for (i=0, j=1; i<8; i++, j++)
printf("%d - %d = %d\n", j, i, j - i); return 0; }
Now the results yielded are
1 - 0 = 1 2 - 1 = 1 ... 8 - 7 = 1
i'd like to know what the delimiting factor here is, i.e. considering i've not set a loop limit for j, what's stopping my calculation from being as follows..
148 - 8 = 0
as an example though from my understanding, it should present an infinite loop.
I\ve been pondering this a while, thought i'd get some Guru's out there to help out with my understanding of this.
Rahim.
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general

Hi skunks and skunkettes You should be alert during the next days: Do not open any message with an attached file called 'Invitation' regardless of who sent it, It is a virus that opens an Olympic Torch which 'burns' the whole hard disc C of your computer. This virus will be received from someone who has your e-mail address in his/her contact list, that is why you should send this e-mail to all your contacts. It is better to receive this message 25 times than to receive the virus and open it. If you receive a mail called 'invitation' , though sent by a friend , do not open it and shut down your computer immediately. This is the worst virus announced by CNN, it has been classified by Microsoft as the most destructive virus ever. This virus was discovered by McAfee yesterday, and there is no repair yet for this kind of virus. This virus simply destroys the Zero Sector of the Hard Disc, where the vital information is kept _________________________________________________________________ Windows Live™: Keep your life in sync. Check it out! http://windowslive.com/explore?ocid=TXT_TAGLM_WL_t1_allup_explore_012009

Hi Booker, Do you have a link to the source of this information? Is the authenticity of this "warning" guaranteed or is it chain mail? 2009/6/23 BOOKER OMOLE <bo7omole@hotmail.com>
Hi skunks and skunkettes
You should be alert during the next days:
Do not open any message with an attached file called 'Invitation' regardless of who sent it, It is a virus that opens an Olympic Torch which 'burns' the whole hard disc C of your computer.
This virus will be received from someone who has your e-mail address in his/her contact list, that is why you should send this e-mail to all your contacts. It is better to receive this message 25 times than to receive the virus and open it.
If you receive a mail called 'invitation' , though sent by a friend , do not open it and shut down your computer immediately. This is the worst virus announced by CNN, it has been classified by Microsoft as the most destructive virus ever.
This virus was discovered by McAfee yesterday, and there is no repair yet for this kind of virus. This virus simply destroys the Zero Sector of the Hard Disc, where the vital information is kept
------------------------------ Windows Live™: Keep your life in sync. Check it out!<http://windowslive.com/explore?ocid=TXT_TAGLM_WL_t1_allup_explore_012009>
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- שִׁמְעוֹן

this looks like chain mail. i can see the usual phrase... This is the worst virus announced by CNN, it has been classified by Microsoft as the most destructive virus ever. This virus was discovered by McAfee yesterday, and there is no repair yet for this kind of virus. This virus simply destroys the Zero Sector of the Hard Disc, where the vital information is kept. since when does CNN "announce" viruses??????? Steve Obbayi, _____ From: skunkworks-bounces@lists.my.co.ke [mailto:skunkworks-bounces@lists.my.co.ke] On Behalf Of Simon Mbuthia Sent: Tuesday, June 23, 2009 8:43 AM To: Skunkworks forum Subject: Re: [Skunkworks] Virus warning Hi Booker, Do you have a link to the source of this information? Is the authenticity of this "warning" guaranteed or is it chain mail? 2009/6/23 BOOKER OMOLE <bo7omole@hotmail.com> Hi skunks and skunkettes You should be alert during the next days: Do not open any message with an attached file called 'Invitation' regardless of who sent it, It is a virus that opens an Olympic Torch which 'burns' the whole hard disc C of your computer. This virus will be received from someone who has your e-mail address in his/her contact list, that is why you should send this e-mail to all your contacts. It is better to receive this message 25 times than to receive the virus and open it. If you receive a mail called 'invitation' , though sent by a friend , do not open it and shut down your computer immediately. This is the worst virus announced by CNN, it has been classified by Microsoft as the most destructive virus ever. This virus was discovered by McAfee yesterday, and there is no repair yet for this kind of virus. This virus simply destroys the Zero Sector of the Hard Disc, where the vital information is kept _____ Windows Live™: Keep your life in sync. Check <http://windowslive.com/explore?ocid=TXT_TAGLM_WL_t1_allup_explore_012009> it out! _______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general -- שִׁמְעוֹן

http://en.wikipedia.org/wiki/Virus_hoax this is one of the best known hoaxes. a lecturer once put this up on a noticeboard, only for as student to scribble on it that it was a hoax , plus a few more words on how what the virus is purported to do is impossible. Guys, please verify those mails you receive (at least on wikipedia) before clicking on *forward*. You might end up in a situation where the guy in the accounts department is giving you ICT advice! 2009/6/23 Steve Obbayi <steve@sobbayi.com>
this looks like chain mail. i can see the usual phrase...
This is the worst virus announced by CNN, it has been classified by Microsoft as the most destructive virus ever.
This virus was discovered by McAfee yesterday, and there is no repair yet for this kind of virus. This virus simply destroys the Zero Sector of the Hard Disc, where the vital information is kept.
since when does CNN "announce" viruses???????
Steve Obbayi,
------------------------------ *From:* skunkworks-bounces@lists.my.co.ke [mailto: skunkworks-bounces@lists.my.co.ke] *On Behalf Of *Simon Mbuthia *Sent:* Tuesday, June 23, 2009 8:43 AM *To:* Skunkworks forum *Subject:* Re: [Skunkworks] Virus warning
Hi Booker,
Do you have a link to the source of this information? Is the authenticity of this "warning" guaranteed or is it chain mail?
2009/6/23 BOOKER OMOLE <bo7omole@hotmail.com>
Hi skunks and skunkettes
You should be alert during the next days:
Do not open any message with an attached file called 'Invitation' regardless of who sent it, It is a virus that opens an Olympic Torch which 'burns' the whole hard disc C of your computer.
This virus will be received from someone who has your e-mail address in his/her contact list, that is why you should send this e-mail to all your contacts. It is better to receive this message 25 times than to receive the virus and open it.
If you receive a mail called 'invitation' , though sent by a friend , do not open it and shut down your computer immediately. This is the worst virus announced by CNN, it has been classified by Microsoft as the most destructive virus ever.
This virus was discovered by McAfee yesterday, and there is no repair yet for this kind of virus. This virus simply destroys the Zero Sector of the Hard Disc, where the vital information is kept
------------------------------ Windows Live™: Keep your life in sync. Check it out!<http://windowslive.com/explore?ocid=TXT_TAGLM_WL_t1_allup_explore_012009>
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- שִׁמְעוֹן
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- with Regards: Find out about the paedophila mascot of Kenya & Why we should not stop Kenyans from fetching spilt petrol at my blog: http://gramware.blogspot.com

this has got chain email written all over it. check this link http://en.wikipedia.org/wiki/Virus_hoax 2009/6/23 Steve Obbayi <steve@sobbayi.com>
this looks like chain mail. i can see the usual phrase...
This is the worst virus announced by CNN, it has been classified by Microsoft as the most destructive virus ever.
This virus was discovered by McAfee yesterday, and there is no repair yet for this kind of virus. This virus simply destroys the Zero Sector of the Hard Disc, where the vital information is kept.
since when does CNN "announce" viruses???????
Steve Obbayi,
------------------------------ *From:* skunkworks-bounces@lists.my.co.ke [mailto: skunkworks-bounces@lists.my.co.ke] *On Behalf Of *Simon Mbuthia *Sent:* Tuesday, June 23, 2009 8:43 AM *To:* Skunkworks forum *Subject:* Re: [Skunkworks] Virus warning
Hi Booker,
Do you have a link to the source of this information? Is the authenticity of this "warning" guaranteed or is it chain mail?
2009/6/23 BOOKER OMOLE <bo7omole@hotmail.com>
Hi skunks and skunkettes
You should be alert during the next days:
Do not open any message with an attached file called 'Invitation' regardless of who sent it, It is a virus that opens an Olympic Torch which 'burns' the whole hard disc C of your computer.
This virus will be received from someone who has your e-mail address in his/her contact list, that is why you should send this e-mail to all your contacts. It is better to receive this message 25 times than to receive the virus and open it.
If you receive a mail called 'invitation' , though sent by a friend , do not open it and shut down your computer immediately. This is the worst virus announced by CNN, it has been classified by Microsoft as the most destructive virus ever.
This virus was discovered by McAfee yesterday, and there is no repair yet for this kind of virus. This virus simply destroys the Zero Sector of the Hard Disc, where the vital information is kept
------------------------------ Windows Live™: Keep your life in sync. Check it out!<http://windowslive.com/explore?ocid=TXT_TAGLM_WL_t1_allup_explore_012009>
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- שִׁמְעוֹן
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general

Dont even bother to forward this please, its a hoax Steve Obbayi wrote:
this looks like chain mail. i can see the usual phrase...
This is the worst virus announced by CNN, it has been classified by Microsoft as the most destructive virus ever.
This virus was discovered by McAfee yesterday, and there is no repair yet for this kind of virus. This virus simply destroys the Zero Sector of the Hard Disc, where the vital information is kept.
since when does CNN "announce" viruses???????
Steve Obbayi,
------------------------------------------------------------------------ *From:* skunkworks-bounces@lists.my.co.ke [mailto:skunkworks-bounces@lists.my.co.ke] *On Behalf Of *Simon Mbuthia *Sent:* Tuesday, June 23, 2009 8:43 AM *To:* Skunkworks forum *Subject:* Re: [Skunkworks] Virus warning
Hi Booker,
Do you have a link to the source of this information? Is the authenticity of this "warning" guaranteed or is it chain mail?
2009/6/23 BOOKER OMOLE <bo7omole@hotmail.com <mailto:bo7omole@hotmail.com>>
Hi skunks and skunkettes
You should be alert during the next days:
Do not open any message with an attached file called 'Invitation' regardless of who sent it, It is a virus that opens an Olympic Torch which 'burns' the whole hard disc C of your computer.
This virus will be received from someone who has your e-mail address in his/her contact list, that is why you should send this e-mail to all your contacts. It is better to receive this message 25 times than to receive the virus and open it.
If you receive a mail called 'invitation' , though sent by a friend , do not open it and shut down your computer immediately. This is the worst virus announced by CNN, it has been classified by Microsoft as the most destructive virus ever.
This virus was discovered by McAfee yesterday, and there is no repair yet for this kind of virus. This virus simply destroys the Zero Sector of the Hard Disc, where the vital information is kept
------------------------------------------------------------------------ Windows Liveן¿½: Keep your life in sync. Check it out! <http://windowslive.com/explore?ocid=TXT_TAGLM_WL_t1_allup_explore_012009>
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke <mailto:Skunkworks@lists.my.co.ke> http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- ן¿½ן¿½ן¿½ן¿½ן¿½ן¿½ן¿½ן¿½ן¿½ ------------------------------------------------------------------------
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general

..sounds familiar. Thanks for the heads up! On 6/23/09, BOOKER OMOLE <bo7omole@hotmail.com> wrote:
Hi skunks and skunkettes
You should be alert during the next days:
Do not open any message with an attached file called
'Invitation' regardless of who sent it, It is a virus
that opens an Olympic Torch which 'burns' the whole
hard disc C of your computer.
This virus will be received from someone who has your
e-mail address in his/her contact list, that is why
you should send this e-mail to all your contacts. It
is better to receive this message 25 times than to
receive the virus and open it.
If you receive a mail called 'invitation' , though
sent by a friend , do not open it and shut down your
computer immediately. This is the worst virus
announced by CNN, it has been classified by Microsoft
as the most destructive virus ever.
This virus was discovered by McAfee yesterday, and
there is no repair yet for this kind of virus. This
virus simply destroys the Zero Sector of the Hard
Disc, where the vital information is kept
_________________________________________________________________ Windows Live™: Keep your life in sync. Check it out! http://windowslive.com/explore?ocid=TXT_TAGLM_WL_t1_allup_explore_012009
-- People should know when they are conquered.

HAHAHA, i feel sorry for Windows guys....... -- -- Gichuki John Ndirangu, C.E.H , C.P.T.P, O.S.C.P I.T Security Analyst and Penetration Tester infosigmer@inbox.com {FORUM}http://lists.my.co.ke/pipermail/security/ http://nspkenya.blogspot.com/ http://chuksjonia.blogspot.com/ http://www.kamongo.co.ke/

And I feel even sorrier for people who just believe forwards ... On Tue, Jun 23, 2009 at 8:57 AM, chuks Jonia <chuksjonia@gmail.com> wrote:
HAHAHA, i feel sorry for Windows guys.......
-- -- Gichuki John Ndirangu, C.E.H , C.P.T.P, O.S.C.P I.T Security Analyst and Penetration Tester infosigmer@inbox.com
{FORUM}http://lists.my.co.ke/pipermail/security/ http://nspkenya.blogspot.com/ http://chuksjonia.blogspot.com/ http://www.kamongo.co.ke/ _______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general

I find this hard to believe... are there any guys {Especially IT security Gurus - Chuks Jonia } who would care to shed some light on this... They say nothing is impossible... but it is impossible to lack a solution for a human generated problem... especially a virus. I mean its not a carnivore or a dragon that will "literally " EAT YOUR HDD! Muraguri.

http://www.hoax-slayer.com/olympic-torch-virus-hoax.html I think its important for us to verify the source of our info before posting. -----Original Message----- From: nyarotho kennedy <kenyarotho@gmail.com> Reply-to: Skunkworks forum <skunkworks@lists.my.co.ke> To: Skunkworks forum <skunkworks@lists.my.co.ke> Subject: Re: [Skunkworks] Virus warning Date: Tue, 23 Jun 2009 05:43:43 +0000 ..sounds familiar. Thanks for the heads up! On 6/23/09, BOOKER OMOLE <bo7omole@hotmail.com> wrote:
Hi skunks and skunkettes
You should be alert during the next days:
Do not open any message with an attached file called
'Invitation' regardless of who sent it, It is a virus
that opens an Olympic Torch which 'burns' the whole
hard disc C of your computer.
This virus will be received from someone who has your
e-mail address in his/her contact list, that is why
you should send this e-mail to all your contacts. It
is better to receive this message 25 times than to
receive the virus and open it.
If you receive a mail called 'invitation' , though
sent by a friend , do not open it and shut down your
computer immediately. This is the worst virus
announced by CNN, it has been classified by Microsoft
as the most destructive virus ever.
This virus was discovered by McAfee yesterday, and
there is no repair yet for this kind of virus. This
virus simply destroys the Zero Sector of the Hard
Disc, where the vital information is kept
_________________________________________________________________ Windows Live™: Keep your life in sync. Check it out! http://windowslive.com/explore?ocid=TXT_TAGLM_WL_t1_allup_explore_012009
-- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.

@steve.... Rahim asked for an infinite loop just gave one On Tue, Jun 23, 2009 at 8:12 AM, Steve Obbayi<steve@sobbayi.com> wrote:
@chris your code is extremely dangerous. Theortically your program will never stop execution but again in reality your program is going to crush eventually. You must remember when dealing with C/C++ that its your responsibility to manage the memory on the stack and the heap otherwise you end up with memory leaks, buffer overruns or stack overflows. Like the case in this code. The bounds of a signed int (16bit) are ( -32768 - 32767) so when j crosses the upper bound something has got to give. Seeing your code will cause an infinite loop.
REMEMBER C AND C++ DO NOT PROTECT YOU AGAINST OVERWRITTING, ACCESSING OR OVERRUNNING MEMORY, YOU HAVE TO FIGURE ALL THIS OUT YOURSELF AND DECIDE HOW YOU ARE GONNA HANDLE IT. IN THIS CASE MAKE SURE J DOESN'T CROSS THE UPPER BOUND OF int...
YOU HAVE BE WARNED!!!
Steve Obbayi,
Address: P. O. Box 19916 - 00100, Nairobi, Kenya. Tel: +1 202 470 0575 Tel: +254 20 3500525 cell: +254 722 627691
info@sobbayi.com http://www.sobbayi.com :http://www.sceniceastafrica.com :http://blog.andaiconsulting.com/wp
-----Original Message----- From: skunkworks-bounces@lists.my.co.ke [mailto:skunkworks-bounces@lists.my.co.ke] On Behalf Of Chris Mwirigi Sent: Monday, June 22, 2009 10:04 PM To: Skunkworks forum Subject: Re: [Skunkworks] C Programming Query
true @ billy j is only incrementing and not being evaluated for the loop. try this
main()
{ int i, j;
for (i=0, j=1; i<j; i++, j++)
printf("%d - %d = %d\n", j, i, j - i); return 0; }
On 6/22/09, Billy <billyx5@gmail.com> wrote:
i < 8 is the condition being evaluated so the moment it returns true (when i == 7) thats it. j has no influence on the evaluation of this condition. its same as if you had done
main()
{ int i, j;
for (i=0, j=1; i<8; i++) { printf("%d - %d = %d\n", j, i, j - i); *j++;* } return 0; }
-Billy
2009/3/22 Rahim Kara <rahim@applecentre.co.ke>
It's a basic question and i'm sure alot of you can answer this but i'm still a bit sure. Take a look at the code below.
#include <stdio.h>
main()
{ int i, j;
for (i=0, j=1; i<8; i++, j++)
printf("%d - %d = %d\n", j, i, j - i); return 0; }
Now the results yielded are
1 - 0 = 1 2 - 1 = 1 ... 8 - 7 = 1
i'd like to know what the delimiting factor here is, i.e. considering i've not set a loop limit for j, what's stopping my calculation from being as follows..
148 - 8 = 0
as an example though from my understanding, it should present an infinite loop.
I\ve been pondering this a while, thought i'd get some Guru's out there to help out with my understanding of this.
Rahim.
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Skunkworks announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science - http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi - http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
participants (16)
-
Alex Nderitu
-
Alex Ngatia
-
Billy
-
BOOKER OMOLE
-
Chris Mwirigi
-
chuks Jonia
-
Dennis Kioko
-
Letian Kevin
-
liwindi joshua
-
Martin Muraguri
-
nyarotho kennedy
-
Rad!
-
Rahim Kara
-
Simon Mbuthia
-
Steve
-
Steve Obbayi