<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>View from the Swamp &#187; incompetence</title>
	<atom:link href="http://www.viewfromtheswamp.com/tags/incompetence/feed" rel="self" type="application/rss+xml" />
	<link>http://www.viewfromtheswamp.com</link>
	<description>Life in South Florida Can Skew Anyone&#039;s Perspective</description>
	<lastBuildDate>Thu, 01 Apr 2010 21:26:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Why So Many Clueless Programmers?</title>
		<link>http://www.viewfromtheswamp.com/2008/06/10/why-so-many-clueless-programmers</link>
		<comments>http://www.viewfromtheswamp.com/2008/06/10/why-so-many-clueless-programmers#comments</comments>
		<pubDate>Tue, 10 Jun 2008 12:49:00 +0000</pubDate>
		<dc:creator>Sonjay</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[eBay & ePN]]></category>
		<category><![CDATA[incompetence]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.viewfromtheswamp.com/2008/06/10/why-so-many-clueless-programmers</guid>
		<description><![CDATA[Recently, I&#8217;ve the distinct joy of dealing with incompetent programmers on two different, unrelated, projects. Or perhaps they&#8217;re competent but simply don&#8217;t give a damn.
First up: A new regional service provider for an association of professionals. I have nearly a dozen clients whose websites depend on a datafeed, which was provided by the previous service [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I&#8217;ve the distinct joy of dealing with incompetent programmers on two different, unrelated, projects. Or perhaps they&#8217;re competent but simply don&#8217;t give a damn.</p>
<p><strong>First up:</strong> A new regional service provider for an association of professionals. I have nearly a dozen clients whose websites depend on a datafeed, which was provided by the previous service provider for this association. The old datafeed was excellent &#8212; clear and concise, comprehensive, and easy to use. The new provider first hemmed and hawed and offered vague responses to direct questions&#8230;.. Somewhat important questions such as, &#8220;Will you still provide us with a datafeed?&#8221; If this service provider was not going to provide a datafeed, I would have to rewrite all the programming on my clients&#8217; sites to use a different datafeed from a secondary source, which wasn&#8217;t as good as the one we were currently getting, but at least it was something. If the new provider would be providing a datafeed, I needed the schema for it as soon as possible, because the old datafeed was going to cease on a particular date, and any new datafeed would likely require rewriting my programming.</p>
<p>The new provider, though, simply couldn&#8217;t seem to tell us if they would be providing a datafeed or not. First the answer was &#8220;yes,&#8221; then it was &#8220;no,&#8221; then it was &#8220;maybe,&#8221; then it was &#8220;yes, and it will be compliant with the national standard,&#8221; then it was &#8220;if you pay us for the custom programming we will.&#8221; I was just about at the point where I would have to use the other available datafeed in order to get my clients&#8217; sites updated by the deadline, when this new provider made a datafeed available.</p>
<p>And when I finally got a look at it: <strong>Oh boy, does it suck.</strong> First of all, and I&#8217;m actually very glad of this, the datafeed <strong>omits some of the crucial information</strong> that my clients need. I couldn&#8217;t believe that a large professional service provider such as this one would omit such critical information from the datafeed they provide to their members. Keep in mind, the members, including my clients, provide the data in the first place, and <strong>pay the service provider handsomely</strong> to maintain it for them. This isn&#8217;t some free service where you get what you pay for.</p>
<p>As I said, I was glad they omitted this information, because it allowed me to recommend to my clients that we use the secondary datafeed from a different provider. My clients wouldn&#8217;t have understood, or cared, about my other objections to the datafeed, but the missing information they understood and cared about.</p>
<p>And what are my other objections to this new feed? Well, first, it <strong>completely ignores the flexibility of relational databases</strong>, and has never even been in the same room with the concept of <a rel="nofollow" href="http://bytes.com/forum/thread585228.html">normalization</a>. As an example, for a particular feature, the datafeed has 5 fields for characteristics of that feature. What will happen when 6 characteristics are needed? The datafeed will have to be restructured to add a 6th field, and my database that uses the datafeed will have to be restructured, and the programming code that selects the data and displays it in a web browser would have to be re-written (again) to accommodate the 6th characteristic. And then a 7th characteristic will appear at some point, and I&#8217;d have to go through that pointless exercise all over again. The datafeed is structured this way for about 9 different features &#8212; and it&#8217;s almost certain that these will need to be changed on a regular basis.</p>
<p>It also means that for a feature, say, &#8220;surface,&#8221; a particular characteristic, say &#8220;fuzzy,&#8221; might appear in field #10, or field #11, or field #12, or field #13, or field #14&#8230;. Well, you probably get the idea. There&#8217;s no consistency at all with respect to what goes where in the database. So that if I wanted to search the database for items that have a fuzzy surface, I have to write the code to search multiple different fields. This is both stupid, and highly inefficient.</p>
<p>The previous service provider understood relational databases and had structured their datafeed so that they could add a 6th characteristic, and a 7th, and even an 8th, 9th, and 10th, and it would continue working with my database &#8220;as is,&#8221; with no re-programming required. It&#8217;s not that I&#8217;m lazy &#8212; when re-programming is required, I do it. But I have better things to do with my time than waste it re-writing code that shouldn&#8217;t need to be rewritten, and my clients have better things to do with their money than pay me for that time.</p>
<p>And they did silly things like break up a single 1,200-character text field into 5 separate text fields, breaking up the text between words in a sentence, if needed, to fit them into the shorter text fields. That&#8217;s easy enough to handle in my code &#8212; I would simply concatenate all 5 fields into 1 in my database query. But it shouldn&#8217;t be necessary</p>
<p>The complete lack of normalization, and the moronic handling of the large text field, are indicative of a programmer who doesn&#8217;t know jack shit about databases. And that was my biggest concern of all. Even if I were to use the database as provided, what would they do with it down the road? They might decide to remove or add fields without telling anyone, or make other changes that would totally break the sites that depend on the datafeed.</p>
<p>We ended up using the secondary provider&#8217;s datafeed. It&#8217;s not as good as the previous one we were getting, but it&#8217;s infinitely better than the datafeed from the new provider.</p>
<p><strong>Second: eBay,</strong> of all people! You would think a company the size of eBay would have highly competent programmers who know what they&#8217;re doing.</p>
<p>News flash: They don&#8217;t.</p>
<p>I have a number of sites that earn affiliate commissions from eBay&#8217;s Partner Network program. I can view reports on my earnings within eBay&#8217;s ePN website. I can also download those reports, for importing into a spreadsheet or database.</p>
<p>I want to be able to view and manipulate these reports in different ways than the ePN interface allows, so I&#8217;ve been working on a program that will import the downloaded reports into a database and allow me to search, sort, and analyze in a variety of ways. I think it&#8217;s a very cool program, and I may develop it further in order to release it publicly.</p>
<p>But the transaction reports that I get from eBay made my shake me head. One day, the report might contain 9 fields, and the next day it might have 11, and on another day it might have 13. I think there are some other possible permutations possible, too, but until I get such a report in my account I won&#8217;t know exactly how many fields it will have or in what order.</p>
<p>This makes it much more difficult to import the data into my database. I can&#8217;t just &#8220;LOAD DATA INFILE,&#8221; nor can I simply parse the files and do a standard INSERT query. Instead, I have to parse the files and check for the number of fields, and check to see what headings the fields have, and write several different MySQL queries to use, depending on the results of the parsing.</p>
<p>These are basic tab-delimited files. eBay&#8217;s programmers should know enough to just put a zero or a null value, along with the tab, for the fields that aren&#8217;t needed for a given report &#8212; such that all downloaded reports would have exactly 13 fields, always, and they would all have the same fields, in the same order, always.</p>
<p>I sometimes feel overwhelmed and outclassed on the programming forums where I hang out. There are so many extremely competent, highly skilled programmers who can toss off a complex INNER JOIN of 5 different tables as easily as I can type my name.</p>
<p>These programmers would laugh their asses off if they were to see these datafeeds and reports that I&#8217;m dealing with.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.viewfromtheswamp.com/2008/06/10/why-so-many-clueless-programmers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Can Haz AdSense?</title>
		<link>http://www.viewfromtheswamp.com/2008/02/27/i-can-haz-adsense</link>
		<comments>http://www.viewfromtheswamp.com/2008/02/27/i-can-haz-adsense#comments</comments>
		<pubDate>Thu, 28 Feb 2008 03:13:00 +0000</pubDate>
		<dc:creator>Sonjay</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[incompetence]]></category>

		<guid isPermaLink="false">http://www.viewfromtheswamp.com/2008/02/27/i-can-haz-adsense</guid>
		<description><![CDATA[These are from the next group of instant internet millionaires. (Following are excerpts from a few posts at Google&#8217;s AdSense help forum.)
I just want to know if AdSense set-up is liable the Publisher to be charged on every advertisement she will be selected on her blogspot? Or there issuch a hidden fee?

pls someone should pls [...]]]></description>
			<content:encoded><![CDATA[<p>These are from the next group of instant internet millionaires. (Following are excerpts from a few posts at Google&#8217;s AdSense help forum.)</p>
<div class="creambox ital">I just want to know if AdSense set-up is liable the Publisher to be charged on every advertisement she will be selected on her blogspot? Or there issuch a hidden fee?</div>
<hr />
<div class="creambox ital">pls someone should pls tell me with page element should i chooose and paste my ads for search and refferal ads coz i paste it on add HTML/Java script but its no showing the search result when sm1 seached through my search bar. pls help.</div>
<hr />
<div class="creambox ital">up to now 1 month compleated but up to know i get only 2.87$ will any<br />
body tell how to get more money my blog is about yoga is any body tell?<br />
plzzzzzzzzzzzzzzzzzzzzzzzzzzzz&#8230;,</div>
<hr />
<div class="creambox ital">Could someone help me to paste adsense into ProStores? I have asked<br />
them on this and they say they do not have the training for<br />
this( which seems a bit strange). I have been trying mysel  and it<br />
goes all over except where I want it</div>
<hr />
<div class="creambox ital">i my page have been approved by google adsense but the problem is<br />
that: i have not registered my page with any hosting company? i do not know how i will post ads on my page? is it important to get registered to some hosting company?<br />
please tell me how i can get host my page on the web</div>
<hr />
<div class="creambox ital">How to find HTML Editor I could&#8217;t find it on my computor</div>
<hr />
<div class="creambox ital">To paste my ad code ,Do I need to delete the formerly  code  that<br />
already was on the place during the creation of my website?</div>
<hr />
<div class="creambox ital">How to optimization my ads in wallpapers site to get high ECPM</div>
<hr />
<div class="creambox ital">how do i really start this fortune maker i have the adsesnse account<br />
for almost a year withot any earning due to the lack in possession in<br />
my own website. members help ppls</div>
<hr />
<div class="creambox ital">I was not approved for adsense because my google site is not active.<br />
How do I make it active?</div>
<hr />
<div class="creambox ital">Next  . how  I  can  know  that  people  are  viewing  my<br />
site.Because  in  google  tool  bar  if  i  enter  my  blog  name  it<br />
is  not  being  opened.</div>
<hr />
<div class="creambox ital">I put up Adsense for search and content but now traffic &#8230;. ?<br />
or clicks &#8230;. Did I do  something wrong?</div>
<hr />
<div class="creambox ital">hi i have forgetted my web address what i created,can anyone know how<br />
to find my web?</div>
<hr />
<div class="creambox ital">Iam a housewife and am  eager to earn money thru adsense..<br />
I av created a website with three navigations.<br />
How should i place ads in my site.. from where will i get these ads?<br />
and what are referral ads..? . Is the contents really necessary?<br />
I am really confused. please advice me&#8230;</div>
<hr />
<div class="creambox ital">Hello How r u my search ads not coming search tag is working fine but<br />
keywords ads not appering plz help mee</div>
<hr />
<div class="creambox ital">I can&#8217;t even get the thing to parse properly, and I&#8217;m not well<br />
formed&#8230;so fuhkit.</div>
<hr />
<div class="creambox ital">i need some help regarding the change of blog<br />
website. As i&#8217;d change my blog website, i would like to know what are<br />
the procedures which i need to do to transfer my account of adsense to<br />
the new one. As for the ex-blogsite, i had already deleted.</div>
<hr />
<div class="creambox ital">have tried to place the generated code into my page using the View/<br />
Source  menu.</div>
<hr />
<div class="creambox ital">i need wanted adsense ads on my blog..google put tthem there<br />
and i can figure out how to remove them&#8230;i had some guy tell me what<br />
to do and i did what he said but the crapy ads are still there..why<br />
can&#8217;t google remove them automatically? so far i have spent over 3<br />
hours tryiing to remove these crappy adsense ads.</div>
<hr />
<div class="creambox ital">how can earn more &amp;more money?</div>
<hr />
<div class="creambox ital">do not have a website how do I make a website?</div>
<hr />
<div class="creambox ital">I got a code but I am not understanding in which site I should copy<br />
and paste the code? Please help me in this as I am in very much need<br />
of money.</div>
<hr />
<div class="creambox ital">I am new to this. Please tell how to start &amp; from where to start ?</div>
<hr />
<div class="creambox ital">Hi, I cant paste my HTML code to the web.Wat shall i do for that. Guide me a bit so that i ll do it soon.Whats the solution&#8230;</div>
<hr />
<div class="creambox ital">thank you, please help me, Iam just beginner how can i start.</div>
<hr />
<div class="creambox ital">ok i signed up for this adsense or whatever to make this money but i dont know what im doin. and it is driving me crazy. so can some1 plz help me. what up with the blog and the ads i jus not getting it thank you</div>
<hr />
<h3>I guess these people don&#8217;t really want to keep their AdSense accounts:</h3>
<div class="creambox ital">I clicked once to see how it works, is that already a violation? Why are my ads no longer visible?</div>
<hr />
<div class="creambox ital">I click the ad once to see how it works&#8230;is it considered a violation?</div>
<hr />
<div class="creambox ital">I clicked a couple of ads to see how they worked. Am I in trouble already?</div>
<p>* Apologies to <a href="http://icanhascheezburger.com/">I Can Has Cheezburger?</a> Warning: This site will suck you in like a black hole.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.viewfromtheswamp.com/2008/02/27/i-can-haz-adsense/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
