Thursday, November 29, 2007

Best Data Access Tool

http://www.dbvis.com/products/dbvis/

Best Database Access Tool

Labels: ,

Post a Comment(0 comments)

Wednesday, November 28, 2007

New Resume Posting site for Leeway Hertz

Now job candidates can post their resume from the URL:

http://jobs.leewayhertz.com

No more receiving emails with attached resume.

Labels: ,

Post a Comment(0 comments)

Tuesday, November 27, 2007

Killed CoreFTP and started using CuteFTP

I was using coreFTP for FTP transfers and now I am sick of bugs and errors in it. I will suggest you all to start using CuteFTP instead of CoreFTP.

Although both tools are free to use for home use :)

Labels: ,

Post a Comment(0 comments)

Microsoft Photosynth



http://labs.live.com/photosynth/view.html?collection=sanmarco/index1.sxs&st=coll


The technology was recently acquired by Microsoft and is now a part of Microsoft Live Labs. Microsoft Photosynth web-site. Photosynth Technology is a new way to view photos on a computer. The software takes a large collection of photos of a place or an object, analyzes them for similarities, and then displays the photos in a reconstructed three-dimensional space, showing you how each one relates to the next.

Labels: ,

Post a Comment(0 comments)

Monday, November 26, 2007

SCal - A Simple Javascript Calendar Based on PrototypeJS

http://scal.fieldguidetoprogrammers.com/

A very light weight JavaScript Calender using prototypeJS

Labels: ,

Post a Comment(0 comments)

Office Session - Agile Methodology by Shaifali Garg




http://en.wikipedia.org/wiki/Agile_software_development

We had our friend "Shaifali Garg" today at office to present on Agile Methodology technique to the team. We learned Scrum and XP methods from the Agile Development.

It was quite interesting.

Labels: ,

Post a Comment(0 comments)

Full Screen Remote desktop

by incident if you restore the full screen view of remote desktop. you never come to full screen view.

you can try following

1. click on start

2. run

3. in run dilog box type "mstsc /v:x.x.x.x /f"

where x.x.x.x is IP you want to access

4. Click OK.


you wil be in full screen mode.
Post a Comment(1 comments)

More easier way to do this is click on connect>Option. Go to display tab and set the resolution to the full screen.

Now everytime you open RDC connection, it will be full screen

Earthquake in NEW DELHI

NEW DELHI: A minor earthquake rattled New Delhi and adjoining areas early on Monday morning, but there were no immediate reports of injuries or damage.

An official with the Indian Meteorological Department, which monitors earthquakes, said the 4.3-magnitude quake struck at about 4:43 a.m. Besides the capital, the tremor was felt in surrounding areas such as Noida (UP), Faridabad and Gurgaon (both in Haryana).

The epicentre of the tremor was at the Delhi-Haryana border at 28.6 N latitude and 77.9 E longitude.
Post a Comment(0 comments)

Saturday, November 24, 2007

Office Session - FishBone Cause and Effect diagram by Abhishek Thakur




http://en.wikipedia.org/wiki/Ishikawa_diagram

We had a very interesting session by our friend "Abhishek Thakur". Abhishek is currently working with NiiT Technologies.

Abhishek explained us FishBone diagram for cause and effect analysis. We all found it very interesting.

Labels: ,

Post a Comment(0 comments)

Customisable JavaScript Controls - ExtJS

http://extjs.com/deploy/dev/examples/message-box/msg-box.html
Post a Comment(1 comments)

Please give us a little bit more commentary on this URL. Just URL is not very helpful. - Viresh

Thursday, November 22, 2007

HTML Positiong test

if you have element positioned absolutely EVEN THEN it is positioned relatively to container


see simple test
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>

<body>
<div id="testDiv" style="border:1px solid red; position:absolute; top:200px; left:200px; width:175px; height:200px">
<img src="http://s3.amazonaws.com/Rig/2_a.jpg" style="border:1px solid blue; position:absolute; top:0px; left:0px;">
</div>
<input type=button onclick="rePlace();" value="Re-place">
</body>
<script>
function rePlace()
{
document.getElementById('testDiv').style.left="0px";
document.getElementById('testDiv').style.top="0px";
}
</script>
</html>
Post a Comment(0 comments)

Concatanation in Sql-Query

Two different fields like firstname and lastname is shown together as one field by concatenating it in sql query.

SELECT CONCAT(contacts.FirstName, ' ', contacts.LastName) AS cn FROM contacts


It makes work more easier.
Post a Comment(0 comments)

Wednesday, November 21, 2007

AJAX an intrusting problum

i have used base tag in my site

like

<base href="http://mysite.com/sumsubfolder/etc/">


while making ajax request (i am using prototype.js)

initially it does not make ajax request

i have seen internaly the state

var state = Ajax.Request.Events[readyState];

is undefined

but magically it start working after a day

no one will bleave this word magically done

but i have seen this problem four-five times

ANY comments
Post a Comment(0 comments)

Another free screen sharing tool

http://www.crossloop.com/index.html

"CrossLoop is a FREE secure screen sharing utility designed for people of all technical skill levels. CrossLoop extends the boundaries of VNC’s traditional screen sharing by enabling non-technical users to get connected from anywhere on the Internet in seconds without changing any firewall or router settings. It only takes a few minutes to setup and no signup is required."

Haven't tried yet.

Labels: ,

Post a Comment(0 comments)

CrossLoop another free desktop screen sharing tool

http://www.crossloop.com/index.html

CrossLoop is a FREE secure screen sharing utility designed for people of all technical skill levels. CrossLoop extends the boundaries of VNC’s traditional screen sharing by enabling non-technical users to get connected from anywhere on the Internet in seconds without changing any firewall or router settings. It only takes a few minutes to setup and no signup is required.

Labels: ,

Post a Comment(0 comments)

Thursday, November 15, 2007

sessions are expiring very quickly in under 2 minutes. What can we do to prevent this?


Solution This is a specific issue on Windows 2003/IIS6 servers. What happens is that any shared host creates application pools within IIS6 to host certain x number of websites. Each server may have several application pools and all websites on the server are divided among these pools. When a customer's website calls session.terminate within any application pool, all session variables are lost within that pool.

The only real solution to this issue (which is highly recommended by many developers and Microsoft themselves) is to use database session management. Here you can store all session related data in a local database.
Post a Comment(0 comments)

mySql date convertion

SELECT DATE_FORMAT(date_column, '%m %d %Y') FROM tablename



where:

%m = Month, numeric, leading zeroes
%d = Day of month, numeric, leading zeroes
%Y = Year, numeric, 4-digits


complete table is

DATE_FORMAT(date,format)

Formats the date value according to the format string.

The following specifiers may be used in the format string. The “%” character is required before format specifier characters.

Specifier Description
%a Abbreviated weekday name (Sun..Sat)
%b Abbreviated month name (Jan..Dec)
%c Month, numeric (0..12)
%D Day of the month with English suffix (0th, 1st, 2nd, 3rd, …)
%d Day of the month, numeric (00..31)
%e Day of the month, numeric (0..31)
%f Microseconds (000000..999999)
%H Hour (00..23)
%h Hour (01..12)
%I Hour (01..12)
%i Minutes, numeric (00..59)
%j Day of year (001..366)
%k Hour (0..23)
%l Hour (1..12)
%M Month name (January..December)
%m Month, numeric (00..12)
%p AM or PM
%r Time, 12-hour (hh:mm:ss followed by AM or PM)
%S Seconds (00..59)
%s Seconds (00..59)
%T Time, 24-hour (hh:mm:ss)
%U Week (00..53), where Sunday is the first day of the week
%u Week (00..53), where Monday is the first day of the week
%V Week (01..53), where Sunday is the first day of the week; used with %X
%v Week (01..53), where Monday is the first day of the week; used with %x
%W Weekday name (Sunday..Saturday)
%w Day of the week (0=Sunday..6=Saturday)
%X Year for the week where Sunday is the first day of the week, numeric, four digits; used with %V
%x Year for the week, where Monday is the first day of the week, numeric, four digits; used with %v
%Y Year, numeric, four digits
%y Year, numeric (two digits)
%% A literal “%” character
%x x, for any “x” not listed above

Ranges for the month and day specifiers begin with zero due to the fact that MySQL allows the storing of incomplete dates such as '2004-00-00'.



for other


Date and Time Functions

Post a Comment(0 comments)

Upload Sql-Server Database and Create a tables in Database


MS SQL-SERVER

  • Go in control Panel and click on above mentioned Sql-server Icon.
  • Create Login Id and Password for Database.
  • Create a Database and assign a login id .
  • Now Open Your Sql-Server,s query analyzer.
  • Assign or select Host Name or IP address in Sql-server combo box and also give your created login id and password, then click Ok Button.
  • select your database name from Dropdownlist box or type 'use '
  • Run sql script file to crates tables.


Post a Comment(0 comments)

Wednesday, November 14, 2007

How we can access Content Place Holder from Intersoft Webpane Manager

  • I created Master page in asp.net and define content place holder in Intersoft WebpaneManager.
  • I also created default.aspx page and implement master page. In default.aspx, I defined label Control in asp:content control.
  • In page load of default.aspx, I tried to assign any text to label control then it show run time Exception "object reference is not set".
  • I searched and find that intersoft webpane Manager limited the scope of content place holder because content placeholder can be accessed easily if It is defined outside of WebpaneManager.
So how we can access the content place holder in Webpane Manager


Any one help me
Post a Comment(0 comments)

Many sites, one API

"OpenSocial is currently being developed by Google in conjunction with members of the web community. The ultimate goal is for any social website to be able to implement the APIs and host 3rd party social applications. There are many websites implementing OpenSocial, including Engage.com, Friendster, hi5, Hyves, imeem, LinkedIn, MySpace, Ning, Oracle, orkut, Plaxo, Salesforce.com, Six Apart, Tianji, Viadeo, and XING."


http://code.google.com/apis/opensocial/

Labels: ,

Post a Comment(0 comments)

Tuesday, November 13, 2007

Show Error of asp.net Application

View asp.net application Error:
  • Set the custom errors mode="Off" to view the asp.net application error .





Post a Comment(0 comments)

Friday, November 9, 2007

MSN messenger Web Service

I didn't knew about this before
http://webmessenger.msn.com/
Post a Comment(0 comments)

Thursday, November 8, 2007

Tag Clouds Gallery: Examples And Good Practices

Must read. A nice collection of most of the popular UI for Tag Clouds

http://www.smashingmagazine.com/2007/11/07/tag-clouds-gallery-examples-and-good-practices/
Post a Comment(0 comments)

Wednesday, November 7, 2007

Email fun

Today I have learned to send mail to anyone from anyone.

It is possible in PHP .
It may be in other language also i don't know.

I have experienced this first time that's why i m exiciting.

This is possible by under the guidance of Hardeep Sir.
Thank you.
Post a Comment(0 comments)

NOW THATS POWER OF JAVASCRIPT

a great link


http://extjs.com/


just every thing we need see grid

http://extjs.com/deploy/dev/examples/grid/edit-grid.html
sorting, resizing, adding, editing, dragging, customizing, all key board events all at client side

what else do we need it is of perfact ui, and editing is autocomplete

see tree view

I AM LOVING IT



WORLD'S BEST GRID
Post a Comment(0 comments)

Tuesday, November 6, 2007

DHTML Suite for Application

A nice collection of open source JavaScript libraries.

Browse through various demo by clicking on demos in the menu bar on the top-left

http://www.dhtmlgoodies.com/packages/dhtml-suite-for-applications/demos/demo-pane-splitter.html
Post a Comment(0 comments)

CodePlex

http://www.codeplex.com/AtlasControlToolkit


"The AJAX Control Toolkit is a joint project between the community and Microsoft. Built upon the ASP.NET 2.0 AJAX Extensions, the Toolkit aims to be the biggest and best collection of web-client components available."
Post a Comment(0 comments)

Cron jobs in DirectAdmin

Command to create cron job in DirectAdmin

/usr/local/bin/php /home/leewaynet/domains/leewayhertz.net/public_html/backupScript/index.php

Labels:

Post a Comment(1 comments)

for host monster it is

/usr/bin/php /home/leewebtw/public_html/backupScript/resume.php

Monday, November 5, 2007

API Resources

APIs news, how-to, contests and comprehensive database of API resources.

http://www.programmableweb.com/apis

Labels: , ,

Post a Comment(0 comments)

Photos of 37signals HQ





Labels: ,

Post a Comment(0 comments)

Sunday, November 4, 2007

Vakow

Vakow! is a community of ppl who luv SMS Forwards. It's a place to:

1. Build ur SMS collection
2. Rate the SMSes you like
3. Forward SMSes to ur friends
4. Search and Subscribe to find new
SMSes


http://www.vakow.com/

Labels: ,

Post a Comment(0 comments)

Saturday, November 3, 2007

Don't even think about it, just buy it!



"The Eye-Fi Card is a wireless memory card. It automatically uploads pictures from your digital camera to your PC or Mac and to your favorite photo sharing, printing, blogging or social networking site.

No cables, no waiting, no hassles."

Labels: ,

Post a Comment(0 comments)

Online Gadgets Store for INDIA

http://gadgets.in

A gadget portal that I was always searching for. My search ends here.

Labels: ,

Post a Comment(0 comments)

Godtube Competes YouTube



GodTube

Labels:

Post a Comment(0 comments)

A Wireless Revolution in India

"With young people and others using their phones for texting, e-mail, and Web surfing, it's an increasingly wireless way of life on the Subcontinent"



http://www.businessweek.com/technology/content/oct2007/tc20071026_981629.htm?campaign_id=rss_tech

Post a Comment(0 comments)

Asp.net Themes

ASP.NET 2.0 makes dynamic themes really easy. Asp.net themes enables the user to change the colors,layout of the page dynamically. Following are steps which give help to create asp.net themes.

1: create the app_themes which contain themes folder like black and white. these folder have different style sheet class.

2: create theme manager class which contain getTheme method to get themes from app_theme folder.

3: you can create a home page where you can bind themes with dropdownlist or radio button list the give user a interface where user can change themes.

4: create a base class in which we will specifies a default themes for a web page.

5. Inherit the base class in all web page of your project in which you want to implement these themes.
following are link that give source code of asp.net themes.
http://www.codeproject.com/useritems/dynamicThemes.asp



Post a Comment(0 comments)

Your Baby's Memories, In Real Time



http://littlegrams.com/

I guess another area of Web 2.0 Applications which is still unexplored. But nice color scheme by the way.

Labels: , ,

Post a Comment(0 comments)

Friday, November 2, 2007

Round Shaded Borders

On 31st Oct., I have a task to make round shaded borders on Add new task and edit task dialog box. It's an easy task but i can't understand that how it is implemented. 4-5 hours i spend in searching and experimenting how it is possible but i don't get any solution then Akash sir helped me and hardeep sir also give suggestion that how it is implemented. At 9 pm we get the solution how it is made. Then next day on 1st Nov. I started implementing as we get the solution to make table containing that dialog box. For making round shaded borders i used Highslide images. It is available in internet. After making tables and implementing images at proper cell then also i have faced a problem that 3 sides are coming with absolutely fine borders but bottom side border is not displaying. then hardeep sir helped me out that we have put some spaces in table cell. After that problem is solved. My Add New Task Dialog Box is ready with Round Shaded Borders. Then I go for Edit task dialog box. Then also it is not easy task for me to make as soon as possible , it was also time consuming because there also i don't get 2 side borders then i m started experimenting and after long time i get success with my efforts. Finally I have completed that task.
Thanks both of you Akash Sir and Hardeep Sir for your kind support.
Post a Comment(1 comments)

Good Job Manoj

apache password protecting directory

What do you need

1. File having password

you can create password file manually with constants like

username1:encryptedpassword1
username2:encryptedpassword2
username3:encryptedpassword3

The password encryption is the same as you'll find in PHP's crypt() function.

or you can use sites like
http://home.flash.net/cgi-bin/pw.pl
or
http://www.htaccesstools.com/htpasswd-generator/

Eighter you can go with command
htpasswd -c passwordFile user_name

(where user_name is a name of user you want to create and
passwordFile is file name taha will generate)

The system will ask you to enter the password for this user. It will then ask you a second time to confirm your typing.
Continue to add new users, but with this version of the command. The -c option is only for the initial creation of the file.

htpasswd passwordFile new_name

YOU HAVE COMPLETE 1st Requirement

NOW you have two ways to apply that passwords

using .htaccess file OR using httpd.conf file

using .htaccess

Create a file called .htaccess (lower case letters of course- with the leading period) that looks just like this in the folder you want to protect:
AuthUserFile passwordFilePath
AuthName "The Secret Page"
AuthType Basic


require valid-user



using httpd.conf

edit it with contents


AuthType Basic
AuthName "admin"
AuthUserFile "passwordFilePath "
require valid-user


now simply restart the apache service

service httpd stop
service httpd start

ONE IMPORTANT THING "DON'T FORGET TO RESTART BROWSER TOO"
Post a Comment(2 comments)

Were you able to make the EC2 password protected?
you can see working example at

http://ec2-67-202-14-198.z-1.compute-1.amazonaws.com/ls

Thursday, November 1, 2007

Google Docs Goes Mobile




Google Docs users now have a great reason to rejoice. Google Docs is now available in a mobile friendly format at http://docs.google.com/m. They’ve stripped down Google Docs and managed to fit everything they could, so that it can tidily appear in our cell phone display.

Labels: ,

Post a Comment(0 comments)

Intersoft Grid Code Samples

Great location to see how to do anything using Intersoft Grid
http://support.intersoftpt.com/docs/webgrid/5.0.7200/Walkthrough%20Topics.html

Labels:

Post a Comment(0 comments)