<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>waf &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/waf/</link>
	<description>Feed of posts on WordPress.com tagged "waf"</description>
	<pubDate>Mon, 06 Oct 2008 18:17:16 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Wicked Awesome Supernote!]]></title>
<link>http://bobbyjennings.wordpress.com/?p=148</link>
<pubDate>Tue, 23 Sep 2008 23:47:00 +0000</pubDate>
<dc:creator>Bobby Jennings</dc:creator>
<guid>http://bobbyjennings.com/2008/09/23/wicked-awesome-supernote/</guid>
<description><![CDATA[
Our good pals Rhett &amp; Link have invited Wicked Awesome Films to be a YouTube Team Captain for t]]></description>
<content:encoded><![CDATA[<p><a href="http://www.rhettandlink.com/supernote"></a><a href="http://3.bp.blogspot.com/_pj0VOupDCqY/SNfZiHvJBQI/AAAAAAAAAD4/T8kzUQ2fTvU/s1600-h/Picture+2.png"><img style="float:left;cursor:hand;margin:0 10px 10px 0;" src="http://3.bp.blogspot.com/_pj0VOupDCqY/SNfZiHvJBQI/AAAAAAAAAD4/T8kzUQ2fTvU/s320/Picture+2.png" border="0" alt="" /></a></p>
<p>Our good pals Rhett &#38; Link have invited Wicked Awesome Films to be a YouTube Team Captain for their "YouTube-Hold-A-Singing-Note-The-Longest-Event". They call it "Supernote" which is caticher (I guess).</p>
<p>Here's our video. <a href="http://www.youtube.com/watch?v=cpbsQEyb-TY">Watch it, then go to YouTube and make a video response to it. All you have to do is say, "This is my supernote..." and hold a musical note as long as you can!</a></p>
<p>Win and Rhett &#38; Link just might make a song for you!</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/cpbsQEyb-TY'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/cpbsQEyb-TY&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The build system]]></title>
<link>http://makegames.wordpress.com/?p=5</link>
<pubDate>Mon, 22 Sep 2008 17:39:00 +0000</pubDate>
<dc:creator>paulsven</dc:creator>
<guid>http://makegames.de.wordpress.com/2008/09/22/the-build-system/</guid>
<description><![CDATA[One of my top priorities is how I am going to build hundreds of C++ files that depend on each other,]]></description>
<content:encoded><![CDATA[<p>One of my top priorities is how I am going to build hundreds of C++ files that depend on each other, plus some external libraries, using different compile flags and so on. There is a list of things that I want to do :</p>
<ol>
<li>support several platforms. I want to test programming on the Wii and the PSP, so I need to be able to build for these targets, not just a windows game.</li>
<li>support several hosts. I want to be able to build on my windows machine, or on my linux machine, and if someone has a mac, then you suck, but i'd want to be able to build on a mac also.</li>
<li>use correct tools. I am no geek... well I take that back. I am not geek enough to work with Vi or Emacs, though. I am using Visual C++ at work, and the tools make it so much easier to develop. So I need the build system to be able to maintain solutions for these tools.</li>
<li>find sources by yourself. I am well organized, and when there is a C++ file on my hard drive, it's supposed to be built. And when it's in a folder named "physics", yeah, it's probably a part of the physics library. I want the tool to find the sources automatically.</li>
<li>I want to use several compilers. The reason behind that is that the XBox has only one compiler (the one from Microsoft) and the psp has only one compiler (GCC). So the build system needs to handle at least MSVC and GCC.</li>
<li>I am being picky here, but I want to be able to build several things at the same time with just one command. When I type "build" (or "make" or "do" or whatever) then I want it to build all the things that I wanted to build, like the static release version with MSVC for windows 64 and the PSP version using GCC. and please put everything in separate folders so I can find them easily.</li>
<li>I want it to build fast. Not that it should build faster than the compiler itself, but if I have to wait 35 minutes before seeing what the new font looks like, I might get old before there is a pixel on the screen.</li>
<li>I want the command I type to be 3 letters or less. I am going to build a lot, so I am going to type it a lot, so it'd better be a small comand.</li>
</ol>
<p>The build systems that I know of are :</p>
<ul>
<li><a title="make build system" href="http://www.gnu.org/software/make/" target="_blank">make</a>. It is a pentazillion years old, but after all it works. I used it a lot before, but the problem is that it's not fast at all. It spawns 5 processes per command you want to run, and finding dependencies take ages. Too slow.</li>
<li><a title="autoconf/automake build system" href="http://www.gnu.org/software/autoconf/" target="_blank">autoconf/automake</a>. This one is a joke. If I had to say what's the best thing in the world, I would say "free software". If I had to punch someone in the face that would be the creator of autotools, for plaguing the free software community with this. It's insanely complex, and after 1 week you have forgotten what you had done. It is slow. It generates 197 files in the root directory, and of course you don'y know what any of them does. you have to type 153 commands to build. And the worse is that it's not even able to use Visual C++'s compiler. Actually, it hardly runs on windows.</li>
<li><a title="cmake build system" href="http://www.cmake.org/" target="_blank">cmake</a>. it's actually not building anything, it simply generates solutions or makefiles for other tools. I must say I id not try this one, i know that <a href="http://www.kde.org/" target="_blank">KDE</a> use it for their big libs. It must be pretty good, but that's not the direction I chose.</li>
<li><a title="Scons build system" href="http://www.scons.org/" target="_blank">Scons</a>. It's made of python. I hate python. I hate duck typing. I hate when you're hit by a stupid bug like "not enough arguments for the function blabla" when any compiler will tell you that immediately. No, python has to wait that you use the function. Their philosophy is "as long as you don't couch the bomb, it won't explode". Dang, don't let bombs happen!! This is the tool I chose. Yes I know, I am weird. Python is actually good for scripting, and being able to test things quickly is great. So I learnt to live with <a href="http://en.wikipedia.org/wiki/Duck_typing" target="_blank">duck typing</a>. I said I chose it, and then I un-chose it. For several reasons, the first one is that cross compilation doesn't work good. It is also a very complex tool, that ships with a gazillion of complex python files. And it is still slow.</li>
<li><a title="waf build system" href="http://code.google.com/p/waf/" target="_blank">Waf</a>. If I understood correctly, waf is made by a guy who worked on scons, he simply disagreed a bit with the other guys. Now he has made his own tool, which is very fast. It is also fairly small, the core python is only 10 files (and them some files for the tools). You don't have to install it. However, it doesn't support cross-compiling out of the box.</li>
</ul>
<p>So finally, which one of these tools did I choose ? well, I used scons for a very long time, building on win32 for win32, trying not to read the code. I added a solution generator for Visual C++, so I mainly worked with Visual C++. After a while, it stopped building, I could just generate solutions. After a longer while, I was fed up with it.</p>
<p>I switched to waf, without even thinking much about it. I tested it and at first, nothing worked. I used version 1.4.2, and it was broken. I used verson 1.3.X and it was also broken somewhere else. I tested the latest beta version, and, yes, it was also broken. And there was no easy way of adding cross compilation.</p>
<p>After thinking very carefully about it for 10 seconds, I finally decided to use the Waf build system but develop my own kind of tools to auto detect Visual C++ and be able to do cross compilation. Then the good news started to appear; the build system is verypowerful, the problems came mainly from the support of C++ or C that comes with the default Waf library. After a week of bad python programming, the "new" waf is able to use any Visual C++ compiler installed on the machine (including the ones targetting Win64) and GCC. And I am about to put back the good old MSVC solution generator to make it full.</p>
<p>So the answer to the build system is : waf. I am using waf to build, and I am also using waf to generate projects for eyecandy tools like Visual C++. And the answer was even more obvious when I had switched entirely to waf : the only possibility was to make my own build system or rewrite a good part of another one. That's how I work.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[MACHO]]></title>
<link>http://bobbyjennings.wordpress.com/?p=113</link>
<pubDate>Tue, 02 Sep 2008 20:14:47 +0000</pubDate>
<dc:creator>Bobby Jennings</dc:creator>
<guid>http://bobbyjennings.com/2008/09/02/macho/</guid>
<description><![CDATA[
]]></description>
<content:encoded><![CDATA[<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/a8rj_dN2QOo'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/a8rj_dN2QOo&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Der Browser als Hackertool]]></title>
<link>http://itsicherheit.wordpress.com/?p=132</link>
<pubDate>Mon, 04 Aug 2008 07:35:42 +0000</pubDate>
<dc:creator>Guido Strunck</dc:creator>
<guid>http://itsicherheit.de.wordpress.com/2008/08/04/der-browser-als-hackertool/</guid>
<description><![CDATA[Das Internet wird interaktiver. Und das schon seit Jahren. Immer mehr Geschäftsprozesse werden ins ]]></description>
<content:encoded><![CDATA[<p>Das Internet wird interaktiver. Und das schon seit Jahren. Immer mehr Geschäftsprozesse werden ins Netz verlagert. Das macht aber die Anwendungen mit denen das bewerkstelligt wird, nicht unbedingt sicherer. Sog. „business logic flaws“, d.h. Fehler oder Schwächen in der programmtechnisch abgebildeten Geschäftslogik wie etwa fehlende Authentifizierung oder ungeschützter Informationszugriff ermöglichen es zunehmend, nur mit einem Browser bewaffnet Webanwendungen anzugreifen. Und das ohne dass zu ausgefeilteren Angriffsarten wie XSS-Attacken bzw. SQL-Injection auf die Datenbank des Webservers etc. gegriffen werden muss.</p>
<p>s.a. <a href="http://www.owasp.org/index.php/Testing_for_business_logic" target="_blank">OWASP – Testing for business logic flaws</a></p>
<p>Der Security-Spezialist <a href="http://jeremiahgrossman.blogspot.com/" target="_blank">Jeremiah Grossmann</a> weist in einem Beitrag für die kommende <a href="https://www.blackhat.com/" target="_blank">„Black Hat Convention<span style="font-size:12pt;font-family:&#34;">“</span></a> , einer IT-Security-Messe in Las Vegas, darauf hin, dass somit spezielle Hackertools für Angriffe auf Webanwendungen zunehmend durch den Browser als Allzweckwaffe ersetzt werden könnten. Zudem viele „Angriffe“ eigentlich nur aus einem neugierigen „Zupfen an der Tischdecke“ bestehen. Etwa indem man durch <a href="http://itsicherheit.wordpress.com/2008/07/05/google-hacking-%e2%80%93-wie-man-suchmaschinen-als-spahwerkzeuge-nutzt/" target="_blank">„Google Hacking“</a> nicht verlinkte aber doch vorhandene Webseiten, Administrationsoberflächen, private Webcams etc. aufstöbert.</p>
<p>Da mittlerweile viele Anbieter ihre Dienstleistungen ins Internet verlagern, sei es laut Grossman nun einfacher als früher, viele verwundbare Anwendungen zu finden. Dabei sei das Vorgehen nicht einmal unbedingt illegal. Der Angreifer würde in vielen Fällen nur gegen die Vertragsbedingungen des Anbieters verstoßen.</p>
<p>Sich vor solchen Angriffen zu schützen ist relativ schwer, da sie kein konkretes Angriffsmuster aufweisen. Normale Intrusion Prevention Systems (IPS) oder Web Application Firewalls (WAF) erkennen solche sich noch im normalen Nutzungsbereich befindlichen Interaktionen mit der Anwendung oft nicht.</p>
<p>s.a. <a href="http://www.whitehatsec.com/home/assets/WP_bizlogic092407.pdf" target="_blank">Seven Business Logic Flaws That Put Your Website At Risk, Paper von Jeremiah Grossman</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[test 1 ]]></title>
<link>http://securitysoup.wordpress.com/?p=11</link>
<pubDate>Mon, 04 Aug 2008 02:01:58 +0000</pubDate>
<dc:creator>Sergicles</dc:creator>
<guid>http://securitysoup.de.wordpress.com/2008/08/04/test-1/</guid>
<description><![CDATA[test post 1
nothing else&#8230;
]]></description>
<content:encoded><![CDATA[<p>test post 1</p>
<p>nothing else...</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[I'm an equal-opportunity shopper.]]></title>
<link>http://scuzie.wordpress.com/?p=121</link>
<pubDate>Fri, 18 Jul 2008 04:31:49 +0000</pubDate>
<dc:creator>SG</dc:creator>
<guid>http://scuzie.de.wordpress.com/2008/07/17/im-an-equal-opportunity-shopper/</guid>
<description><![CDATA[This is why we have girlfriends, to remind us of the important things in life:
Me: I need shoes.
WAF]]></description>
<content:encoded><![CDATA[<p><img src="http://crystalized.ca/gallery/main.php?g2_view=core.DownloadItem&#38;g2_itemId=1750&#38;g2_serialNumber=2" style="float:right;margin-left:10px;">This is why we have girlfriends, to remind us of the important things in life:<br />
Me: I need shoes.<br />
<acronym title="WriterAndFashionista">WAF</acronym>: You don't <em>need</em> shoes.<br />
Me: Shut up. I need shoes.<br />
WAF: No you don't. You may need clothes, underwear, tampons, or even birth control pills,  but not. shoes.<br />
Me: <em>No</em>. I don't need any of those things. I am perfectly happy naked, underwear-less, and tampon-less. And I definitely don't need birth control pills, because I'm not sexually active. But, I need <em>shoes</em>.<br />
WAF: Oh yeah, you're still practicing that thing called "abstinence." How's that working out for you?<br />
Me: Fine. It's working out fine. I like it.<br />
WAF: That's just because you don't know what it's like any other way. [Pause] Omg! I got my period!!! I think!<br />
Me: Congratulations? Between being constantly worried that I might be pregnant and knowing for sure that I'm not, I choose the latter.<br />
WAF: If you go around naked wearing only hot shoes, I'm pretty sure that won't last long.<br />
Me: Good point. I'll buy some ugly shoes to balance it out then.</p>
<p>---</p>
<p>I had a job interview today, and as soon as the interview was over, I went shopping.<br />
I didn't <em>mean</em> to do it of course, but the Fairweather beside it was having a sale! I just had to have a little peek. Besides, I made a pretty good impression during the interview - surely, she was going to give me the job, <em>right</em>? Of course.<br />
So I went into Fairweather looking for a dress to wear this weekend for SassyGirl in the City Part 2. Actually, I already have a dress that I've decided to wear this weekend, but I had to keep an open mind. What if there was a better dress out there, just waiting for me to take it home with me? One musn't be prejudiced about these things after all.<br />
I didn't find anything (Fairweather's clothes were never good enough for me anyways, I sniff), but as I was walking out of the store, I picked up a skirt off the sale rack and paid for it. What? I deserve a little indulgence, it's going to be my birthday soon! <em>Besides, I'm sure I got that job.</em><br />
As I was walking towards the bus stop, I noticed a small wine store. I don't have any more wine in my apartment, I suddenly recalled, and promptly walked in and bought a bottle of 2006 Muscat. How could I call myself a city girl without a constant stash of alcohol at home?<br />
Then I checked the bus schedule and realized I still had another half hour. I'll just go into <em>one</em> more store, I thought. So I walked into another clothing store, wine bottle in hand and everything. I decided I would just find a pair of shoes to match the dress I had at home. I didn't see any shoes that matched the dress, but I did find a ridiculously cute pair of black stilettos. Come on, black is sexy, timeless, and functional! Who didn't need a good pair of black stilettos, right? Then I noticed a couple colourful tops and dresses on the wall and decided to try them on, too.<br />
Two hours later, I had both salesladies at my beck and call and had tried on almost every top and dress the store owned. There were at least twenty discarded items outside my change room when I finally emerged victorious with a stunning strapless dress that was perfect for a night out on the town. It wasn't on sale, but I could always keep the tag on and return it if I didn't end up wearing it this weekend right? I congratulated myself on being so shrewd and told the cashier to ring it up. Just then, I noticed a very Victory-Ford-esque dress on the highest rack and <em>had</em> to try it on. So I did. And it was adorable. Even the lady in the change room beside mine said so.<br />
"How much is that?" She asked. I showed her the price tag.<br />
"You have to buy it. It looks like it was made for you."<br />
"I know right?"<br />
<em>I look like Victory Ford</em>, I thought to myself as I examined my reflection in the mirror. <em>I didn't think it possible, but I do. I actually look like the fictional fashionista herself!</em><br /><!--more--><br />
But I'd already found a dress that looked good on me. When was I going to wear this one? <em>Ah, just buy both, wear one, and return whichever one you don't end up wearing!</em> My shrewd inner accountant told me. <em>Good thinking</em>, I thought back, as I ran my fingers over the satin bow and smiled into the mirror.<br />
So as the cashier rang up the purchases, I asked her what their return policy was. "You have two weeks for an exchange or store credit. The shoes are final sale."<br />
Wait, what? Did I just hear her right? I can't get a refund?<br />
But it was too late. She'd already swiped my credit card, and I was too embarrassed to ask her to put one of the dresses back after she'd helped me for two hours.<br />
<em>Surely, I got that job right?</em> I thought to myself as I walked out of the store with $80 worth of purchases. I mentally calculated how much I'd spent after the interview. At least $120. Clearly, what WAF said did not resonate with me. <em>She doesn't know what she's talking about, I do need shoes. I only own one pair of stilettos and they're totally not as cute as these ones. And it's not like I can just get pretty shoes and without any pretty clothes to go with them, right? I wouldn't want to romp around naked in stilettos, after all. Besides, even though they weren't on sale, they weren't expensive either. Where else am I going to find a dress like that for under $50? Plus, it makes me look like </em>Victory Ford<em>. No, they were worth it. And I can wear the other dress when we go to Montreal! I can't look like a poor student when I'm partying it up there, of course.</em><br />
By the time I made it to the bus stop, I was feeling loads better. <em>I must have gotten that job,</em> I thought optimistically. <em>God, or at least the God of Fashion, must have known I got the job and strategically placed those stores there for me to find.</em><br />
So, God, I hope I got that job.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[GIMP Manual Future Decisions]]></title>
<link>http://romanofskiat.wordpress.com/2008/07/06/gimp-manual-future-decisions/</link>
<pubDate>Sun, 06 Jul 2008 08:30:06 +0000</pubDate>
<dc:creator>romanofski</dc:creator>
<guid>http://romanofskiat.de.wordpress.com/2008/07/06/gimp-manual-future-decisions/</guid>
<description><![CDATA[GIMP Help Browser using webkit.
Help Browser Improvements
I&#8217;m very happy about Svens changes f]]></description>
<content:encoded><![CDATA[[wp_caption id="attachment_24" align="alignleft" width="300" caption="GIMP Help Browser using webkit."]<a href="http://romanofskiat.files.wordpress.com/2008/07/helpbrowser.png"><img class="size-medium wp-image-24" src="http://romanofskiat.wordpress.com/files/2008/07/helpbrowser.png?w=300" alt="GIMP Help Browser using webkit." width="300" height="207" /></a>[/wp_caption]
<p><span style="font-weight:bold;">Help Browser Improvements</span><br />
I'm very happy about <a href="http://lists.xcf.berkeley.edu/lists/gimp-docs/2008-July/001217.html">Svens</a> changes for the next stable version of <a href="http://www.gimp.org">GIMP (2.6)</a>. The help browser uses now <a href="http://webkit.org/">webkit</a> to render the manual and can even now load the manual from the net if the user have an internet connection. I think that'll make the access to our manual more easier for the most of GIMP users.</p>
<p><span style="font-weight:bold;">Manual switches to gettext<br />
</span>The user manual is written using <a href="http://www.docbook.org/">DocBook/XML.</a> The translation is seperated by 'lang' attributes. There is no reference language. Therefore the manual is written in various languages, seperated by 'lang' attributes.</p>
<p>We're currently working hard to figure out a possible migration strategy of the current manual to <a href="http://en.wikipedia.org/wiki/Gettext">gettext.</a> Our build system need to be customized to manage the translations hold in *.po files. There are currently two possible candidates for this:</p>
<ul>
<li><a href="https://fedorahosted.org/publican">Publican</a></li>
<li><a href="http://code.google.com/p/waf/">WAF</a></li>
</ul>
<p><span style="font-weight:bold;">Publican</span> provides a lot of the functionality we need to update/manage the translations. So has a very specific purpose. It uses the automake/autotool build system, we're using as well. It is written by people at Red-Hat and can compile hundreds of manuals in the row. Ulf D. Ehlert and I elaborated a possible migration to publican and we figured a few pros and cons:</p>
<p>Pro:</p>
<ul>
<li>provides all the functionality needed to manage and build documentation using gettext</li>
</ul>
<p>Contra:</p>
<ul>
<li>complete switch to Publican and be dependant from it</li>
<li>feels like we won't need most of the functionality implemented to compile all (other manuals)</li>
</ul>
<p><span style="font-weight:bold;">WAF</span> though is a build system written in Python. It's ment to replace the currently widely automake/autotools toolchain, which is currently widely in use by a lot of open source projects.<br />
Pro:</p>
<ul>
<li>It's easier to understand and can better handle the complex process of building and installing our manual. I find it sometimes very cumbersome to express what the autotools/automake should do using bash expressions. I find it much easier to do this in Python or any other high level language than bash (don't misunderstand me: bash is fine for batch processing).</li>
</ul>
<p>Contra:</p>
<ul>
<li>WAF uses tools to provide configuring/building software. There seems to be no such tool available which provides the functionality to build our manual. We probably need to write our own tool. Not a problem though, but we need to do it and it will cost time.</li>
<li>"Not compatible" to our GIMP/GNOME (modules) which use automake/autotools.</li>
</ul>
<p>I will try to write a build script for our purpose using WAF and I also want to communicate more with the publican people. I think this will sort out our current "problems" choosing a system.</p>
<p>Well, could be, that I overlooked or misunderstood something elaborating those tools. I'm sorry if something is not correct, while I was checking.</p>
<p><strong>Update: </strong>Ulf sent me already a patch based on autotools/automake, which uses a bit of the publican infrustructure. Think that points out the direction where we're heading now :)</p>
<div class="flockcredit" style="text-align:right;color:#CCC;font-size:x-small;">Blogged with the <a title="Flock Browser" href="http://www.flock.com/blogged-with-flock" target="_new">Flock Browser</a></div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Clean up and sort the kids toys from the floor, please!]]></title>
<link>http://jakobsand.wordpress.com/?p=22</link>
<pubDate>Wed, 02 Jul 2008 19:51:30 +0000</pubDate>
<dc:creator>jakobsand</dc:creator>
<guid>http://jakobsand.de.wordpress.com/2008/07/02/clean-up-and-sort-the-kids-toys-from-the-floor-please/</guid>
<description><![CDATA[Saw this product from MIT. I love that last sentence: &#8230; perform more “meaningful” work suc]]></description>
<content:encoded><![CDATA[<p>Saw this product from MIT. I love that last sentence: ... perform more “meaningful” work such as exploring new planets and <strong>helping around the house.</strong></p>
<p>Story:<img class="alignright" src="http://www.crunchgear.com/wp-content/uploads/2008/07/uman.jpg" alt="" /></p>
<p>The University of Massachusetts, Amherst is working <a href="http://www.technologyreview.com/Infotech/21027/?a=f">on a robot</a> that can learn to use unfamiliar objects. According to <em>MIT’s Technology Review</em>, UMass’s Robot, called the UMass Mobile Manipulator, or UMan, ‘sees’ an object with the help of a Web cam and then pushes it around to see how it moves, identifying and recording the objects’ parts and joints.</p>
<p>Doctoral student Dov Katz is working on the UMan along with computer science professor Oliver Brock, Katz told the review that the UMan learns similarly to how a baby does, moving around the world, picking things up and playing with them to see how they work. He didn’t say whether or not the UMan also tries to put everything in its mouth.</p>
<p>The researchers at UMass believe that enabling robots to adapt to unstructured environments will allow them to perform more “meaningful” work such as exploring new planets and helping around the house.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Interesting Information Security Bits for June 26th, 2008]]></title>
<link>http://infosecramblings.wordpress.com/2008/06/26/interesting-information-security-bits-for-june-26th-2008/</link>
<pubDate>Thu, 26 Jun 2008 19:18:54 +0000</pubDate>
<dc:creator>Kevin Riggins</dc:creator>
<guid>http://infosecramblings.de.wordpress.com/2008/06/26/interesting-information-security-bits-for-june-26th-2008/</guid>
<description><![CDATA[Here we go.
From the Blogosphere.
F-Secure has released their Security Threat Summary for the First ]]></description>
<content:encoded><![CDATA[<p>Here we go.</p>
<p><b>From the Blogosphere.</p>
<p></b><a target="_blank" href="http://www.f-secure.com/weblog/archives/00001462.html">F-Secure</a> has released their <a target="_blank" href="http://www.f-secure.com/2008/1/index.html">Security Threat Summary for the First Half of 2008</a>.</p>
<p><a target="_blank" href="http://www.net-security.org/insecuremag.php">(IN)SECURE Magazine issue 17</a> is available.  Good stuff as always.</p>
<p>Continuing their week of War on WAF's (Web Application Firewall), ts/sci security talks about <a target="_blank" href="http://www.tssci-security.com/archives/2008/06/26/week-of-war-on-wafs-day-3-language-specific/">language specificity in WAFs</a>.</p>
<p>Well, looky there, there's as a new <a target="_blank" href="http://blogs.zdnet.com/security/?p=1348">Zero-day flaw in Internet Explorer</a>. Who'd a thunk it?  Caveat: It is for version 6.</p>
<p><b>From the Newsosphere.</p>
<p></b>Nothing today.</p>
<p>Have a good one folks.</p>
<p>Kevin</p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/insecure" rel="tag">insecure</a>, <a class="performancingtags" href="http://technorati.com/tag/waf" rel="tag">waf</a>, <a class="performancingtags" href="http://technorati.com/tag/ie" rel="tag">ie</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Interesting Information Security Bits for June 24th, 2008]]></title>
<link>http://infosecramblings.wordpress.com/2008/06/24/interesting-information-security-bits-for-june-24th-2008/</link>
<pubDate>Tue, 24 Jun 2008 18:24:32 +0000</pubDate>
<dc:creator>Kevin Riggins</dc:creator>
<guid>http://infosecramblings.de.wordpress.com/2008/06/24/interesting-information-security-bits-for-june-24th-2008/</guid>
<description><![CDATA[Here are today&#8217;s bits.
From the Blogosphere.
Marcin has posted a really interesting treatise a]]></description>
<content:encoded><![CDATA[<p>Here are today's bits.</p>
<p><b>From the Blogosphere.</b></p>
<p>Marcin has posted a really interesting treatise at the <a target="_blank" href="http://www.tssci-security.com/">ts/sci security blog</a> about <a target="_blank" href="http://www.tssci-security.com/archives/2008/06/23/web-application-firewalls-a-slight-change-of-heart/">Web Application Firewalls</a>.  Some really good stuff to think about.</p>
<p>The Princess of Antiquity continues her series on Cryptography (Non-Technical) with a post titled <a target="_blank" href="http://abbicabanding.wordpress.com/2008/06/24/earlier-forms-of-cryptography-non-technical/">Earlier Forms of Cyptography</a>.  Very well written and easy to understand with really good info.</p>
<p>Didier has given us <a target="_blank" href="http://blog.didierstevens.com/2008/06/24/quickpost-wifi-probe-request-logging-with-an-airpcap-adapter/">another tool written in python</a>, apc-pr-log, which uses the <a target="_blank" href="http://www.cacetech.com/products/airpcap_family.htm">AirPcap</a> adapter to log all probe requests with a SSID for easy viewing. Should be fun to play with.</p>
<p><b>From the Newsophere.</p>
<p></b>Whitehat Security has <a target="_blank" href="http://www.whitehatsec.com/home/news/08presssarchives/NR_funding062308.html">raised some VC cash</a>. Congrats Jeremiah.</p>
<p>Sun has released version 8 of <a target="_blank" href="http://www.darkreading.com/document.asp?doc_id=157231">Identity Manager</a>.</p>
<p>That's it for today.  Have a good one.</p>
<p>Kevin</p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/waf" rel="tag">waf</a>, <a class="performancingtags" href="http://technorati.com/tag/cryptography" rel="tag">cryptography</a>, <a class="performancingtags" href="http://technorati.com/tag/airpcap" rel="tag">airpcap</a>, <a class="performancingtags" href="http://technorati.com/tag/iam" rel="tag">iam</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Juno Too]]></title>
<link>http://bobbyjennings.wordpress.com/?p=56</link>
<pubDate>Sun, 25 May 2008 17:54:55 +0000</pubDate>
<dc:creator>Bobby Jennings</dc:creator>
<guid>http://bobbyjennings.com/2008/05/25/juno-too/</guid>
<description><![CDATA[
Well, I must say, I worked by butt off on this little parody. Originally edited for the MTV Movie S]]></description>
<content:encoded><![CDATA[<p><a href="http://bobbyjennings.files.wordpress.com/2008/05/junotoo.jpg"><img class="alignleft size-medium wp-image-57" src="http://bobbyjennings.wordpress.com/files/2008/05/junotoo.jpg?w=300" alt="" width="300" height="200" /></a></p>
<p>Well, I must say, I worked by butt off on this little parody. Originally edited for the MTV Movie Spoof Contest, we got a bit hosed over at Dailymotion. Congrats to the winner, but I really feel our piece is far better than the video they chose that depicts a mediocre sketch with a <a href="http://www.dailymotion.com/group/SpoofToWin/featured/video/x5glwk_matthew-mcconaughey-is-into-the-wil_fun" target="_blank">horrendous Matthew McConaughey impression</a>, although it was shot pretty well. (Doesn't make it funny though).</p>
<p>The MTV contest or its affiliates contacted Wicked Awesome Films on three separate occasions asking us to submit to the contest. I would've never done it if it weren't for my lovely girlfriend Sarina, who is both funny and cute in this little sketch, starring as Juno's girlfriend, Pauline Bleeker.</p>
<p>At the end of the day, I think we have one of the better Wicked Awesome Films and I hope you all enjoy it. I really loved the original movie and I had fun making this parody with all my friends.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/G-pegtI0UuQ'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/G-pegtI0UuQ&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Sparkling Water...]]></title>
<link>http://bobbyjennings.wordpress.com/?p=55</link>
<pubDate>Fri, 16 May 2008 17:00:41 +0000</pubDate>
<dc:creator>Bobby Jennings</dc:creator>
<guid>http://bobbyjennings.com/2008/05/16/sparkling-water/</guid>
<description><![CDATA[
]]></description>
<content:encoded><![CDATA[<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/fnc7hiehvKk'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/fnc7hiehvKk&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Barack Obama Song Ringtone!]]></title>
<link>http://bobbyjennings.wordpress.com/?p=51</link>
<pubDate>Mon, 12 May 2008 04:13:56 +0000</pubDate>
<dc:creator>Bobby Jennings</dc:creator>
<guid>http://bobbyjennings.com/2008/05/12/barack-obama-song-ringtone/</guid>
<description><![CDATA[
I&#8217;ve gotten A LOT of requests to make the ringtone for The Barack Obama Song available.  So I]]></description>
<content:encoded><![CDATA[<p><a href="http://www.phonesherpa.com/bobjenz" target="_blank"><img class="alignleft size-medium wp-image-52" src="http://bobbyjennings.wordpress.com/files/2008/05/barack320veoh.jpg?w=300" alt="" width="246" height="185" /></a></p>
<p>I've gotten A LOT of requests to make the ringtone for <a href="http://revver.com/video/657769/the-barack-obama-song/" target="_blank">The Barack Obama Song</a> available.  So I did. Click the Phone Sherpa link below and you too can show your support for your favorite Democrat as he races towards the White House with this incredibly silly, catchy ringtone.</p>
<p><a href="http://www.phonesherpa.com/bobjenz" target="_blank"><img class="alignleft" src="http://tbn0.google.com/images?q=tbn:q2-s8iCrApwkqM:http://blog.seattlepi.nwsource.com/venture/library/phonesherpa.gif" alt="" /></a></p>
<p>And if you want to download the MP3, click the Lulu link below. Thanks!</p>
<p><a href="http://www.lulu.com/content/2520098" target="_blank"><img src="http://www.lulu.com/images/services/buy_now_buttons/en/book.gif" border="0" alt="buy this multimedia on Lulu." /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Google Video Sitemap Protocol]]></title>
<link>http://bobbyjennings.wordpress.com/?p=49</link>
<pubDate>Fri, 09 May 2008 21:47:02 +0000</pubDate>
<dc:creator>Bobby Jennings</dc:creator>
<guid>http://bobbyjennings.com/2008/05/09/google-video-sitemap-protocol/</guid>
<description><![CDATA[
The Google Video Blog posted a piece today on How They Find Great Videos. While I haven&#8217;t tri]]></description>
<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-50" src="http://bobbyjennings.wordpress.com/files/2008/05/picture-1.png?w=229" alt="" width="229" height="93" /></p>
<p>The Google Video Blog posted a piece today on <a href="http://googlevideo.blogspot.com/2008/05/video-sitemaps-how-we-find-great-videos.html" target="_blank">How They Find Great Videos</a>. While I haven't tried this yet, I think it's worth a shot. Help them help you!</p>
<p>I'm going to go through the process and if you read this and create web video, you do the same. Let me know how it goes. And here's a Nunchuck Heroes of mine for good measure:</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/uBrQmxYVlgg'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/uBrQmxYVlgg&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The Basskateers]]></title>
<link>http://bobbyjennings.wordpress.com/?p=48</link>
<pubDate>Fri, 09 May 2008 18:16:03 +0000</pubDate>
<dc:creator>Bobby Jennings</dc:creator>
<guid>http://bobbyjennings.com/2008/05/09/the-basskateers/</guid>
<description><![CDATA[This movie by Connecticut-based Rubydog Movies is far too good to go unnoticed.  These guys are ever]]></description>
<content:encoded><![CDATA[<p>This movie by Connecticut-based <a href="http://rubydogmovies.com/" target="_blank">Rubydog Movies</a> is far too good to go unnoticed.  These guys are every bit as good as <a href="http://www.clarkandmichael.com/" target="_blank">Clark And Michael</a> which features Superbad's and Juno's <a href="http://www.imdb.com/name/nm0148418/" target="_blank">Michael Cera</a>.  If you don't know who these dudes are yet - you will soon.  Far too funny.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/oiJLbkAd9Kc'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/oiJLbkAd9Kc&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Crickets...]]></title>
<link>http://bobbyjennings.wordpress.com/?p=44</link>
<pubDate>Wed, 09 Apr 2008 17:39:42 +0000</pubDate>
<dc:creator>Bobby Jennings</dc:creator>
<guid>http://bobbyjennings.com/2008/04/09/crickets/</guid>
<description><![CDATA[So I wanted to start doing some vlogging. I set up my computer in my new house&#8217;s garage. Ummm]]></description>
<content:encoded><![CDATA[<p>So I wanted to start doing some vlogging. I set up my computer in my new house's garage. Ummm...</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/CzxT8cbxl6E'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/CzxT8cbxl6E&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[NunchuckHeroes As A YouTube Content Partner?]]></title>
<link>http://bobbyjennings.wordpress.com/?p=39</link>
<pubDate>Mon, 07 Apr 2008 22:10:34 +0000</pubDate>
<dc:creator>Bobby Jennings</dc:creator>
<guid>http://bobbyjennings.com/2008/04/07/nunchuckheroes-as-a-youtube-content-partner/</guid>
<description><![CDATA[So a month or so ago, I had a second account become a YouTube Content Partner in NunchuckHeroes.  He]]></description>
<content:encoded><![CDATA[<p>So a month or so ago, I had a second account become a YouTube Content Partner in <a href="http://www.youtube.com/user/NunchuckHeroes" target="_blank">NunchuckHeroes</a>.  Here's a sample:</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/uBrQmxYVlgg'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/uBrQmxYVlgg&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>There are 7 total videos and not a ton of views. Frankly, I'm sort of shocked that it was accepted to the program.  What's funny is that my personal account, <a href="http://www.youtube.com/user/bobjenz" target="_blank">bobjenz</a>, was rejected from the program (for now).  I don't exactly remember submitting each but I think around the time that Wicked Awesome Films because a YT Content Partner, we advised told to roll all of our accounts into it.  Whatever.</p>
<p>So, I'm not really sure what to do with NunchuckHeroes.  It was all a goof last year and I certainly don't want to create 1,000 Nunchuck videos, do I?  Perhaps I can all Nunchuck related shows.  Stuff like, "THIS WEEK IN NUNCHUCKS" instead of This Week in Baseball.  Or even a Nunchuck Song. Hey,  I bet the Internet would love that!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Rochelle Dorkiness-- WAF amuses me and I like their fake ads.]]></title>
<link>http://iprcast.wordpress.com/?p=115</link>
<pubDate>Sat, 05 Apr 2008 11:15:21 +0000</pubDate>
<dc:creator>iprcast</dc:creator>
<guid>http://iprcast.de.wordpress.com/2008/04/05/rochelle-dorkiness-waf-amuses-me-ad-i-like-there-fake-ads/</guid>
<description><![CDATA[first is a ad they sent in for Heinz ketchup

and then a fact one for chiclets, which makes me  gigg]]></description>
<content:encoded><![CDATA[<p>first is a ad they sent in for Heinz ketchup<br />
<span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/yMjSGjMxBC8'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/yMjSGjMxBC8&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>and then a fact one for chiclets, which makes me  giggle like a 12 year old.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/vA43gL71RnM'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/vA43gL71RnM&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>and don't forget Junxacilin,.....(as on a short circuits in 2007)</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/klbeu2aZ0lA'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/klbeu2aZ0lA&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>yes I'm five. and I'll stop, but they amumse me and its 6:18 in the morning...I should go to bed.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Yes, it is...]]></title>
<link>http://cyberphob1a.wordpress.com/?p=31</link>
<pubDate>Thu, 31 Jan 2008 21:19:55 +0000</pubDate>
<dc:creator>cyberphob1a</dc:creator>
<guid>http://cyberphob1a.de.wordpress.com/2008/01/31/yes-it-is/</guid>
<description><![CDATA[Recently I wrote about the issues I have with web application firewalls. However today I&#8217;d lik]]></description>
<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/lilcrabbygal/131398638/" target="_blank"><img src="http://farm1.static.flickr.com/52/131398638_51db94e3f7_m.jpg" align="left" height="240" hspace="7" width="149" /></a>Recently I wrote about the <a href="http://cyberphob1a.wordpress.com/2008/01/23/tide-out-for-web-application-firewalls/">issues I have with web application firewalls</a>. However today I'd like to give a short shout-out to  the ModSecurity Blog and its newest article "<a href="http://www.modsecurity.org/blog/archives/2008/01/is_your_website.html" target="_blank">Is Your Website Secure?</a>".</p>
<p>I like the message of the article so much, that I'll just cite the according section:</p>
<p><cite>[...] one of the following: web vulnerability scanning, penetration testing, deploying a web application firewall and log analysis does not adequately ensure "security." While each of these tasks excel in some areas and aid in the overall security of a website, they are each also ineffective in other areas. It is the overall coordination of these efforts that will provide organizations with, as Richard would say, a truly "defensible web application."</cite></p>
<p>I do think that some of the activities mentioned above are more effective (and therefore important) than others, but generally, I couldn't agree more. Very well put <a href="http://www.modsecurity.org/blog/archives/2006/12/ryan_barnett_is.html" target="_blank">Ryan Barnett</a>, thanks!</p>
<p><font color="#666666" size="-2">Picture of scary spider in its web by <a href="http://www.flickr.com/photos/lilcrabbygal/" title="Link to Vanessa Pike-Russell's photos">Vanessa Pike-Russell</a></font></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tide Out for Web Application Firewalls]]></title>
<link>http://cyberphob1a.wordpress.com/2008/01/23/tide-out-for-web-application-firewalls/</link>
<pubDate>Wed, 23 Jan 2008 22:27:49 +0000</pubDate>
<dc:creator>cyberphob1a</dc:creator>
<guid>http://cyberphob1a.de.wordpress.com/2008/01/23/tide-out-for-web-application-firewalls/</guid>
<description><![CDATA[I recently stumbled across an article by Ivan Ristic who also writes for the ModSecurity Web Securit]]></description>
<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/ianlloyd/274749599/" target="_blank"><img src="http://farm1.static.flickr.com/80/274749599_c926cfe8e7_m.jpg" align="left" height="180" hspace="7" width="240" /></a>I recently stumbled across <a href="http://blog.ivanristic.com/2008/01/tide-is-turning.html" target="_blank">an article</a> by <a href="http://blog.ivanristic.com/" target="_blank">Ivan Ristic</a> who also writes for the <a href="http://www.modsecurity.org/blog/" target="_blank">ModSecurity Web Security Blog</a>. It's about how 2008 is finally going to become the year of Web Application Firewalls.</p>
<p>I really hate to be a spoilsports, but I'm afraid it's still a long time until we have such a thing as the Year of WAFs. I've never been a huge fan of such firewalls and for a reason. I'll use the following posting to tell you why I feel this way.</p>
<p>While I think that e.g. ModSecurity can increase the security by some, the dangers IMHO out-weight the gains. Here is my reasoning:</p>
<ul>
<li>Web Application Firewalls give companies a false sense of security. As opposed to normal network firewalls, where people know exactly that such devices keep traffic from going to certain ports, however let traffic to other ports pass, it is impossible to know the vulnerabilities that can or cannot be prevented with a WAF in front of an application. Many instances of SQL Injection or Cross-Site Scripting will be detected, but others will fall through the cracks. I'd rather know that I have lots of SQL Injections in my application than think it is secure when it in fact has a few exploitable flaws.</li>
<li>Many critical vulnerability classes can not be detected and prevented at all. Flaws in the logic of an application, or Cross-Site-Request Forgery vulnerabilities (which get more interesting <a href="http://cyberphob1a.wordpress.com/2008/01/23/phishing-over-csrf/">by the minute</a>) can be exploited even with a WAF in front of the application. This, in connection with the false sense of security matter mentioned above can be a problem, even though I admit it is a weak argument not to use WAFs just because they don't protect against certain attacks.</li>
<li>They increase the attack surface by adding a new layer. While ModSecurity seems to have a pretty <a href="http://secunia.com/product/13609/?task=advisories" target="_blank">clean vulnerability record</a>, this does not hold true for other Web Application Firewalls. In any case, they do add a layer of complexity and therefore also bear the risk of introducing new vulnerabilities. In fact, I've seen WAFs that were more easily hacked than the application they was supposed to protect.</li>
<li>False positives  can cause the protected application to stop working. WAFs come with a huge number of default configurations. However many are not context sensitive and those who are can often be tricked. Take the word Union for example. It might either be used by an attacker exploiting an SQL Injection vulnerability, or by a valid user posting a comment about the European Union. Another example is a forum that allows certain HTML-tags for postings. The default configuration will break the complete forum functionality. Companies using WAFs to protect huge applications need to put a whole lot of work into testing if their web applications still work in boundary conditions after installment.</li>
</ul>
<p>So, to sum it up, I think it is indeed possible to protect web applications from some attacks by WAFs. However it takes a lot of work to correctly configure the product and make it a fit to the application. More importantly, correctly configuring it requires to know the vulnerabilities to protect from. Once the vulnerabilities are known, it's almost always more effective to patch the code instead of putting a WAF in front of it (there are some cases where this might not be true, e.g. when only the binary code is available and the manufacture cannot be squeezed to fix the flaws).</p>
<p>My appeal is to please, <i>please</i> Web application developers: Start to write secure code. It's not that hard! Have a look at the <a href="http://www.owasp.org/index.php/OWASP_Guide_Project" target="_blank">Open Web Application Security Project (OWASP) Guide</a>. It is a great starter into the world of secure development.</p>
<p><font color="#666666" size="-2">Picture of Lego-Firewall by <a href="http://www.flickr.com/photos/ianlloyd/" target="_blank">ianlloyd</a></font></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Clarkson provides proof of WAF]]></title>
<link>http://wingnut.wordpress.com/2006/03/12/clarkson-provides-proof-of-waf/</link>
<pubDate>Sun, 12 Mar 2006 12:44:16 +0000</pubDate>
<dc:creator>wingnut</dc:creator>
<guid>http://wingnut.de.wordpress.com/2006/03/12/clarkson-provides-proof-of-waf/</guid>
<description><![CDATA[Today I read an entertaining article by Jeremy Clarkson in the Sunday Times newspaper. It neatly ill]]></description>
<content:encoded><![CDATA[<p>Today I read an entertaining article by Jeremy Clarkson in the Sunday Times newspaper. It neatly illustrates why tech manufacturers must wake up to the WAF.</p>
<p>His introduction started with him dissing his own abilities to do anything good, including trying to print a photo out on an inkjet printer. After much wasted time and paper he concluded that</p>
<blockquote><p>-- <i>It turns out the procedure is simple. You tell the printer what sort of paper you’re using and how big it is. Then you give the information to the computer. Then you say whether you want “landscape” or “portrait”, then you choose the quality level you’re after, then you fix the red eyes, remove the blemishes, have a look at the preview and then, after just 55 minutes or so, out pops the finished product. Which is still crap.</i> --</p></blockquote>
<p>Exactly... <a target="_blank" href="http://driving.timesonline.co.uk/article/0,,12529-2079703,00.html">read it here </a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Wife Acceptance Factor (WAF)]]></title>
<link>http://wingnut.wordpress.com/2006/03/12/wife-acceptance-factor-waf/</link>
<pubDate>Sat, 11 Mar 2006 10:16:23 +0000</pubDate>
<dc:creator>wingnut</dc:creator>
<guid>http://wingnut.de.wordpress.com/2006/03/11/wife-acceptance-factor-waf/</guid>
<description><![CDATA[One major point I failed to mention in my opening post.
Its the BIG BIG problem, bigger than anythin]]></description>
<content:encoded><![CDATA[<p>One major point I failed to mention in my opening post.</p>
<p>Its the BIG BIG problem, bigger than anything else you could possible think of ......</p>
<p>I am of course referring to WAF.... the dreaded Wife Acceptance Factor.</p>
<p>I dont take credit for this acronym, I'm sure I heard it somewhere else on the net, but it's a major point when considering things for the home. Of course it doesn't just apply to the wife, it also applies to the kids, the parents and that non-geeky but vaguely stupid good friend of ours who likes to press buttons.</p>
<p>WAF is merely a handy name to use, a bit like hoover for vacuum cleaner. Its also a younger relative of another acronym KISS (keep it simple stupid) combined with that other saying that women use the world over - YNTST (You're Not thinking of Putting that Sh*t There are you?).</p>
<p>Lets face it, once past a certain age we all like to take a slight degree of pride in our living space. We like to decorate now and then, keep the place clean and have nice things to show off to the neighbours. Of course as men we pretend that we don't, but face facts guys, its true. Its the 'home is my castle' syndrome</p>
<p>This is why you see a load of men on Saturday mornings trudging round PC World and Dixons looking longingly at the latest combined wifi router/hair trimmer, and not actually buying it. We don't buy it because its not functionally cool, no. The reason we dont buy it is because we  make a conscious decision that (unless its going in the garage) it will not pass the WAF, oh and also because we know it looks sh*t.</p>
<p>So, moving swiftly on I would like to put forward some (free) guidelines for the modern Electronics Manufacturer:</p>
<ol>
<li>We are not all under-25 single geeks living in converted lofts, we have families (wives, children and elderly parents) and mortgages and bills to pay.</li>
<li>Referring to (1) I would also point out that when it comes to the global marketplace we are in the majority.</li>
<li>Referring to (2) it would therefore make sense to concentrate on selling to us, and not to the  minority of geeks who like upgrading firmware every day. ( I speak from past experience of firmware-geekdom)</li>
<li>When you finally do grasp the intricacies of releasing a commercial product, please remember Its only a DVD player, WTF are those 1000 extra buttons on the remote control for?</li>
</ol>
<p>I shall add to, and refine these guidelines in the coming weeks and months, please feel free to suggest your own.</p>
]]></content:encoded>
</item>

</channel>
</rss>
