Meet Majel – The Voice Assistant

13

Majel 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?

8

This 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!

php

Javascript Date Validation

3

If 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

More >

facebook

How To Style An Application Like Facebook?

4

After 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 >

android

Working with Layouts : Linear Layouts

3

Android 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

Bing Api Documentation (Simplified)

18

Follow 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 >

Bing

Creating Your Own Search Engine with Bing Api

34

Ever dreamt of creating your own search engine your own way without much of a coding? Now it is possible to create it. If you are very very lazy, consider this post or else if you are not that lazy keep reading below.

Using the Bing Api

Bing Api is the more preferred Application Programming Interface(API) because it does not have any limitations. Get a bing api id here.We use this Bing Id to get results directly from More >

google

Google Gravity

12

Well 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 >

google

HiMetaSE : Open Source Meta Search Engine

11

Ever wanted to create your own search engine? Well you are not exactly going to do that but after you download this you can atleast create a meta search engine.

Basic difference between a meta search engine and a search engine is that a meta search engine uses api of a search engine to deliver its results rather than actually searching the web for it. Accuracy depends on the accuracy of the parent search engine. In this script, I have used Youtube and Bing Api. More >

Go to Top