A site devoted mostly to everything related to Information Technology under the sun - among other things.
Monday, December 24, 2007
Engineering Education in India
And
http://www.eetimes.com/news/latest/showArticle.jhtml?articleID=204802970
We further read:
The findings of an industry-sponsored report tend to confirm the committee’s belief that there is a mismatch between the skills students are graduating with and the skills required by the economy’s top revenue-generating sectors. ... the number of workers required by the information technology (IT) and “business process outsourcing” industry will increase from 700,000 to 2.3 million between 2005 and 2010. However, by current estimates, there will be a shortfall of almost 500,000 workers, as only 1.05 million suitably qualified students will have graduated in that timeframe.
The worker deficit will not be for a lack of graduates — only one in four engineering graduates and one in 10 graduates with generalist degrees are considered employable by multinational companies. According to the 2005 report, the remainder is thought to be lacking technical skills, English competency, communication and presentation skills and the ability to work as part of a team.
Tuesday, December 18, 2007
A Silly and Pleasant Game
http://www.bbc.co.uk/science/humanbody/sleep/sheep/reaction_version5.swf
Tuesday, December 11, 2007
Saturday, December 8, 2007
A Web Application Using Only Java
• put the code right in the page.
• put the code in plain-text page libraries that are included in the main pages.
• use tag libraries.
• write the code inside a Servlet.
• use JSTL
One can instead use Google Web Toolkit (GWT) which is a Java to JavaScript compiler. You write code in Java, and GWT compiles it into JavaScript that works in a standard browser. One of Google’s biggest issues seems to have been to create a common way of writing code that would be browser agnostic. They’re not there yet, but I like to think that write-once-run-anywhere has been moved a couple of steps forward.
Consider coding the follwoing page:
Here is the code to build it using GWT - All Java, All of the Time!
signupButton = new Button(); signupButton.addClickListener(new ClickListener() public void onClick(Widget sender) |
SignupRemoteService.Util.getInstance().signup( { public void onFailure( Throwable caught) { showErrorMessage("There seems to be a problem" + " with the data you entered." + " Please check the information" + " and try again."); signupButton.setEnabled(true); } public void onSuccess( Object result) { String errorMessage = (String) result; if (errorMessage != null) { showErrorMessage(errorMessage); signupButton.setEnabled(true); } else { flexTable.getRowFormatter().setVisible( 5, true); showInfoMessage("Almost there." + " Please check your email" + " and copy and past the " + "Authentication Code into" + " the box above."); validating = true; signupButton.setEnabled(true); cancelButton.setEnabled(true); } } }); |
Google supplies an emulator that allows you to run the code, set breakpoints and even do on-the-fly changes.
In addition to debugging, unit testing works like any other Java application. Since all of the code is standard Java, you can simply write unit tests against any of the code and run it using the standard Java Runtime Environment. If you need the ability for your unit tests to run against the hosted code, Google made that possible using the emulator and a special test case class from GWT.
GWT works with Eclipse. It ships with a tool to create an Eclipse GWT project and for less than $50 you can get GWT Designer, which among other things allows you to create Eclipse code using a WYSIWYG designer.
For server side code GWT ships with two solutions. You can either use standard JavaScript Notation Object (JSON) or use GWT Remote Procedure Calls (RPC), which works with Servlets. This means that you end up with two code bases--a client code base and a server code base. The client code base becomes JavaScript and the server code base is deployed as a Servlet. In practice, you simply wrap it all up in a Java Web Archive (WAR) and deploy it on Tomcat or another standard Servlet container.
Since the GWT server side is just standard Java deployed on a Servlet container, you can use all your favorite Java libraries like Hibernate with Annotations, Spring, Log4J, Jackcess (to import access files) and so many other mature Java libraries on the server side.
.mobi
Suppose you are building a site with a number of options on it that are rendered as html links. On a regular Web page, you may need to scroll down to the link you are interested om and then to select it.
On a .mbi site, you will be using Access Keys which allow a user to quickly to navigate to a link on a page by assigning one of the mobile device's (say a smart phone) keypad keys to that link. The HTML code to execute this is a as follows:
[1]<a accesskey="1" href="link1.html">Link 1</a>
[2]<a accesskey="2" href="link2.html">Link 2</a>
And if you wish a phone call to be made (in an anlogous way to sending an email) by clicking on a hyperlink you would write:
<a href="tel:XXXXXXXXXX"> Call Us! </a>
Mathematica & Sculpture
http://www.georgehart.com/sculpture/sculpture.html
and
http://www.bathsheba.com/
I clicked on the http://www.bathsheba.com/gallery/interp.html link and I noticed that the structures created by Mathematica are pleasing if they are the size of ornamental jewelry or house-hold goods; i.e. much smaller than the size of a human being.
But they do not "work" when their scale is large (comparable or larger than the size of a human being). They do not look pleasing as "stand-alone" sculptures for the most part; there is too much regularity and therefore they look boring since there is nothing beyond structure.
I am intrigued by this dependence of the sense of beauty on the scale of the work of art and the typical size of a human being.
It reminds me of what Protagoras is purported to have said in 485 B.C., "Man is the measure of everything."
Hyperseeing
Friday, December 7, 2007
SAGE
It won first prize in the scientific software division of Les Trophées du Libre, an international competition for free software.
It is available @ http://www.sagemath.org/
An Active Coder
Wide Finder Project
http://www.tbray.org/ongoing/When/200x/2007/09/20/Wide-Finder
which presents a simple problem typical of administrator-level development - analyzing a Web log to find the most popular pages - and uses Regular Expressions to solve it.
And @ http://effbot.org/zone/wide-finder.htm
Useful Links
- .Net Code Samples
- AJAX for MS Developers
- C# Tutorials
- Channel9
- Code Search Engine
- Douglas Crockford's JavaScript Site
- DZONE
- Google Code
- IBM Developer Works
- IBM Public Skunkworks
- Is This Thing On?
- Java tutorials, hints, tips
- Jon Udell Weblog
- Knowing .Net
- Massive List of Information for Programmers
- MIT Courses
- MSDN
- Simple-Talk
- SUN Java
- That Indigo Girl
- UC Berkeley Lectures
- Yahoo UI Library
Topics
- 3-D Printing (13)
- AI (228)
- Art (95)
- Article (120)
- book (11)
- books (83)
- Business Intelligence (18)
- Careers (72)
- Cloud Computing (19)
- Cognition (13)
- Complexity (8)
- Computer Science (20)
- COVID-19 (1)
- Cyber-security (79)
- Data Analysis (39)
- Data Management (19)
- Data Visualization (30)
- Design Thinking (1)
- Embedded Tools (34)
- Gadgets (74)
- Games (32)
- Google (7)
- Hardware (39)
- High Performance Computing (32)
- History of Mathematics (1)
- Humor (73)
- Inetrview (7)
- Intelligent Transportation (17)
- IoT (15)
- IT as Metaphor (2)
- Magazine Subscription (8)
- Mathematics Tools (4)
- Microsoft Platforms (22)
- Microsoft Tools (63)
- Mobile Computing (2)
- Motto (3)
- Network Tools (12)
- News (121)
- Offshoring (6)
- Open-Source Sofware (7)
- Outsourcing (1)
- Philosophy (5)
- Pictures (143)
- PLM (5)
- Programming Languages (74)
- Quantum Computing (5)
- Reports (52)
- RFID (3)
- Robo (2)
- Robots (103)
- Science (57)
- Scientific Computing (17)
- Search Tools (7)
- Semantic Networks (11)
- Simulations (34)
- Social Computing (25)
- Software Architecture (27)
- Software Development (151)
- Software Testing (4)
- Software Tools (268)
- Some Thoughts (44)
- Speech (6)
- Standards - Telematics (9)
- Transportation (14)
- Video (11)
- Visualization (9)
- Web Site (224)
- Web Site for Science (48)
About Me
- Babak Makkinejad
- I had been a senior software developer working for HP and GM. I am interested in intelligent and scientific computing. I am passionate about computers as enablers for human imagination. The contents of this site are not in any way, shape, or form endorsed, approved, or otherwise authorized by HP, its subsidiaries, or its officers and shareholders.
Blog Archive
- November (11)
- October (10)
- September (7)
- August (11)
- July (6)
- June (11)
- May (12)
- April (7)
- March (5)
- February (1)
- January (3)
- December (1)
- October (2)
- September (4)
- August (1)
- July (3)
- June (2)
- April (2)
- March (2)
- February (2)
- January (10)
- December (1)
- October (1)
- September (1)
- August (4)
- June (1)
- April (6)
- March (2)
- February (4)
- January (3)
- December (1)
- October (1)
- June (3)
- April (1)
- March (1)
- February (1)
- January (6)
- December (8)
- November (3)
- October (5)
- September (2)
- August (3)
- July (6)
- June (2)
- May (7)
- April (19)
- March (22)
- February (6)
- January (5)
- December (4)
- November (4)
- October (9)
- September (3)
- August (7)
- July (3)
- June (2)
- May (6)
- April (4)
- March (8)
- February (5)
- January (18)
- December (6)
- November (10)
- October (6)
- September (7)
- August (2)
- July (4)
- June (5)
- May (8)
- April (5)
- March (9)
- February (3)
- January (7)
- December (2)
- November (1)
- October (3)
- September (5)
- August (10)
- July (8)
- May (5)
- April (8)
- March (9)
- February (6)
- January (11)
- November (6)
- October (9)
- September (5)
- August (13)
- July (9)
- June (9)
- May (8)
- April (4)
- March (2)
- February (8)
- January (9)
- December (3)
- November (7)
- October (9)
- September (7)
- August (4)
- July (2)
- June (4)
- May (7)
- March (4)
- February (2)
- January (1)
- December (2)
- November (1)
- October (6)
- September (1)
- August (1)
- July (4)
- June (1)
- April (1)
- March (1)
- February (1)
- January (2)
- December (5)
- October (4)
- August (2)
- July (3)
- June (8)
- May (7)
- April (5)
- March (9)
- February (3)
- January (7)
- December (4)
- October (7)
- September (5)
- August (5)
- July (8)
- June (6)
- May (9)
- April (5)
- March (4)
- February (5)
- January (6)
- December (12)
- November (7)
- October (5)
- September (4)
- August (19)
- July (12)
- June (4)
- May (8)
- April (5)
- March (15)
- February (5)
- January (9)
- December (14)
- November (6)
- October (12)
- September (2)
- August (10)
- July (8)
- June (8)
- May (11)
- April (10)
- March (10)
- February (9)
- January (20)
- December (16)
- November (9)
- October (25)
- September (24)
- August (12)
- July (18)
- June (20)
- May (13)
- April (29)
- March (26)
- February (14)
- January (17)
- December (17)
- November (9)
- October (32)
- September (27)
- August (27)
- July (11)
- June (22)
- May (25)
- April (33)
- March (33)
- February (28)
- January (38)
- December (12)
- November (39)
- October (28)
- September (29)
- August (29)
- July (18)
- June (27)
- May (17)
- April (23)
- March (40)
- February (31)
- January (6)