473,545 Members | 1,310 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

New: Javascript "Knowledge Base" search page

Javascript "Knowledge Base" Search: http://www.javascripttoolbox.com/search/

Responses to questions on this group are often along the lines of "did you
read the FAQ" or "did you search the archives?" or "did you do a google
search?".

To regular readers and experienced javascript developers, knowing how and
where to search and filtering out junk results is an easy task. For most
javascript users, however, it's not so easy.

So, I created the above page to simplify the task of searching for good
javascript information. The idea is very simple - link to Google search
results that search only specific web sites known to have good javascript
information (including the FAQ), and usenet posts from active and
knowledgeable participants in this newsgroup. (At the risk of sounding vain,
I did include myself and my sites in the searches, but what do you expect?
;)

This way, the search is very specific to javascript and is most likely to
give the most accurate results first. If a person wants to search all of
Google instead of the narrowed-down results, they can of course always do
that.

Right now, the web search looks for urls matching:
jibbering.com/faq/
www.merlyn.demon.co.uk
javascripttoolb ox.com
www.mattkruse.com/javascript/
www.litotes.demon.co.uk
javascript.croc kford.com
www.json.org

The usenet search searches comp.lang.javas cript for posts whose authors
match:
"Jim Ley"
"Lasse"
"Randy Webb"
"Martin Honnen"
"John Stockton"
"Richard Cornford"
"Michael Winter"
"RobG"
"Matt Kruse"

Any feedback?

Also, any recommendations for additional sites or authors to include in the
search?

--
Matt Kruse
http://www.JavascriptToolbox.com
http://www.AjaxToolbox.com
Apr 8 '06 #1
7 1483
Matt Kruse wrote:
<snip>
... (At the risk of sounding vain, I did include myself
and my sites in the searches, but what do you expect? ;)
Don't ask ;-)

<snip> Right now, the web search looks for urls matching:
jibbering.com/faq/
Jim has material on javascript on his site that is not in/under the faq
directory. For example, his well known XML HTTP request page.

<snip> The usenet search searches comp.lang.javas cript for
posts whose authors match:
"Jim Ley"
"Lasse"
...

<snip>

You have got to include 'Laurent Bugnion', 'Grant Wagner', 'Steve van
Dongen' and 'Yann-Erwan Perio' (AKA 'Yep' (but not the 'Yep' who posts
to alt.comp.lang.j avascirpt as he is a twit)). We may not have heard
much from any of them recently but an archive search that turns up a
post by any has likely fond something worth reading.

Richard.
Apr 9 '06 #2
Richard Cornford wrote:
Matt Kruse wrote:

<snip>
The usenet search searches comp.lang.javas cript for
posts whose authors match:
"Jim Ley"
"Lasse"
...

<snip>

You have got to include ...


And 'Lee', of course.

Richard.
Apr 9 '06 #3
Matt Kruse wrote:

[snip]
Also, any recommendations for additional sites or authors to include in the
search?


http://www.quirksmode.org

Sandor

Apr 9 '06 #4
Richard Cornford wrote:
You have got to include ...

Added all those authors, and jim's xmlhttprequest page. I also modified the
page to show the criteria being used and to allow the user to un-check sites
or authors to be searched. The UI could probably still use some
improvement... any suggestions?
And 'Lee', of course.
The problem with including "Lee" is that there are a lot of authors that
match "Lee" which get included. So unless I can get more specific with it,
it's probably best to leave it out.

Sandor Spruit wrote: http://www.quirksmode.org


Good catch - I added that one too.

Thanks for both of your feedback!

--
Matt Kruse
http://www.JavascriptToolbox.com
http://www.AjaxToolbox.com
Apr 9 '06 #5
Sandor Spruit wrote:
Matt Kruse wrote:

[snip]
Also, any recommendations for additional sites or authors to include
in the search?

http://www.quirksmode.org


Unquestionably - I have found that an excellent resource.

Seconded!
Apr 10 '06 #6
Matt Kruse said the following on 4/8/2006 6:01 PM:
Javascript "Knowledge Base" Search: http://www.javascripttoolbox.com/search/

Responses to questions on this group are often along the lines of "did you
read the FAQ" or "did you search the archives?" or "did you do a google
search?".

To regular readers and experienced javascript developers, knowing how and
where to search and filtering out junk results is an easy task. For most
javascript users, however, it's not so easy.

So, I created the above page to simplify the task of searching for good
javascript information. The idea is very simple - link to Google search
results that search only specific web sites known to have good javascript
information (including the FAQ), and usenet posts from active and
knowledgeable participants in this newsgroup. (At the risk of sounding vain,
I did include myself and my sites in the searches, but what do you expect?
;)
I didn't expect the 5th response for a search for the word "eval" to be
a post in comp.lang.perl. misc from 1997 from Matt Kruse though :)

You may want to default it to sort the results by date instead of relevance.
This way, the search is very specific to javascript and is most likely to
give the most accurate results first. If a person wants to search all of
Google instead of the narrowed-down results, they can of course always do
that.
The Usenet search should be limited to the c.l.j and
microsoft.publi c.scripting.jsc ript group archives. If you don't, there
is no telling what a person might find in alt.comp.lang.j avascript :)
Any feedback?


Yeah, add some naked women so I can get my porn and research done at the
same time :)

--
Randy
comp.lang.javas cript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Apr 14 '06 #7
Randy Webb wrote:
The Usenet search should be limited to the c.l.j and
microsoft.publi c.scripting.jsc ript group archives.


Ah, yes. It did that previously but my most recent update wiped out the
group filter. I've added it back in. Thanks for letting me know!

--
Matt Kruse
http://www.JavascriptToolbox.com
http://www.AjaxToolbox.com
Apr 14 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2657
by: thechaosengine | last post by:
Hi all, I wanted to put some common security functions into a class that inherits from the Page class and then use the new class as the basis for all my pages. Unfortunately, if I try and inherit from my new SecurePage class and not the old Page class, the designer breaks and will only allow me into html mode. Bugger. The error message...
1
6915
by: WFB | last post by:
Hi, I have a base class from which all of my pages derive (ABCBasePage). For example, ABCCustomerSelect Inherits ABCPasePage. I would now like to have ABCPocketSelect which should inherit from ABCCustomerSelect. My problem is that when ABCPocketSelect is loaded the Page_Load event in ABCBasePage is called, followed by the load event for...
2
1765
by: Mike Taylor | last post by:
I'm trying to create a base page class for my project (am new to ASP.NET, so am a bit stumped) - I'm using VS.NET 2003, btw. OK, my dummy base page class is shown below: using System; using System.Web; using System.Web.UI; using System.Web.Security; using System.Security.Principal;
10
6019
by: Davíð Þórisson | last post by:
Please can someone tell me how on earth to create an instance of my top level (base) Page class so that I can access it's objects from an user control?? Someone told me public myParent = (default_aspx) this.Page; where default_aspx is the class name of the base Page...
2
2355
by: craig.wagner | last post by:
I have converted two ASP.NET 1.1 applications to ASP.NET 2.0. Each one had some odd results, most of which I've been able to address. I'm looking for some confirmation/advice. Both applications use a base page class inherited from System.Web.UI.Page. In both cases my base page class is in a separate folder of the web application (e.g....
0
1480
by: hamstak | last post by:
I had developed a custom base page class for the 1.1 framework which I have now migrated to the 2.0 framework. I discovered that the new partial class system -- which appears to "automagically" assign the Page_Load method as the Load event handler in the hidden partial class -- does not carry over to derived Page classes. This being the...
2
1693
by: Wade | last post by:
Hi all, We have created some "Base" class pages for our WebForms and UserControls. For instance, when we create a WebForm called "WebForm1.aspx", instead of inheriting from "System.Web.UI.Page" we implement from our "Base" class page which itself inherits from "System.Web.UI.Page" -- I know, pretty standard. We do the same with our...
2
278
by: JJ | last post by:
Lets say you use a custom base page that inherits from System.Web.UI.Page and you have defined properties in this custom page. If I set the properties from a web page that inherits from my new base page. How can I persist these properties to another web page that loads that also uses the new base page? How would you persist properties to...
6
9122
by: =?Utf-8?B?SmF5IFBvbmR5?= | last post by:
I am trying to access a Public property on a Master Page from a Base Page. On the content pages I have the MasterType Directive set up as follows: <%@ MasterType virtualpath="~/Master.master" %> On the Master Page I have a public property exposed: Public Property ErrorMessage() As String Get Return txtError.InnerText End Get
0
7457
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7391
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7651
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7802
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7746
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5320
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3443
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1869
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
693
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.