Sunday, July 10, 2011

Functional UI programming

I started using Scala recently to develop a movie player as a side project, with the goal of using functional constructs whenever possible. I found myself using imperative-style programming when interacting with the UI framework. This got me thinking, is there a functional state-less way to develop UIs? A bit of Googling revealed the following:

  • StackOverflow post that talks about this problem and references functional reactive programming (FRP). 
  • The Haskell people have developed UI frameworks around FRP.
  • For the rest of us non-Haskell people, there is Flapjax, an FRP model built on top of JavaScript for the web.
  • The spreadsheet is an example of a FRP model where cells are re-evaluated when dependent values change.
  • Clojure creater Rich Hickey recommends sticking with state-ful programming but keeping it to a minimal.

Thursday, January 13, 2011

Drupal Developer Modules

Imagine if Firebug disappeared all of a sudden and you have to build a website/app without it?

I came across 3 Drupal modules for development that will help you do better customization, improve performance and responsiveness of the beast, and help flatten that learning curve. These modules may even get you to start thinking about using Drupal in the web application space, as opposed to a mere brochure-ware. After spending 30 minutes with these modules, you're going to feel like you've been developing without Firebug. Drupal development may even be fun.

Devel - 61k sites report using it, which probably means that you should be using it. This is the core development module that provides the usual SQL query profiling, node debugging, etc..

http://drupal.org/project/devel


DrupalForFirebug - 5k sites using it. The name is exactly what you think. Never again will you do var_dump($node). You can see SQL queries profiled. And it's all organized in Firebug into separate Drupal tab (as opposed to a Firebug console dump). There's even a Chrome extension.

http://drupal.org/project/drupalforfirebug


Devel Themer - 2k sites using it. The Firebug Drupal extension is a sleeper compared to this. When enabled, you can hover almost any piece of content (like Firebug) and see the Drupal function call and/or theme file that emitted it. It even shows the arguments of the method and tells you what template file to create to override the function. This makes it MUCH easier to customize the output of piece of content because you no longer have to track down the 10s/100s of files and piece together what is calling what. Watch this screencast: http://ftp.drupal.org/files/videocasts/moshe-theme-developer.mov.

http://drupal.org/project/devel_themer

Saturday, December 25, 2010

Free to distribute fonts from Google

Web fonts can be boring. There are much nicer fonts on your desktop operating system or application. But these fonts are not free and can be very costly to distribute. Fortunately, there are nice looking free fonts for free distribution, provided by Google:

http://code.google.com/webfonts

Saturday, October 30, 2010

Writing Testable Code

Check out Misko Hevery, the clean code talk guy's guide to writing testable code:

http://misko.hevery.com/code-reviewers-guide/

The page itself is a 5-minute read but download PDF for a more detailed explanation of the rationale for these guidelines, which are sort of a common realization among folks who have gone through the trials and tribulations of extensive unit testing.

There's also quite a bit of other interesting stuff on his blog, including: augular, a RAD platform for developing CRUD apps on the web with only HTML (no server-side, no SQL); and CoffeeScript, a terser way of writing JavaScript.

Saturday, June 19, 2010

Data recovery tutorial using Ubuntu Linux

I have an old hard disk with corrupt NTFS volumes and I want to recover the data. I'm not sure how the drives got corrupt but they cannot be fixed by chkdsk /f. Fortunately, there's a plethora of open source data recovery tools available. Two such tools are foremost and photorec which specialize in combing through hard drive partitions to recover files based on header information. They can even recover files after accidental reformatting.

Foremost is a tool originally developed by the U.S. Air Force and is available via sudo apt-get install foremost. It can recover common file types such as txt, jpg, avi, and etc.. Foremost was last updated in 2008 which means that its knowledge of file headers is, at best, two years dated.

Photorec is part of the testdisk suite and is available via sudo apt-get install testdisk. Testdisk is a tool that not only "tests your disk" but also rebuilds your partition table. This is the tool to use if your hard drive's master boot record or partition table is corrupt. Photorec, like testdisk, is a poorly named command-line tool. Like foremost, photorec recovers files (not just photos) based on file headers. In fact, photorec supports more file types and is more up-to-date than foremost, which is evident by the fact that I was able to recover more files with photorec than foremost.

The problem with both foremost and photorec is that they recover file content but not file names. So you end up with directories of randomly named files with only the file extension preserved. It's not ideal but it's still better than not having the data at all.

See also:
http://help.ubuntu.com/community/DataRecovery

Saturday, June 5, 2010

Towards a Universal VM

Alex Buckley talks the features and progress that should make the JVM the universal run-time environment for languages. Interesting discussion in the talk include:
  • the distinction between the roles of the byte-code compiler and JVM compiler.
  • a high-level overview of how the JVM does method inline optimizations.
  • the introduction of dynamicinvoke in the new JVM.
The talk is normally 1-2 steps lower level than what software developers deal with on a day-to-day basis but nevertheless very understandable and useful to know.

Sunday, February 28, 2010

Ubuntu Linux on a Syntax Olevia LT30HV

The Syntax Olevia LT30HV, like many off-brand low cost LCD HDTV, does not provide accurate EDID information which prevented me from running the LCD at the native resolution 1280x768. After extensive Googling, I finally found the necessary configuration to put in my /etc/X11/xorg.conf.

1. First, make sure you have the proper Modeline in your Monitor Section:
Section "Monitor"
        Identifier      "Default Monitor"
        HorizSync      31.5 - 80.0
        VertRefresh    56.0 - 75.0
        DisplaySize    722 406
        Modeline "1280x768" 79.464 1280 1360 1488 1664 768 771 778 798  -Hsync +Vsync
EndSection

 2. Make sure your Screen include the Option UseEDID and ExactModeTimingsDVI like so:
Section "Screen"
        Identifier      "Default Screen"
        DefaultDepth    24
        Monitor         "Default Monitor"
        Option         "UseEDID"        "false"
        Option         "ExactModeTimingsDVI"    "true"

        SubSection     "Display"
                Depth      24
                Modes      "1280x768"
        EndSubSection
EndSection
3. And of course, make sure you use the nvidia driver: 
Section "Device"
        Identifier      "Default Device"
        Driver  "nvidia"
        Option  "NoLogo"        "True"
EndSection
That's it.