Tell The United States Patent and Tradem...

ed, en, uni

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Tell The United States Patent and Tradem...
# 1  
Old 06-21-2008
Tell The United States Patent and Tradem...

Tell The United States Patent and Trademark Office that software and business method patents should not be part of the EU-US patent treaty. The USPTO has put a call out for public comments. They can be contacted, either by sending a fax to Mr. Santamauro to (571) 273-0085 or by emailing plharmonization@uspto.gov. The deadline is June 22 (Sunday).

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Ps command showing different states for same process

I am using HP-UX,KSH $ jobs -l + 19377 Running nohup ksh cat_Duplicate_Records_Removal.ksh </dev/null >/dev/null 2>&1 & $ ps -p 19377 -fl F S UID PID PPID C PRI NI ADDR SZ WCHAN STIME TTY TIME COMD 401 S catmgr 19377 19491 ... (1 Reply)
Discussion started by: TomG
1 Replies

2. Hardware

Hyperthreaded virtual cores, different C-States?

turbostat reports C-states of all CPU cores, and includes entries for each hyper-threaded core as well. Often enough the two logical cores on a single physical core will list different C state percentages. Does that make any sense? Is this reporting the c-states of the few duplicated parts... (8 Replies)
Discussion started by: agentrnge
8 Replies

3. Shell Programming and Scripting

Count no of netstat states

netstat | awk '/server/ {for(i=1;i<2;i++) {getline;print}' Output: ESTABLISHED ESTABLISHED ESTABLISHED ESTABLISHED ESTABLISHED TIME_WAIT TIME_WAIT From the above command I'm getting all the states. I want to count the states and write to a file, like "Count of ESTABLISHED... (6 Replies)
Discussion started by: Roozo
6 Replies

4. What is on Your Mind?

Place your bits - IRB Sevens World Series Draw (Dubai, United Arab Emirates) - Rugby

Hi, Any rugby fans out there. Sevens rugby is really exciting to watch. The final is only about 20mins give or take, but its fast paced and very exciting. The IRB Sevens World Series, is a series of international rugby union sevens tournaments. The tournaments, run by the IRB, feature... (0 Replies)
Discussion started by: ni2
0 Replies

5. UNIX and Linux Applications

Where can I find UNIX training course in the United States?

Hi guys, Can you help me please to find an appropriate course of UNIX in the United States. Also, can you provide me some information about the schools or institutes that offer it in the U.S. Thanks, (0 Replies)
Discussion started by: Malik Dera
0 Replies

6. UNIX for Advanced & Expert Users

Unix process states

I am trying to write my own Unix compliant (SUSv4) OS - Just a hobby OS, nothing serious. While going through the standard, I couldn't find any explicit information on process states. What I could find was (excluding the real-time considerations)- From this it can be inferred that the... (2 Replies)
Discussion started by: tinkerbeast
2 Replies
Login or Register to Ask a Question
GEOIP_COUNTRY_NAME_BY_NAME(3)						 1					     GEOIP_COUNTRY_NAME_BY_NAME(3)

geoip_country_name_by_name - Get the full country name

SYNOPSIS
string geoip_country_name_by_name (string $hostname) DESCRIPTION
The geoip_country_name_by_name(3) function will return the full country name corresponding to a hostname or an IP address. PARAMETERS
o $hostname - The hostname or IP address whose location is to be looked-up. RETURN VALUES
Returns the country name on success, or FALSE if the address cannot be found in the database. EXAMPLES
Example #1 A geoip_country_name_by_name(3) example This will print where the host example.com is located. <?php $country = geoip_country_name_by_name('www.example.com'); if ($country) { echo 'This host is located in: ' . $country; } ?> The above example will output: This host is located in: United States SEE ALSO
geoip_country_code_by_name(3), geoip_country_code3_by_name(3). PHP Documentation Group GEOIP_COUNTRY_NAME_BY_NAME(3)