OMX player is a command line player which can be controlled via Android app or over SSH.
When you are working on a project with a team, a big question is how to make them work on same environment? One solution is to make them work on same machine, but this gets messy as everyone is making changes. The other solution is to provide everyone with same …
I have already given tutorial for RaspberryPi First Installation and Boot. Let's go with advance configuration of RasPi.
Things to do after 1st boot of Raspberry Pi
CSS animations is a great tool design website in very cool fashion without any gif images and reduced page size.
~(Keep\ in\ mind\ IE8\ and\ IE9\ are\ stone\ age\ browsers\ and\ CSS3\ animation\ won't\ work\ with\ it).~
There are two basic keyword used to generate animations using
animation
and\@keyframes …
Installing and setting up Raspberry Pi is fairly easy in following steps
- Buy RasPi from Element14 / (CrazyPiin India)
- Get a SD card (>4GB) and format in FAT32 system (Windows Method / Linux Method)
- Download NOOB version of Raspberry Pi from here
- Extract and copy everything in your SD card
- Plug …
OpenStack is a cloud computing project to provide an Infrastructure as a Service(IaaS), jointly launched by RackSpace and NASA. A collection of open-source technologies combined together make it a massively scalable cloud operating system. One big quality of OpenStack is it’s simplicity, anyone can easily tie-up different hosts …
Welcome to your next tutorial on the Learn C language, here we'll have a deeper look at the use of variables in C language. In previous tutorial about variables in C, we defined a variable sam of integer type and then initialized it with …
Every time we write code with FileInputStream,
BufferReader
etc. we need to close those resource explicitly in finally block.Now from Java 7, there are two interfaces included
Closeable
andAutoCloseable
with single abstract methodclose(),
which enables implementing class to close resources aromatically after try block.Lets see how …
From Java 7 Binary type also joins the category of literal with *
byte, short, int and long
. Which means a binary value can be assigned by using 0b or 0B *prefix to a primitive type.What is a Literal : A literal is source code representation of source code. Which can …