Subscribe:

Featured Posts

Wednesday 30 October 2013

HTML School Article: How to create Frames in HTML.

HTML frames are the nice way to divide the browser screen into several frames and display the content. It allow authors to present documents in multiple views, which may be independent windows or subwindows. This was the feature of HTML 4.01, although frames are not supported in HTML 5.

Frameset Rows and columns
Rows attribute create frames in horizontal and Cols create frames in vetical. Both attributes may be set simultaneously to create a grid.
If the rows attribute is not set, each column extends the entire length of the page. If the cols attribute is not set, each row extends the entire width of the page. If neither attribute is set, the frame takes up exactly the size of the page.

So, Now we will creating a webpage with 2 vertical and one horizontal frame. I am writing my own example how i created the files and added in frameset. You can do this in your own way too, but take care of references well.

1. Create a new Folder in desktop, In this folder we will be saving all our webpages together.

2. Now we will be creating 3 different html files which we want to add in different frames, namely head.html,list.html main.html(add any content you want to add) . these 3 files will be the frame src which will display these as a content in different frames.

 3.Create a new html file, name it(in mycase i named it indexa.html) and add the following code to it:

<html>
<head>
<title>Frameset Page</title>
</head>
<frameset>
<frameset rows="20%,100%">
<frame src="head.html">

<frameset cols="50%,50%">
<frame src="list.html" name="left">
<frame src="main.html" name="right">
</frameset>
</html>

Note: frameset mark the starting of frameset.
frame src attribute specifies the URL of the document which we want to show in a frame.
In this I have added one row , and 2 columns dividing 50% both. You can see it in screnshot.


As you can see, The top row content is derived from head.html file, and the content of 2 rows is derived from list.html and main.html. 

4.Thats all!! I hope, Now you will be able to create a frameset in HTML.

Thursday 29 August 2013

IRCTC entered into E-shopping race, Launched its online shopping site.

IRCTC, The Indian railways ticketing,tourism and catering service is now entered into the race of e-commerce and online shopping websites. IRCTC has launched their new e-commerce and online shopping site live at http://www.shop.irctc.co.in.
This site is powered and faciliated by e-commerce company Yebhi,who had won the deal from the Indian Railway Catering and Tourism Corporation (IRCTC), to provide a white labeled solution to enable e-commerce on their site.

The site features all the items Fashion accessories,Clothes,Footwear, Mobiles & Electronic items, and Kitchen accesories.This will provide Indian customers with a shopping destination to purchase products from TopBrands. The site also offers cash on delivery option with free shipping to buyers like all other e-commerce and online shopping websites. The IRCTC has also partnered with Top logistics companies like Bluedart,FedEx,DTDC,First Flight to offer quick and safe delivery to customers at their doorsteps.

 While Internet penetration is low, the growing popularity of smartphones and tablet computers is allowing more and more Indians to access the web, which is fueling growth in e-commerce. Since, there is already many trusted e-commerce and shopping websites the IRCTC online shopping portal has to compete tough with its rivals like Flipkart,Amazon etc. We wish all the best to IRCTC online shopping portal, hope they will get huge success.

Monday 22 July 2013

Enjoy Android app's on Windows Platform- Bluestacks App Player.

"There is a nice way, you can take full advantage of android on your windows machine!! Wanna Know How?? Just Follow this great post on How to run android apps on Windows"
These days, everybody is crazy about android devices so i have found a way to run your cool fantastic favourite android apps on windows machine. To run android apps on windows, there is a "App Player" called Bluestacks, so just follow to know about it.

Bluestacks - The Best App Player, as rated by me.
It is a nice app player, which let's you download and run android apps. You can enjoy almost all apps of android in this software. This software gives you a nice platform to run apps, but requires some high graphics support(Minimum 1 GB Graphic Card).
You can download apps like Angry Birds Space, Temple Run, Evernote or Documents to Go directly into BlueStacks, or sync the apps from your phone using the BlueStacks Cloud Connect app.

The functionality of this app is very simple, you just needs to search for apps you want in the software, and it will be downloaded for you.

DOWNLOAD BLUESTACKS




Thursday 25 April 2013

A Introduction to creating databases in SQL Command Line.

SQL(Structured Query Language) is a query language used for accessing, modifying and Adding new information in a database. 

 In this article, you will learn about how you can create a new database in MySQL command line and how you can fill the data in those database. There is step by step procedure for you so that you can easily learn the basics of creating a new database in SQL.

Note: use semicolon to seperate two commands or end a command. after writing a command press enter to perform a function.

STEP 1: Open MY SQL Command Line.

















STEP 2: Create a new database by typing 
CREATE DATABASE yourdatabasename; and press enter. I have used name mynew database in my case.
You can try any other name or maybe this same name too.
You can see Query OK, 1 row affected. It means that you have succesfully create a new database.
Next, we will use this database to add data into our database.

STEP3: Using this database by typing the command:
USE mynewdatabase;

STEP4: Now we will insert table in our database. I have created table name Books.
CREATE TABLE Books
(
Id int,
BookName varchar(255),
Price varchar(255),
code int
)
The Table is sucessfully created and after that we will add data to the newly created table named Books.

STEP 5: To add data we will use following command to add 3 rows in the table:
INSERT INTO Books
(
Id
,BookName
,Price
,code
)
VALUES
('1', 'a love', '255', '1013')
,('2', 'loss life', '260', '2035')
,('3', 'wonder flight', '283','5044');

In the Values we have defined all 3 rows, and we can preview our table by using:
SELECT* FROM Books ;

Here, we will use SELECT command to select all (*) data from our table and retrieve it.
Now you can see  a preview of table sourrounded by dotted boundary box.

I hope you understood this tutorial very nicely and will enjoy doing MySQL. I will be soon back with the new tutorial.

Thanks.






Friday 15 February 2013

Generate Fake IPhone Conversations

The Iphone conversations are all time favorite and gives rich experience for messaging, but you can do it for fun also. There are many services by which you can create funny I Phone conversations and can use to prank  your friends and surprise them too. In this article I will guide you by an example that how you can create a fake conversation and post the screenshots in social networking sites like facebook, twitter etc. to surprise your friends.

There are sites- IPhone Text Generator and 9GAG where you can generate funny conversations. So lets take an example of conversation generated using IPhoneTextGenerator:
1. goto I Phone Text Generator.
2. Enter Carrier name, Time, and enter 4 messages that you sent and received.
3. Click on Generate button to generate conversation and if you want to add more messages click message button.
4. Now you will be redirected to a page, from there you can download your conversation screenshot.


I hope you enjoyed this article, and for you will be bringing more articles from technology and mobiles.



Tuesday 12 February 2013

Introduction: Developing for Tizen OS

"Tizen OS is a new open source operating system for devices including smartphones, tablets, in-vehicle infotainment (IVI) devices, and smart TVs"

Hello!! I am back with the new article on the brand new Operating System Tizen for mobile devices and smartphones, Just before some days samsung has reported that they will be announcing Tizen based phones on this Valentines Day. Everyone is excited about the Tizen, while some developers are ready with their apps.

Now, I will guide you step by step in making Hello Tizen app.

A. Setting Up Development Environment:
1. Download SDK with emulator and IDE from Tizen website and Install on machine.

B. Developing Your First "Hello Tizen" App.
1. Launch the Tizen IDE.
2. Create a new project by selecting File > Tizen Web Project > Template > Tizen > Basic > Blank Application.
While creating the project, you can select templates or samples supported by the Tizen IDE. In this example, the Tizen basic template is selected.
3. Enter the project name as "Hello Tizen" and click Finish.

4. The Project Consists of various generated file such as CSS folder, Js folder, config.xml, icon.png and index.html files as you can see in Project Explorer. The Index.html will be the main html page of your app.

5. Now you will get the HTML coded sample in index.html, clear all data and just keep Header as Hello Tizen and subtitle "An tutorial of Hello Tizen". We will also add image in html.
6. Building & Packaging App: In the Project Explorer, just select project and Press Ctrl + b or right-click the project and select Build Project.

7. Running App:
To Run app in a Web Application Simulator: In the project explorer, right click on project name and select Run as> Web Simulator application.
To Run app as Web Application in a Tizen emulator: 
1.In the Tizen IDE menu, select Window > Show View > Connection Explorer > Emulator Manager.

2.Create and launch an Emulator. An Emulator is created as a virtual machine.
4.In the Project Explorer view, right-click the project and select Run > Run As > Tizen Web Application.




Application Running on Tizen Emulator


8.Your "Hello Tizen" app is now Ready.

I hope, You have liked this article on starting the development of applications for Tizen. I will be soon posting new tutorials soon.


Saturday 29 December 2012

What is NFC and what NFC tags do??- Explained

NFC stands for Near Field Communication, It is a new technology or standards for smartphones to establish radio communication for sharing the data by touching them together or bringing them into close proximity,usually no more than a few centimeters.

NFC as you heard is a very nice technology for sharing the data very easily between two NFC compatible and enabled devices. Like Bluetooth and WiFi, it's a wireless radio communications standard. It is a new fed in smartphones for easy and quick data sharing. Using NFC (Near Field Communication), you can transfer information between your phone and other NFC devices, such as phones, NFC tags or payment devices. For example, you can share web addresses, contacts, phone numbers, music tracks, videos or photos. NFC is RFID(Radio Frequency Identification) based technology.

Now lets talk about NFC tags, what are NFC tags?
NFC (near field communication) is a wireless technology which allows for the transfer of data such as text or numbers between two NFC enabled devices. NFC tags, for example stickers or wristbands, contain small microchips with little aerials which can store a small amount of information for transfer to another NFC device, such as a mobile phone.
There are Different tags comes with different data types to store, and comes in different sizes too, You can store variety of data and information in tags. Usually, this information is stored in a specific data format (NDEF - NFC data exchange format) so that it can be reliably read by most devices and mobile phones.
Now, talking about the power of NFC tags. The NFC tags do not use any batteries of their own, They get their power from just being near a powered NFC device, for example a mobile phone. They use magnetic induction.

Types of NFC tags
There are four types of different tags, all are having different transfer speeds and different capacities.

  1. Type 1- This tag type is read and re-write capable. The memory of the tags can be write protected. Memory size can be between 96 bytes and 2 Kbytes. Communication Speed with the tag is 106 kbit/sec.
  2. Type 2- This tag type is read and re-write capable. The memory of the tags can be write protected. Memory size can be between 48 bytes and 2 Kbytes. Communication Speed with the tag is 106 kbit/sec.
  3. Type 3- This tag type is pre-configured at manufacture to be either read and re-writable, or read-only. Memory size can be up to 1 Mbyte. Communication Speed with the tag is 212 kbit/sec. 
  4. Type 4- This tag type is pre-configured at manufacture to be either read and re-writable, or read-only. Memory size can be up to 32 KBytes; For the communication with tags APDUs according to ISO 7816-4 can be used. Communication speed with the tag is 106 kbit/sec. 

You can also buy a NFC tag and can write customized data to them. Type 1 and Type 2 tags can be written to multiple times. These tags can also be permanently locked, or encrypted, so that no one can manipulate the data. Type 3 and Type 4 tags can only be written to once, like a CD or a DVD, and they lack the security of types 1 and 2. They differ in physical sizes too.

It is not too popular in India, but soon as the time changes, technology always emerges. So, we will soon be having the all NFC equipped railway stations, advertisements, airports etc. to make the life of people easier. By NFC you not need to wait in long ques to pay in Shopping retails and megastores like Bigbazaar, shopper stops etc .