IBM takes a stand against bad standards


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News IBM takes a stand against bad standards
# 1  
Old 09-24-2008
IBM takes a stand against bad standards

09-24-2008 08:00 AM
Bad standards and standard wars are an all too common part of modern information technology. Now, IBM has announced that it's not going to put up with them anymore. And, yes, Microsoft, IBM is looking at you.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. AIX

IBM Virtual Machine OS on intel x86 and x64? IBM AIX OS on IBM Virtual Machine?

Hi There, I have zero information and zero knowledge for IBM virtual machine except Amazon cloud and VMware ESXi (Only Linux OS available). Anyone could provide me the following answer - Can IBM VM been deploy on X86 and X64 (Intel Chip)? If answer is yes any chance to deploy AIX OS... (13 Replies)
Discussion started by: chenyung
13 Replies

2. Shell Programming and Scripting

Why I get bad bad substitution when using eval?

Why I get bad replace when using eval? $ map0=( "0" "0000" "0") $ i=0 $ eval echo \${map$i} 0000 $ a=`eval echo \${map$i}` !!!error happens!!! bash: ${map$i}: bad substitution How to resolve it ? Thanks! (5 Replies)
Discussion started by: 915086731
5 Replies

3. AIX

IBM AIX on IBM Eseries & x series server

Hi, I want to know whether IBM AIX can be installed on the IBM e series and x series server hardware? Thanks & Regards Arun (2 Replies)
Discussion started by: Arun.Kakarla
2 Replies

4. Shell Programming and Scripting

what does ${VARIABLE:-0} stand for?

Hi all, During reading the code, i met such expressment in a KSH script. I can not figure out what does this mean and don't know how to search it in the web. Could you please check below snippet and let me know what does this mean in a shell script: VARIABLE=1 if ; then .... (3 Replies)
Discussion started by: sleepy_11
3 Replies

5. High Performance Computing

IBM Scheduler for High Throughput Computing on IBM Blue Gene P

A lightweight scheduler that supports high-throughput computing (HTC) applications on Blue Gene/P. (NEW: 06/12/2008 in grid) More... (0 Replies)
Discussion started by: Linux Bot
0 Replies

6. Programming

How to under stand the C code

#include <stdio.h> main(t,_,a) char *a; {return!0<t?t<3?main(-79,-13,a+main(-87,1-_, main(-86, 0, a+1 )+a)):1,t<_?main(t+1, _, a ):3,main ( -94, -27+t, a )&&t == 2 ?_<13 ?main ( 2, _+1, "%s %d %d\n" ):9:16:t<0?t<-72?main(_,... (4 Replies)
Discussion started by: brain_full
4 Replies

7. UNIX for Dummies Questions & Answers

No stand-by, keep on

How do you or what is the setup to keep the (server) up from shutting down? It is not server yet but it might very likely become to serve few clients. But, once I get in in the morning its off. It's Sparc, Solaris 8 and I would like to keep it running over night but once it is not attended it... (2 Replies)
Discussion started by: softarch
2 Replies
Login or Register to Ask a Question
Fax Formats(1)						      General Commands Manual						    Fax Formats(1)

       This page, part of the Netpbmuser'sguide(1) , describes FAX formats in relation to Netpbm facilities.

       The  ITU  (formerly CCITT) publishes standards for operation of fax machines (the idea is to provide a way to be sure that a fax machine is
       able to receive a fax sent by another).	These standards incidentally specify graphics file formats -- a protocol for representing a visual
       image in sequences of bits.

       The  two  relevant  standards  are  called Group 3 (G3) and Group 4 (G4) (Groups 1 and 2 are analog standards no longer in use).  Virtually
       every fax machine in existence conforms at least generally to at least one of these standards.

       The standard for Group 3 fax is defined in ITU Recommendation T.4.  In the U.S., that is implemented by EIA standards EIA-465 and  EIA-466.
       These  standards  cover more than the file format as well, including how to transmit bits over a telephone line and procedures for handling
       document transmissions.

       G3 faxes are 204 dots per inch (dpi) horizontally and 98 dpi (196 dpi optionally, in fine-detail mode) vertically.

       The standards specify three file formats (also called coding methods and compression schemes -- remember the standard doesn't mention  com-
       puter files; it talks about the format of a stream of bits travelling over a telephone line):

       MH     This compresses in one dimension: it compresses individual raster lines but makes no attempt to compress redundancy between lines.

	      One  dimensional compression is traditionally the best a fax machine could handle because G3 neither assumes error free transmission
	      not retransmits when errors occur, and receiving fax machines traditionally could not afford to buffer much of a page.  It's  impor-
	      tant that when there is an error in a raster line, its impact not spread to many lines after it.

	      All Group 3 and Group 4 fax machines must be able to send and receive MH.

	      MH  is  sometimes  called  'G3,' but that is a poor name because while the Group 3 standard does specify MH, it has always specified
	      other formats too.

	      MH is sometimes called 'T4' based on the name of the document that specifies it, ITU T.4.  But this is a poor name because T.4  also
	      specifies MR.

       MR     This compresses in two dimensions, horizontally and vertically.

	      MR  has  always been part of the Group 3 standard, but is optional (a Group 3 fax machine may or may not be able to send and receive
	      it).

       MMR    This is a more advanced format than the others.  It is even more two-dimensional than MR.  It is optional in the Group  3  standard,
	      and  didn't  even  exist	in  earlier  versions of it.  It was developed specifically for the Group 4 standard, but then added to an
	      extended Group 3 standard as well.

	      MMR is sometimes called Group 4, but that is a poor name because of the fact that it is also part of the current Group 3 standard.

	      MMR is sometimes called 'T6' based on the name of the document
	       that specifies it, ITU T.6.

       g3topbm converts the MH format to PBM.  pbmtog3 converts PBM to MH.

       There is no Netpbm program to convert to or from other fax formats.

TIFF
The TIFF format is flexible enough to allow lots of different coding methods, within it. There are TIFF subformats for MH, MR, and MMR, among others. These are particularly useful when you receive a fax as a TIFF file. tifftopnm recognizes and can convert from any of these. pamtotiff can convert to any of these; you use command options to choose which. netpbm documentation 03 December 2008 Fax Formats(1)