Posts Tagged ‘refactoring’

I’ve doing a little reading about the WordPress loop. The WordPress loop is where all the main work get’s done in publishing the articles of the blog. Loops and iteration constructs are very common in many (all?) programming languages, and that is why you see things like “do while” or while, “for x = 1 to z”, or “foreach x in z” in many scripting languages.

The whole idea with Open Source software is that you can modify it, refactor it, change it to be anything you want. However, it is a good idea to start with some very small changes, and it’s really good to begin by reading a few articles about the code, and read the actual source code before you start making any changes.

Anyway, two recent articles, I have have found helpful are: The Ultimate Guide to the WordPress Loop and another called Global Variables and the WordPress Loop.

Back in July, I began an article on How to Manage Your Blogroll. Managing your blogrolls and managing your RSS-feeds is really all about “staying in touch” with wonderful, intelligent, funny or witty people. Be careful who you delete. Be careful who you add. It’s all about reputation. It’s about the global conversation, and taking a ride on the ClueTrain. It’s all about loving and respecting people. It’s all about the cycles of life, your circle of concern, and your circles of influence. It’s all about listening more than you talk.

God gave us two ears and one mouth, to remind us to listen more than we talk. My blog roll is full of links to many people that I have never met-in-person. I may disagree with some of the things they write, but I love and respect them all.

So, I was talking about various rules you might use — to know when to delete blogs from your list. Is there a book on blogroll refactoring? How do you know when to delete a link from your blogroll?

  • How To Find Ruby User Groups March 9, 2010
    Ruby User Groups (RUGs, for short) are typically informal organizations put together to encourage Ruby developers with certain areas to get together, share ideas, and, often, to have some fun. If you're lacking for inspiration or want to get to know some Rubyists within certain parts of the world (or just around the corner, if you're lucky), headin […]
  • Vagrant: EC2-Like Virtual Machine Building and Provisioning from Ruby March 8, 2010
    Vagrant is a Ruby-based tool for building and deploying virtualized development environments. It uses Oracle's open-source VirtualBox virtualization system along with the Chef configuration management engine along with lots of Ruby goodness to automate the creation and provisioning of virtual machines for development purposes. […]