Skip to main content

Comment: Are you an Internet Producer or Consumer?

Most people who use the Net nowadays really fall into one of two categories.

1) Internet Consumers - This is most of us. We may occasionally paste some video into Facebook, but we normally use the Net to swap emails, read the news and occasionally look at pictures of other naked people.
2) Internet Producers - Leaving aside the techies for a moment (the people who "build" the Internet), these are the people who are obsessed with getting their points across, their opinions discussed, their crappy music demo listened to, and posting naked pictures of themselves online for the Consumers to look at (oh yeah, let's not forget those budding young stars trying to get their 3 minutes of YouTube fame).

Ok, so most of us probably fall somewhere in the middle. We blog, we may occasionally post something to YouTube, and maybe we daydream about being naked online before we realize what a bad career move that is...

For about 10 years now I have been making a living as one of these people who "build" the Internet. Were it not for this wonderful piece (pieces) of technology I would still be living in my parents' basement, but lo and behold, I now have a lucrative career. But you know what? There's not one of us "techies" who doesn't dream about either making history or having a blog so popular you only need to work on it 3 hours a day.

For a long time now, I have been pretty much a consumer outside of my professional life. I would post questions on bulletins when I had a technical question and lo and behold, someone would answer it. Tonight I decided to try and give back to the tech community, but every time I saw a question I knew the answer to, someone had beaten me to answering it.

So instead I decided to write this little article to keep you all amused.

It's my way of giving back to the community...

I must remember to post this on Reddit.com so I will get a few page views.

;)

Comments

Ringo Mercedes said…
While I do occasionally post to my blog, I am more of a consumer really...
Anonymous said…
dCf8sODLTz Holy Casino WMDt2wasXh Taj Mahal Casino RtWDQI97vB Laughlin nTedcEiNXk Casino 3d DcMvBQaj6 Hotel Casino t4Ox2Fl8C Casino Photo Zcq21rzJiy Red Rock Casino ahu07TDWd Tunica Casinos

Popular posts from this blog

Master of my domain

Hi All, I just got myself a new domain ( http://www.skuunk.com ). The reason is that Blogspot.com is offering cheap domain via GoDaddy.com and I thought after having this nickname for nigh on 10 years it was time to buy the domain before someone else did (also I read somewhere that using blogspot.com in your domain is the equivalent of an aol.com or hotmail.com email address...shudder...). Of course I forgot that I would have to re-register my blog everywhere (which is taking ages) not to mention set up all my stats stuff again. *sigh*. It's a blogger's life... In any case, don't forget to bookmark the new address and to vote me up on Technorati !

Elixir - destructuring, function overloading and pattern matching

Why am I covering 3 Elixir topics at once? Well, perhaps it is to show you how the three are used together. Individually, any of these 3 are interesting, but combined, they provide you with a means of essentially getting rid of conditionals and spaghetti logic. Consider the following function. def greet_beatle(person) do case person.first_name do "John" -> "Hello John." "Paul" -> "Good day Paul." "George" -> "Georgie boy, how you doing?" "Ringo" -> "What a drummer!" _-> "You are not a Beatle, #{person.first_name}" end end Yeah, it basically works, but there is a big old case statement in there. If you wanted to do something more as well depending on the person, you could easily end up with some spaghetti logic. Let's see how we can simplify this a little. def greet_beatle(%{first_name: first_name}) do case first_name d

Speeding up RSpec

So today I have been looking into getting our enormous battery of tests to run faster. I have yet to find anything that works for Cucumber, but I did find an interesting way to speed up RSpec which is detailed here. https://makandracards.com/makandra/950-speed-up-rspec-by-deferring-garbage-collection Basically, it seems that by not collecting garbage too frequently, you can make your tests run much faster (at the expense of memory management of course). We observed a 30% reduction in the time it takes to run an RSpec test suite. I did try to implement this on Cucumber, however because we need to store much more in memory to set up and tear down our objects, it meant that I kept running out of memory when I wasn't using the default Garbage Collection and the tests took even longer (so, buyer beware). I suppose if you had a small set of features though you might see some benefit.