unix and linux commands - unix shell scripting

On the Internet, nobody can tell you are an Absolute fraud and cheat


 
Thread Tools Search this Thread
# 1  
Old 12-15-2008
On the Internet, nobody can tell you are an Absolute fraud and cheat

A 60 Minutes story about a particular case of online poker cheating, a joint investigation with the Washington Post.  Would you trust large sums of money, or the drugs upon which your life and health depend, or private and intimate details of your life to total strangers, about whom you know nothing?

The answer, in case after case, appears to be "yes."

Image
Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

sed and awk cheat sheet

Where can I get sed and awk cheat sheet ? Need to look for usage of special charaters and meta charaters (1 Reply)
Discussion started by: pitagi
1 Replies
Login or Register to Ask a Question
ost::IPV4Host(3)					     Library Functions Manual						  ost::IPV4Host(3)

NAME
ost::IPV4Host - This object is used to hold the actual and valid internet address of a specific host machine that will be accessed through a socket. SYNOPSIS
#include <address.h> Inherits ost::IPV4Address. Public Member Functions IPV4Host (const char *host=NULL) Create a new host address for a specific internet host. IPV4Host (struct in_addr addr) Convert a system socket binary address such as may be returned through the accept() call or getsockpeer() into an internet host address object. IPV4Address & operator= (unsigned long addr) Allows assignment from the return of functions like inet_addr() or htonl() IPV4Host & operator&= (const IPV4Mask &mask) Mask the internet host address object with a network mask address. Friends class __EXPORT IPV4Mask __EXPORT IPV4Host operator& (const IPV4Host &addr, const IPV4Mask &mask) Additional Inherited Members Detailed Description This object is used to hold the actual and valid internet address of a specific host machine that will be accessed through a socket. Author: David Sugar dyfet@ostel.com Address of a specific Internet host machine. Constructor &; Destructor Documentation ost::IPV4Host::IPV4Host (const char *host = NULL) Create a new host address for a specific internet host. The internet host can be specified in a null terminated ASCII string and include either the physical host address or the DNS name of a host machine. Hence, an IPV4Host ('www.voxilla.org') can be directly declaired in this manner. Defaults to the IP address that represents the interface matching 'gethostname()'. Parameters: host dns or physical address of an Internet host. ost::IPV4Host::IPV4Host (struct in_addraddr) Convert a system socket binary address such as may be returned through the accept() call or getsockpeer() into an internet host address object. Parameters: addr binary address of internet host. Member Function Documentation IPV4Host& ost::IPV4Host::operator&= (const IPV4Mask &mask) Mask the internet host address object with a network mask address. This is commonly used to coerce an address by subnet. IPV4Address& ost::IPV4Host::operator= (unsigned longaddr) [inline] Allows assignment from the return of functions like inet_addr() or htonl() Reimplemented from ost::IPV4Address. References ost::IPV4Address::operator=(). Friends And Related Function Documentation friend class __EXPORT IPV4Mask [friend] __EXPORT IPV4Host operator& (const IPV4Host &addr, const IPV4Mask &mask) [friend] Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::IPV4Host(3)