Monday, November 15, 2010

Bindhas.....


Bindhas....., originally uploaded by Vyankatesh Mujumdar.

Walking like Bindhas...

Friday, October 22, 2010

Twist


Twist, originally uploaded by Vyankatesh Mujumdar.

Macro is always my favourite subject . Simple objects in our day to day life can give us nice effects.

Thursday, October 21, 2010

Mister Lonely


Tree Silhoutte, originally uploaded by Vyankatesh Mujumdar.

Mr lonly from Mahur Gadh. Lovely effect of light against the object.

I Love Spider


Spider, originally uploaded by Vyankatesh Mujumdar.

Spider photography is one of my favourite subject. In melghat we will get lot of species of spiders. This is one of them ;).

Wednesday, October 20, 2010

Children Plan :D


Silhotte, originally uploaded by Vyankatesh Mujumdar.

I love silhouette photography. It shows your composition skill. In this shot my friend was playing with his kid and there was sunset behind them.

Tuesday, October 19, 2010

Water drops


Water drops, originally uploaded by Vyankatesh Mujumdar.

This is one of my favourite shot from my older Nikon F2 with 50mm F1.4 superfast lens.

Compose and capture ;)


Flowers, originally uploaded by Vyankatesh Mujumdar.
       I was watching some other flower from my tele lens and saw this beautiful flowers in my frame. I quickly captured that frame in my camera as well as in my memories :)

Sunday, October 17, 2010

The King


The King, originally uploaded by Vyankatesh Mujumdar.
I got this nice pose in Karmazari, Pench national park, MP.
Actually I never thought about sighting a tiger in that trip. Me and my friends were there just for fun and get2gether.
In a morning tiger safari,  we had a nice small meeting with this cub :P (only 10 month old).

Friday, October 15, 2010

Powerful element in photographic composition

Lines


When we look at a photograph our eyes look for “Lines”. Proper composition of lines in a photograph draws our attention to the subject. Lines increase the importance of our object. Following two images show us how the lines add powerful impact to the photograph and change the view dynamically.


 In image 1, waves coming from a distance are creating a gap between the couple and lines which distract our eyes from the main subject.
image1

                                            


In Image 2, waves coming along the path draw our attention to the couple making us feel that they are together in a journey of life.

image2


There are many different types of line - straight, diagonal, curvy, zigzag, radial etc - and each can be used to enhance photographic composition. Taking many shots of same subject with different composition of lines will help to analyze the impact.



Monday, August 30, 2010

पाऊस असा रुणझूणता by संदीप खरे ek sundar kavita

पाऊस असा रुणझूणता


पैंजणे सखीची स्मरली

पाऊस भिजत जाताना

चाहूल विरत गेलेली ...



ओले त्याने दरवळले अस्वस्थ फुलांचे घोस

ओलांडून आला गंध , निस्तब्ध मनाची वेस

पाऊस असा रुणझूणता

[ पाउस सोहला झाला , पाउस सोहला झाला कोसळत्या आठवणीचा

कधी उधाणता अन केव्हा संथ थेम्बंच्या संथ लयीचा ]

..

नभ नको नको म्हणताना

पाउस कशाने आला

गात्रातून स्वच्छंदी अन

अंतरात घुसमटलेला..

पाऊस असा रुणझूणता

पैंजणे सखीची स्मरली

पाऊस भिजत जाताना

चाहूल विरत गेलेली..

          --------संदीप खरे

Friday, August 13, 2010

How to delete large Share point List data efficiently

To delete large data from share point list efficiently
SPWeb CurrentSite = SPContext.Current.Web;
CurrentSite.AllowUnsafeUpdates = true;
SPList spList = CurrentSite.Lists["MyList"];
StringBuilder sbDelete = new StringBuilder();
sbDelete.Append("");
string command = "" + spList.ID +";
"{0}Delete
foreach (SPListItem item in spList.Items)
{
   sbDelete.Append(string.Format(command, item.ID.ToString()));
}
sbDelete.Append("");
CurrentSite.ProcessBatchData(sbDelete.ToString());

Friday, June 18, 2010

सरीवर सर by Sandeep khare Best One

दूरदूर नभपार डोंगराच्या माथ्यावर


निळेनिळे गारगार पावसाचे घरदार

सरीवर सर .... सर .... सरीवर सर ....


तडातडा गार गारा गरागरा फिरे वारा

मेघियाच्या ओंजळीत वीज थिजलेला पारा

दूरवर रानभर नाचणार निळा मोर

मोरपिस मखमल ! उतू गेले मनभर !

सरीवर सर .... सर .... सरीवर सर ....



थेंब थेंब मोती ओला थरारत्या तनावर

शहाऱ्याचे रान आले एका एका पानावर

ओल्या ओल्या मातीतुन वीजवेडी मेघधून

फिटताना ओले उन्ह झाले पुन्हा नवथर

सरीवर सर .... सर .... सरीवर सर ....



उधळत गात गात पाय पुन्हा परसात

माती मऊ काळी साय, हुळहुळ पावलांत

असे नभ झरताना घरदार भरताना

आले जल .... गेले जल .... झाले जल आरपार

सरीवर सर .... सर .... सरीवर सर ....



अशा पावसात सये व्हावे तुझे येणे-जाणे

उमलते ओले रान, रान नव्हे मन तुझे

जशी ओली हुरहुर थरारते रानभर

तसे नाव तरारावे माझे - तुझ्या मनभर !

सरीवर सर .... सर .... सरीवर सर ....

Wednesday, June 16, 2010

Add distinct values in checkbox list from sharepoint list

  • Add distinct values checkbox list from sharepoint list

    Problem :-• I had created a list having a all employes names and other details and related entries.
    • I had developed a webpart having One checkboxlist and OK button.
    • In Checkbox list if I can select one or more employes and click on OK button. The List will get filtered and shws the data for selected employes.
    • On refreshing page I am inserting all employes names in checkboxlist. But list contains same employe name multiple times so the checkbox list also filed by same employes multiple times.
    • So I write the code to insert distinct values in checkbox from sharepoint list.

    Multiple names in List


    Distinct Names in Checkboxlist


    Code:-
//First Get all Employee names from List

if (collListItems.Count > 0)
{
//veraible for empname from list
string str_EmpName = string.Empty;
//clear checkboxlist
chk_Apply_all.Items.Clear();
//Add All option in checkboxlist
chk_Apply_all.Items.Add("All");
//veriable to compair values
string strEmpName1 = string.Empty;
string strEmpName2 = string.Empty;


foreach (SPItem item in collListItems)
{
//get value from list
SPFieldLookupValue lookupEmployee = new SPFieldLookupValue(item["EmployeeAccount"].ToString());
str_EmpName = lookupEmployee.LookupValue.ToString();
strEmpName1 = str_EmpName;

//first value check
if (str_EmpName == strEmpName1 && strEmpName2 =="")
{
chk_Apply_all.Items.Add(str_EmpName);
strEmpName2 = str_EmpName;
}
else
{
//value check loop from second value
if(strEmpName1==strEmpName2)
{
//do nothing
}
else
{
chk_Apply_all.Items.Add(str_EmpName);
strEmpName2 = str_EmpName;
}
}
}
}

Thursday, May 13, 2010

कितीक् हळवे, कितीक् सुंदर - संदीप खरे

कितीक् हळवे, कितीक् सुंदर - awesome

कितीक् हळवे, कितीक् सुंदर, किती शहाणे आपूले अंतर...
त्याच जागी त्या येऊन जाशी, माझ्यासाठी... माझ्यानंतर...
कितीक् हळवे, कितीक् सुंदर...

अवचीत कधी सामोरे यावे...
अन् श्वासांनी थांबून जावे...
परस्परांना त्रास तरीहि, परस्पराविण ना गत्यंतर...

कितीक् हळवे, कितीक् सुंदर, किती शहाणे आपूले अंतर...

मला पाहुनी... दडते-लपते,
आणिक तरीहि... इतूके जपते...
वाटेवरच्या फुलास माझ्या... लावून जाते हळूच फत्तर

भेट जरी ना ह्या जन्मातुन,
ओळख झाली इतकी आतून...
प्रश्न मला जो पडला नाही... त्याचेही तुझ सुचते उत्तर

कितीक् हळवे, कितीक् सुंदर, किती शहाणे आपूले अंतर...

मला सापडे तुझे तुझेपण,
तुझ्या बरोबर माझे मीपण...
तुला तोलुनी धरतो मि अन्, तु ही मजला सावर् सावर...

कितीक् हळवे, कितीक् सुंदर, किती शहाणे आपूले अंतर...

मेघ कधी हे भरुन येता,
आबोल आतून घुसमट होता...
झरते तिकडे पाणि टप् टप्... अन् इकडेही शाई झर् झर्...

कितीक् हळवे, कितीक् सुंदर, किती शहाणे आपूले अंतर...
त्याच जागी त्या येऊन जाशी... माझ्यासाठी... माझ्यानंतर...
किती शहाणे आपूले अंतर...

- संदिप खरे

Sandeep Khare Kavita

नसतेस घरी तू जेव्हा - my fav

नसतेस घरी तू जेव्हा
जीव तुटका तुटका होतो
जगण्याचे विरती धागे
संसार फाटका होतो

नभ फाटून वीज पडावी
कल्लोळ तसा ओढवतो
ही धरा दिशाहीन होते
अन्‌ चंद्र पोरका होतो

येतात उन्हे दाराशी
हिरमुसून जाती मागे
खिडकीशी थबकुन वारा
तव गंधावाचून जातो

तव मिठीत विरघळणाऱ्या
मज स्मरती लाघववेळा
श्वासाविण ह्रुदय अडावे
मी तसाच अकंतिक होतो

तू सांग सखे मज काय
मी सांगू या घरदारा ?
समईचा जीव उदास
माझ्यासह मिणमिण मिटतो

ना अजून झालो मोठा
ना स्वतंत्र अजुनी झालो
तुजवाचून उमगत जाते
तुजवाचून जन्मच अडतो !



गीत - संदीप खरे

Thursday, March 25, 2010

Enable and disable USB data storage port

Hi,
You can enable/disable the USB data port on ur PC to secure it from other unauthorised access
Lets try this,
This is applicable on WIN XP and win 2000, On other OS I didn't tried


To enable a disabled USB port, follow these steps below
1. Click Start, and then click Run.
2. In the Open box, type
regedit, and then click OK.
3. Locate, and then click the following registry key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UsbStor
4. In the right pane, double-click on Start.
5. In the Value data box, type
3, click Hexadecimal (if it is not already selected), and then click OK.
6. Quit Registry Editor.

very easy :)
Now to disable the USB port try this,

To disable the access to USB port follow the steps below
1. Click Start, and then click Run.
2. In the Open box, type regedit, and then click OK.
3. Locate, and then click the following registry key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UsbStor
4. In the right pane, double-click Start.
5. In the Value data box, type
4, click Hexadecimal (if it is not already selected), and then click OK.
6. Quit Registry Editor.

Enjoy :)

Friday, March 5, 2010

Easy way to kill sessions of database in SQL 2005

This is easiest way to kill all sessions of database.

USE [Master]
GO

DECLARE @DBName VARCHAR(100)
DECLARE @SPId VARCHAR(7000)
SELECT @DBName = 'DBAdmin'

SELECT @SPId = COALESCE(@SPId,'')+'KILL '+CAST(SPID AS VARCHAR)+'; '
FROM Master..SysProcesses
WHERE DB_NAME(DBId) = @DBName
PRINT @SPId
EXEC(@SPId)
GO