Advanced Search
Search Results
15 total results found
UCLA Network Contacts Search, Subnet Search, etc...
http://www.noc.ucla.edu/cgi-bin/contactsAll you need to know to find IP address owners @ UCLA ;-)
Lucene
Lucene – Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java. http://lucene.apache.org/java/docs/
Clear IE forms
Problem: User wants to clear what shows up in Internet Explorer when doing searches via the web (Google or Yahoo).Solution:Open Internet Explorer.Click on Tools.Click on Internet Options.Click the Content tab.Click the AutoComplete button.Click the Clear Forms...
Including sites in main UCLA search engine
The Autonomy Search Engine used by the Vignette Portal Project spiders all campus websites starting with ucla.edu, uclaextension.edu, uclabruins.com, uclastore.com, uclaalumni.net, juei.org, and uclaconferencecenter.com.This search process is currently being u...
Google Guidelines for Webmasters
Google offers tips and guidelines for webmasters and web developers in their Webmaster Help Center. Sitemaps, robots.txt, improving ranking, adding or removing sites from the index, etc.
How do I add or remove a page/website/etc from Google's index!
add:http://www.google.com/support/webmasters/bin/answer.py?answer=34397remove:http://www.google.com/support/webmasters/bin/answer.py?answer=35301
Case-insensitive searching in vi
By default, all searches in vi are case-sensitive. To do a case-insensitive search, go into command mode (press Escape), and type :set ignorecase. You can also type :set ic as an abbreviation.To change back to case-sensitive mode, type :set noignorecase or :se...
Finding most recently changed files in Unix
How do I find the most recently changed files in a set of subdirectories on Unix or Linux?Answer 1: This will show the most recent 10 files in current directory and below.It supports filenames with spaces. And can be slow with lots of files http://stackoverflo...
Configuring MediaWiki to Search for Three Letter Words
By default MediaWiki uses MySQL and the default FULLTEXT indexing uses built-in stop words and a minimum word length of four. A list of the stop words is available but are the usual thing (the, and, one_, etc.). You can set your own stop words by setting the f...
ArcGIS 9.2 and Windows Vista
The original ArcGIS 9.2 distribution— including the one at UCLA Software Central— is not properly compatible with Windows Vista.Per ESRI:http://support.esri.com/index.cfm?fa=knowledgebase.techarticles.articleShow&d=34020You will need to follow the instruct...
Google Power Search
Improve your Google search skills with Google’s Power Searching and Advanced Power Searching online courses— Power Searching and Advanced Power Searching Courses, http://www.powersearchingwithgoogle.com/ Go Back to a Specific Date in Google Web History – June...
Adjust Firefox top visit suggestion in address bar
Firefox 43.0.1 introduced a new "visit: suggestion at the top of the list of sites returned in searches entered into the address bar.To disable this (standard behavior prior to 43.0.1): Go to about:config Change browser.urlbar.unifiedcomplete to falseTo enable...
reverse image search
8 Best Reverse Image Search Engines And Websites – March 4, 2016 How One Visual Search Startup (Clarifai) Plans to One-Up TinEye – Oct. 3, 2016
Finding things in this Knowledge Base
Search See the BookStack User Documentation information on advanced searching: https://www.bookstackapp.com/docs/user/searching/ Browsing The home page shows the most recently updated pages. Clicking on Books will show all the topics there are pag...
How can I search/replace strings in MySQL?
MySQL lets you replace all occurrences of a character or string of characters in a table with some other character or string.UPDATE table SET field1 = REPLACE(field1, 'replace_that', 'with_this'), field2 = REPLACE(field2, 'and_that', 'with_this')As an example,...