_______________________________________________________
| ________________ |
| | ftp: | |
| | gopher: | |
| | http: __|____________ |
| | etc | | urn: | |
| |_____________|__| | |
| URLs | | |
| |_______________| |
| URNs |
|_______________________________________________________|
URIs
ASCII space ( ) ASCII tab ( ) ASCII form feed () Zero-width space ()
|
|
|
Guide to Deja Other Headers: x-no-archive: yes does not archive
|
|
empty message to subject: remailer-list raph@kiwi.cs.berkeley.edu
Finger @anon.efga.org
|
|
|
|
|
|
|
|
|
|
proxy software http://www.peacefire.org/bypass/Proxy/ http://anon.free.anonymizer.org:80/ http://osiris.978.org/~brianr/ http://osiris.978.org/~brianr/ians/proxydown.html
open proxies http://www.winfosec.net/proxies/index.php http://www.arabhackers.org/wayne/0proxies.html http://www.multiproxy.org/faq.htm http://www.secureroot.com/category/anonymity/proxies/ http://proxys4all.cgi.net http://freebooks.hypermart.net/proxy/proxiesn.htm ttp://www.magusnet.com/proxy.html
|
|
|
|
finger groups+.*indian@anon.lcs.mit.edu ttp://www.cit-news.com
http://host99.com/freeusenet.htm not good
http://newsone.net/ GOOD Free
x-drive.com
http://www.omeganews.com not free
www.freebelt.com (GoTo.com paid result) | More Like This remarq: profile| Edit settings| sig
extra.newsguy.com very good
newfeeds.com anon posting allowed but must pay tools.rosinstrument.com/cgi-bin/fp.pl/showlog
|
Graphics |
GIMP Tutorials
|
Graphics Links Collections
|
Graphics Generation Tools
|
Free Backgrounds
|
|
|
|
Website Resources |
Domains
|
Free WebMaster Links Collections
|
Chatting
|
Free WebMaster Links Collections
|
Free Emails
|
Free Search Engines
|
Free Hosting
|
Free URL Redirection
|
|
|
|
|
|
|
Episteme Links http://www.epistemelinks.com/Main/TextName.aspx?PhilCode=Burk
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Free Shell Accounts |
Shells Links Collections
|
Free Shell Accounts
|
|
|
- Site: dice.com - Date: Oct.31, 2001 - Results:
| Search Term(s) | Number posts | Salary Range |
|
| ||
| linux | 1142 | 55K-120K |
| LPI | 1 | - |
| RHCE | 2 | - |
| SAIR | 0 | - |
| GNU | 25 | - |
| CompTIA | 2 | - |
| Linux + MCSE | 25 | - |
| Red Hat/"Red Hat"/RedHat | 243 | 70K-125K |
|
| ||
| unix | 7155 | 60K - 130K |
| solaris | 1768 | 50K - 120K |
| solaris/"Sun Unix" | 1831 | 50K - 120K |
| AIX | 704 | 55K-100K |
| HPUX HP/UX HP-UX | 1212 | 50K-90K |
| BSD | 49 | - |
| SCO | 196 | - |
| Tru64 | 38 | - |
| Irix | 59 | 60K-100K |
| SCNA/scsa | 1 | - |
| awk/gawk | 112 | 50K-100K |
| sed | 40 | 50K-100K |
| bash | 11 | 70-100K |
| ksh | 57 | 50K-100K |
| zsh | 0 | - |
| tcl/tk/tk+ | 356 | 70K-100K |
| KDE | 3 | - |
| gnome | 1 | - |
| CDE | 9 | - |
| Latex/tex | 2 | - |
| shell programming | 98 | 60-90K |
|
| ||
| webmaster web-master "Web Master" | 7739 | 25K-105K |
| perl | 1978 | 51K - 150K |
| C++ | 8228 | 55K - 130K |
| CGI | 290 | 50K-100K |
| PHP | 71 | 40K-100K |
| ASP | 1151 | 30K-100K |
| CIW | 6 | - |
| Flash | 216 | 40K-100K |
| HTML | 1870 | 28K-70K |
| XML | 1637 | 60K-110K |
| PhotoShop | 157 | 40K-50K |
| Frontpage | 64 | - |
|
| ||
| JCP | 1 | - |
| JCD | 1 | - |
| JCA | 2 | - |
| J2EE | 653 | 90K-130K |
| EJB | 645 | 70K-110K |
| java | 4239 | 40K-140K |
|
| ||
| CCIE | 71 | 80K-180K |
| MCSE | 443 | 55K-70K |
| MCP | 111 | - |
| C/C++/Cpp | 8339 | 50K-100K |
| "c sharp" | 4 | 50K-100K |
| .net | 466 | 70K-100K |
| pascal | 29 | 40K-100K |
| robotics | 69 | 60K-100K |
| embedded | 2296 | 100K |
| VC++ | 348 | 80K-100K |
|
IT News |
General IT News |
Linux News
|
Java News
|
|
|
Web Technologies
- Enabling js debugging IE:
dbl-clk(status-bar)
Options > Advanced > Dispaly a notification
about every script error checked
Options > Advanced > Disable Script
debugg unchecked
- Enabling js debugg NS:
toolbar > Display Errors
prefs.js: user_pref("javascript.console.open_on_error",true);
Regex
reg = /^[a-zA-Z0-9\-\. ]+$/; // valid chars: alphanumeric, -, . and blanks
var str = document.forms[0].procname.value;
if ( !reg.test(str) )
{ alert("Please enter a string as Processor Name"); } // if syntax of processor name is valid
...
function to check for maxlength of a struts/html textarea
if(maxLength())
return true;
return false;
function maxLength(){
str=document.forms[0].description.value;
len=str.length;
if(len>2000){
alert ("No. of characters in the Description field should be less than or equal to 2000 characters");
return false;}
else
return true;
}
....
<% out.print(PRTSConstants.TASK_TYPE_ID_ULTRASTRUCTURE); %>
<% out.print(PRTSConstants.TASK_TYPE_ID_IMAGEANALYSIS); %>
Multiple Checkbox Checking
function f_validate()
{
var var_collection = eval("document.forms[0].strClinicalChemCheckBoxes");
alert("Hi collection length is " + var_collection.length);
var j = 0;
for(i=0; i < var_collection.length; i++)
{
alert(" value: " + var_collection[i].value + " state: " + var_collection[i].checked );
if(var_collection[i].checked == "true")
{
}
else{
j++;
}
}
if ( j == var_collection.length )
{
alert("No tasks selected");
}
}
...
name is the name of the group ( = collection in struts), value is printed by
.value.
JavaScript Regular Expressions
ldapproperties_en.properties: ENTRYDN=ou=People, o=Development, o=amgen.com ATBENTRYDN=cn=ATB1, ou=Groups, o=Development, o=amgen.com ldaphost=192.168.0.12 ldapport=389 adminuid=ATBAdmin adminpassword=ATBAdmin
list of public ldap servers: http://www.emailman.com/ldap/public.html