Showing posts with label been. Show all posts
Showing posts with label been. Show all posts
Sunday, September 10, 2017
UBUNTU 9 04 has been released
UBUNTU 9 04 has been released
UBUNTU 9.04
has been released
�
Well, the new UBUNTU 9.04 has been released finally on 23rd April, 2009. As I�ve mentioned in my previous blog post ubuntu works under the free software foundation.
In this new version, various new and improved features are contained such as faster boot time, improved appearance theme, security issues and many more�
UBUNTU 9.04 can be downloaded from the official UBUNTU site or from the links given below. UBUNTU is easily available on the link below for 32 bit as well as 64 bit PCs...
�
�
http://www.ubuntu.com/getubuntu/download
�
If you want to get UBUNTU free CDs to your doorstep, login here and request for free CDs.
�
https://shipit.ubuntu.com/login
�
download file now
Thursday, August 31, 2017
Type checking in javascript has never been easier
Type checking in javascript has never been easier
I love languages which arent strongly typed. It makes software development process very fast and very easy as we need not write huge, complex, unreadable code like in our typed languages. However this can lead to developers worst nightmare: Runtime errors! In languages such as javascript it is not easy to check for type mismatches while in development process. Hence flow was invented!
Flow is one of Facebooks open source projects. It allows developers to check for programming errors in javascript code with very less effort. This is a sample code available on their site:
Note that a string is passed into the function foo and an arithmetic operation is performed on that string inside it. When flow is run on this code:
It points out that the string is incompatible with number. Consider a much much complex code. An error like this can simply be unnoticed until a runtime error is raised.
Source: https://github.com/facebook/flow
Installation: http://flowtype.org/docs/getting-started.html
Examples: http://flowtype.org/docs/five-simple-examples.html
Flow is one of Facebooks open source projects. It allows developers to check for programming errors in javascript code with very less effort. This is a sample code available on their site:
function foo(x) {
return x * 10;
}
foo(Hello, world!);
Note that a string is passed into the function foo and an arithmetic operation is performed on that string inside it. When flow is run on this code:
01_HelloWorld/hello.js:7:5,17: string
This type is incompatible with
01_HelloWorld/hello.js:4:10,13: numberIt points out that the string is incompatible with number. Consider a much much complex code. An error like this can simply be unnoticed until a runtime error is raised.
Source: https://github.com/facebook/flow
Installation: http://flowtype.org/docs/getting-started.html
Examples: http://flowtype.org/docs/five-simple-examples.html
download file now
Subscribe to:
Posts (Atom)