Re: [Skunkworks] Skunkworks Digest, Vol 8, Issue 210

Breinac pls use support@kdn.co.ke Or call 020 5000000 Sent from my BlackBerry® smartphone from Zain Kenya -----Original Message----- From: skunkworks-request@lists.my.co.ke Date: Sat, 21 Nov 2009 22:41:25 To: <skunkworks@lists.my.co.ke> Subject: Skunkworks Digest, Vol 8, Issue 210 Send Skunkworks mailing list submissions to skunkworks@lists.my.co.ke To subscribe or unsubscribe via the World Wide Web, visit http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks or, via email, send a message with subject or body 'help' to skunkworks-request@lists.my.co.ke You can reach the person managing the list at skunkworks-owner@lists.my.co.ke When replying, please edit your Subject line so it is more specific than "Re: Contents of Skunkworks digest..." Today's Topics: 1. KDN technical email ([ Brainiac ]) 2. Re: Mick Wilson/UNEP/NBO/UNO is on leave (timrick@gmail.com) 3. Re: if you ever need to rename 100+ files... (Bernard Owuor) 4. Re: if you ever need to rename 100+ files... (Njoroge Tito) 5. Re: Kebs targets makers of software with quality rules (ashok+skunkworks@parliaments.info) 6. Re: Wifi cpe needed. (Mark Mwangi) 7. Re: Mick Wilson/UNEP/NBO/UNO is on leave (Dennis Kioko) 8. Re: Kebs targets makers of software with quality rules (aki) 9. Wifi cpe needed. (Job Muriuki) 10. Re: Mick Wilson/UNEP/NBO/UNO is on leave (Solomon Mburu Kamau) 11. Re: Pissed With Safaricom 3G (Bernard Mwagiru) ---------------------------------------------------------------------- Message: 1 Date: Sat, 21 Nov 2009 16:29:19 +0300 From: "[ Brainiac ]" <arebacollins@gmail.com> To: Skunkworks forum <skunkworks@lists.my.co.ke> Subject: [Skunkworks] KDN technical email Message-ID: <1e3a5bc00911210529j7ceba3b0me12701a2affcfc34@mail.gmail.com> Content-Type: text/plain; charset="utf-8" hi skunks, could someone share the email address of KDN 's butterfly service. Technical please, and a working one at that. apparently the info one posts to some mailman forums. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.my.co.ke/pipermail/skunkworks/attachments/20091121/e340c01a/attachment-0001.htm> ------------------------------ Message: 2 Date: Sat, 21 Nov 2009 16:16:00 +0000 From: "timrick@gmail.com" <timrick@gmail.com> To: "Skunkworks Forum" <skunkworks@lists.my.co.ke> Subject: Re: [Skunkworks] Mick Wilson/UNEP/NBO/UNO is on leave Message-ID: <4b081243.1d255e0a.1380.0dde@mx.google.com> Content-Type: text/plain; charset="utf-8" Lmao .... but is these guy ever in the office? -----Original Message----- From: James Mutuku Sent: 20/11/2009 11:27:29 am Subject: Re: [Skunkworks] Mick Wilson/UNEP/NBO/UNO is on leave Is this guy always on leave? On Thu, Nov 19, 2009 at 8:47 PM, Mick Wilson <Mick.Wilson@unep.org> wrote:
I will be out of the office starting 19/11/2009 and will not return until 23/11/2009.
I am out of office for a few days and will be checking this mail less often than you'd like. If you need an intelligent reply before I get back then please contact caroline.mureithi@unep.org or, for POW 2010 matters, norberto.fernandez@unep.org
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke Other lists ------------- 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
-- Best Regards, James Mutuku Ndeti Agile Systems Limited +254722490994 www.agile.co.ke mutuku.wordpress.com Has your organization implemented a customer relationship management (CRM)system? visit http://www.agile.co.ke/crm.php and find out how our CRM can help you achieve better customer satisfaction and sales :::0:aa08f54cbb169abebbaaa268e949408a:-1:x::: ------------------------------ Message: 3 Date: Sat, 21 Nov 2009 08:43:02 -0800 (PST) From: Bernard Owuor <b_owuor@yahoo.com> To: Skunkworks Forum <skunkworks@lists.my.co.ke> Subject: Re: [Skunkworks] if you ever need to rename 100+ files... Message-ID: <289773.54885.qm@web57706.mail.re3.yahoo.com> Content-Type: text/plain; charset="us-ascii" If you're in Linux, use: # rename 'y/\ /_/' * ________________________________ From: saidimu apale <saidimu@gmail.com> To: Skunkworks forum <skunkworks@lists.my.co.ke> Sent: Sat, November 21, 2009 2:20:49 AM Subject: [Skunkworks] if you ever need to rename 100+ files... I needed to quickly and painlessly rename some files by replacing spaces with underscores (_). Here's a quick and dirty python script that did it for me. I ran it from the python interpreter command-line (I didn't save the script to a file... lazy). ----- begin script----- import os for file in os.listdir(os.getcwd()): newname = "_".join(file.split()) os.rename(file, newname) ----- end script------ It's a quick and dirty script so there's no error-handling of *any* sort. But that's trivial to add if you needed it. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.my.co.ke/pipermail/skunkworks/attachments/20091121/5c612add/attachment-0001.htm> ------------------------------ Message: 4 Date: Sat, 21 Nov 2009 20:26:03 +0300 From: Njoroge Tito <titonjoroge@gmail.com> To: Skunkworks Forum <skunkworks@lists.my.co.ke> Subject: Re: [Skunkworks] if you ever need to rename 100+ files... Message-ID: <b82a2f4f0911210926q2c716742wd791cd0d7bfd7b74@mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" if on windows, there is a nifty tool called Total Commander, that has a multi-rename facility, amoing many other uses. 2009/11/21 Bernard Owuor <b_owuor@yahoo.com>
If you're in Linux, use:
# rename 'y/\ /_/' *
------------------------------ *From:* saidimu apale <saidimu@gmail.com> *To:* Skunkworks forum <skunkworks@lists.my.co.ke> *Sent:* Sat, November 21, 2009 2:20:49 AM *Subject:* [Skunkworks] if you ever need to rename 100+ files...
I needed to quickly and painlessly rename some files by replacing spaces with underscores (_). Here's a quick and dirty python script that did it for me. I ran it from the python interpreter command-line (I didn't save the script to a file... lazy).
----- begin script----- import os
for file in os.listdir(os.getcwd()): newname = "_".join(file.split()) os.rename(file, newname)
----- end script------
It's a quick and dirty script so there's no error-handling of *any* sort. But that's trivial to add if you needed it.
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke Other lists ------------- 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
-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.my.co.ke/pipermail/skunkworks/attachments/20091121/c1b53719/attachment-0001.htm> ------------------------------ Message: 5 Date: Sat, 21 Nov 2009 17:29:12 +0000 From: ashok+skunkworks@parliaments.info To: Skunkworks Forum <skunkworks@lists.my.co.ke> Subject: Re: [Skunkworks] Kebs targets makers of software with quality rules Message-ID: <a245ea580911210929o28012c64k6bb046c375267e37@mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" On Fri, Nov 20, 2009 at 5:13 AM, aki <aki275@googlemail.com> wrote:
On Thu, Nov 19, 2009 at 11:28 PM, <ashok+skunkworks@parliaments.info<ashok%2Bskunkworks@parliaments.info>
wrote:
Ban freeware and reinvent the wheel when it already exists ? are you
serious or joking or inebriated ?
@Ashok, hehehe.... come'on lets not be too lazy, take the back seat and justify " reinvent the wheel " notion. Building on apache and Mysql etc is not freeware. Freeware is about ready made solutions that are being sold to end users, under the pretext of progamming and developers. Infact, I'd say such actions are fraudulent. I hope you saw the kisstv site and the template used ( the thread was raised on this list )...what a scam if the site owners called themselves ati web developers/coders!
My point is it is a bit ridiculous to regulate re-use via a standardization and regulatory scheme. It will simply not work because the area specified is very generic ("Software Development") and technology oriented ( no "Freeware" ...WTF do they mean by freeware ? ) . Its like saying we must have standards and regulations on the "manufacturing process" ... I am sure KEBS themselves have different evaluative standards on *end products* and very specific standards on certain specific *processes*. Clearly a gum-boot is different from a office shoe -- even though both are shoes -- so you need different standards to evaluate quality. Ideally standardization should be on the end product - e.g. minimal standards for a company offering BPO / offshoring services -- i.e. does the provider meet internationally recognized data security standards ? what are these minimum standards ? etc... People will always pirate / copy / steal / counterfiet / plagiarize / break the law while driving .. there are laws already in place for these crimes ... why do you want stricter laws and regulatory mechanisms when the existing scheme isnt being implemented properly ? do you really think it will work ? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.my.co.ke/pipermail/skunkworks/attachments/20091121/7938d106/attachment-0001.htm> ------------------------------ Message: 6 Date: Sat, 21 Nov 2009 09:40:44 -0800 From: Mark Mwangi <mwangy@gmail.com> To: Skunkworks Forum <skunkworks@lists.my.co.ke> Subject: Re: [Skunkworks] Wifi cpe needed. Message-ID: <1338c13a0911210940w19406676y245ac619b5de3d1a@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Hey job. Was wondering how good your wifi was workin wit the nano station is it usable? On 11/15/09, Job Muriuki <muriukin@gmail.com> wrote:
On 11/15/09, Mark Mwangi <mwangy@gmail.com> wrote:
Hey Job did you get the nanostation? N at what cost? Intrested in getting butterfly. .
I bought mine from Dubai for around 6k but I had someone bring them for me. In town the nanostation2 goes for around 9.5k. You can go for the nanostation2 loco. Its smaller and cheaper by about 2k. Go to swift technologies 2nd floor Old mutual building alon Kimati Street. _______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke Other lists ------------- 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, Mark Mwangi http://mwangy.wordpress.com Skype : mark.mwangy ------------------------------ Message: 7 Date: Sat, 21 Nov 2009 11:54:36 -0600 From: Dennis Kioko <dmbuvi@gmail.com> To: timrick@gmail.com, Skunkworks Forum <skunkworks@lists.my.co.ke> Subject: Re: [Skunkworks] Mick Wilson/UNEP/NBO/UNO is on leave Message-ID: <2f1649800911210954i444a4613j7cc110f0b90ff7c4@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 maybe you should contact catherine for an intelligent answer. -- with Regards: Get your free technology e-magazine in pdf format: Tekniaonline: http://bit.ly/tekniaonline-2 Sterotyping: Abednego, tell the tribe by the name; visit the blog : http://gramware.blogspot.com ------------------------------ Message: 8 Date: Sat, 21 Nov 2009 21:17:42 +0300 From: aki <aki275@googlemail.com> To: Skunkworks Forum <skunkworks@lists.my.co.ke> Subject: Re: [Skunkworks] Kebs targets makers of software with quality rules Message-ID: <eae9e5720911211017q3cb166b2h26b9af6a2fdaedbe@mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" @Ashok, point well said, the freeware part was my contribute nothing with kebs etc. As with others contributions too, the corrections came "fast and furiuos" and I'm off the freeware issues. There are too many factors and economic reasons that contribute towards why there is much re-use of existing platforms and thus are being used successfully. :-) There is a new possible discussion on way forward but I think programmer listers maybe too tired of attempts to revive issues that may have been tried before by others and did not suceed due to variuos reasons. Pretty complicated stuff, too many variables. Rgds. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.my.co.ke/pipermail/skunkworks/attachments/20091121/d9c379f5/attachment-0001.htm> ------------------------------ Message: 9 Date: Sat, 21 Nov 2009 22:03:13 +0300 From: Job Muriuki <muriukin@gmail.com> To: Skunkworks Forum <skunkworks@lists.my.co.ke> Subject: [Skunkworks] Wifi cpe needed. Message-ID: <a42c4e0b0911211103i4ebbcf42ofe374f7b1b89ee42@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Hi. So far so good. Its great performance wise at its cost. I would advise you go for it especially if you get a weak signal. I use it all the way in easich section 3 and i pick up signals in town. On 11/21/09, Mark Mwangi <mwangy@gmail.com> wrote:
Hey job. Was wondering how good your wifi was workin wit the nano station is it usable?
On 11/15/09, Job Muriuki <muriukin@gmail.com> wrote:
On 11/15/09, Mark Mwangi <mwangy@gmail.com> wrote:
Hey Job did you get the nanostation? N at what cost? Intrested in getting butterfly. .
I bought mine from Dubai for around 6k but I had someone bring them for me. In town the nanostation2 goes for around 9.5k. You can go for the nanostation2 loco. Its smaller and cheaper by about 2k. Go to swift technologies 2nd floor Old mutual building alon Kimati Street. _______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke Other lists ------------- 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,
Mark Mwangi
Skype : mark.mwangy _______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke Other lists ------------- 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
-- Sent from my mobile device ------------------------------ Message: 10 Date: Sat, 21 Nov 2009 22:38:41 +0300 From: Solomon Mburu Kamau <solo.mburu@gmail.com> To: Skunkworks Forum <skunkworks@lists.my.co.ke> Subject: Re: [Skunkworks] Mick Wilson/UNEP/NBO/UNO is on leave Message-ID: <98099ee50911211138l2a30ba52ufe6d41508195c157@mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" 2009/11/21 Dennis Kioko <dmbuvi@gmail.com>
maybe you should contact catherine for an intelligent answer.
LMAO!
-- with Regards:
Get your free technology e-magazine in pdf format: Tekniaonline: http://bit.ly/tekniaonline-2
Sterotyping: Abednego, tell the tribe by the name; visit the blog : http://gramware.blogspot.com _______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24&t=94 ------------ Other services @ http://my.co.ke Other lists ------------- 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
-- Solomon Mburu Kamau P.O. Box 19343 - 00202 Nairobi Cell: (+254-0) 735 431041 Man is a gregarious animal and enjoys agreement as cows will graze all the same way to the side of a hill! AND It is better to die in dignity than in the ignomity of ambiguous generosity! http://dawn-in-kenya.blogspot.com http://smiley2.wordpress.com http://mburu.sikika.co.ke -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.my.co.ke/pipermail/skunkworks/attachments/20091121/bc5d43b7/attachment-0001.htm> ------------------------------ Message: 11 Date: Sat, 21 Nov 2009 22:41:21 +0300 From: Bernard Mwagiru <bmwagiru@gmail.com> To: Skunkworks Forum <skunkworks@lists.my.co.ke> Subject: Re: [Skunkworks] Pissed With Safaricom 3G Message-ID: <65ef49eb0911211141r1f060cnc8d48abe3d93a903@mail.gmail.com> Content-Type: text/plain; charset=UTF-8 Is this another unlimited offer? On 11/21/09, James Muendo <timrick@gmail.com> wrote:
Depends on where you are Odhiambo. Am around Kilimani, and I have downloaded a 94Mb file in about 10 min using Safcom. Maybe you might want to check where you are or restart the machine, I guess it will refresh the whole network again.
James Muendo
Leerick Office & Tech Supplies
P.O Box 28016 - 00200
Nairobi,Kenya.
Phone: + 254 725 567 508
gtalk: timrick
Skype: tim.rick
rickdeesadvantage.blogspot.com
From: skunkworks-bounces@lists.my.co.ke [mailto:skunkworks-bounces@lists.my.co.ke] On Behalf Of Njoroge Tito Sent: 21 November 2009 16:07 To: Skunkworks Forum Subject: Re: [Skunkworks] Pissed With Safaricom 3G
Have just downloaded the same file in less than 2 minutes( average 150KB/s) , using safaricom around westlands..
Perhaps its your location..
2009/11/21 Odhiambo Washington <odhiambo@gmail.com>
Safaricom have just launched their 0.3G service again! Here I am, trying to download a 13MB file and it's telling me 18hrs (and counting..) left!!!
Now this is not something I should be paying for or is it just me (where I am)?
<cut>
pidgin-2.6.3.exe105 B/s - 24.0 kB of 13.8 MB, 1 day left
http://garr.dl.sourceforge.net/project/pidgin/Pidgin/2.6.3/pidgin-2.6.3.exe
</cut>
Sux!!
-- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks ------------ Skunkworks Rules http://my.co.ke/phpbb/viewtopic.php?f=24 <http://my.co.ke/phpbb/viewtopic.php?f=24&t=94> &t=94 ------------ Other services @ http://my.co.ke Other lists ------------- 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
-- Sent from my mobile device ------------------------------ _______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks End of Skunkworks Digest, Vol 8, Issue 210 ******************************************
participants (1)
-
gideon.kirui@kdn.co.ke