June 8th, 2009
b4umovies
b4umusic
stargold
indusvision
starutsav
zoom
ibnenglish
zeecinema
zeeguj
zeepunjab
zeemarathi
zeebangla
zeetelegu
arydigital
geo
geonews
suntv
starvijay
rajtv
ddnews
starnews
ndtv
yomusic
ibnhindi
pakistantv
cnbc
aawaz
nepal
Posted in
Watch Movies |
No Comments »
June 8th, 2009
Cricket: The Bob Woolmer Way - batting:
http://www.youtube.com/view_play_list?p=E958645E94AF7C61
Cricket: The Bob Woolmer Way - bowling
http://www.youtube.com/view_play_list?p=85AEEA53E4A32E8E
Cricket: The Bob Woolmer Way - Fielding
http://www.youtube.com/view_play_list?p=A2EC67CF327C7424
Posted in
Sports |
1 Comment »
March 26th, 2009
select a text on any web page and then type below in the address bar and hit enter:
javascript:var d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),f=’http://127.0.0.1/blog/wp-admin/press-this.php’,l=d.location,e=encodeURIComponent,g=f+’?u=’+e(l.href)+’&t=’+e(d.title)+’&s=’+e(s)+’&v=2′;function a(){if(!w.open(g,’t’,’toolbar=0,resizable=0,scrollbars=1,status=1,width=720,height=570′)){l.href=g;}}a();void(0);
or drag and drop below link to your browser’s favourite links:
Press This
Posted in
Tech-Crunch |
1 Comment »
March 13th, 2009
There is a site http://www.FreeQuestionBank.com. That provides valuable information which may assist potential students, and gives students a powerful educational decision-making resources. They do frequently post articles and question papers on this site which may be useful to all.
The site is powered by it users. Users can join and start giving their opinion about the […]
Posted in
Educational |
No Comments »
February 23rd, 2009
Delbi-6 is a Hindi language Indian film by Rakeysh Omprakash Mehra; starring Abhishek Bachchan, Sonam Kapoor, Om Puri, Waheeda Rahman, Rishi Kapoor, Atul Kulkarni, and Divya Dutta.[1] The movie is reportedly based on Mehra’s growing up years in Chandni Chowk area of Old Delhi.[2] It is Mehra’s third movie after Aks and Rang De Basanti.
watch […]
Posted in
Bollywood, Movies |
No Comments »
February 2nd, 2009
Introduction: Microsoft has put quite a lot of memory leak detection helpers in Windows NT. They have not done a good job of advertising it. This post describes some of the things I’ve deciphered while debugging code.
Funny Memory Values: Many times while debugging programs, I will come across memory that is filled with “funny” values. […]
Posted in
Microsoft-Tech, Tech-Crunch |
No Comments »
January 23rd, 2009
Connecting to ODBC
There is an excellent tutorial on using PHP’s ODBC extension at ASPToday, a popular ASP web site. An example taken from the above article:
<?
# connect to a DSN “mydb” with a user and password “marin”
$connect = odbc_connect(”mydb”, “marin”, “marin”);
# query the users table for name and surname
$query = “SELECT name, surname FROM […]
Posted in
Tech-Crunch |
No Comments »
January 23rd, 2009
http://www.adobe.com/devnet/flex/quickstart/validating_data/
Posted in
Tech-Crunch |
No Comments »
January 23rd, 2009
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute”>
<mx:HTTPService id=”srv” url=”http://www.rudysportfolio.com/flexTest/mail.php” method=”POST”>
<mx:request>
<user>{user.text}</user>
<email>{email.text}</email>
<message>{message.text}</message>
</mx:request>
</mx:HTTPService>
<mx:Form>
<mx:FormItem label=”Name”>
<mx:TextInput id=”user”/>
</mx:FormItem>
<mx:FormItem label=”Email”>
<mx:TextInput id=”email”/>
</mx:FormItem>
<mx:FormItem label=”Message”>
<mx:TextArea width=”211″ height=”117″ id=”message” />
</mx:FormItem>
<mx:FormItem>
<mx:Button label=”Submit” click=”srv.send()”/>
</mx:FormItem>
</mx:Form>
</mx:Application>
and my php file:
<?php
$address = “rugu87@hotmail.com”;
$subject = “subject line tester”;
$body = $_POST[’user’] . ” had this to say:\n” […]
Posted in
Tech-Crunch |
No Comments »
January 23rd, 2009
The following example adds a web service to process form input data. In this example, the user enters a ZIP code, and then selects the Submit button. After performing any data validation, the submit event listener calls the web service to obtain the city name, current temperature, and forecast for the ZIP code.
<?xml version=”1.0″?>
<!– containers\layouts\FormDataSubmitServer.mxml […]
Posted in
Tech-Crunch |
No Comments »