Showing posts with label Downloading. Show all posts
Showing posts with label Downloading. Show all posts

Tuesday, April 23, 2013

Computer books in hindi

There are very few articles in hindi on Computer technology. If you are not good in English and want to learn computer, then this article is for you.

Download below books as PDF and learn computer in Hindi.

कंप्यूटर टेक्नोलॉजी के बारे में हिंदी में आजकल बहुत ही कम लेख उपलब्ध है। यदि आप अंग्रेजी भाषा में आरामदायक महसूस नहीं करते और कंप्यूटर टेक्नोलॉजी को हिंदी में सीखना चाहते है तो ये लेख आपके लिए है। 

यहाँ दी गई पुश्ताको को आप .pdf फॉर्मेट में डाउनलोड करके कभी भी अध्यन कर सकते है। उम्मीद करता हू यह लेख आपके कम आयेगा। 


Computer Science(Programming in C++, computer introduction, data structure)
Book:1
Computer Science-1 Index
Computer Science-1 Chapters
Book:2
Computer Science-2 Index
Computer Scinece-2 Chapters

Information Practices : Book for studying security, programming, and DBMS(mySQL)
Book1:
Informatics Practices-1 Index
Informatics Practices-1 Chapters
Book2:
Information Practices-2 Index
Information Practices-2 Chapters

Multimedia and Web Technology (Animation and HTML)
Book1:
Multimedia and Web Technology-1 Index
Multimedia and Web Technology-1 Chapters






Wednesday, March 30, 2011

Cygwin Installation

Cygwin is

  • a collection of tools which provide Linux kind of environment for windows.
  • a DLL which provides substantial Linux API functionality. 

This can be downloaded and installed from Cygwin website. Click Here to download.

While you are installing it will ask for package downloading, which you can download from internet or if you already have downloaded then you can give the local path. Now it will ask for packages to be installed. Just select the packages for installation.

For more information refer to this site.

It provides many linux tools like ls 

Tuesday, March 8, 2011

Alternatives for Hyper Terminal in windows vista and Windows7

for getting hyper terminal in windows Vista and 7 use this link or you can use following options:

> windows remote shell (WinRS)
> use phone and modem options if you are using Hyperterminal for modem connections (AT Command).
> Can use Putty also. Download putty.exe

For getting more info on WinRS type "winrs /?" in your command prompt.

Friday, January 1, 2010

Download google language transliter: Google Input Method: Type anywhere in your language

Google Transliteration IME is an input method editor which allows users to enter text in one of the supported languages using a roman keyboard. Users can type a word the way it sounds using Latin characters and Google Transliteration IME will convert the word to its native script. This doesn't translate any word in native language. it just only types the word as per it's sound in that language.

Download Google language translator from this site for any language like Hindi, Arabic, Kannada etc..
http://www.google.com/ime/transliteration/

Just select the language and say download and then you can click the downloaded file to install it. Check following link for download instruction.
http://www.google.com/ime/transliteration/help.html#installation

Check following link for features and how to use it:
http://www.google.com/ime/transliteration/help.html#features

Tuesday, December 29, 2009

Downloading windows 7 for free

Download windows 7 for free from this link,
but make sure that it's available for 90 days trial period only.
Following Link contains download link for Windows 7, this link is redirecting to India study channel

Check this link: Windows 7 free trial version for download

Friday, November 27, 2009

Automating Internet explorer applicatios with Win32::OLE to open any website

Introdution
Perl has a very good module, for automation in Win32 system, called as Win32::OLE. Everyone uses internet now. There are many place where you may need to fill the forms, which is very tedious job, and it requires a lot of effort and time if form has many data entry points. So you will definitely think of getting this work automated somehow, so that you don't have to fill the complete form. Also there are a lot of e-books available on net for online reading, but there main problem comes how to read e-book if you don't have internet access at any point. I wanted to get all .html pages of any online book saved to my system without doing it manually.
The best solution is to get that book downloaded for you either in html format or .chm or .pdf. All this can be done using Win32::OLE module which will automate the apllication as per your requirement.

Usage:
The first thing is how to start Iexplorer.exe, without clicking on ICON of IE. You can start IE in that way but you won't be able to do anything you want.
So to open IE :
my $IE = WIn32::OLE->new("InternetExplorer.Application") || die "Couldn't open IE\n" ;
It's good but problem was that I was not able to see IExp.So I again read the document and found that there is a property which should be set:
$IE->{visible} = 1;
This time IE will get opened but with blank screen, so to open any web page use following:
$IE->navigate("www.google.co.in");
FOr more information on how I get to know about navigate(), I installed a program call OLEview.exe.( It's available as part of resource tool kit on microsoft website as freeware)  After downloading and installing this package: got to C:\Program Files\Windows Resource Kits\Tools and Run oleviw.exe and you will find InternetExplorer application wihitn "automation" and in that within methods, click on "navigate" so you will find following information:

[id(0x00000068), helpstring("Navigates to a URL or file.")].
void Navigate(
    [in] BSTR URL,
    [in, optional] VARIANT* Flags,
    [in, optional] VARIANT* TargetFrameName,
    [in, optional] VARIANT* PostData,
    [in, optional] VARIANT* Headers);
So now you will navigate to your first site.
In next posts I will tell you how to navigate to links present in that page.