Playing With Sid

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Friday, 26 February 2010

Ripping Audio With Mplayer

Posted on 07:45 by Unknown

The first step for creating audio description for movies is to extract the audio content. We can do this quickly using little bit of mplayer command line kung fu.







mplayer -novideo -quiet -vc null -vo null -ao pcm videofile

[ OR ]

mplayer -novideo -quiet -vc null -vo null -ao pcm:file=audio.wav videofile




You can easily join the extracted audio with the audio description track using the Mencoder (MPlayer's Movie Encoder). Right now I haven't completed audio description for a feature length movie yet. My Gnome accessibility works takes a large chunk of my time. If you are interesting in working something like that, get in touch with me.

Read More
Posted in accessibility, audio description, mplayer, video | No comments

Monday, 15 February 2010

Gnome Keyboard Shortcuts

Posted on 05:37 by Unknown

Accelerate your Gnome keyboard navigation with these shortcuts. You should master these if you are orca screen reader user along with Orca keyboard shortcuts.




  • Global Keyboard Shortcuts


  • Alt+F1 Open the Main Applications Menu

  • Alt+F2 Open the Run Application dialog.

  • Print Screen Take a screenshot of the entire screen.

  • Alt+ Print Screen Take a screenshot of the window that currently has focus.

  • F1 If the focused element is an application window or dialog, this keyboard shortcut opens the Help for the application.

  • Ctrl+F1 If the focused element is a panel or application window, this keyboard shortcut switches the display of tooltips for the window or panel objects on and off.

  • Shift+F10
    Open a popup menu for the element that has focus (if a popup menu exists for that element).

  • Tab
    Give focus to the next element or control.

  • Shift+Tab
    Reverse the navigation direction and give focus to the previous element or control.

  • Ctrl+Tab
    Give focus to the next element or control if the Tab key has a specific purpose in a control.

  • arrow keys Navigate within an element or control.

  • spacebar Activate the element or control that has focus.For example, if the current control is a button, this action is the equivalent of clicking on the button with a mouse.

  • Esc
    Close a window, menu, or drawer.

  • F7
    Switch to caret navigation mode. Caret navigation mode enables you to use the keyboard to select text.

  • Ctrl+Alt +D
    Temporarily hide all windows and give focus to the desktop background.

  • Ctrl+Alt +Tab
    Display a popup window with icons that represent the desktop background and the panels. Press and hold Ctrl+Alt and continue to press Tab to switch the focus between the desktop background and the panels.

  • Navigating Windows

  • Alt+Tab
    Display a popup window with icons that represent each window.

  • Alt+Esc
    Raise each window in turn until you reach the window you want.

  • Alt+F6
    Cycle between windows belonging to the current application (eg, a multiple document interface application like Text Editor).

  • Alt+ spacebar
    Open the Window menu.

  • Alt+F4
    Close the window.

  • Alt+F9
    Minimize the window.

  • Alt+F10
    Maximize the window.

  • Alt+F5
    Restore a maximized window to its original size.

  • Alt+F7
    Start the move operation.

  • arrow keys
    Move the window 10 pixels at a time in the direction of the arrow key.

  • Ctrl + arrow keys
    Move the window one pixel at a time in the direction of the arrow key.

  • Shift + arrow keys
    Move the window in the direction of the arrow key and align it with the edge of the nearest window, panel or screen edge.

  • spacebar
    Complete the move operation, leaving the window in the current position.

  • Esc
    Cancel the move operation, restoring the window to its original position.

  • Alt+F8
    Start the resize operation.

  • arrow keys
    Resize the window in the direction of the arrow key.

  • spacebar
    Complete the resize operation, leaving the window at the current size.

  • Esc
    Cancel the resize operation, restoring the window to its original size.

  • F6
    Give focus to the next pane.The system gives focus to the control that last had focus in the pane.

  • F8
    Give focus to the first resize handle in the window.The resize handle is displayed between the panes and enables you to resize the panes.Press F8 again to give focus to the next resize handle.

  • Navigating Applications

  • F10
    Open the first menu on the application menubar.

  • Alt + access key
    Open the menu that is associated with the access key

  • access keys
    Select the menu item that is associated with the access key.
  • left arrow and right arrow
    Switch focus between the menus on the menubar.

  • up arrow and down arrow
    Move focus into a menu.

  • Esc
    Close the open menu and give focus to the control that had focus before the menubar.

  • Ctrl+O
    Open the file selector dialog.

  • Ctrl+S
    Open the Save dialog.

  • Ctrl+L
    Open a Location dialog, enabling you to type the name of a file that you want to open or save.

  • Ctrl+P
    Open a Print dialog, if available.

  • Ctrl+C
    Copy highlighted text to the global, application-spanning clipboard.

  • Ctrl+X
    Cut highlighted text to the global, application-spanning clipboard.

  • Ctrl+V
    Paste text from the global, application-spanning clipboard to the current cursor position.

  • Alt+access key
    Activate or select a control.

  • Tab
    Give focus to the next control.

  • Ctrl+Page Up
    Move to the next page/tabbed section of the dialog.

  • Ctrl+Page Down
    Move to the previous page/tabbed section of the dialog.

  • Esc
    Cancel/dismiss the dialog.

  • Return
    Perform the default action for the dialog.

  • Navigating Folders

  • arrow keys
    Select the next or previous file or folder in the direction of the arrow key.

  • Ctrl + arrow keys
    Give focus to the next or previous file or folder but do not select the item.

  • spacebar
    Open the focused file or folder.
  • Ctrl + spacebar
    Select the item that currently has focus.

  • Home
    Select the first file or folder within the current folder.

  • End
    Select the last file or folder within the current folder.

  • backspace
    Open the current folder's parent folder.

  • Shift-F10
    Open a file or folder popup menu.

  • Ctrl-F10
    Open the enclosing folder's popup menu (equivalent to right-clicking on the view pane background).

  • F6
    Switch focus between the side pane and the view pane.

  • Shift+F10
    Open the side pane popup menu.


  • Caret Navigation Mode

  • F7
    Switch to caret navigation mode [Yelp-only].

  • left arrow
    Move one character to the left.

  • right arrow
    Move one character to the right.

  • up arrow
    Move up one line.


  • down arrow
    Move down one line.


  • Ctrl + left arrow
    Move to the beginning of the previous word.


  • Ctrl + right arrow
    Move to the end of the next word.


  • Page Up
    Scroll up one page of content.


  • Page Down
    Scroll down one page of content.


  • Home
    Move to the beginning of the current line.


  • End
    Move to the end of the current line.


  • Shift + arrow keys
    Move from the current position to the destination position, selecting all text between the two positions.


  • Tab
    Move focus to the next focusable control.


  • Shift+Tab
    Move focus to the previous focusable control.


  • Enter Activate a button, link or other control
  • .
Read More
Posted in a11y, accessibility, gnome, orca | No comments

Sunday, 14 February 2010

I ♥ Free Software

Posted on 02:40 by Unknown

Spent most of the day at the IISE cultural show, managed to sneak back into office to post replies and file new Gnome and Orca bugs discovered this morning. Now I realized that today is Valentines Day!


Let me express my love to my valentine!
I love Free Software!



I love Free Software!


Read More
Posted in free culture, free software, ubuntu | No comments

Thursday, 11 February 2010

Orca Keyboard Shortcuts

Posted on 22:47 by Unknown

Perhaps the most common request from Orca screen reader users is the documentation. Few months ago Orca developers started rewriting most of the existing documentation. The Orca keyboard shortcut cheat sheet is part of this effort, it is now part of new orca man page.





Desktop Mode
Flat review commands

Numpad-7 move the flat review cursor to the previous line and read it.

Numpad-8 read the current line.

Numpad-9 move the flat review cursor to the next line and read it.

Numpad-4 move the flat review cursor to the previous word and read it.

Numpad-5 read the current word.

Numpad-6 move the flat review cursor to the next word and read it.

Numpad-1 move the flat review cursor to the previous character and read it.

Numpad-2 read the current character.

Numpad-3 move the flat review cursor to the next character and read it.

Numpad-slash perform a left mouse click at the location of the flat review cursor.

Numpad-star perform a right mouse click at the location of the flat review cursor.

Bookmark commands

Alt+Insert+[1-6] assign a bookmark to a numbered slot.

Insert+[1-6] go to the position pointed to by the bookmark bound to this numbered slot.

Alt+Shift+[1-6]

Insert+B and Insert+Shift+B move between the given bookmarks for the given application or page.

Alt+Insert+B save the defined bookmarks for the current application or page.

Miscellaneous functions

Numpad+Plus
'say all' command; reads from the current position of the caret to the end of the document.

Numpad+Enter 'Where am I' command; speaks information such as the title of the current application

Insert+H enter into orca's 'learn mode'; press Escape to exit.

Insert+Shift+Backslash toggle live regions monitoring on and off.

Insert+F speak font and attribute information for the current character.

Insert+Space Launch the orca Configuration dialog.

Insert+Ctrl+Space reload user settings and reinitialize services as necessary.
Also launches the orca Configuration dialog for the current application.

Insert+S toggle speech on and off.

Insert+F11 toggle the reading of tables, either by single cell or whole row.

Insert+Q quit orca.

Debugging

Ctrl+Alt+Insert+Home report information on the currently active script.

Ctrl+Alt+Insert+End print a debug listing of all known applications
to the console where orca is running.

Ctrl+Alt+Insert+Page_Up print debug information about the ancestry of the object with focus.

Ctrl+Alt+Insert+Page_Down print debug information about the hierarchy of the application with focus.

Laptop Mode
Flat review commands

Caps_Lock+U move the flat review cursor to the previous line and read it.
Double-click to move flat review to the top of the current window.

Caps_Lock+I read the current line.
Double-click to read the current line along with
formatting and capitalization details.

Caps_Lock+O move the flat review cursor to the next line and read it.
Double-click to move flat review to the bottom of the current window.

Caps_Lock+J move the flat review cursor to the previous word and read it.
Double-click to move flat review to the word above the current word.

Caps_Lock+K read the current word.
Double-click to spell the word. Triple-click to hear the word spelled phonetically.

Caps_Lock+L move the flat review cursor to the next word and read it.
Double-click to move flat review to the word below the current word.

Caps_Lock+M move the flat review cursor to the previous character and read it.
Double-click to move flat review to the end of the current line.

Caps_Lock+Comma read the current character.
Double-click to pronounce the character phonetically if it is a letter.

Caps_Lock+Period move the flat review cursor to the next character and read it.

Caps_Lock+7 perform a left mouse click at the location of the flat review cursor.

Caps_Lock+8 perform a right mouse click at the location of the flat review cursor.

Caps_Lock+8 perform a right mouse click at the location of the flat review cursor.

Bookmark commands

Alt+Caps_Lock+[1-6] add a bookmark to the numbered slot.
If a bookmark already exists for the slot it will be replaced with the new one.

Caps_Lock+[1-6] go to the position pointed to by the bookmark bound to this numbered slot.

Alt+Shift+[1-6]

Caps_Lock+B and Caps_Lock+Shift+B move between the given bookmarks
for the given application or page.

Alt+Caps_Lock+B save the defined bookmarks for the current application or page.

Miscellaneous functions

Caps_Lock+Semicolon Caps_Lock+Enter

Caps_Lock+H enter learn mode (press Escape to exit).

Caps_Lock+Shift+Backslash toggle live regions monitoring on and off.

Caps_Lock+F speak font and attribute information for the current character.

Caps_Lock+Space launch the orca Configuration dialog.

Caps_Lock+Ctrl+Space reload user settings and reinitialize
services as necessary; also launches the orca Configuration dialog
for the current application.

Caps_Lock+S toggle speech on and off.

Caps_Lock+F11 toggle the reading of tables, either by single cell or whole row.

Caps_Lock+Q quit orca.

Debugging

Caps_Lock+Alt+Ctrl+Home report information on the currently active script.

Caps_Lock+Alt+Ctrl+End prints a debug listing of all known applications
to the console where orca is running.

Caps_Lock+Alt+Ctrl+Page_Up prints debug information about the ancestry
of the object with focus.

Caps_Lock+Alt+Ctrl+Page_Down prints debug information about the
object hierarchy of the application with focus.


Read More
Posted in a11y, accessibility, gnome, orca | No comments

My First Radio Play

Posted on 07:00 by Unknown

This week I start a new role as an actor, Professor Arky the affable explorer who discovered a new species of monkeys called 'Marky' in Malaika Islands. It is part of radio shows series for Malaika case study at IISE. Marky was name of Martian from last years Asian talent show, it seems to have stuck a chord with the audience (arky from mars = marky). Prof.Marky's Indian accent is quite popular around here, it does add humour to otherwise serious case study.



You can listen to first show in the series right here or download it from archive.org.




Listen To Malaika Radio Show


Read More
Posted in art, IISE, radio show | No comments

Tuesday, 9 February 2010

State of gnu/Linux Accessibility

Posted on 03:20 by Unknown

Joanie's post sparked more conversations on gnu/Linux Accessibility. Here are some of the views expressed some of members of gnu/linux community.





Over the years, great progress has been made in the accessibility of GNOME. Using Orca, I am able to navigate around GNOME applications and Firefox. This has been made possible through a collaboration between engineers at Sun and dedicated volunteers (or perhaps "a dedicated volunteer" would be more apt). Engineers working on Firefox have also spent significant amounts of time ensuring that Gecko exposes the information that access technologies such as Orca need to represent web pages. This collaboration has been a blessing for the community and has allowed people with disabilities to productively use GNOME. On January 29, however, Will Walker, the lead Orca developer, was laid off by Oracle, and so now there are no more paid Orca developers. This was a continuation of what has been an over-all trend over the last couple of years in which companies have pulled funding from open source accessibility projects. I am concerned about the potential implications for the future if some sort of funding structure is not established.

on the state of open-source accessibility by Mike






As many of you may have heard, from blogs by Eitan, Mike and Joanie, as well as an e-mail to the gnome-foundation-lists by Fernando, the Gnome a11y community is having a tough time.



I have been interacting with the a11y community for over two years now, and in that time the funding situation has never looked good. I do not wish to insult or demean companies that are no-longer involved in funding Gnome a11y. Companies and individuals have their own priorities that they must follow. Work they have done in the past on Gnome is very much appreciated by me, even if they cannot continue that work in-to the future.



Funding Gnome a11y by Mark Doffmans








I have been on the road for the last two weeks. Headed back to Seattle tomorrow after a great FOSDEM in Brussels.



While on the road I have heard all sorts of news regarding GNOME accessibility, none of it good. I am angry, I feel like blaming somebody or something, but I am not sure what. Right now I am directing my frustration towards academics who still have funding to continue various assistive technology research that will probably never see the light of day as a usable application while the real bread and butter of an accessible platform is being taken away. It’s reflexive, I know it. Maybe later I will have a clearer picture of how we move forward.




GNOME accessibility, don’t take it for granted by Eitan






As you all probably know, Oracle recently bought Sun. Sun has been one
of the largest contributors to the GNOME project during the last
years.

Probably is too early to know how this is going to affect GNOME
project. However this last week we have seen some relevant events:
Oracle laid off two members of the Sun's Accessibility Program Office.




e-mail to the gnome-foundation-lists by Fernando

Read More
Posted in a11y, accessibility, Linux, orca, ubuntu | No comments

Sunday, 7 February 2010

An Open Letter to Oracle on the Topic Of Accessibility

Posted on 20:56 by Unknown
Dear Oracle:

You don't know me, so please permit me a brief introduction: I'm Joanie. By day, I'm an assistive technology specialist working with individuals who are blind or visually impaired. By night, weekend, and holiday for almost four years now, I've been a GNOME community contributor working primarily on the Orca screen reader, a project led by Sun's Accessibility Program Office.

Working with the engineers at Sun, both inside and outside of the APO, has been an honor for a variety of reasons, not least of which is our shared common belief: Access isn't a privilege; it's a right. Towards that end, Sun Microsystems strived to ensure that ALL users have access to software and information.
Read More
Read More
Posted in a11y, accessibility, Linux, orca, ubuntu | No comments
Newer Posts Older Posts Home
Subscribe to: Comments (Atom)

Popular Posts

  • Gitbox Git GUI tool
    Here is another post in the series of the posts about tools that makes developers life simpler. Git was developed as distributed revision c...
  • Vietnamese Language Tools: Developing Keyboards and Spell-checker
    Mentoring Mozilla Vietnamese localization team to develop Vietnamese keyboard and spell checker for Firefox OS . We built and tested Vietna...
  • Install CyanogenMod 10.1 (Android Jellybean 4.2.2) on Samsung Galaxy S2 (GT-I9100G)
    In this post we'll install Cyanogenmod CM 10.1.x on Samsung Galaxy SII mobile phone. Please note this instructions apply to Samsung Gal...
  • New Year's Post
    What a year it was, a little high and little lows and whole bunch of controversies of course. And to top it all I decided to stay back in ke...
  • Change Samba Password Expiry Setting with pdbedit
    We have a Zentyal (Formerly EBox) Linux Small Business Server running as our office file/print server. Its runs smoothly hardly needs any ...
  • How to Install LibreOffice in Ubuntu
    In my last post I talked about LibreOffice. In case you wondering how to install LibreOffice on your ubuntu computer. Here are the instruct...
  • Barcamp Phnom Penh 5
    Last year we kick-started Mozilla Firefox Aurora Khmer localization effort at Barcamp Phnom Penh 4 . Now a year later, Thanks to efforts of ...
  • Dots braille editor for Linux
    Dots is braille typesetting program for gnu/Linux, it can translate XML and MS DOC files and displays it both ASCII and braille dot notati...
  • Postfix Log Entry Summarizer
    Everyday I manage a Postfix mail server that handles emails from 20 mailing-lists. On days like this when there lot of email traffic, I ke...
  • Healthy Fruit Juices In Trivandrum
    For most visitors to Kerala the tender coconut juice seems to be standard choice. If you are feeling adventurous visit Chitra Juice Palace ...

Categories

  • "Blog Action Day 08 - Poverty"
  • "blog action day"
  • "Compiz Extras "
  • "compiz-fusion"
  • "film making"
  • "FSUG-Bangalore"
  • "GISS"
  • "Graphic Design"
  • "Linux"
  • "martial art"
  • "New Media"
  • "open movie editor"
  • "OpenCV"
  • "web authentication"
  • "web automation"
  • "web testing"
  • 01-18-2012
  • 10.04
  • 10.10
  • 3dprinting
  • 9.04
  • a
  • a11y
  • accerciser
  • accessibility
  • acpi
  • Activism
  • adobe
  • adzap
  • aegis
  • africa
  • AIR
  • ajax
  • alsa
  • AMD64
  • Andhra Pradesh
  • android
  • angling
  • Animals
  • anusaaraka
  • apache
  • apertium
  • api
  • apm
  • apple
  • apport
  • Apps Script
  • apt-get
  • apt-key
  • architecture
  • archmage
  • ardour
  • arduino
  • ARM
  • art
  • asterisk
  • atom
  • audio description
  • backlinks
  • bangalore
  • barcamp
  • barcamphanoi
  • barcampkl
  • barcamppp
  • barcampsaigon
  • barcampvte
  • bash
  • bbc
  • bcy2011
  • beagle
  • beercamp
  • Beryl
  • big buck bunny
  • biofuel
  • bittorrent
  • blackout
  • blender
  • blind
  • blogger
  • blogging
  • book
  • Boot-Process
  • boot2gecko
  • bootparam
  • braille
  • brazil
  • breakpad
  • broadcom
  • bugs
  • bzr
  • Calicut
  • cambodia
  • canon
  • Canopy
  • cartoons
  • cat
  • CC
  • CDAC
  • CDMA
  • celliax
  • censorship
  • CES 2008
  • CES08
  • CHDK
  • chennai
  • children
  • china
  • CHM
  • chmsee
  • Chromium
  • classmate PC
  • cleaning
  • Climate Change
  • cloud computing
  • cms
  • codec
  • Comedy
  • comics
  • command line
  • CommandLine
  • compiz
  • Computational Linguistics
  • console
  • cpan
  • Creative Commons
  • cron
  • css
  • curl
  • cut
  • cyanogenmod
  • DAISY
  • debian
  • debian documentation
  • debian upgrade-system
  • Debian-IN
  • deborphan
  • delhi
  • design
  • dhvani
  • django
  • DJvu
  • dmesg
  • documentation
  • dontzap
  • dots
  • dpatch
  • drupal
  • drush
  • earth hour
  • easy_install
  • ebay
  • eclipse
  • Ecuador
  • education
  • eee pc
  • eeepc
  • elinks
  • Elinks2
  • emacs
  • embedded linux
  • Environment
  • equivs
  • espeak
  • etch
  • events
  • fennec
  • ffmpeg
  • fiction
  • film
  • film making
  • find
  • findutils
  • firefox
  • firefox3
  • firefox4
  • firefoxOS
  • firmware
  • fishing
  • flying
  • foss.in
  • fossasia
  • fossin2008
  • FOSSMeet
  • free culture
  • free software
  • FreeNode
  • fsf
  • fsfs
  • fx4
  • G1
  • gadgets
  • gdm
  • gedit
  • geek humour
  • geocoding
  • Gimp
  • GISS
  • GIST
  • git
  • gnewsense
  • gnochm
  • gnome
  • google
  • google app engine
  • google earth
  • gplv3
  • grep
  • grub
  • GSM
  • gstreamer
  • gta02
  • GUI Testing
  • habba.in
  • hack
  • hackable1
  • hacker
  • handbrake
  • hanoi
  • hanoitweetup
  • hardware
  • hardy heron
  • HCU
  • hindi
  • hipatia
  • history
  • hosting
  • hotkeys
  • how to
  • HowTo
  • html
  • html5
  • HTTP
  • humour
  • hunspell
  • hyderabad
  • i810
  • ICANN41
  • iceweasel
  • identi.ca
  • IEEE
  • iffk
  • iframe
  • IISE
  • ILS
  • ILUG-D
  • IM
  • imacros
  • india
  • india_engg_students
  • Indian Languages
  • indic
  • indlinux
  • initscripts
  • Inkscape
  • intel
  • interaction design
  • internet
  • internet kiosk
  • intersat
  • Intrepid
  • Intrepid Ibex
  • ipod
  • IRC
  • jam
  • jaunty
  • Java
  • Javascript
  • Jet Man
  • josm
  • jquery
  • JSSH
  • Kannada
  • karmic
  • Kchm
  • kerala
  • kernel
  • keyboard
  • keycode
  • kid
  • kiddy video
  • kids
  • kinect
  • kiosk
  • koha
  • l10n
  • laos
  • launchpad
  • layout
  • ldap
  • lenny
  • less
  • lftp
  • libchm
  • library
  • libreoffice
  • lilo
  • Linux
  • lisp
  • local weather
  • locate
  • logging
  • lttoolbox
  • lucid
  • lv
  • machine translation system
  • madras
  • maemo
  • mailing-list
  • mallard
  • MALT
  • malware
  • man
  • manga
  • maps
  • maverick
  • mediawiki
  • meego
  • mencoder
  • merkaartor
  • Mibbit
  • micro-blogging
  • midori
  • mlocate
  • Mobile
  • moblin
  • mod_pagespeed
  • modem
  • more
  • most
  • mother
  • mozcamp
  • mozilla
  • Mozilla Crash Reporter
  • mplayer
  • MT
  • mukt.in
  • music
  • mwc2012
  • myanmar
  • mymozl10n
  • mysql
  • n70
  • nature
  • nedumangad
  • neo freerunner
  • Neo1973
  • nepal
  • netbooks
  • newbies
  • news
  • NGO
  • NITC
  • NLP
  • NLTK
  • Nokia
  • Nonprofits
  • notify-osd
  • novell
  • NUI
  • nvda
  • OCR
  • oddmuse
  • OLPC
  • ooffice
  • open movie
  • openDNS
  • openmoko
  • openNI
  • openOffice
  • openoffice.org
  • OpenStreetMap
  • opensuse
  • openvt
  • orca
  • OS
  • oscar
  • OSM
  • Package-Management
  • packaging
  • pager
  • parenting
  • patents
  • pbx
  • PDF
  • people
  • perl
  • Pets
  • Phatch
  • photography
  • php
  • php-nuke
  • phpnuke
  • pidgin
  • PIL
  • pipa
  • podcast
  • podcasting
  • pokhara
  • POS Tagger
  • postfix
  • potlatch
  • poweroff
  • powershot
  • proc
  • programming
  • pune
  • puppylinux
  • pyCairo
  • python
  • pythonegg
  • QA
  • Qmail
  • radio show
  • Recycling
  • red nose day
  • redhat
  • regex
  • RFC
  • RHEL
  • rms
  • RND
  • robots
  • rockbox
  • RSS
  • RSS/XML
  • rtorrent
  • rubber
  • ruby
  • rural
  • s60
  • sahana
  • samba
  • sampada
  • samsung
  • sbcl
  • science
  • scipy
  • search
  • security
  • SFD2011
  • shell
  • short-stories
  • shutdown
  • silk
  • singapore
  • sitecopy
  • skype
  • slocate
  • social media
  • software patents
  • software-center
  • softwarefreedomday
  • solar
  • solar eclipse
  • sopa
  • space
  • spam
  • SPE editor
  • speakers
  • spins
  • squid
  • stallman
  • stanford parser
  • startups
  • startx
  • stumpwm
  • SUSE
  • system-adminstration
  • sysvinit
  • t-shirt
  • tablet
  • tactile watch
  • tea shops
  • teacher
  • technology
  • tee
  • telugu
  • terminal
  • terminal Tags: command line
  • Tesseract
  • Testing
  • The IT Crowd
  • theatre
  • tibet
  • tracker
  • travel
  • trek
  • trekking
  • tux4kids
  • tuxmath
  • tv
  • tweets
  • twitter
  • ubuntu
  • UMPC
  • unicode
  • UNR
  • uptime
  • urdu
  • User friendly
  • uTouch
  • UX
  • UXA
  • vagrant
  • VCS
  • veli
  • vidarbha
  • video
  • video hamming
  • video hams
  • video-ham
  • vim
  • virutalization
  • visualization
  • voip
  • vsat
  • w3c
  • watches
  • water from dew
  • WATiR
  • weather stations
  • weave
  • web automation
  • web standards
  • web testing
  • web-browser
  • web2py
  • webmaker
  • wget
  • Wiki
  • wikia
  • wikipedia
  • Windows
  • Windows XP
  • wmv
  • Word Press
  • wordpress
  • worm
  • wrapzap
  • writing
  • wvdial
  • X-Window-System
  • X11
  • xchm
  • xev
  • xml
  • xmlstarlet
  • XO Laptop
  • xorg
  • xserver
  • xvidcap
  • yahoo groups
  • yahoo maps
  • yelp
  • Yves Rossy
  • Zii
  • ZTE

Blog Archive

  • ►  2013 (23)
    • ►  December (3)
    • ►  November (3)
    • ►  September (1)
    • ►  August (1)
    • ►  July (1)
    • ►  June (2)
    • ►  May (3)
    • ►  April (1)
    • ►  March (1)
    • ►  February (5)
    • ►  January (2)
  • ►  2012 (26)
    • ►  December (3)
    • ►  November (1)
    • ►  October (1)
    • ►  July (1)
    • ►  June (3)
    • ►  May (6)
    • ►  April (1)
    • ►  March (8)
    • ►  January (2)
  • ►  2011 (43)
    • ►  December (2)
    • ►  November (7)
    • ►  October (8)
    • ►  September (4)
    • ►  August (5)
    • ►  June (1)
    • ►  February (6)
    • ►  January (10)
  • ▼  2010 (73)
    • ►  December (17)
    • ►  November (5)
    • ►  October (10)
    • ►  September (3)
    • ►  August (8)
    • ►  July (9)
    • ►  June (4)
    • ►  March (5)
    • ▼  February (7)
      • Ripping Audio With Mplayer
      • Gnome Keyboard Shortcuts
      • I ♥ Free Software
      • Orca Keyboard Shortcuts
      • My First Radio Play
      • State of gnu/Linux Accessibility
      • An Open Letter to Oracle on the Topic Of Accessibi...
    • ►  January (5)
  • ►  2009 (108)
    • ►  December (7)
    • ►  November (10)
    • ►  October (8)
    • ►  September (6)
    • ►  August (8)
    • ►  July (4)
    • ►  June (5)
    • ►  May (6)
    • ►  April (15)
    • ►  March (15)
    • ►  February (9)
    • ►  January (15)
  • ►  2008 (223)
    • ►  December (45)
    • ►  November (28)
    • ►  October (32)
    • ►  September (4)
    • ►  August (11)
    • ►  July (6)
    • ►  June (11)
    • ►  May (3)
    • ►  April (11)
    • ►  March (7)
    • ►  February (3)
    • ►  January (62)
  • ►  2007 (2)
    • ►  December (2)
Powered by Blogger.

About Me

Unknown
View my complete profile