How to Download MP3’s from WWW using Google

Author: asish /

There is always a lot of search queries on Google for free mp3’s. Unfortunately a direct search for free mp3’s always leads to a wild goose chase that will not get you to the source of the mp3’s that you want. What then is the secret behind getting mp3’s on the internet?

Actually it is fairly easy to get hold of mp3’s by searching in site directories. this search with a little modification will also help locate pdf’s photo’s spreadsheets and more.

Let’s start with a easy search. Type into Google the following:

?intitle:index.of? mp3 [artist] [title]

Replace [artist] with the artist/singer/band you’re looking for and [title] with the song title. Just one of them also fine.

As if by magic, a list of mp3’s with your search terms will appear. You can download the file by right clicking on it and then select save as.

As an alternative, you can also use the following query to search MP3 on the web:

“parent directory ” MP3 -xxx -html -htm -php -shtml -opendivx -md5 -md5sums [artist] [title]

Same as above, just replace [artist] and [title] with the artist/singer/band name and the song title.

A third search term is as follow:

?inurl:multiply.com/music? [artist] [title]

And a last one that will also work just fine:

-inurl:(htm|html|php) intitle:”index of” +”last modified” +”parent directory” +description +size +(.mp3|.wma) [artist] [title]

Happy hunting

Favorite Programming Quotes

Author: asish /


The first 90 percent of the code accounts for the first 90 percent of the development time…The remaining 10 percent of the code accounts for the other 90 percent of the development time.
Tom Cargill

Most of you are familiar with the virtues of a programmer. There are three, of course: laziness, impatience, and hubris.
Larry Wall

Measuring programming progress by lines of code is like measuring aircraft building progress by weight.
Bill Gates

Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.
Brian W. Kernighan

Once a new technology starts rolling, if you’re not part of the steamroller, you’re part of the road.
Stewart Brand

In theory, there is no difference between theory and practice. But, in practice, there is.
Jan L. A. van de Snepscheut

The hardest part of design … is keeping features out.
Donald Norman

Before software can be reusable it first has to be usable.
Ralph Johnson

If debugging is the process of removing bugs, then programming must be the process of putting them in.
Edsger Dijkstra

Software and cathedrals are much the same - first we build them, then we pray.
Anonymous Preacher

The goal of Computer Science is to build something that will last at least until we’ve finished building it.
Anonymous Consultant

The software isn’t finished until the last user is dead.
Anonymous Support Group Member

Better train people and risk they leave - than do nothing and risk they stay.
Anonymous Technical Trainer

Programming is 10% science, 20% ingenuity, and 70% getting the ingenuity to work with the science.
Anonymous Scientist

All programmers are playwrights and all computers are lousy actors.
Anonymous Hack Actor

Bad code isn’t bad, its just misunderstood.
Anonymous Code Behaviorist

It is easier to measure something than to understand what you have measured.
Anonymous Analyst

The sooner you get behind in your work, the more time you have to catch up.
Anonymous Scheduler

When a programming language is created that allows programmers to program in simple English, it will be discovered that programmers cannot speak English.
Anonymous Linguist

Benchmarks don’t lie, but liars do benchmarks.
Anonymous Tester

Why do we never have time to do it right, but always have time to do it over?
Anonymous Code Monkey

Anonymity of proxy server explained

Author: asish / Labels: , , ,

How does Proxy Server Works ?

This is the First Question that arises in our mind when we use the Proxy Servers for Surfing the Internet without revealing our Identity to Others. Here all these mindboggling questions are answered with easy to understand examples.

The exchange of information in Internet is made by the “client - server” model. A client sends a request (what files he needs) and a server sends a reply (required files). For close cooperation (full understanding) between a client and a server the client sends additional information about itself: a version and a name of an operating system, configuration of a browser (including its name and version) etc. This information can be necessary for the server in order to know which web-page should be given (open) to the client. There are different variants of web-pages for different configurations of browsers. However, as long as web-pages do not usually depend on browsers, it makes sense to hide this information from the web-server.

What your browser transmits to a web-server:
a name and a version of an operating system
a name and a version of a browser
configuration of a browser (display resolution, color depth, java / javascript support, …)
IP-address of a client
Other information

The most important part of such information (and absolutely needless for a web-server) is information about IP-address. Using your IP it is possible to know about you the following:
a country where you are from
a city
your provider?s name and e-mail
your physical address

Information, transmitted by a client to a server is available (accessible) for a server as environment variables. Every information unit is a value of some variable. If any information unit is not transmitted, then corresponding variable will be empty (its value will be undetermined).

These are some environment variables:

REMOTE_ADDR ? IP address of a client

HTTP_VIA ? if it is not empty, then a proxy is used. Value is an address (or several addresses) of a proxy server, this variable is added by a proxy server itself if you use one.

HTTP_X_FORWARDED_FOR ? if it is not empty, then a proxy is used. Value is a real IP address of a client (your IP), this variable is also added by a proxy server if you use one.

HTTP_ACCEPT_LANGUAGE ? what language is used in browser (what language a page should be displayed in)

HTTP_USER_AGENT ? so called “a user?s agent”. For all browsers this is Mozilla. Furthermore, browser?s name and version (e.g. MSIE 5.5) and an operating system (e.g. Windows 98) is also mentioned here.

HTTP_HOST ? is a web server?s name

This is a small part of environment variables. In fact there are much more of them (DOCUMENT_ROOT, HTTP_ACCEPT_ENCODING, HTTP_CACHE_CONTROL, HTTP_CONNECTION, SERVER_ADDR, SERVER_SOFTWARE, SERVER_PROTOCOL, …). Their quantity can depend on settings of both a server and a client.

These are examples of variable values:

REMOTE_ADDR = 194.85.1.1
HTTP_ACCEPT_LANGUAGE = ru
HTTP_USER_AGENT = Mozilla/4.0 (compatible; MSIE 5.0; Windows 98)
HTTP_HOST = www.webserver.ru
HTTP_VIA = 194.85.1.1 (Squid/2.4.STABLE7)
HTTP_X_FORWARDED_FOR = 194.115.5.5

Anonymity at work in Internet is determined by what environment variables “hide” from a web-server.

If a proxy server is not used, then environment variables look in the following way:

REMOTE_ADDR = your IP
HTTP_VIA = not determined
HTTP_X_FORWARDED_FOR = not determined

According to how environment variables “hided” by proxy servers, there are several types of proxies
Transparent Proxies

They do not hide information about your IP address:

REMOTE_ADDR = proxy IP
HTTP_VIA = proxy IP
HTTP_X_FORWARDED_FOR = your IP

The function of such proxy servers is not the improvement of your anonymity in Internet. Their purpose is information cashing, organization of joint access to Internet of several computers, etc.
Anonymous Proxies

All proxy servers, that hide a client?s IP address in any way are called anonymous proxies

Simple Anonymous Proxies

These proxy servers do not hide a fact that a proxy is used, however they replace your IP with its own:
REMOTE_ADDR = proxy IP
HTTP_VIA = proxy IP
HTTP_X_FORWARDED_FOR = proxy IP

These proxies are the most widespread among other anonymous proxy servers.

Distorting Proxies

As well as simple anonymous proxy servers these proxies do not hide the fact that a proxy server is used. However a client?s IP address (your IP address) is replaced with another (arbitrary, random) IP:

REMOTE_ADDR = proxy IP
HTTP_VIA = proxy IP
HTTP_X_FORWARDED_FOR = random IP address
High Anonymity Proxies

These proxy servers are also called “high anonymity proxy”. In contrast to other types of anonymity proxy servers they hide a fact of using a proxy:

REMOTE_ADDR = proxy IP
HTTP_VIA = not determined
HTTP_X_FORWARDED_FOR = not determined

That means that values of variables are the same as if proxy is not used, with the exception of one very important thing ? proxy IP is used instead of your IP address.
Summary

Depending on purposes there are transparent and anonymity proxies. However, remember, using proxy servers you hide only your IP from a web-server, but other information (about browser configuration) is accessible!

The dark knight review

Author: asish / Labels:

http://i32.photobucket.com/albums/d8/sic_kid/TheDarkKnightTheJoker13.jpg

You can read this review in the new issue of Southern Exposure Magazine:

"The Dark Knight"
by Ryan Smith

Comic book movies have been on a roller-coaster for the last ten years. “X-Men” was just ok, “X2” was good, “X-Men: The Last Stand” was forgettable. “Spider-Man” was decent, “Spider-Man 2” was fantastic, “Spider-Man 3” was average. “Superman Returns” was visually stimulating but narratively crippled. “Hulk” was better than people gave it credit for (haven’t seen the new one), “Hellboy” was great, “Hellboy II” was fun but not as good as the first, “300” was a two-hour music video, “Iron Man” was wonderful, “V For Vendetta” was better than expected, “Sin City” was nice to look at but gave me a stomach ache, and I hear “Daredevil”, “Fantastic Four”, “Catwoman”, and “The Punisher” aren’t worth my time.

So what about “Batman Begins”? Well, if you ask me, I think it’s towards the top of the list, easily one of the best comic book movies of all time. Director Christopher Nolan took a campy concept and turned it into an epic gothic drama that made you believe a grown man might just put on tights and fight crime (given the appropriate motivation).

But now “The Dark Knight” comes along and not only surpasses the first film, but manages to rise above every other comic book movie I can think of. I’ve been racking my brain and I just can’t come up with another that compares in terms of action, characters, narrative structure, and expectations. This is a truly satisfying movie.

Be warned though; the title is appropriate. This is one dark affair. Heath Ledger’s Joker is one of the most frightening movie villains in quite some time and Harvey Dent’s transformation into Two-Face is quite disturbing as well (just because Wal Mart carries Batman action figures doesn’t mean you should take your kids to this one). But for fans of the first film, you certainly won’t be disappointed here.

As I mentioned, Ledger (who is a shoe-in for a posthumous Oscar) is truly chilling. Forget the Joker you know, the one who wants to take over the world. Ledger’s Joker just wants to watch the world burn. A genuine anarchist, this skinny freak creates chaos not in the name of a particular creed, but for the sake of chaos itself. From the first scene, we know the clown in the purple suit isn’t one to mess with. And he proves to be a bona fide threat to Christian Bale’s Batman, who has been shunned by the city he strives to protect.

Unlike many films in the genre, “The Dark Knight” manages to dig deep into the human condition, dealing with authentic emotions such as loneliness and despair, and conflicting ideologies such as choice vs. chance and chaos vs. order. Like the first film, “The Dark Knight” makes it clear that it is our choices that define us.

This isn’t the best comic book movie of the year. “The Dark Knight” just swept away the competition to become the best comic book movie of all time.

Edit any website you want

Author: asish /

This is a java script which allows u to edit any website........ change every text in the website.... but not save it!!!!!

1. Go to any website

2. Paste the below code in the address bar of your browser

3. You can edit the website , but you cannot save it.

CODE:

javascript:document.body.contentEditable='true'; document.designMode='on'; void 0