Friday, February 18, 2011

after reinstalling OS in my phone

Application:
  1. vim
  2. firefox
  3. opera
  4. gpodder
  5. gnumeric
  6. fm radio
  7. timed silencer
  8. espeak caller
  9. evince (pdf)
  10. subtittle support
  11. nmap
  12. wallpaper tweak
  13. Extended call log
  14. appdownloader
  15. photorec (photo recover)
  16. Adblock plus
  17. ogg support
  18. theme customizer
Games :
  1. angry bird
  2. Spb
  3. Brain party
Player :
  1. SM player
  2. some player
  3. KM player
  4. Media box
  5. SiB
  6. msid
Theme :
  1. matrix
  2. android
  3. Meego
Applet :
  1. wifi switcher
  2. 3G/2G/Dual mode selection
  3. LED pattern editor
  4. simple brightness applet
  5. wi-fi signal applet
Widget :
  1. personal IP
  2. Calender Home Widget
  3. DateToday Widget
  4. custom operator name 
  5. camera lens
  6. headphone daemon
  7. recaller
Eagerly required :
  1. Maps
  2. java
  3. Zip utility
  4. rootish
  5. free k office
  6. Dictionary
  • Arrange 2 desktop
  • Organise main menu

Friday, February 11, 2011

Sunday, February 6, 2011

Awesome Search Engines

                                                                                  Wolfram Alpha (styled Wolfram|Alpha) is an answer engine developed by Wolfram Research. It is an online service that answers factual queries directly by computing the answer from structured data, rather than providing a list of documents or web pages that might contain the answer as a search engine would.

2. Qwiki :
         A new search engine spews out results in the form of a complete multimedia presentation comprising audio, video, text and photo.      

                          DuckDuckGo is a search engine based in Valley Forge, Pennsylvania that uses information from crowd-sourced sites like Wikipedia. The search engine philosophy emphasizes privacy and does not record user information. (bye bye GOOGLE)


4.  localti.me – know more than just the local time of a city

5.  topsy.com – a better search engine for twitter.

6 . iconfinder.com – the best place to find icons of all sizes.

7.  woorank.com – everything you wanted to know about a website.

Wednesday, February 2, 2011

Python's high-level toolbox

           Unlike some scripting languages,  Python's high-level toolbox makes Python useful for
substantial development projects. Some of the things i find is given below:

Dynamic typing
     Python keeps track of the kinds of objects your program uses when it runs; it doesn't require complicated type and size declarations in your code.

Built-in object types
     Python provides commonly used data structures such as lists, dictionaries, and strings, as
an intrinsic part of the language; as we'll see, they're both flexible and easy to use.

Built-in tools
     To process all those object types, Python comes with powerful and standard operations, including concatenation (joining collections), slicing (extracting sections), sorting, mapping, and more.

Library utilities
      For more specific tasks, Python also comes with a large collection of precoded library tools that support everything from regular-expression matching to networking to object persistence.

Third-party utilities
      Because Python is freeware, it encourages developers to contribute precoded tools that support tasks beyond Python's built-ins; you'll find free support for COM, imaging, CORBA ORBs, XML, and much more.

 Automatic memory management
         Python automatically allocates and reclaims ("garbage collects") objects when no longer used, and most grow and shrink on demand; Python, not you, keeps track of low-level memory details.

Programming-in-the-large support
          Finally, for building larger systems, Python includes tools such as modules, classes, and exceptions; they allow you to organize systems into components, do OOP, and handle events gracefully.

Python is widely used in cyber world..

1. High Performance Computing (HPC)
  • Parallel Python (pp) module 
  • PyMOL 
  • VTK 
  • SciPy 
2. Browser
  • Django 
  • Writing a django app 
  • TurboGears 
  • CherryPy 
  • Zope 
  • Writing a Zope product 
  • Plone 
  • Writing a plugin for trac 
3. Web Services
  • XMLRPC 
  • simplexmlrpcserver 
  • xmlrpclib 
  • SOAP 
  • Flickr (Beej's API?) 
  • Google Calendar/GData (w/ ElementTree) 
  • Amazon 
  • Yahoo 
4. System Administration
  • SNMP 
  • LDAP 
  • python-ldap 
  • Luma (extending?) 
  • User/Group management 
5. GUI Frameworks
  • wxPython 
  • PyQT 
  • PyGTK