Habeeb's profileHABEEB ALI SHAIK PhotosBlogListsMore Tools Help

Blog


    System Inventory script that outputs to Excel format (CSV)

     

    Looking for a free software inventory solution?

    This VBscript pulls HOST NAME, OS, Edition, SP, Vendor, Model, Service Tag, Total Memory, Number of Processors, PROCESSOR, PROCESSOR TYPE, HD0 Size,HD0 free space. It also outputs the data into a Excel spreadsheet.

    1. Open notepad
    2. Copy and paste below text to notepad
    3. Save the file with .vbs  extension.
    4. To run the script, Example: cscript queryRemoteServers.vbs servername username password
    5. Once you run the script, you will find the output data in output.csv of the script directory,

    inventoryscript

    '------------ SCRIPT STARTS HERE--------------
    '---------------------------------------------------------
    'script to query remote computers
    'for device inventory purposes
    '---------------------------------------------------------
    set args = Wscript.Arguments
    If args.Count <> 3 then
    Wscript.Echo "Usage: cscript queryRemoteServers.vbs server_name username password"
    Wscript.Quit 1
    END IF
    strComputer = args(0)
    strUser = args(1)
    strPass = args(2)

    Set objFS = CreateObject("Scripting.FileSystemObject")
    Set objNewFile = objFS.openTextFile("output.csv",8,True)
    'objNewFile.WriteLine "HOST NAME,OS,Edition,SP,Vendor,Model,Service Tag,Total Memory,Number of Processors, PROCESSOR,PROCESSOR TYPE,HD0 Size,HD0 freespace,HD1 Size,HD1 freespace"
    Set objLocator = CreateObject("WbemScripting.SwbemLocator")
    Set objSvc = objLocator.ConnectServer(strComputer, "root\cimv2", strUser, strPass)
    objNewFile.write strcomputer & ","
    Set colSWbemObjectSet = objSvc.InstancesOf("win32_operatingsystem")
    For Each objSWbemObject In colSWbemObjectSet
    objNewFile.Write objSWbemObject.caption & ","
    objNewFile.Write objSWbemObject.csdversion & ","
    Next
    Set colSWbemObjectSet = objSvc.InstancesOf("win32_computersystemproduct")
    For Each objSWbemObject In colSWbemObjectSet
    objNewFile.Write objSWbemObject.vendor & ","
    objNewFile.Write objSWbemObject.name & ","
    objNewFile.Write objSWbemObject.identifyingnumber & ","
    Next
    Set colSWbemObjectSet = objSvc.InstancesOf("Win32_computersystem")
    For Each objSWbemObject In colSWbemObjectSet
    objNewFile.Write objSWbemObject.totalphysicalmemory & ","
    objNewFile.Write objSWbemObject.numberofprocessors & ","
    Next
    Set colSWbemObjectSet = objSvc.ExecQuery("select * from Win32_processor where deviceID='CPU0'")
    For Each objSWbemObject In colSWbemObjectSet
    objNewFile.Write objSWbemObject.Name & ","
    objNewFile.Write objSWbemObject.caption & ","
    Next
    Set colSWbemObjectSet = objSvc.ExecQuery("select * from win32_logicaldisk where drivetype='3'")
    For Each objSWbemObject In colSWbemObjectSet
    objNewFile.Write objSWbemObject.size & ","
    objNewFile.Write objSWbemObject.freespace & ","
    Next
    objNewFile.WriteLine ""

    working example of a backup script you can modify for your needs:

     

    @echo off
    :: variables
    set drive=G:\Backup
    set backupcmd=xcopy /s /c /d /e /h /i /r /y

    echo ### Backing up My Documents...
    %backupcmd% "%USERPROFILE%\My Documents" "%drive%\My Documents"

    echo ### Backing up Favorites...
    %backupcmd% "%USERPROFILE%\Favorites" "%drive%\Favorites"

    echo ### Backing up email and address book (Outlook Express)...
    %backupcmd% "%USERPROFILE%\Application Data\Microsoft\Address Book" "%drive%\Address Book"
    %backupcmd% "%USERPROFILE%\Local Settings\Application Data\Identities" "%drive%\Outlook Express"

    echo ### Backing up email and contacts (MS Outlook)...
    %backupcmd% "%USERPROFILE%\Local Settings\Application Data\Microsoft\Outlook" "%drive%\Outlook"

    echo ### Backing up the Registry...
    if not exist "%drive%\Registry" mkdir "%drive%\Registry"
    if exist "%drive%\Registry\regbackup.reg" del "%drive%\Registry\regbackup.reg"
    regedit /e "%drive%\Registry\regbackup.reg"

    :: use below syntax to backup other directories...
    :: %backupcmd% "...source directory..." "%drive%\...destination dir..."

    echo Backup Complete!
    @pause

    The above example backs up "My Documents", Favorites, Outlook Express email/address book, (all for the current user) and the Windows Registry. It copies the files to the directory defined in the %drive% variable, or "g:\Backup". If the script is ran multiple times, it will only rewrite if the source files are newer. It will create subdirectories as necessary, and it will retain file attributes. It can copy system and hidden files.

    In the above file, all lines that begin with "::" are comments. The "set drive=" and "set backupcmd=" near the top define two variables (referenced by %drive% and %backupcmd%), used a number of times throughout the file; the first being the location of the top directory where we want to backup, and the second the actual copy command with all necessary switches. All the "echo " lines in the file simpy output the line of text to the screen, and the lines beginning with %backupcmd% are the actual commands to execute.

    Note that most of the folders in the above backup example are subdirectories of the %USERPROFILE%... It is possible to simply backup the entire user profile with My Documents, Favorites, Outlook Express, Outlook, etc. by backing up this one folder. Here is an example (it assumes the above "drive" and "backupcmd" variables are set):

    %backupcmd% "%USERPROFILE%" "%drive%\%UserName% - profile"

    Backing up Other Directories and networked PCs

    You can backup other directories by simply creating more alike lines:

    %backupcmd% "...source dir..." "%drive%\...destination dir..."

    For example, if you'd like to backup "C:\Program Files\Microsoft Office"  to our destination "G:\Backup\MS Office" (and retain the directory structure) you'd need to add the following line to the batch file:

    %backupcmd% "C:\Program Files\Microsoft Office" "%drive%\MS Office"

    Here is another example, backing up the Administrator Profile on a machine on the LAN with computer name "Lianli":

    %backupcmd% "\\Lianli\c\Documents and Settings\Administrator"  "%drive%\Lianli - admin profile"

    Remember, you have to save the batch file with either .bat or .cmd extension, then just double-click to execute it.

    Using the Current Date

    Sometimes it is useful to create folders with the date incorporated in the folder name. Here is how to set the variable folder to the current date (assuming US system date format):

    set folder=%date:~10,4%_%date:~4,2%_%date:~7,2%
    %backupcmd% "...source dir..." "%drive%\%folder%\...destination dir..."

    It is also possible to use the current time in the folder name. The following example with incorporate both the current date and time to the minute, separated by underscores. There is an extra step that cleans up possible spaces in single-digit hours in the system time:

    set hour=%time:~0,2%
    if "%hour:~0,1%"==" " set hour=0%time:~1,1%
    set folder=%date:~10,4%_%date:~4,2%_%date:~7,2%_%hour%_%time:~3,2%
    %backupcmd% "...source dir..." "%drive%\%folder%\...destination dir..."

    Example - dated directories

    In the example below, we first set 3 variables: drive, folder, and backupcmd. The "drive" variable defines the root directory of our backups. The "folder" takes the 2 digit day value from the current date (US date format, taking 2 digits from the date command output, starting at the 7th character), which we will use as a subdirectory. The third variable, "backupcmd" defines our backup command with the appropriate command line switches we want to use.

    @echo off
    :: variables
    set drive=D:\Backup
    set folder=%date:~7,2%
    set backupcmd=xcopy /s /c /d /e /h /i /r /k /y
    echo ### Backing up directory...
    %backupcmd% "C:\Program Files\somedirectory" "%drive%\%folder%"
    echo Backup Complete!
    @pause

    This example will backup the "C:\Program Files\somedirectory" folder to "D:\Backup\[dd]" where [dd] is the current day of the month.  After a month, we will have 30ish daily copies of the backup... And, because of the xcopy command line switches chosen, following backups will only overwrite files that are newer, speeding up subsequent backups. Alternatively you can add a line to delete the %folder% directory prior to executing the %backupcmd% if you prefer to start clean (and take longer).

    Cleaning up

    It is usually a good idea to clean up temporary files, cookies, and history from the destination backup, as applicable. It is especially useful if you're backing up full, multiple user profiles and overwriting them periodically. Since temporary files and cookies change, your backed up directories will keep increasing with unnecessary files. To remedy this, the following code can be added to the backup script, or to a separate batch file. It will automatically search all subdirectories for "cookies", "temp" and "history", and then remove those directories:

    :: change to the destination drive first
    G:
    :: your parent backup directory
    drive=G:\Backup
    echo ### Searching for files to clean up...
    cd %drive%
    dir /s/b/ad \cookies > %drive%\cleanup.txt
    dir /s/b/ad \temp > %drive%\cleanup.txt
    dir /s/b/ad \history > %drive%\cleanup.txt

    echo ### Deleting cookies, temp files and history from backup dir
    for /f "delims=" %%J in (%drive%\cleanup.txt) do rd "%%J" /Q/S

    echo Cleanup complete
    @pause

    Note that you need to change to the destination drive, and the main backup directory before searching for files to delete. Any sub-folders that contain "cookies", "temp", or "history" will be deleted automatically. You can test to see what will be deleted by commenting out the "for /f ....." line (just add :: to the beginning of the line, or delete it from the batch file and add it again later). If that line is not present, the file will only list all files to be deleted in the cleaup.txt file, located in the destination directory (G:\Backup\cleanup.txt in the above example).  If you add the cleanup portion to the end of your  backup batch file, you may want to remove the "@pause" line at the end of the backup portion, so everything can execute without user interacion.

    Alternatively, there is a simpler one-line method of deleting specific subdirectories after backing up. The disadvantage of using this method is that you'd need another line for each separate directory to be removed... In other words, it doesn't work well when removing a large number of directories by similar names. Still, here is an example:

    rmdir /s /q "%drive%\%UserName%\Local Settings\Temporary Internet Files"

    In Windows, what is a user profile, and how do I copy one user profile to another?

     

    A Microsoft Windows user profile describes the Windows configuration for a specific user, including the user's environment and preference settings. The user profile contains those settings and configuration options specific to the user, such as installed applications, desktop icons, and color options. This profile is built in part from System Policy information (for example, those things that a user has access to and those things that the user can and cannot change) and in part from permitted, saved changes that a user makes to customize the desktop.

    If you have administrative privileges, you can copy one user profile to another. To do this, follow the steps below for your operating system.

    Windows XP

    Note: The Windows XP default desktop view and Start menu are different from the Windows Classic View (e.g., in Windows 2000). Therefore, navigating to certain items can be different. In the interest of broad applicability, most Knowledge Base instructions assume you are using Classic View. For information about switching your Windows XP default view to Classic View, see In Windows XP, how do I switch to the Windows Classic View, Classic theme, or Classic Control Panel?

    1. From the Start menu, select Settings, then Control Panel. Double-click System.
    2. Click the Advanced tab, and then, under "UserProfile", click Settings.
    3. Click the profile you want to copy and then click Copy to.
    4. In the Copy To dialog box, click Browse to select the directory to which you want to copy the profile. This will usually be C:\winnt\profiles\username or C:\Documents and Settings\username, where username is the username of the profile to which you are copying. When you've selected the directory, click OK.
    5. Under "Permitted to Use", click Change.
    6. In the field labeled "Enter the object name to select:", enter the username of the user who needs to have rights to view this profile. Click Check Names to make sure that the user is found. If the user is not found, you may need to click Locations... to select the correct domain (or, if it is a local account, to select the computer name), and then click OK.
    7. Click OK twice.
    8. If you are prompted to continue, click Yes. Allow a minute for the system to copy the profile.
    9. In the User Profiles window, click OK, and then click OK again in the System Properties window.
    Windows NT and 2000
    1. From the Start menu, select Settings, then Control Panel. Double-click System.
    2. Select User Profiles, and then click the profile you want to copy. Click Copy to.
    3. In the Copy To dialog box, click Browse to select the directory to which you want to copy the profile. This will usually be C:\winnt\profiles\username or C:\Documents and Settings\username, where username is the username of the profile to which you are copying. When you've selected the directory, click OK.
    4. Click Change... and select the user who will have permission to use the profile. For example, DOM1\janedoe will allow user janedoe on domain DOM1 to have access to the profile.

      You can search Microsoft's knowledge base at:               www.http://support.microsoft.com/default.aspx

    5. Click OK three times.
    Windows 95 and 98

    Make sure that you are not logged in under the profile that you want to copy to.

    1. Double-click My Computer. Go to the Windows\Profiles directory (usually at C:\Windows\Profiles).
    2. Double-click the folder of the profile you want to copy.
    3. Select all of the folders and files in that profile by pressing Ctrl-a . From the Edit menu, select Copy.
    4. Go back to the Profiles directory, and double-click the folder of the profile you want to copy to.
    5. From the Edit menu, select Paste.
    6. Click Yes to All to overwrite the old profile.

    How to copy data from a corrupted user profile to a new profile in Windows XP

     

    SUMMARY

    MORE INFORMATION

    Create a new user profile on the domain computer

    Create a new user profile on the workgroup computer

    Copy files to the new user profile

    SUMMARY

    This article describes how to copy user data from your Windows XP profile to a new profile.
    When you copy user data into a new profile, the new profile becomes a near duplicate of the old profile, and contains the same preferences, appearance, and documents as the old profile. If your old profile is corrupted in some way, you can move the files and settings from the corrupt profile to a new profile.
    Note The method that is described in this article may not transfer the Outlook Express e-mail messages and address user data that are associated with the user profile where you are transferring data from. When you delete the old profile, you may delete that data if it you do not first transfer it by using other methods. For more information about transferring Outlook Express user data, click the following article number to view the article in the Microsoft Knowledge Base:

    313055 (http://support.microsoft.com/kb/313055/) Mail folders, address book, and e-mail messages are missing after you upgrade to Microsoft Windows XP

    Back to the top

    MORE INFORMATION

    Create a new user profile on the domain computer

    1.
    Log on as the Administrator or as a user with administrator credentials.

    2.
    Click Start, and then click Control Panel.

    3.
    Click User Accounts.

    4.
    Click the Advanced tab, and then click Advanced.

    5.
    In the left pane, click the Users folder.

    6.
    On the Action menu, click New User.

    7.
    Enter the appropriate user information, and then click Create.

    Back to the top

    Create a new user profile on the workgroup computer

    1.
    Log on as the Administrator or as a user with administrator credentials.

    2.
    Click Start, and then click Control Panel.

    3.
    Click User Accounts.

    4.
    Under Pick a task, click Create a new account.

    5.
    Type a name for the user information, and then click Next.

    6.
    Click an account type, and then click Create Account.

    Back to the top

    Copy files to the new user profile

    1.
    Log on as a user other than the user whose profile you are copying files to or from.

    2.
    In Windows Explorer, click Tools, click Folder Options, click the View tab, click Show hidden files and folders, click to clear the Hide protected operating system files check box, and then click OK.

    3.
    Locate the C:\Documents and Settings\Old_Username folder, where C is the drive on which Windows XP is installed, and Old_Username is the name of the profile you want to copy user data from.

    4.
    Press and hold down the CTRL key while you click each file and subfolder in this folder, except the following files:


    Ntuser.dat


    Ntuser.dat.log


    Ntuser.ini

    5.
    On the Edit menu, click Copy.

    6.
    Locate the C:\Documents and Settings\New_Username folder, where C is the drive on which Windows XP is installed, and New_Username is the name of the user profile that you created in the "Create a New User Profile" section.

    7.
    On the Edit menu, click Paste.

    8.
    Log off the computer, and then log on as the new user.
    Note You must import your e-mail messages and addresses to the new user profile before you delete the old profile. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

    313055 (http://support.microsoft.com/kb/313055/) Mail folders, address book, and e-mail messages are missing after you upgrade to Microsoft Windows XP

    Luxettipet

    Lakshettipet is located at 18.8667° N 79.2167° E.[2] It has an average elevation of 145 meters (479 feet).

    Luxettipet is an assembly constituency till 2004 general assembly elections , now Mancherial has become a Contituency in Andhra Pradesh. There are 2,21,685 registered voters in Luxettipet constituency in 1999 elections.

    adjacent to the National Highway Number - 16 Luxettipet village consists of a Beautiful Church built in 1930's by the England (British) People... built this beautifully structured

    Meaning of Rehan

    Rehan is an Arabic and Hebrew word, meaning "fragrant one". It is used in the Qur'an in the Sura Ar-Rahman (the "scented herb" in Ayah no 12) and Sura Al-Waqiah (Ayah no 89). It may also be spelled as Rayhan.

    Rehan as a name may refer to:

    • Abu Rayhan al-Biruni, a Persian mathematician
    • Rehan is an Irish and Gaelic surname, variations include: O'Raigan in Waterford, or the Gaelic form O'Reagain. [1]

    Rehan as a plant may refer to:

    • Artemisia rehan, a herb from the Artemisia
    • Holy Basil, also known as raihan, reihan, reyhan, or by various other spellings. The leaves are used as a culinary herb, raw or cooked; the seeds are also used as a thickening agent.
    • Basil, an aromatic plant used in cooking, medicine, and other areas

    Rehan as a place may refer to:

    Internet Safety

    Here we discuss some general Internet Safety Issues and steps to take to improve security on the internet.
    One of the most common ways by which Internet Security is compromised is by using a bug-ridden internet browser. It raises serious security concerns when a malicious hacker targets a known vulnerability in the browser. It is therefore recommended that you use a safer browser that is less prone to attacks. I have used FireFox+Google Toolbar for quite a while, I strongly recommend that you download and try it. You will see that with the help of the google toolbar, it is able to block annoying popups too. FireFox, is and always was free to use and can be uninstalled easily if you arent impressed with it.
    click the graphic to continue..
    Once the browser is secured, you should get the official updates for your operating system. Most users nowdays use Windows XP, So all XP users should get Windows XP Service Pack 2 to better defend you operating system. Get the Windows XPSP2 from any of the following locations:

    The download can take a while as the files could be above 250 mb and make sure you have a genuine copy of Windows XP installed.

    Install a good anti-virus package for protection against viruses. There are a few free Anti-Virus packages that offer decent security, such as

    If you are serious about internet security then you should consider using a commercial anti-virus package. Norton Anti-Virus and McAfee Anti-Virus are well known packages of which the latter is highly recommended if you can afford it.

    Finally, As a layer of protection against SpyWares, download and install the following Anti-SpyWare utilities:

    Run these utilities on a regular basis to clean out the spyware junk from your system.

    The tips above will improve your overall internet security, So how about a nice, friendly kiss for sharing these tips with you, Girls? ;-)

    Update: Norton Security Scan is now included with the google pack, See what more is included in the google pack.

    Check your password strength

    Passwords have become something inevitable in our tech savvy world !! We always need to use a strong password or else our security is at risk... If someone else cracks your password, then you could lose anything from your free email account to your $$$ from your bank account !!
    So keep strong passwords, something hard to crack by any hacker. Here is a simple online tool from microsoft to check your password strength.
    Just type in your password, it will show how strong your password is ?? It might show any of these :::: Weak - Medium - Strong - Best :::: Discard any 'weak' or 'medium' level passwords... Always keep a 'strong' or a 'best' level password. Then, don't worry... It is from Microsoft... They wont save your password somewhere else and misuse it... :)
    Enjoy and be secure using a strong password.

    HOW TO DERAIL AN ARGUMENT.

     

    HOW TO DERAIL AN ARGUMENTAND MAKE IT A FIGHT

    10 Games People Play

    As a people watcher I have observed that a lot of good arguments never reach any conclusion. They sometimes end in bad blood, resentment, anger, sullenness, tears, frustration, one-upmanship, and that is because the train of thoughts is derailed before it can reach the station. The accident brings about a lot of causalities and deaths in relationships depending on how much damage the derailment has caused.

    Arguments are basically a set of contradictory statements to reach a conclusion. These statements are often called premises. Arguments arise when people have differing points of view and they try to hold up their own views as the truth. It takes place in a discussion of pros and cons of an issue or in a controversy which can end in hostility of varying degrees of violence and reaction.

    What is truth? This is not easy to define as there are several factors that need to be considered before reaching the truth. This is why arguments happen and why they are important.

    Arguments often generate more heat than light. This is because the rules of arguments are thwarted by one party or the other in order to gain supremacy over the other. Or one breaks the rule and the other is dragged into a confrontation. When we argue we use a number of strategies to help us win over our opponents. This is done so insidiously that sometimes the whole argument becomes misdirected, comes apart or comes to a stand still.

    BASE PROBLEM: NOT STICKING TO THE ISSUE UNDER DEBATE

    I have put together some of the devices people use to obfuscate or distract from the focus. Look out for these fallacies the next time you argue. It will give a label to put on what you suspect is happening, where earlier, you had no words to define that feeling of exasperation.

    1) Arguments are often reduced to a narrow level.

    REDUCTIO AD ABSURDUM - reducing the reasoning to a small sample

    Eg: Mind altering drug users are dangerous to society. Should we lock up all alcoholics then?

    Here the person reduces the argument to an absurd part of the whole and makes you look either petty or fanatical. So you either “fall prey” to answering THAT question which like examining a needle in a haystack (to twist around a proverb) or just going grrrrrrr

    AD HOC CLAUSES – every argument can be subjected to exceptions

    Eg : To kill is evil. Soldiers and governments do it regularly

    Here the person uses the exceptions that are valid but which do not adhere to the”spirit” of the main clause. So you are talking of two different issues bound by the word ‘kill’. It is like comparing oranges and apples and saying they are both fruits when you are talking of citrus allergies.

    2) Arguments are often reduced to a personal level

    AD HOMINEM MOVE – getting personal

    Eg: You are a smoker so don’t say smoking is harmful……

    you are not a hindu so how can you speak of Ram?… you are not a good Hindu or you would support Ram…… you are a Tamilian Shaivite so please don’t talk of Ram… You should read the scriptures before you speak of Ram….etc

    JUMPING TO CONCLUSIONS

    You said you are a painter so you can’t know much about rocket science. You should be married before you talk of divorce… you have no idea what it is like to be poor.. You haven’t read Mein Kampf or the Vedas…

    Assumptions distract because then you begin defending the personal angle and the issue is forgotten. This takes you away from the angle of the argument being put forth and throws you into a place of judgement and closes your mind.

    This can also be used in the reverse, especially when identities are not known as on the net. So the why don’t you do what you preach? What have you done about this problem except talk about it? is constantly asked. It is not an argument. It is a effort to make you look like you don’t know what you are talking about because you don’t work with it. Therefore you have no right to talk about it and therefore your arguments are invalid. If you are not a scientist you dare not talk of science issues. If you talk of politics you better be a politician etc.. which ofcourse is ridiculous and stops the argument to begin an unpleasant fight of sorts… fini.

    MAKING PERSONALITY STATEMENTS

    You are trying to score on me. You are argumentative. You think no end of yourself. You think you are the greatest and most intelligent etc. I thought you would be a lucid thinker. I am not sure you I am going to come back and read you again. You don’t know when to stop arguing.

    This leaves the argument itself cold and dead and maneuvers the argument to a personal level where the person if he/she is not alert will begin defending that accusation. Fini.

    3) Comparisons that are false, illogical – classic fallacies

    ANALOGY – A is like B. there fore what is true of A is also true of B

    Eg: Bombay is a big city like New York. Bombay is polluted so New York is also polluted.

    Straight connections without looking at other parameters of the two things compared which will make a world of difference and sometimes deem the two as opposites.

    DEDUCTION – fallacies of “Therefore”

    Eg: All boys are rough. C is a boy. Therefore C is rough

    You chat and blog regularly therefore you can’t be doing any important work/ must be unemployed loser / must be single or ugly/ an attention seeker etc.

    4) Selecting evidence and suppressing evidence

    ANECDOTAL EVIDENCE – based on one incident make generalizations

    Eg: Mumbai is unsafe. Look at the way that man killed that girl at Gateway

    You say Hong Kong has great traffic systems. Last month do you know how many died in that accident on the MTR?

    These are powerful when used as derailers and people often get embroiled in proving and disproving the efficiency of the railways across the world and forget traffic systems they were originally talking about

    DECEPTION – half truth – economy with truth

    Eg: Mention that the airline was delayed but not that they gave you hotel accommodation.

    Using information selectively and hiding the whole truth is a common human trait.

    5) Arguments that rely on people support and numbers

    APPEAL TO AUTHORITY – using established names to stop further thought Eg: Psychologists say… Einstein said…

    AMBIGUITY – Use of pronouns and unspecific reference

    Eg: They say…. I read somewhere…. History says… I haven’t read the book but I think…

    As people do not have time to check on references the unscrupulous will quote authority and say whatever they please.

    TRUTH BY CONSENSUS – Democratic Fallacy

    Eg: Everyone thinks so…

    Dependence on number of comments one gets to feel supported. So some bloggers cultivate friends to make sure their consensus charts are overflowing with the “ truth” of many who affirm their statements. There is a general feeling that the more the number of people who agree the better the chances of the person being right. Safety in numbers is a powerful psychological and social support crutch. A large number of fence sitters will never opine for fear of upsetting the dominant or popular apple carts.

    THE WEAK ARGUMENT

    This one gives no reason. It just states I don’t agree.

    It means I am opposing you and it so reasons don’t matter.

    6) Cascading to weaken the power of the argument

    ASSUMPTIONS – the future will be like the past. Inductive arguments induce flow of thought into various assumptions and possibilities but they are not conclusive

    Eg: If you let IBM into the country they will rule India like the Brits someday

    SLIPPERY SLOPE ARGUMENT – jumping to conclusions at high speed

    Eg: If you legalize euthanasia then there will be mass suicides.

    These makes it complex to refute as it involves disproving many steps.

    7) Arguments that provoke and revoke responses

    EMOTIVE LANGUAGE – words that provoke anger revolt pity etc

    Eg: victims, terrorists, freedom fighters, activists, idiocy, shame etc

    CULTURE SPECIFIC STANDS – race specific stands

    Eg: In our community that is how we do it

    KNOCK DOWN ARGUMENT – which completely refutes all argument

    Eg: Mere paas maa hai

    This is a highly charged emotional one that stops the other dead in tracks. A lot of arguments on religion use this kind of weapon and the political correctness of not offending stops the other from continuing the argument

    RESORTING TO ABUSE

    You are a stupid housewife. You are an unemployed guy who throws his weight around. I am not interested in your moronic views.

    Most people when they think they are losing an argument and are not in control, resort to childish abuse. It is the easiest way to derail into indulging anger that is personal and naturally has no bearing on the issue.

    8) Endless argument and disagreement opportunity

    HARDLINE ARGUMENT – extreme expectations

    Eg: Judges should never ever have broken the law. Children should never be born into Poverty

    This is often done to provoke people to argue aimlessly or vociferously and endlessly as they are so wide in application that the arguments can go on forever.

    CIRCULAR ARGUMENT – going in circles

    Eg: I think therefore I am. I am therefore I think. This is saying the same thing but arguing.

    On wide issues like the bhakti and gyana forms of worship it is possible to do this without being caught in the act.

    BLACK AND WHITE THINKING – oversimplification, extreme alternatives with no grey areas

    Eg: Teetotaler or Alcoholic?

    DEVILS ADVOCATE – arguing for its own sake -finding loopholes

    Eg: India should be ruled by foreign powers

    This is done on blogs when the writer throws an obviously weak or controversial argument to attract a lot of contenders to leave their comments and thereby earn a ‘great topic motivator’ status with the scenario.

    9) Arguments are often obfuscated to cause distraction & confusion.

    SHIFTING GOALPOSTS – in mid argument taking a different strand and moving it along to a different level

    Eg: All murderers should be hanged to death. Some murderers are mentally ill. There is a specific gene for pugnacious tendencies. Governments do not take adequate of the mentally ill. Psychiatry is not a much sought after discipline in colleges. There is heavy rush for MBA. Reservation of MBA seats is going to be detrimental for the country. The brain drain is going to tell on all of us.

    Here the discussion is on one strand another one is picked up and the whole debate derailed from the original track. So a debate on environment can turn into one on Ayn Rand or about right to make profits and capitalism by alluding to these with a tenuous connection and therefore swinging the talk away from the main subject

    OBFUSCATION BY DISTRACTION – red herrings, smoke screen, politicians answers

    Eg: Talk of speed limits to avoid talking of road repairs

    Talk of foreign hand to avoid talking of domestic strife

    10) Arguing or not arguing to establish dominance.

    JARGON – power of language to convince, impress, obfuscate and overwhelm: Technical terms. Newspeak . goobledygook

    This is intended to make a section feel dumb and the inner circle to feel powerful.

    IGNORING SPEAKERS AS UNWORTHY TO TALK TO – intellectual emasculation.

    This is a common gender practice where men discussing a topic will exclude women with body language, neglect, cordoning off, stonewalling etc in order to keep out their participation. It is all very civil and mild. The unspoken message is you are not smart enough to talk on this so I cannot engage in a discussion with you. This includes being amused at the other’s words and either laughing openly or sniggering or smirking quietly, making meaningful eye contact in a group and nonverbal cues etc. Conversely the only talk they indulge in with women is the soft kind which is flirtatious, courteous, kind and polite, chivalrous and other mild forms of acknowledgement.

    CONDESCENDING NON ARGUMENT – when people do not argue because the opposition is from a woman or child and the assumption is that they are too strong to argue with the weak.

    Lots of repeated silent visits without comment or a word is left to assert this condescension directly by stating.. I just happened to come here by mistake.. I am not interested in your blogs but since I am here I will deign to say a few words Or what do you expect me to say to this?

    All of which is ofcourse unnecessary and aimed to brow beat without putting forth a counter argument to the issue. This is a personal response, often petty, where a serious one is solicited

    SEXUAL INNUENDO

    Use of direct or indirect sexual talk on body parts and carnal acts to demean and embarrass

    A favourite among some men who begin using sexual innunedos or slurs to run away from an issue by using a joke or distraction. A lot of men who are on the verge of a thinning battle will resort to sexual innuendo to embarrass a woman and inflict what is a blow below the belt and thereby abort the main argument.

    SPONSERSHIP AND GODFATHERS

    Sometimes dominance is established by simply sponsoring the other, giving unwanted advice, support, heavy praise for which gratitude is expected, taking credit for the other’s achievements obliquely, excessive back patting, appearing to be kind when one is really being superior. The whole demeanour is that of a Godfather doling out favours to his flock.

    The presence of the hangers on like the Mafioso henchmen and sycophants make sure this image is sustained.

    SELF DEPRECATORY. SELF CONGRATULATORY

    This is where the argument is abandoned midway (often when thinning is certain) in some apparently self deprecatory statements that are loaded with sarcasm. Example: I am not your league. You are great, I am an idiot. You are way above me… This kind of combat takes the emotional turn and leaves the main argument begging for continuance. Apologies are tended with this kind of self congratulation that actually says I am so noble…. Look at me… I am sooo good. The ‘not like you’ is implied subtly.

    CONCEDING CONDESCENDINGLY

    Playing the noble soul. I don’t agree but I will go along with you for peace because I am such a big soul. That is my answer to your meanness.. I will turn the other cheek.

    AFTERMATH

    What follows (if the bait is caught) is ofcourse furious arguments that get personal and angry and frustrated, teary, and more nasty.. Masks of geniality and patience and generosity slip revealing real faces that are often violent, sexist and irrational. There is a snowballing effect in the loss of control. On the net this takes the form of words on the streets, fisticuffs.

    Then there are hecklers, fence sitters who weigh options, audience of silent spectators, judges et al and shadow people who have an opinion in hushed whispers to add to the general drama.

    The issue lies unattended. Two opponents are left grappling and the real topic where it all began, languishes and is forgotten.

    I am not saying I am immune to these games or don’t play them myself. But I am aware that it is happening. Thought you might find it useful too. So watch out for these argument spoilers next time you argue and wonder why you didn’t reach the end.

    10 Free Word Processors

    I have listed the best and top ten word processing tools available for free!
    Pathetic Writer (PW)
    http://siag.nu/pw/
    An X-based word processor for UNIX. It supports various formats like M$ word, PW (it's native format), rtf, etc...

    Maxwell
    Motif-based word processor. Maxwell is a good WYSIWYG word processor available at zero cost. It requires the Motif library to run. (now, this is also available at no charge)

    TeX
    http://www.latex-project.org/
    http://www.tug.org/
    Basically a typesetting system based on LaTeX, considered by many to be the best tool to typeset complex mathematical formulae. It is very popular in the mathematics and physics communities.

    Jarte

    http://www.jarte.com/

    Jarte is basically a free and powerful text editor based on the Microsoft WordPad word processing engine. It is a superset of WordPad with much more features like tabs, spell check, export to PDF, etc... But main problem is that it will run only on windows!

    IBM Lotus Symphony (Documents)
    http://symphony.lotus.com/software/lotus/symphony/home.jspa
    Its website claims it as a "Versatile text editor or word processor" It claims that it supports .doc/.odt/.sxw/.lwp/.rtf/.txt formats. It can run on both windows and linux. Since it is from a big name company, it is definitely worth a try!!
    ThinkFree
    http://www.thinkfree.com/
    Basically an office suite written in Java that runs on Windows, Linux, and Macintosh platforms. ThinkFree Online is a web-based version of it's office suite.
    The major pros about it are:

    • has a look and feel similar to Microsoft Word allowing users to switch over easily.
    • has both desktop and web version of its office suites.
    • can read and write to M$ word file formats.
      Think free

    Zoho (Writer)
    http://writer.zoho.com/
    A web office suite. Since it is web-based, Zoho writer is OS independent.
    It can work platform which supports Mozilla firefox browser.
    Abiword
    http://www.abisource.com/
    An open source word processing program which can run on almost any platform. You can quickly open any M$ word documents and edit it, though it is some what reluctant to crash anytime (when editing some complex M$ word files)
    Google Docs (Standard Edition)
    http://docs.google.com/
    I think it another free web based word processor. Though you can hardly compare it to any of the desktop word processors, its main strength is that it is a web application. You just need a good and free browser like firefox to run this! It allows you to open/edit/save the documents online. No installation/upgrades/etc...
    Open Office (Writer)
    http://www.openoffice.org/
    It has everything you would expect from a modern, fully equipped word processor! Above all, it is multi-platform and very easy to use! Supports various formats and comes with a full office suite. It has all the required strength to rip off M$ word's monopoly. Now this gets our first prize!!!!!!!!

    So can you see that there are so many options available for M$ word and its office suite. Small business should seriously evaluate these, before spending thousands of dollars on any of the commercial word processor!

    Enjoy!! the free world ;)

    Pocket.PC.Apps.Games.Themes. (NEW YEAR PACK)

     

    The following is an email sent to you by an administrator of "SymbianSoftwares.net". If this message is spam, contains abusive or other comments you find offensive please contact the webmaster of the board at the following address: info@symbiansoftwares.net Include this full email (particularly the headers). Message sent to you follows: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +--------------------------------- | Symbian.S60.Games.New.Year.Pack +--------------------------------- simcity socities (games for s60) http://www.symbiansoftwares.net/viewtopic.php?p=29892#29892 scorlotties mafia wars http://www.symbiansoftwares.net/viewtopic.php?p=29892#29892 total air mayhem http://www.symbiansoftwares.net/viewtopic.php?p=29895#29895 7 days sis games 6 mb http://www.symbiansoftwares.net/viewtopic.php?p=29897#29897 tokio hotel http://www.symbiansoftwares.net/viewtopic.php?p=29898#29898 mobile wish http://www.symbiansoftwares.net/viewtopic.php?p=29900#29900 +--------------------------------- | Pocket.PC.PDA.Apps.New.Year.Pack +--------------------------------- Dr.Web Antivirus v4.44.0.12181 ( 18.12.2007 ) + Key http://symbiansoftwares.net/viewtopic.php?t=7371 Eggstreme - Sizzler Supremacy v1.00 S90 http://symbiansoftwares.net/viewtopic.php?t=7383 Big 2 Master Card Game S90 http://symbiansoftwares.net/viewtopic.php?t=7382 Pocket Hunt v1.00 Full http://symbiansoftwares.net/viewtopic.php?t=7325 Absolutist Checker Challenge v1.05 http://symbiansoftwares.net/viewtopic.php?t=7326 Scrabble Game http://symbiansoftwares.net/viewtopic.php?t=7327 Pocket Circuit v1.0 http://symbiansoftwares.net/viewtopic.php?t=7328 Pool Rebel v1.1.7 http://symbiansoftwares.net/viewtopic.php?t=7340 Mobile Solutions Mastersoft Chess v1.1 http://symbiansoftwares.net/viewtopic.php?t=7341 Namco Galaxian v1.1.0 KeyGen Incl. http://symbiansoftwares.net/viewtopic.php?t=7346 Smartmovie V3.0 S80 With Converter and KeyGen http://symbiansoftwares.net/viewtopic.php?t=7370 Handy Clock UIQ3 Serial Incl. http://symbiansoftwares.net/viewtopic.php?t=7381 Golden Crater Tiny eBook Reader v4.02 All PPC Retail-DVTPDA http://symbiansoftwares.net/viewtopic.php?t=7330 PhatWare PhatPad v4.4 http://symbiansoftwares.net/viewtopic.php?t=7331 PocketMax Phone Alarm v1.64 KeyGen Incl. http://symbiansoftwares.net/viewtopic.php?t=7348 Conduits Pocket Player v3.51 Xscale Cracked-Tsrh http://symbiansoftwares.net/viewtopic.php?t=7349 CalcNote 2.5 http://symbiansoftwares.net/viewtopic.php?t=7350 Resco Explorer 2007 v6.17 KeyGen Incl http://symbiansoftwares.net/viewtopic.php?t=7351 Tracky Pro v2.2.6 KeyGen Incl. http://symbiansoftwares.net/viewtopic.php?t=7352 Ringo Mobile v1.4.01 http://symbiansoftwares.net/viewtopic.php?t=7369 TealPoint TealCracker v1.26 PalmOS Cracked-CSCPDA http://symbiansoftwares.net/viewtopic.php?t=7421 Touch Commander v1.0.1.2 http://symbiansoftwares.net/viewtopic.php?t=7422 spb Pocket Plus V4 With Serial http://symbiansoftwares.net/viewtopic.php?t=7423 HTC Task Manager 2.0 http://symbiansoftwares.net/viewtopic.php?t=7424 Hubdog v2.0 http://symbiansoftwares.net/viewtopic.php?t=7425 Lonely Cat Games Smartmovie v3.31 All PPC Cracked-BiNPDA http://symbiansoftwares.net/viewtopic.php?t=7426 LCG Jukebox v2.1 (Music Player) For PPC http://symbiansoftwares.net/viewtopic.php?t=7427 Real One Player PPC 11PR http://symbiansoftwares.net/viewtopic.php?t=7428 SoftTrends Software LivePR v2.80 XScale WM2005 Cracked-SyMPDA http://symbiansoftwares.net/viewtopic.php?t=7429 Conduits Technologies Pocket Player v3.2 ARM XScale PPC Cracked-SyMPDA http://symbiansoftwares.net/viewtopic.php?t=7430 +--------------------------------- | Pocket.PC.PDA.Games.New.Year.Pack +--------------------------------- Ridge Racer 7 PPC http://symbiansoftwares.net/viewtopic.php?t=7387 Windows Mobile Green http://symbiansoftwares.net/viewtopic.php?t=7388 Metal PPC http://symbiansoftwares.net/viewtopic.php?t=7389 Pocket Breeze Blue VGA PPC http://symbiansoftwares.net/viewtopic.php?t=7390 Magenta PPC http://symbiansoftwares.net/viewtopic.php?t=7391 Scary PPC http://symbiansoftwares.net/viewtopic.php?t=7392 HeroCraft Robo v1.00 UIQ3 Symbian OS9.1 Cracked-BiNPDA http://symbiansoftwares.net/viewtopiv.php?t=7399 Epocware Another Ball UIQ3 HS-KeyGen Incl. http://symbiansoftwares.net/viewtopic.php?t=7400 Pocket Torch Invasion v1.00 UIQ3 Symbian OS9.1 Cracked-BiNPDA http://symbiansoftwares.net/viewtopic.php?t=7401 Frozen Bubble UIQ3 http://symbiansoftwares.net/viewtopic.php?t=7402 +--------------------------------- | Pocket.PC.PDA.Themes.New.Year.Pack +--------------------------------- Cool Water Reflection theme S90 http://symbiansoftwares.net/viewtopic.php?t=7380 Nintendo Theme S90 http://symbiansoftwares.net/viewtopic.php?t=7379 Back To Vista Theme S90 http://symbiansoftwares.net/viewtopic.php?t=7378 Real Vista Ultimate Theme 1.0 S90 http://symbiansoftwares.net/viewtopic.php?t=7377 Vista Blue Green PPC http://symbiansoftwares.net/viewtopic.php?t=7372 Autumn PPC http://symbiansoftwares.net/viewtopic.php?t=7373 Seaside PPC http://symbiansoftwares.net/viewtopic.php?t=7374 Yellow PPC http://symbiansoftwares.net/viewtopic.php?t=7375 Fat Cat PPC http://symbiansoftwares.net/viewtopic.php?t=7384 Sky PPC http://symbiansoftwares.net/viewtopic.php?t=7385 Armored Core PPC http://symbiansoftwares.net/viewtopic.php?t=7386

    Theorem: N=n+1

    Equals N plus one
    Theorem: N=n+1

    Proof:
    (n+1)^2 = n^2 + 2*n + 1

    Bring 2n+1 to the left:
    (n+1)^2 - (2n+1) = n^2

    Substract n(2n+1) from both sides and factoring, we have:
    (n+1)^2 - (n+1)(2n+1) = n^2 - n(2n+1)

    Adding 1/4(2n+1)^2 to both sides yields:
    (n+1)^2 - (n+1)(2n+1) + 1/4(2n+1)^2 = n^2 - n(2n+1) + 1/4(2n+1)^2

    This may be written:
    [ (n+1) - 1/2(2n+1) ]^2 = [ n - 1/2(2n+1) ]^2

    Taking the square roots of both sides:
    (n+1) - 1/2(2n+1) = n - 1/2(2n+1)

    Add 1/2(2n+1) to both sides:
    n+1 = N

    The Guy Who Couldnt

    There was a guy, whom a lot of people ridiculed, He never gave it a thought, he never cared.

    "It is because", people said, "he is just plain dumb"

    He was the guy who couldn't speak on stage
    He was the guy who coulnd't speak english
    He was the guy who could never get a girl
    He was the guy who could never approach a girl
    He was the guy who could never be at ease
    He was the guy who could never be intelligent
    He was the guy who could never come on top
    He was the guy who could never organize anything
    He was the guy who could never be in sports

    To top it all,

    He was the guy who was never given a chance and
    He was the guy who who could never stand up and grab at it
    He was the guy who couldnt, because he is ......
    He was the guy who wouldnt be remembered after school..
    He was the guy who didn't, wouldn't and couldnt ............ EVER.

    That was then, and this is now. Times change, people change.

    The guy who could never, now has the last laugh.

    Last laugh, not because he didnt get the joke, but because, all of a sudden, he was the guy who could never..

    Never fail to do it.

    He was the guy, without ever uttering a word, and never giving it a thought, just went ahead and proved that 'Never' is indeed a very long time.

    Never?

    EveryOne

    It is strange to find your friend in the same predicament as yours, seeing her or him make the same errors of judgement as you.
     its a bit like becoming an image in a mirror where the person standing outside is not you but your freind.
    You shout, you shake your head but you are not heard for the image in the mirror is merely a reflection.
    You don't want your freind, your loved one, your brother, your sister, your parent hurt and yet there is precious little that you can do,
     except make a silent promise to yourself, to try and hold them to the best of your ability.

    Ease their trouble with a kind word, a joke,
    -------------a cup of coffee perhaps or maybe cook them something warm and slow and tell them its ok, its not the end of the world.

    Munna Bhai in Oracle

    APPUN JAISE TAPPORI S/W ENGG. KO KYA MAALUM...
    SAALA PROGRAMMING KIS CHIDIYA KAA NAAM HAI...
    JOB SUBMIT KARKE APANAA TIMEPASS.........HOTA HAI....
    COPY PASTE KAA KAAM MILTAA HAI BASS APPUN KHUSH...!!!
    FIR YEH CODING KAA LAFDAA, LOCHA, KAIKO?
    ARE KAIKO ?
    ARRE KAIKO RE?
    FIR EK DIN BOLETO APPUN KO KUCH BADA PROJECT MILA.....
    YA HAAAAAAAAAA!!!!
    SAALA APPUN KA KHOPDI CHAKKAR KHA GAYA ....
    COMPUTER KE SAATH DIL SAALA TAKKAR KHA GAYAA...!!!
    APPUN KO LAGAA APPUN KAA BEDA PAAR HO GAYA...
    BOLETO BAAP SAALA APPUN KO BHI KAAM MIL GAYA...!!!
    DIN BHAR APPUN COMPUTER KE AAGGE...
    KOI LAFDAA NAHI, KUCH NAHI...
    TEEN DIN NAA PL(PROJECT LEADER) SE RAGDA, NA PM(PROJECT MANAGER) SE
    PANGAA
    BASS CHOOP CHAAP...
    APPUN KAA BHIDU LOG SAALA DAR GAYA...
    BOLA KYA BE VEERU, SAALA TU BHI PROGRAMMER BANN GAYA...!!!
    PHIR EK DIN APPUN KO KAAM KARTAA DEKH PANDEY BOLA...
    YE VEERU BHAI KYA TESTLOG BANA RELA HAI BAAP...!!!
    PANDEY KO PAKDAA... BOLA IDHAR AA SHAHANE TEREKO TESTLOG SEEKHATAA
    HAI...
    SAALE KO ITNAA DHOYAA ITNAA DHOYAA...
    ABHI TAK THOBDAA WAAKADAA HAI ...
    AUR AAJ TAK USKA TESTLOG KE SAATH CHATTIS KAA AAKDAA HAI...!!!
    SAMZAA ...?
    SAMZAA...?
    SAMZAAA NAA...?
    (FIR ...? FIR KYA HUWA..?)
    FIR EK DIN APPUN NE TESTLOG POORA KAR DIYA...
    APPUN NE TESTING KO BHEJ DIYA...!!!
    LAGATAA THA AB APPUN KAA KAAM KHATAM HO GAYA...!!!
    PAR " EXCEPTION REPORT " ME ISSUES DEKHAKE SALA APPUN DARR GAYA...!!!
    APPUN KE SAAMNE PL NE MERE FORM ME BAHUT GALTIYAA NIKALI...
    AAPUN KE LOG KI POORI WAAT LAGA DALI....
    APPUN UDHARICH KHADAA THAA...
    PAR APPUN KUCH NAHI BOLA...
    KAIKO BOLEGA?
    KAIKO...?
    SAALA EK, EK KAAM KIYA THAA... USME BHI ITNE BUGS...
    PAR APPUN EK AANSU NAHI ROYA...
    KAIKO ROYEGA...?
    KAIKO..?
    SAALA APPUNICH YEDAA THAA NAA...!!!
    AGALE DIN SE PHIR WOHI LIFE CHALU...
    WOHI MAILS FORWARD KARNAA, WOHI MESSAGES, WOHI TEMPLATE, WOHI
    ASSIGNMENTS...
    SAALA ITNAA MAILS FORWARD KIYA...ITNAA MAILS FORWARD KIYA...
    LOG SAMZE MAIL SERVER DOWN HOYEGA...
    BHOOLNE KA HAI BHOOLNE KA HAI PAR KYA KAREGA...!!!
    TRAINING MILKE BHI JAB KAAM NAHI MILTAA HAI...
    HAA THODA BORE HUWA, PAR CHALTAA HAI...
    TRAINING MILKE BHI JAB KAAM NAHI MILTAA HAI...
    (PHIR ...? PHIR KYA HUWA..?)
    FIR ...?
    FIR KYA...?
    FIR AGALE DIN APPUN KO AUR EK BADA PROJECT MILA...!!!
    SHAAPPAK...
    SAALA APPUN KA KHOPDI PHIR CHAKKAR KHA GAYA ....
    COMPUTER KE SAATH DIL SAALA PHIR TAKKAR KHA GAYAA...!!!
    HO HO HO HOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO

    yes, tomorrow i won't be there.

    Tomorrow i won't be there.
    but how do i tell her, that she'll be there in the sharply drawn breath between long breathless conversations.
    how do i tell her that she will be there in the smile which will look back at me in the mirror.
    how do i tell her that she is there with me when i turn the lock closed on the bedroom door.
    how do i tell her that she will be there on my fingertips when i taste the sweetness of the cake batter. how do i tell you that you will be there when in my tightly closed fist when i burn those calories on the green. how do i tell you that it is you on these restlessly tapping fingers on this machine.
    how do i tell you that are the lilt in my laugher.
    how do i tell you that you are the merriness in my eyes.
    how do i tell her that she is my sweaty palms smoothing down my dress.
    how do i tell her that she is the noise in my head getting nothing done.
    how can i tell you all this,.................
     
                      how can i tell you all this without breaking your heart...)

    yes, tomorrow i won't be there.

    No time for losers in this world

    "Laugh and the world laughs with you....
    weep and you weep alone....."


    Kept hearing about this every other day....kept reading about it everywhere...
    I experienced it many a times and finally I have come to terms with it.

    Emotions....Tears....Sentiments.....who has the time for these...
    Nobody wants to listen to the other person's woes...
    And the logic is simple here...."Don't we have enough problems of our own....so why add more to it"...
    This ain't wrong...its logical....its understandable and more than anything thats the way winners think!

    If you don't abide by these rules you've had it my friend....
    You will be left alone...
    So stop being emotional...stop being sentimental...
    Or you'll be treated just like me...and believe me that really hurts!!

    The world accepts only winners....there ain't time for losers...nor any time for sentimental fools!!!

    Why student fails in exam?

    It’s not the fault of the student if he/she fails, Because the year has an `ONLY 365′ days.

    Typical academic year for a student.

    1. Sundays-52,Sundays in a year, which are rest days. Balance 313 days.

    2. Summer holidays-50 where weather is very hot and difficult to study. Balance 263 days.

    3. 8 hours daily sleep-means 122 days. Balance 141 days.

    4. 1 hour for daily playing-(good for health) means 15 days. Balance

    126 days.

    5. Two hours daily for food & other delicacies (chew properly & eat)- means 30days. Balance 96 days.

    6. 1 hour for talking (man is a social animal)-means 15 days .

    Balance 81 days.

    7. Exam days per year at least 35 days. Balance 46 days.

    8. Quarterly, Half yearly and festival holidays)-40 days. Balance 6 days.

    9. For sickness at least 3 days. Balance 3 days.

    10. Movies and functions at least 2 days. Balance 1 day.

    11. That 1 day is your birthday.

    “How can a student pass??”