Skip to main content

My Facebook Page on Firefox OS Simulator

Coming across with Firefox OS Simulator, I installed Firefox OS Simulator from the roster of Firefox add-ons. Just click Add to Firefox button on https://addons.mozilla.org/en-US/firefox/addon/firefox-os-simulator/. Firefox will install the Simulator without restarting Firefox browser.

After installation, dashboard will open on separate window. I tried running the simulator by clicking Stopped/Running button on the left of the window; it will open a small size-window, the simulator. I tried browsing my Facebook account by clicking browser button on the taskbar (globe icon); I entered m.facebook.com in URL address and did login. That's it!




Comments

Popular posts from this blog

Guestbook in PHP and MySQL

Introduction I'm going to create an example of guestbook system using in PHP and MySQL. On the Web, guestbook is a logging system that lets visitor post their message. A visitor can post their thoughts or expressions. In general, it's not a requirement that a visitor create an account.

Phonebook Application with PHP and MySQL CRUD Operation

Definition It is a simple Web-based phonebook application which stores and displays ID, Name, Contact No, and Address of a person. It is also capable of updating/editing and deleting phonebook entries. Database CREATE TABLE `phonebook` (     `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,     `name` VARCHAR(50) NOT NULL,     `phone_no` VARCHAR(15) NOT NULL,     `address` VARCHAR(50) NOT NULL,     `date_created DATETIME` NOT NULL DEFAULT ‘0000-00-00 00:00:00’,     PRIMARY KEY(`id`) );

CRUD in Spring Boot with Spring Data JPA

T utorial about CRUD operations in Spring Boot with Spring Data JPA. Application developed in this tutorial performs adding, editing, updating and deleting contacts. Continue reading here .