Meet Majel – The Voice Assistant
13Majel is a new android voice assistant created by me.
With Majel, you can talk to your droid phone. Your phone is now your assistant.
# Leave a review please # May not work with some HTC phones #
Majel is a command voice assistant. You can speak to it with your voice or type with the keyboard and it will search for your command and get it done for you.
## Update 1.1 released. It is a major improvement. ##
Majel also speaks back to you. We More >
How to create a facebook clone?
8This is a collection of tutorials over many sites.
1. Design it like Facebook Tutorial and this one
2. Like System Tutorial
3. Instant Search Tutorial
4. Ajax delete Tutorial
5. URL finding and converting tutorial and fetching link details tutorial
6. Ajax page refresh tutorial
7. Birthday validation tutorial
8. Secure login/registration system tutorial
9.Facebook Timeline tutorial
More coming soon!
Javascript Date Validation
3If you run your own membership script, many a times when you check through user birthdays on database you see that they are not stored or they are invalid.
The reason to this is simple. It is because the date is not valid. But how do we check that? Well there is a method to check that in javascript before submitting the form. This is a part of form validation!
index.html
<html>
<head>
<script>
function check()
{
var day=document.s.day.value;
var month=document.s.month.value;
var year=document.s.year.value;
if(checks(month+'/'+day+'/'+year))
return true;
else
{
alert("ERROR");
return
Creating A Login And Registration System
18Almost every website we go through has a login and registration system. This tutorial is made just to help you create a login and registration system for your site.
Before we begin, we need to create a database where we can save user info.
Database Section
CREATE TABLE `users` ( `id` INT(25) NOT NULL AUTO_INCREMENT PRIMARY KEY , `password` VARCHAR(255) NOT NULL , `email` VARCHAR(255) NOT NULL );
This is required to store user info. You can also make this easily through PHPMYADMIN.
config.php
This file is made to store database information and to start session.
<?php session_start(); $_SESSION['id']; $host="";//database host $database="";//database name
How To Style An Application Like Facebook?
4After reading this post, you must have made an attempt to create an application in facebook. If you sincerely have, then I must say that you have made a good job as creating apps on facebook is quite good. If you have not, do not lose heart and start today.
In this post, I am going to teach you how to style an application like Facebook. This is very important for app developers as it gives users a feel of facebook More >
Working with Layouts : Linear Layouts
3Android Mobile Application can have siz different layouts:
1. Linear Layout 2. Relative Layout 3. Table Layout 4. Grid View 5. Tab Layout 6. List View
In this post, i am going to talk about the Linear layout view.
In a linear layout all the elements are displayed in a linear fashion, either Horizontally or Vertically and this behavior is set in android:orientation which is an attribute of the node LinearLayout.
Example of Vertical layout snippet
<LinearLayout android:orientation="vertical"> </LinearLayout>
In a similar way, example More >
Bing Api Documentation (Simplified)
18Follow these steps to use Bing Api :
1. Bing Api Code : Get a bing api code here so that you can use this to access bing results.
2. Create your own search form: Follow this post.
Understanding the Api:
This mainly involves how you frame up the url to get the results.
1. Choose file type : Choose any 1 from xml, json and soap. Personally i prefer json as it integrated easily with php but it More >
Google Gravity
12Well you may have heard about the google gravity created by mrdoob . Inspired by that, I have tried to create something similar to that. It is also a google gravity based on an open source gravityscript(find it here) which allows you to add gravity to elements on a webpage. It is based on box2d, a leading physics game engine.
How to begin using gravityscript?
You can start using gravityscript in any site. The script within includes jquery as well as box2d coding and is just ready to use. Just add More >