A “standard list of metasyntactic variables used in syntax examples” often used in the United States is: foo, bar, baz, qux, quux, corge, grault, garply, waldo, fred, plugh, xyzzy, thud. The word foo occurs in over 330 RFCs and bar occurs in over 290. […]
Due to English being the foundation-language, or lingua franca, of most computer programming languages these variables are also commonly seen even in programs and examples of programs written for other spoken-language audiences.
Category: Technology
I work in technology sector. And I do round a clock, not only from 9 to 5. It is my bread and butter, it is my hobby, it is the fascination of my life. And with the current rate of change particular in information technology (IT), there is always something new to learn, to try, to talk about. I often post news, thoughts, and reviews. And when I do, this is the category I use.
BazQux Reader – RSS reader that supports comments
One of the first start-ups that I participated in was an effort to create a better RSS reader. Â It way back a few years, before Google Reader was even launched, and the best option you had was Bloglines, which in itself was horrible at the time. Â One of the things that we were implementing was the support for comments in the blog posts and articles. Â Even back then many blogging engines and content management systems (CMS) supported comment feeds. Â Too bad the whole thing failed.
But even with quite a few upgrades to Bloglines, and launch and redesign of Google Reader, and, in fact, launch and development of many other RSS readers, support for comments is still a rare feature to see. Â Recently, I came across a web-based RSS reader that promoted comments as one of its primary features – Â BazQux Reader.
I tried it and it seems to work fine. Â However, it’s still too fresh for me to move all my RSS subscriptions over there. Â Especially considering the fact that you can only have 15 RSS feeds in the free demo. Â A full featured yearly subscription is about 25 Euro. Â I don’t mind paying that for a tool that I use many hours a day. Â But after using BazQux Reader for a bit, I don’t think it’s quite ready yet. Â Maybe one day.
P.S.: Oh, and if you were wondering what kind of a name is BazQux – it’s a combination of two metasyntactic variables “baz” and “qux“. Â Sort of like “foo” and “bar“. Â You probably won’t get it unless you are software developer of some kind.
Kick Ass – Destroy the web
Cool game, and awesome web design. Â If more people invested in good web design, maybe I wouldn’t be consuming most of the web content via a boring ass RSS reader.
10up – web development & strategy for WordPress
10up – web development & strategy for WordPress
There are so many cool companies around WordPress and love each and every one of them. Â They push the boundaries of web development, expand the community, contribute back to WordPress, and simply inspire. Â Have a look at 10up, for example.
We imagine, create, and grow amazing web experiences with WordPress.
Make sure to check their WordPress plug-ins page.
On using third-party APIs
In the few jobs I had, I was responsible for creating a new system and integrating it with some other systems. Â The variety of the systems is pretty much irrelevant – anything from back office systems and CRMs to trading platforms and CMSs. Â The common factor between them is the integration is often done through some form of the API.
The most important lesson I’ve learned while working with third-party APIs is this:
Never ever use a third-party API directly from your application. Â Instead, create an abstraction layer between your application and third-party API.
This might seem like a bit of extra work, but, trust me, it’s not. Â It will save you plenty of time and frustration. Â Here are my reasons:
- Your own abstraction layer will help smooth out API’s edges. Â If you are using third-party API, chances are, it feels weird at times. Â It doesn’t matter what sets you off – function names, or required obvious parameters, or maybe the logic or order of calls that you have to make. Â Instead of getting annoyed every time, you can abstract all that weirdness into a separate layer, which will probably not change all too often. Â And your application coding will be more fun.
- Easier maintenance. Â Even the best APIs change. Â And when it happens, you don’t really want to go through all of your application and change all calls to the old version of the API. Â Especially, if the updated version is not fully backward compatible. Â Instead, you’d just rather update your API abstraction layer and be done with it. Â And if you do, like you should, have unit tests covering your API abstraction layer, it will be trivial for you to see if you broke anything or not.
- Easier reuse and more control. Â One of the biggest problems with third-party APIs is that you don’t control them. Â Third-party introduces features, bugfixes, upgrades, and maintenance down-times whenever THEY want. Â You rarely have much say in it. Â When you have a layer in between the third-party API and your application, you have more control as to how all those things affect your application.
- Easier migration to another third-party API. Â And you know that these things do happen. Â You’ve been using one provider of the service, and now there is a better one. Â If you were using first provider’s API directly from your application, you are pretty much in trouble now. Â Going through the whole application replacing calls to the new API, with different set of parameters, data types, and return values, is a huge undertaking. Â If only you had an abstraction layer, all you’d have to do now would be to change that instead. Sure, you might need to extend it a bit, or introduce changes to the currently used functionality. Â But, from my experience, such changes would be much smaller and simpler (since you are working with your code on both ends).

