Playing With Sid

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

Saturday, 21 August 2010

Origamic pop-up greeting cards

Posted on 22:37 by Unknown

Spent the Sunday evening walking through the night market in Hoan Kiem, Hanoi. Among the mire of people, stalls, street vendors I saw something truly extra ordinary. The origami pop-up greeting cards made by Anh's and her family. The craftsmanship and detail of these cards are amazing. It is not very easy to find this stall at the night market, you can visit the ORIGAMIC shop at 85 Hang Gai Str, Hoan Kiem Dist. Hanoi( vn.origamicATyahoo.com.vn #084-4-39386787).




Origami pop-up greeting card of norte dame




Made with Slideshow Embed Tool
Read More
Posted in hanoi, travel | No comments

Friday, 20 August 2010

Ralink Wireless support in Puppy Linux

Posted on 04:14 by Unknown


Gecko Edubook

My Gecko Edubook has a Ralink wireless USB adapter. Later models of this ultra-cheap netbook shipped with more ubiquitous wireless cards from Realtech. You have to get the download the firmware and blacklist few modules to be able to use Ralinux wifi wireless card in puppy linux 5.1.




Download the firmware for RT28XX/RT30XX USB series (RT2870/RT2770/RT3572/RT3070) zip file and extract the rt2870.bin file to /lib/firmware.



Next use the BootManager configure bootup program to blacklist rt2800usb kernel module and enable rt2800sta module instead. These steps should enable Ralink usb wireless card support in puppylinux.

Read More
Posted in hardware, netbooks, puppylinux | No comments

Tuesday, 17 August 2010

Ubuntu Netbook Remix (UNR) UI on Ubuntu 10.04 Lucid LTS

Posted on 23:04 by Unknown

Transformed my standard Ubuntu Lucid Desktop into Ubuntu Netbook Remix (UNR) this morning. This interface allows netbook users to make better use of screen space and few great interface enhancements.




Desktop running Ubuntu UNR UI


The Ubuntu UNR wiki page gives all the information about the packages and the required steps to convert your standard ubuntu desktop to UNR interface. Don't forget to report bugs to
Canonical Desktop Experience Team
.

Read More
Posted in lucid, netbooks, ubuntu, UNR, UX | No comments

Monday, 9 August 2010

Universal Braille Kit (UBK)

Posted on 16:48 by Unknown

The Universal Braille kit (UBK) is brainchild of octogenarian N.Krishnaswamy. It is designed to teach braille to blind children at home in developing countries with no access to special education. The Universal Braille Kit has a braille cube, an alphabet plate, a braille slate and stylus, a standard abacus and instruction manuals. This kit is produced by Workshop For Rehabilitation and Training of the Handicapped (Worth Trust) in India.



Universal Braille Kit(UBK) Photograph

Last year I traveled to Chennai to meet N.Krishnaswamy (NK) at Vidya Vrikshah. We remained in close contact sharing ideas on various braille projects. Last week few accessibility designers met at Worth Trust factory in Katpadi, Tamil Nadu. NK was there, full of energy and ideas. NK never fails to surprise me. " Arky, At my age I am in a terrible hurry" he says with a chuckle. Just as he was leaving I managed to corner him and shot this video.



In this video N.Krishnaswamy explains the story behind the design of the Universal Braille Kit (UBK) and explains the concepts by demonstrating various devices of the kit.



The Universal Braille kit (UBK) from arky on Vimeo.




If you are interested to procure the Universal Braille Kit, please do get in touch with Worth Trust.


  • Worth Trust

  • 48, New Tiruvalam Road

  • Katpadi, Tamil Nadu (India)

  • Phone: 0416-2242739 0416-2243464

  • Email: worth@md3.vsnl.net.in

  • Website: http://www.worthtrust.org.in


Read More
Posted in accessibility, braille, india, travel | No comments

Saturday, 7 August 2010

Nortec SurfBoard Running Ubuntu 10.04

Posted on 06:10 by Unknown

Just heard that Lekan got the SurfBoard running ubuntu 10.4. The video shows Google Chrome running Youtube videos. The video perform flawlessly in fullscreen mode.






The SurfBoard is an ultra low-cost, energy efficient computer keyboard selling for only $119.95. Ideal for classrooms, thin clients, hotels, banks and anywhere else where an energy efficient, silent, low cost computer can be used.

Read More
Posted in gnome, Linux, netbooks, ubuntu | No comments

Thursday, 5 August 2010

How to resize photos with Bash shell script

Posted on 05:53 by Unknown

Ivo Kaspar wrote this guide to resize multiple images using simple Bash shell script. It uses the convert program from ImageMagick, the swiss-army knife of command line image processing software. The original guide is edited and rewritten in some places.




You'll find this guide interesting if you want to resize a lot of pictures to upload to your website or email them. First you need to install the 'imagemagick' package if it is not installed on your computer. To install imagemagick, copy this line into your terminal application and confirm with your password. Close the terminal after it finished the installation.
sudo apt-get install imagemagick




Open the text editor and paste these lines into it:



#!/bin/bash
for i in *.JPG; do convert $i -resize 10% $(basename $i .JPG).jpg; done


Save the document and give it a sensible name to recognize it later on.




Note that this script will work only with files that has uppercase '.JPG' extension and renames them to lower case '.jpg'. Some digital cameras follow this kind of file naming schema. You may like to change this to suit your needs.According to its manual page ImageMagick can read, convert and write images in a variety of formats (about 100) including GIF, JPEG, JPEG-2000, PNG, PDF, PhotoCD, TIFF and DPX.



If you want to define the size of the picture replace the "10%" with the amount of pixels you want it to have, 400x600 is a usable resolution. Of course it is also possible to keep the relative scale with any value instead of the “10” followed by "%" postfix. To change the file format to something other than “.JPG” you have to change the last “.JPG” into the format of your choice.



If you want to rename the pictures, you have to add something behind the "(basename $i .JPG)" and the ".JPG". I usually add an "­-s" (for small) to indicate the reduced size of the pictures.



When you run the script it will proceed to resize all the pictures in the current folder, but not in any sub folders.
Keep in mind that:


  • Small pictures are small forever, you can't revert them.

  • The filenames must not contain any space

  • The filename must match to the first two “.JPG” or “.jpg”



Examples Scripts:




# capital .JPG files, 10% size, no rename, it will overwrite the old
pictures
#!/bin/bash
for i in *.JPG; do convert $i -resize 10% $(basename $i .JPG).JPG; done
---
# lower case .jpg files, 10% size, renamed to capital .JPG (with ubuntu it's
a different file, not with windows!)
#!/bin/bash
for i in *.jpg; do convert $i -resize 10% $(basename $i .jpg ).JPG; done
---
# capital .JPG files, 10% size, adds an -s in the name of the new ones,
keeps the old ones
#!/bin/bash
for i in *.JPG; do convert $i -resize 10% $(basename $i .JPG)-s.JPG; done
---
# capital .JPG files, 600x400 size, no rename, it will overwrite the old
pictures
#!/bin/bash
for i in *.JPG; do convert $i -resize 600x400 $(basename $i .JPG).JPG; done

Read More
Posted in bash, shell | No comments

Tuesday, 3 August 2010

THE THIRD WAVE A Volunteer Story

Posted on 04:32 by Unknown

Returned to my hotel room exhausted. The noise and heat in the braille labeler workshop drains me at the end of the day. Its my second week in Vellore (Tamil Nadu), I'm here to help Ted Moallem build braille labelers with a team of blind workers. There isn't much to do in this town, expect watch television until I can't keep my eyes open. While channel surfing I found The Third Wave playing on Sony Pix. Its a movie you shouldn't miss, it will move you to tears.





The Third Wave Movie Poster



The documentary tells the story after the 2004 tsunami in Sri Lanka. A group of four volunteers come together to rebuild the village of Peraliya. They are not part of any non-profit organization, they are people who just want to help and meet each other by chance. Some had sort help of friends to buy tickets to Sri Lanka. They arrive with few hundred dollars in their pockets. The story follows Alison, Oscar, Bruce, Donny and countless volunteers who fight against odds to bring medical care, relief and supplies. They start a medical aid station in the village school and take care of a relief camp.




Children are the most affected by the Tsunami, many lost their family right before eyes. The volunteers work with children and take them to beach. The children are nervous, its their first time in the sea after the 40 foot wave wiped out their village. Soon the children overcome their fears and have a gala time until they stumble upon a dead body half buried in sand. The reality of life aftermath the tsunami is capture vivid in this movie. The volunteers fight exhaustion, frustration to regain the piece of paradise lost.

Read More
Posted in film, nature, NGO | No comments

Sunday, 1 August 2010

Bait Seaside Restaurant, Kovalam beach

Posted on 04:09 by Unknown

Taj Green Cove in Kovalam, Trivandrum opened a new seaside restaurant Bait. If you are craving for a good thin crust pizza then you should try Bait's wood chip oven baked pizza the best in town.



The restaurant is designed by local architect Vinod Mathew, he showed me around this amazing place. The restaurant is constructed on raised platform of solid timber away from reach of high tide. It has some of best view of the beach, the lake on the other side and Taj Bali village style cottages further inland.



Old wooden railway sleepers are layed all around the building adding texture with their weathered look, they are used because of their amazing resistant to sea water. The restaurant flooring is created with concrete mixed with gel and coloring agents, the bathrooms are great example of how you can use concrete to create great surfaces. The bar stools are created from single block of wood, the chairs are custom designed with bamboo string backs. The deck chairs are custom designed and built in Vinod's workshop. I won't blame you if you doze right away in these comfortable chairs. The ceiling is covered with elephant grass and grass hand woven mats covering inner roof.






Bait Seaside Restaurant
Wooden Railway Sleepers






Bait Seaside Restaurant
Custom Designed Furniture






Bait Seaside Restaurant
Watch the fisherman bring in the catch


Bait Seaside Restaurant








Bait Seaside Restaurant
Meera enjoying in the children play area






Bean bags for adding comfort






Bar with wooden block chairs
Read More
Posted in india, kerala, travel | 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)
      • Origamic pop-up greeting cards
      • Ralink Wireless support in Puppy Linux
      • Ubuntu Netbook Remix (UNR) UI on Ubuntu 10.04 Luci...
      • Universal Braille Kit (UBK)
      • Nortec SurfBoard Running Ubuntu 10.04
      • How to resize photos with Bash shell script
      • THE THIRD WAVE A Volunteer Story
      • Bait Seaside Restaurant, Kovalam beach
    • ►  July (9)
    • ►  June (4)
    • ►  March (5)
    • ►  February (7)
    • ►  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