Microsoft "Donates" $3,000,000,000 to Feds


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Microsoft "Donates" $3,000,000,000 to Feds
# 1  
Old 11-12-2002
Microsoft "Donates" $3,000,000,000 to U.S. Federal Candidates

Surreal quote from the news link below:

Quote:
Ballmer, who also had meetings on Capitol Hill, has spent the past 18 months attempting to improve the company's image. At the same time, the company has expanded its lobbying efforts and campaign giving, contributing nearly $3 billion in the 2002 election cycle, two-thirds of it to Republicans.
http://www.washingtonpost.com/wp-dyn...2002Nov12.html
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Problems activating "mod_rewrite" (I can't edit 000-default file)

Hello everyone, Maybe an expert could help me.. I'm trying to activate mod_rewrite module on a Ubuntu 11.04 server (natty) and I having problem to edit the file 000-default in 3rd step, the steps to activate the module are: 1-Install Apache web server in Ubuntu Linux 2-Enable mod_rewrite... (6 Replies)
Discussion started by: cgkmal
6 Replies

2. UNIX for Dummies Questions & Answers

Chmod 000

Hello, If I am an user on a Solaris 9 system and if I do Chmod 000 on the folder corresponding to my workspace... What will happened??? (1 Reply)
Discussion started by: Erythro73
1 Replies
Login or Register to Ask a Question
UALARM(3)						   BSD Library Functions Manual 						 UALARM(3)

NAME
ualarm -- schedule signal after specified time LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <unistd.h> useconds_t ualarm(useconds_t useconds, useconds_t interval); DESCRIPTION
This is a simplified interface to setitimer(2). The ualarm() function waits a count of useconds before asserting the terminating signal SIGALRM. System activity or time used in processing the call may cause a slight delay. If the interval argument is non-zero, the SIGALRM signal will be sent to the process every interval microseconds after the timer expires (e.g., after useconds number of microseconds have passed). Due to a setitimer(2) restriction, the maximum number of useconds and interval is limited to 100,000,000,000,000 (in case this value fits in the unsigned integer). RETURN VALUES
When the signal has successfully been caught, ualarm() returns the amount of time left on the clock. NOTES
A microsecond is 0.000001 seconds. SEE ALSO
getitimer(2), setitimer(2), sigpause(2), sigvec(2), alarm(3), signal(3), sleep(3), usleep(3) HISTORY
The ualarm() function appeared in 4.3BSD. BSD
April 19, 1994 BSD