Virtual X- the online examination management system

PIT Solutions has developed an online examination management tool -Virtual X. This tool has been developed in Ruby on Rails (ROR) platform. This software is in both English and German language.

Different types of questions are easily created with the help of Virtual X. This software helps to generate the reports of each student or groups or levels automatically. This will help in reducing the time of the examiner or organizer.

The main features of Virtual X are:

* Schedule exams for Schools, Colleges, Organizations and other Institutions
* Prepare and assign question papers
* Conduct online examination with feedback option
* Instant evaluation and report
* Report generation in Excel and Pdf formats
* Provide Feedback

Its easily downloadable at

https://sourceforge.net/projects/virtualx

 

An intro to HTML Version 5

HTML5 is the next version of HTML (as of September, 2011 it is still under development) which is for structuring and presenting content – just like in previous HTML standard but is more matured. Browsers already started supporting it, not completely but most features. You can start experimenting with latest IE, Firefox, Safari or Chrome.

 

image

Major elements to note are:

  • Canvas – for drawing
  • Video and Audio
  • DOM storage – store data in browser
  • Article, Footer, Header, Calendar, Time, Url, Search etc.

 

Few people say this will be a replacement for Adobe’s Flash or Microsoft’s Silverlight technology but we need to wait some more time to know more.

Here are few new elements for you to try out.

Canvas sample

<canvas id="testcanvas" width="100" height="100"></canvas> <script > element=document.getElementById("testcanvas"); context=element.getContext("2d"); gradient=context.createLinearGradient(0,0,100,100); gradient.addColorStop(0,"#0000ff"); gradient.addColorStop(1,"#00ff00"); context.fillStyle=gradient; context.fillRect(0,0,100,100); </script>

Video and Audio

<video controls="controls" src="MVI_0697.MOV"></video> <audio src="test.mp3" controls="controls"></audio>

Web Storage/DOM storage

<script type="text/javascript"> localStorage.test_var="Hello World"; alert(localStorage.test_var); </script>

Note: sessionStorage is also used same way.

You can read more about HTML5 here and here

What is new in Windows 8?

image_thumb.png

Touchable! – A metro-style touch based interface. The whole OS got tap-tap usability for drag-drops, switching to apps etc. Noticeable performance difference. Also, 8 seconds booting time. Portable device users will benefit most Different Home Screen. There will be tiles (You know what is this if you have used Windows Phone7) New lock screen. App [...]

[Continue reading…]

MSDN Magazine

image.png

Keep your Microsoft Technology knowledge up-to-date by monitoring MSDN magazine online version here. This month’s (August 2011) issue have these major topics: Team Foundation Server (TFS) & Exchange – Building a ticketing system Microsoft Visual Studio Light Switch – Advanced programming & building business apps HTML5 – Build apps Multi-Platform Development – About portable class [...]

[Continue reading…]

10 best open source web testing tools

Web testing is the kind of software testing focusing on web applications.  Such testing will help to identify errors/bugs before the website is live/visible to public.  Today there are many open source testing tools that are easily available.  Here are a few list of testing tools which will give you an insight on the usage [...]

[Continue reading…]

Managing e-mail templates using Magento

Magento has a great set of options to manage the Email Templates. Here we are going to see how to create our own Email templates for forgot password and how to change the magento default Email Templates and change the Email Sender options etc. Lets see it straight away. ( All the images used in [...]

[Continue reading…]