< Browse > Home / Archive by category 'Uncategorized'

| Mobile | RSS

sandeep.chada

Top 10 things that annoy programmers

Hi,
I was going through some websites today when I came across this article and wanted to share it with all of you.
Its really funny, but mostly true. Read ON….
Programmers all have their pet peeves. Whether it’s scope creep, Hungarian notation, or smelly coworkers, we’ve come to accept that there are certain nuisances that come [...]

[ More ] May 27th, 2010 | No Comments | Posted in Uncategorized, Web development |
sharief shaik

Creating a Macro in Microsoft Excel

To create a Custom Macro in Microsoft excel just follow the below steps:
1. Go to tools -> Macro -> Record New Macro : A pop up will display. Just enter the macro name and assign a short cut key to it. Select “Personal Macro Workbook” in “Store macro in” checkbox.
2. Next do all the stuff [...]

[ More ] January 11th, 2010 | No Comments | Posted in Uncategorized |
kalyan.kadiyala

Run a *.bat file as a service

Here are the steps to run a batch file automatically on a computer everytime it boots without displaying the console window:

Open two empty notepad files and rename them as *.bat and *.vbs

where * stands for user-defined file names.

Edit the *.bat file and copy the following line into it:

wscript.exe “C:\~path of the folder in which batch [...]

[ More ] August 10th, 2009 | No Comments | Posted in Uncategorized |
dhavalesh.potnuru

Ubuntu loading problem: File system check failed due to improper shutdown

Due to improper shutdown file system check has failed while loading ubuntu
In order to solve the error you need to correct the file system manually. So the ubuntu will ask you correct the file system manually. To do the same follow the below steps
1. If you dont know the root credentials
Press ctrl + alt + [...]

[ More ] July 21st, 2009 | 1 Comment | Posted in Uncategorized |
bhagat.illalova@scubetech.in

Locking records and Dead lock detection and solution in Mysql

Locking: Locking is the mechanism which locks the tables, records, and pages based upon the requirement.
we have different types of locks are there in MySql.

Read/Write Locks.
Table Locks.
Page Locks.
Record Locks.

Let us have example on the single record lock by using select for update statement.
suppose we are using
select item_id from the item_table where item_id=’100′ for update.
This 100 [...]

[ More ] July 16th, 2009 | 1 Comment | Posted in Mysql, Uncategorized |
lalitha.chekuri

Vlookup in excel

Problem scenario: We had an excel sheet that had some records of product items categorised with product code. In another sheet we had product category list identified by product code. We had to map the product items with corresponding product category name.
Solution: VLOOKUP
The Excel VLOOKUP function is used to look for specified data in the [...]

[ More ] July 6th, 2009 | 1 Comment | Posted in Uncategorized |
emailtoid.net/i/6214bbed/

JQuery MultiSelect Problem

Hi,
We have implemented JQuery Multi select element using Ajax call. But while loading the element in to page, page is flickering. This problem is only with FireFox.
Is any body know the solution.
Please find the Jquery multi select link http://abeautifulsite.net/notebook_files/62/demo/jquery.multiSelect.html
We have implement control number 7.

[ More ] July 4th, 2009 | No Comments | Posted in Uncategorized |
dhavalesh.potnuru

Removing .svn entries from a directory [infinite depth] linux

Open the terminal and go the path then try the following
find ./ -name .svn | xargs rm -rf or find ./ -L -name .svn | xargs rm -rf

[ More ] July 3rd, 2009 | No Comments | Posted in Uncategorized |
dhavalesh.potnuru

SVN server. Could not connect to host, PROPFIND request failed [SOLVED]

Hello
I have installed and configured Visual SVN Server on windows server 2003. I am able to connect send a PROPFIND request to my server with my LAN but from out side of my LAN i cant send the request.Getting an Error: Could connect to server.
My initial port of the svn server is 8443 [not working]
I [...]

[ More ] July 3rd, 2009 | No Comments | Posted in Uncategorized |
kiran.tangudu@scubetech.in

PHP Array Pagination

Hi Folks,
This blok will help u in applying pagination on array data without much efforts, all u just needed to add a php array pagination  class and use the below sample snipet of code :
<?php
// Include the pagination class
require_once (”php-array-pagination/php_pagination.class.php”);
// Create the pagination object
$pagination = new pagination;
// some example data
foreach (range(1, 100) as $value) {
$products[] [...]

[ More ] June 12th, 2009 | No Comments | Posted in Uncategorized |
  • Page 1 of 2
  • 1
  • 2
  • >