eGovernance in India
June 25, 2008Are we lagging behind the World? I dont think so, not atleast on paper. This is the list of eGovernance initiatives from India as reported in compendium of eGovernance by UNPAN. No wonder most of them are based in the capital [NCR].
This is the not so exhaustive list of eGovernance Projects in India. With due respect to these initiatives I think there are many areas which can leave greater impact than those in the list.
You must be now wondering what the heck is eGovernance is it not some super woofer complex thing? Well the definition is not so complex.
“E-Government” refers to the use by government agencies of information technologies (such as Wide Area Networks, the Internet, and mobile computing) that have the ability to transform relations with citizens, businesses, and other arms of government
We should be happy that there is some progress atleast in providing simple, clean, transparent & Responsive Administration. Trying to read few of these reports, Some of them are very interesting like gyandoot, drishti etc..
PS: I still remember the 1st Constn Amendment Act Posting. Act is little long so will take more time. Glory to Panditji till then.
Saikrishna
Yet another player in the arena.. alas! No different though
May 28, 2007Techcrunch reports rise of a new player in the asia-pacific recruitment market. As for any site there is this chicken and egg problem ie.., members don’t come to you because you don’t have jobs and jobs won’t come because there are no members. Some how collect all the job listings in all other sites and help the user find a job. The syndication of feeds between the other players does this “Somehow” task. I understand that there is wider reach for the jobs posted in one site but clearly there is no refinement in the process of suggesting right jobs to the job seekers and right applicants to the Employers. There is no novelty in the approach to solve the problem. All they are trying is to become big brother of these small firms and model their business on commissions earned by suggesting jobs probably. Why do people tend to follow the crowd? Why can’t they think of solving the problem in a creative and effective way?
Gosh! We need some creative products to solve this critical problem of finding livelihood. It demands more attention from the thinkers and entrepreneurs.
Keywords of Python
March 26, 2007How to Think Like a Computer Scientist: 2. Variables, expressions and statements:
Python has twenty-nine keywords:
and else import raise assert except in return break exec is try class finally lambda while continue for not yield def from or del global pass elif if
Interpreter and Compiler Differences and Python Position
March 26, 2007How to Think Like a Computer Scientist: 1. The way of the program:
Two kinds of programs process high-level languages into low-level languages: interpreters and compilers. An interpreter reads a high-level program and executes it, meaning that it does what the program says. It processes the program a little at a time, alternately reading lines and performing computations.
A compiler reads the program and translates it completely before the program starts running. In this case, the high-level program is called the source code, and the translated program is called the object code or the executable. Once a program is compiled, you can execute it repeatedly without further translation.
Many modern languages use both processes. They are first compiled into a lower level language, called byte code, and then interpreted by a program called a virtual machine. Python uses both processes, but because of the way programmers interact with it, it is usually considered an interpreted language.
Posted by Anonymous