HP Web-Connected Printer Without PC

>гардеробиett-Packard on Monday introduced an Internet-connected inkjet printer that lets people print coupons, movie tickets, maps, and other items from Web sites without having to turn on a PC.

The HP Photosmart Premium with TouchSmart Web has a 4.33-inch touch screen for navigating to sites. The printer includes software for accessing Web content from HP partners, including USA Today, Google (NSDQ: GOOG), Fandango, Coupons.com, DreamWorks Animation, Nickelodeon, Web Sudoku, and Weathernews.
HP also launched HP Apps Studio, a site for downloading future applications for the printer. HP has included application programming interfaces with the printer’s software platform for third parties to build software and make it available through the Apps Studio, a strategy made popular with Apple’s launch of the App Store for the iPhone and iPod Touch.

Popularity: 94% [?]

Delaying data could cut net’s carbon footprint



Juggling the way information flows in computer networks and putting idle machines to sleep can dramatically cut power use

Popularity: 25% [?]

BBC & ISPs At Loggerheads Over iPlayer Bandwidth Issues

“ISPs say the on-demand TV service is putting strain on their networks, which need to be upgraded to cope.”

Popularity: 25% [?]

Hubble: Internet Reachability And Monitoring in Real-Time For Black Holes on the Internet

“A research project at the University of Washington spots sections on the Internet that cannot be reached for several hours.”

Popularity: 25% [?]

Long-range Wi-Fi threat to satellite communications

It was touted as the big hope for bridging the digital divide, but WiMAX could interfere with the developing world’s TV and telephony links

Popularity: 25% [?]

FTP:

  FTP [26] is one of the most useful and powerful TCP/IP utilities for
   the general user. FTP allows users to upload and download files
   between local and remote hosts. Anonymous FTP, in particular, is
   commonly available at file archive sites to allow users to access
   files without having to pre-establish an account at the remote host.
   TELNET might, in fact, be used for this purpose but TELNET gives the
   user complete access to the remote system; FTP limits the user to
   file transfer activities.

   The general form of the FTP command is:

         ftp [IP_address|host_name]

   An FTP session can be initiated in several ways. In the example shown
   below, an FTP control connection is initiated to a host (the Defense
   Data Network’s Network Information Center) by supplying a host name
   with the FTP command; optionally, the host’s IP address in dotted
   decimal (numeric) form could be used. If neither host name nor IP
   address are supplied in the command line, a connection to a host can
   be initiated by typing open host_name or open IP_address once the FTP
   application has been started.

   The remote host will ask for a username and password. If a bona fide
   registered user of this host supplies a valid username and password,
   then the user will have access to any files and directories to which
   this username has privilege. For anonymous FTP access, the username
   anonymous is used. Historically, the password for the anonymous user
   (not shown in actual use) has been guest, although most systems today
   ask for the user’s Internet e-mail address (and several sites attempt
   to verify that packets are coming from that address before allowing
   the user to login).

   The “help ?” command may be used to obtain a list of FTP commands and
   help topics available with your software; although not always shown,
   nearly all TCP/IP applications have a help command. An example of the
   help for FTP’s type command is shown in the sample dialogue. This
   command is very important one, by the way; if transferring a binary
   or executable file, be sure to set the type to image (or binary on
   some systems).

   The dir command provides a directory listing of the files in the
   current directory at the remote host; the UNIX ls command may also
   usually be used. Note that an FTP data transfer connection is
   established for the transfer of the directory information to the
   local host. The output from the dir command will show a file listing
   that is consistent with the native operating system of the remote

Continue Reading…

Popularity: 32% [?]

The Two Fundamental Tools

TELNET:

   TELNET [27] is TCP/IP’s virtual terminal protocol. Using TELNET, a
   user connected to one host can login to another host, appearing like
   a directly-attached terminal at the remote system; this is TCP/IP’s
   definition of a virtual terminal. The general form of the TELNET
   command is:

      telnet [IP_address|host_name] [port]

Continue Reading…

Popularity: 29% [?]

Finger

   The Finger program may be used to find out who is logged in on
   another system or to find out detailed information about a specific
   user. This command has also introduced a brand new verb; fingering
   someone on the Internet is not necessarily a rude thing to do!  The
   Finger User Information Protocol is described in RFC 1288 [32]. The
   most general format of the Finger command is:

      finger [username]@host_name
Continue Reading…

Popularity: 27% [?]

Ping

   Ping, reportedly an acronym for the Packet Internetwork Groper, is
   one of the most widely available tools bundled with TCP/IP software
   packages.  Ping uses a series of Internet Control Message Protocol
   (ICMP) [22] Echo messages to determine if a remote host is active or
   inactive, and to determine the round-trip delay in communicating with
   it.

   A common form of the Ping command, showing some of the more commonly
   available options that are of use to general users, is:

      ping [-q] [-v] [-R] [-c Count] [-i Wait] [-s PacketSize] Host
Continue Reading…

Popularity: 27% [?]

NSLOOKUP

   NSLOOKUP is the name server lookup program that comes with many
   TCP/IP software packages. A user can use NSLOOKUP to examine entries
   in the Domain Name System (DNS) database that pertain to a particular
   host or domain; one common use is to determine a host system’s IP
   address from its name or the host’s name from its IP address. The
   general form of the command to make a single query is:

      nslookup [IP_address|host_name]

   If the program is started without any parameters, the user will be
   prompted for input; the user can enter either an IP address or host
   name at that time, and the program will respond with the name and    address of the default name sever, the name server actually used to
   resolve each request, and the IP address and host name that was
   queried. Exit is used to quit the NSLOOKUP application.

Continue Reading…

Popularity: 38% [?]