Skip to content

Index

Microsoft still has some tricks up it’s sleeve: Office 2010

Now I've been a mac for about 4 years now, so I generally don't pay too much attention to Microsoft's new product releases. But take a look at some of these videos about Office 2010. There's are some impressive new developments.

I am particularly impressed with the 'backstage view' which appears to pull together all the functionality that relates to how to get information into and out of any of the office apps.

One this site, Office 2010 revealed, you will see many cool videos. NB, they seem to have been snatched from a momentarily present web site, so Microsoft may force them to be taken down.

Technorati Tags:office2010

Ruby Internals

Here's an interesting article about how Ruby (the programming language not the gem) is interpretted or compiled. (It's funny to contemplate what that question might mean to someone who thinks we are talking about a gem and not a programming language. 'Is Ruby Interpretted or Compiled' ? Say what??)

Anyway, to whoever is left reading this, I thought this article was quite interesting: Is Ruby interpreted or compiled? - Pat Shaughnessy. Here's a quote to give you a taste:

"Ever since I started to work with Ruby in 2008, I?ve always assumed that it was an interpreted language like PHP or Javascript ? in other words, that Ruby read in, parsed and executed my code all at runtime, at the moment my program was run. This seemed especially obvious since the default and most popular implementation of Ruby is called ?MRI,? short for ?Matz?s Ruby Interpreter.? I always thought it was necessary to use an interpreter to make all of the dynamic features of the language possible." (from Is Ruby interpreted or compiled? - Pat Shaughnessy)

[GEEKY] Switched from Firefox to Safari, and back again

About a week ago the new version of the Safari Browser came out for Mac OS X. I was swayed by the promotion and decided to use it for a while instead of Firefox 3.5. Here's my take, subjective, not based on a scientific analysis:

  • If Safari 4.02 is faster than Firefox 3.5.1 it wasn't immediately obvious to me. I think Safari starts up a bit faster but other than that, no noticable difference.
  • The new 'show all my most visited web pages in one screen' feature is pretty, but wasn't useful to me
  • I was constantly annoyed that Safari would open a new window when all I wanted was a navigation or at most a new tab. (Yes I did play with the options but none of them fit my mode of use.)
  • I missed certain plug ins (especially ScribeFire)
  • The XMarks for Safari feature caused mysterious problems. Not sure whether it was XMarks itself or the plug in management in Safari.

All in all, a string on minor annoyances coupled with no special benefit led me to demote Safari and promote Firefox back to my dock!

Beautiful Woburn

I bet you didn't know there was a forest like this in Woburn!

Visualizing Algorithms

Check out this really interesting article plus lovely animations. I have to go find out how it actually implements the animations. Even though the examples are in Python, what is actually embedded into the page? We shall see!

Visualizing Alghorithms

What’s wrong with Squarespace Support?

In moving my blog to Squarespace 6 I've had a lot of contact with their support service. They are 'just ok'. Yes, they have the usual boilerplate, "so glad you contacted us" and "i think I understand why this is important to you." Ok, ok. Enough cut and paste.

The problem is that they are probably pretty junior and used to answering easy questions. But when they get at all subtle or maybe even pointing to a bug, they are lost in the woods and give you useless help. But that's not the biggest problem.

The biggest problem is that there's no continuity. Each part of the support email 'conversation' is answered by some random other person. And while they probably make a good will effort to maintain continuity, it happens constantly that the new person doesn't understand what came before and gives you a non- sequitur answer.

Now I have nothing to compare them to, for example, what does blogger.com give in support (probably nothing) and what does wordpress.com give in support? (probably nothing.)

Rules of Thumb for Software Engineers

Based on my own experience, some of my favorite books and blog posts, and advice from friends, I've come up with this. What do you think? What should I add? Please comment!

Personal Effectiveness Rules of Thumb
  1. When you have your best idea ever,always remember that the idea is just 1% of the journey Yes, ideas are cheap. At least in the world of software engineering and product development, everyone and their grandfather have ideas that may be great. The distance between the idea and the reality is great. Here's Steve Jobs about ideas

  2. When your project is late,never ADD people Most of the time this will slow you down. The reason is that with each additional person you add to a project you've created that many more paths of communication. If a project is late, adding people to it will make it later. See * The Mythical Man Month by Fred Brooks.

  3. When planning your time,always allocate at least 20% to learning more Software engineering, programming languages, libraries, platforms, hardware and software are constantly changing. It take a real sustained effort to keep yourself up to date. What was a good or best practice a year ago may no longer be right.

  4. When arguing about a design or a feature,always stop and go ask a user. Good products don't come from debate around a table, they come from discussion with the actual users. Don't guess, don't argue, go ask! This is known as "getting out of the building".

  5. When planning a project,always work in short increments. Follow Agile practices, whatever your favorite flavor is, scrum, XP, Kanban, it doesn't matter. Different teams and people like different approaches. And they change and evolve all the time. But there are eternal truths there. Work in small chunks. Even smaller. Even smaller. Don't change many things at once because when your code invariably breaks, you won't be able to tell why.

  6. When you are spinning your wheels,always stop, think, and only then act. Google It! The amount of knowledge and down and dirty solutions that you can find on google is infinite. See a strange error message? Google it! And learn how to edit the error message, removing the parts that are specific to you so that you get matches. Or ask on the right forum or mailing list. You need to learn how to ask a question in a way that it will be answered. Make it as easy as possible on the answerer.

  7. When you are posting on a technical forum,always formulate the question carefully. Here are the best practices:

    • Explain precisely what you are trying to accomplish
    • Give a step by step explanation of what you've tried and the result.
    • Give code samples, links to github accounts, and so on. If the code samples are not brief, create a gist and put the link in the post.
    • Include listings of the relevant data, file names, console logs, and versions of various software you use.
    • When you are writing a 'business' email, always follow best-practices

    • If you expect action, have a single person in the to:

    • Know the difference between reply and reply all. Usually don't reply all
    • The first sentence should state what action you are looking for
    • Keep it short and sweet. Make it "skimmable".
    • Know your audience and write appropriately.
    • Get to the point. Be polite.
    • When you have to write up a design or a spec,always keep it to a few pages. Prefer writing short 'stories' over writing long 'specifications. There is no requirements 'phase' to a project any more. Write many short stories and prioritize them relentlessly. If the story is more effort to write than the code, you should be writing the code!.
Programming Rules of Thumb
  1. When coding,never go beyond the immediate requirement. Write only the code you need to solve the problem RIGHT now. You might think that this class clearly will need all this methods even though no one is calling them yet. This almost never works out. Don't spend time to set things up for what you'll need in a month. You're usually wrong.

  2. When coding,always wait to optimize until later. Optimizing too early is one of the cardinal sins of programming. You never know where the bottleneck will be, The thing you think will be slow, will be fast, and vice-versa. Actually you might end up ripping it out anyway!

  3. When your own code mystifies or surprises you never accept that. Dig deeper.

    • Catch yourself engaging in magical thinking. If it worked yesterday, and not today, then something changed. Similar story as "It worked on my machine, why doestn't it work in production?" Both of these are a symptom of magical engineering thinking. It's just a computer. If the behavior changed, then something cause that change in the behavior. Methodically go through each thing that might be different and, like a scientist (or Sherlock) figure out what it was.
    • Don 't be satisfied with blind luck Copying some code without knowing what is going on is not a good idea. Eventually it will come back to haunt you. Be really curious!. If a certain change fixed the problem, investigate until you understand how it fixed the problem.
    • Learn to Debug Debugging is a craft in itself. Approach it like a scientist. Don't poke blindly at the code, or solve the problem just by thinking about it. Have hypotheses to test. Do experiments.
    • When your program blows up always stop and read the error messages. Catch yourself jumpint to conclusions or seeing what's not there. Fight the impulse that you know what must have failed. Often the right answer is right there in the error message. It might be buried in the middle of a lot of noisy trace output, but discipline yourself to actually read it.
  4. If you think you spot a code smell always come back and eradicate it Train yourself to recognize (and HATE) code smells. Like nails on a blackboard, badly designed code should make your stomach turn or your skin crawl.

    • <%= ir "Never, Ever" %> Cut and Paste code. DRY is a law. If you see any duplicated code it is almost always a bad thing. Look for it and kill it.
    • <%= ir "Learn how to Refactor" %> This is a fundamental coding skill. When you see non-dry code or other violations, refactor ruthlessly.
    • never leave dead code behind** Delete it.
    • always keep your files, methods and functions short** Depending on the language and the program, the right number may vary. But a method that has more than 20 lines is almost always a serious code smell. A guideline would be 10 lines.
    • When programming always use a source control system. It's your safety net. This is especially true when working with other programmers. Learn your SCS tool so you are never reluctant to use it.
  5. When designing software,always keep concerns as separate as possible. Design for loose coupling. Pay attention to the Single Responsibility principle. Whether it's a single class or function, a subsystem or module, or a whole system, minimize dependencies. Learn about dependency injection and other techniques for decoupling.

  6. When doing object oriented programming always avoid using class inheritence While tempting, it is almost always better to avoid using inheritence in your class design. It brings undesireable coupling with little benefit that could be had in a simpler way.

  7. When programming always use 'intention revealing names' Chosing the right names for classes, variables, methods is one of the best ways to 'document' your code. Follow your language's naming conventions closely and then create names that reveal your intention. Name things after what they do, not after how they work! Also make sure names are internally consistent. (Ref: Intention Revealing Names)

  8. When programming,always comment your code, but not too much. The exact line is a matter of (fervent) debate but it is almost universally accepted that having no comments is a bad idea and that its easy to have too many comments. Keep your comments at the start of each source file, and at the start of each method. Occasionally you might want to put a few lines of comments inline. But that desire often alerts you to a refactoring opportunity.

  9. When learning new things never fall in love with the shiny toys It's ok to be proud in your expertise and trying to perfect your craft. But platforms and languages come and go, and you must remain alert to newer and better ways to solve problems as they are invented. Don't fall in love with a language or platform. It will change and the specific details you memorized will eventually become useless.

Credits

Many of these are from books, blogs and my own experience. I will list all the credits that I can identify but I think in some cases these rules are so deeply embedded that I cannot recall where I got them from. If you see sonething that you think you came up with, I appologize!

Nerdwallet.com is not the site I have been looking for

I've been using mint.com for years now but every month I hate it a little bit more. It's too big, too slow, and too buggy. But it's solving a problem that I need solved which is a comprehensive cloud based personal finance tool that covers banking, investments, credit cards, reporting and analysis. I can't say that their decline corresponded exactly with when Inuit bought them but… it didn't help either.

I've wondered why no one is tackling this space. I try them all and they all are lacking in one key way or another. Here's a review from the New York Times From those, I've been test driving BillGuard and it seems to have potential but I am not ready to switch yet. So when I read about NerdWallet I thought, based on the name, that I had another candidate. I had to search their web site high and low before I could find a summary of what they do:

We create user-friendly tools, crunch numbers and give you all the results, unfiltered. Across banking, credit cards, education, health care, insurance, investments, mortgages, shopping and travel, we offer data-driven tools and impartial information to help you make solid decisions about the money you work hard to earn. In short, we do the homework so you don't have to.

Nope. Keep looking.

When Twitter becomes a blogging platform

I have been noticing more and more serialized tweets. In other words, someone tweets several times in a row because what they have to say will not fit into 140 characters. They number them and fire them off one after the other. That way you, the reader, can reassemble them in your head. Of course the arrive in reverese order (the newest ones are the last one.) Also you need some way to note that your series is over, which might beget a new twitter shorthand

Why, if I can attach a 5 minute video or a photograph or a 3 minute mp3 to a tweet, can 't I attach a 2 paragraph messge? Why not allow me to have as much text, and why not fonts and styles? It's just a matter of time.

The 140 Character Limit was the gimmick that differentiated Twitter from all other messaging platforms at the time. But we in a new era now. Twitter has established itself. Your twitter handle has become almost as self-identifying as your actual name (or maybe more so, because it is guaranteed unique, world-wide.)

It's a totally natural set up for the ultimate, universal, blogging platform. I see that happening.

Someone said, Twitter is trying to become more and more like Facebook, and Facebook more and more like twitter. And both are the worse for it. Maybe when Twitter starts accepting long messages people will say that Twitter jumped the shark. I doubt it. I think it's inevitable.