Firefox Os Gets Upgraded To Version 1.1 – Mozilla To Introduce Smartphones Soon

Submitted by Saad Arif on
Just around 6-7 months ago, Mozilla took everyone by surprise when they announced their own OS for mobile devices. At this time, the smartphone market is led by Apple’s iOS and Google’s Android OS. There are some other contenders in the market such as Windows OS and Blackberry but they don’t hold a light against the giant operating systems already working in the market. In such situation, when

Georgia Tech College’s Online CS Masters Course Open

Submitted by jproimakis on
Back in May, the Georgia Tech College of Computing announced plans to offer an online Master of Science course in Computer Science, sponsored by Udacity and AT&T, at a cost lower than $7 thousand --less than one third of what regular on-campus Master courses usually cost. Admissions are now open and the course is set to cost a little over $6,600. According to the GTCC, this is the first time an

Creating MySQL Database tables using Visual Basic. Net

Submitted by joken on
In this tutorial, I’m going to show you how to create a MySQL database tables dynamically in a simple way. To start in this lesson, we need to understand first the concept of creating a MySQL database table. The creation of table command requires the following: Name of the table, Names of fields and Definitions for each field.

Chapell Media Player

Submitted by Capela85 on

This is a full multimedia player.With this media player you can listen to mp3 files see mpg,avi,etc videos ,save and load playlists ,order files of playlist by name, listen to webradios, listen to cd's, change music speed, change music balance, see music time elapsed or remaining, see id3 information of mp3 files, see files location, play music continously, in random mode, repeating all, repeating

How to Create a File Browser in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a file browser in Visual Basic. Steps of Creation: Step 1: First we want to create a form with a listbox to contain the current path items (files and directories), a button to open a directory and a button to go up a level. We also want to import System.IO so we can access our files, directories and paths. Imports System.IO Step 2: So, first

Microsoft boosts IPython funds

Submitted by jproimakis on
IPython’s development plans receive significant boost after Microsoft elects to sponsor the platform with a $100 thousand donation. A command shell for interactive computing in multiple programming languages, the IPython was awarded the 2012 Award for the Advancement of Free Software at Libre Planet this year. Dr Fernando Perez, the man behind the platform, originally developed it as a sort of

C Program - Working with Sub-arrays

Submitted by davidwachira on
C program with the following specifications : • An array of a variable size (n) • A variable (y) of type integer • The algorithm should divide the array into n/y parts • Calculate the average for each part • Finally find the maximum value among the averages #include /* C Standard Input and Output Library*/ /*Variable declarations*/ int y; /* Declaration of a variable called y of type integer. */

Simple Query Builder using Visual Basic.Net

Submitted by joken on
In this tutorial, It covers how to create a simple MySQL query builder using Visual basic. This application allows user to select MySQL database and when the “use” button is clicked, the program will then load all the tables existing from a specific database. And every time the user select the name of a table it will generate a query and display the result on the datagridview provided.