Returned 5 Results for "search" Ordered By Relevance

Useful Regex for CSV to SQL

relevance: [3.32]
2008-03-07 Digg! icurtain Delcious icurtain
As a point of reference how to convert a comma delimited file to an SQL insert Assuming your data is the following 'key','value','0' 'key','value','1' In notepad++ the syntax for search and replace would be as follows: search: ('[^']+','[^']+','[^']+') replace: (\1) syntax varies d...

search for DHCP servers on a network - dhclient

relevance: [2.86]
2008-06-16 Digg! icurtain Delcious icurtain
If you wish to search for DHCP servers on a network just type: dhclient [interface] and it will bring back information on all running DHCP servers on your subnet...

MySQL full indexed text search - just like a real database!!

relevance: [2.81]
2009-03-24 Digg! icurtain Delcious icurtain
As of My Sql 3.something you can now add text indexes to your columns and do full text searches with relevance ranking! text indexes are fantastic and allow more efficient searching and categorisation of text. The relevance ranking feature is rather good too and gives you a much better idea of how y...

Command Line Web Browser

relevance: [1.92]
2008-06-05 Digg! icurtain Delcious icurtain
If need to browse the world wide web and you are either running in an ssh window or you really hate the whole web 2 thing.. help is at hand Centos yum install lynx Debian apt-get intall lynx run lynx then you can view this page like this... icurtain - lights on the roundab...

references and grouped searches in textpad regex

relevance: [1.84]
2007-10-16 Digg! icurtain Delcious icurtain
when you group searches in the textpad regex editor you have to escape the grouping brackets with a backslash otherwise it searches them as literal characters for example: \([0-9]\) will search for any number 0-9 but if you omit the the escape slash it will look for (1) for example...