×

Raspberry pi course

In STEM land a person from Auroville came to the iSMART class to conduct a course about raspberry pi course. Initially I dont know how to use raspberry pi. I was curious to learn raspberry pi. I also learnt the differences and...

Read out all

requirements.txt

Any application typically has a set of dependencies that are required for that application to work. The requirements file is a way to specify and install specific set of package dependencies at once. Use pip’s freeze command to generate a requirements.txt file...

Read out all

Shell commands

I learnt about shell commands. A Shell is an environment which is used to run our commands and programs. It is an user interface with the operating system. There are many different types of shell. I learnt some commands in bash and...

Read out all

scratch programming for teaching physics concepts

I started to learn a scratch program software to create interactive model for learning. Then I got a task to create a model for: How pressure of gas change with respect to temperature and volume to container: I chose to represent it using Scratch....

Read out all

Engfmt(Engineering Format) Documentation

Link : https://pypi.python.org/pypi/engfmt/1.1.0 engfmt – It is a package used to read and write numbers in engineering format. In engineering format a number generally includes the units if available and uses SI scale factors to indicate the magnitude of the number. For...

Read out all

Dynamic image changing and JavaScript debugging

I and my  colleague are creating a software to track the students plan regarding their progress in their academic . In that we wanted to upload the students pictures when they select their name. I learnt to deal with dynamic images and...

Read out all

Two HTTP Request Methods: GET and POST

GET – Requests data from a specified resource POST – Submits data to be processed to a specified resource In computing, POST is a request method supported by the HTTP protocol used by the World Wide Web. By design, the POST request...

Read out all

jQuery Syntax

The jQuery syntax is tailor-made for selecting HTML elements and performing some action on the element(s). Basic syntax is: $(selector).action() 1) A $ sign to define/access jQuery 2) A (selector) to “query (or find)” HTML elements 3) A jQuery action() to be...

Read out all

Javascript # and . Symbols – CSS selectors

Code 1: $(‘#row DIV’).mouseover(function(){ $(‘#row DIV’).addClass(‘testing’); }); Code 2: $(‘.row div’).mouseover(function(){ $(this).addClass(‘testing’); }); The hash (#) specifies to select elements by their ID’s The dot (.) specifies to select elements by their classname $(‘.row’) will select any element with class=”row” $(‘#row’) will...

Read out all

Asteroid game

I developed an Asteroid game from the python course . I did this game since two weeks .I had some difficulties while writing the codes. My team members helped me to over come errors in the program. Here’s a video on the game .I...

Read out all