Internet Application Development with Mqseries and Java

Total Page:16

File Type:pdf, Size:1020Kb

Internet Application Development with Mqseries and Java SG24-4896-00 Internet Application Development with MQSeries and Java February 1997 SG24-4896-00 International Technical Support Organization Internet Application Development with MQSeries and Java February 1997 IBML Take Note! Before using this information and the product it supports, be sure to read the general information in Appendix D, “Special Notices” on page 151. First Edition (February 1997) This edition applies to: • IBM OS/2 Warp Version 4.0 • IBM Internet Server for OS/2 Version 4.2 beta • IBM MQseries for OS/2 Version 2.01 • IBM MQSeries Client for Java SDK, program number 5639-C34 • Netscape Navigator Version 2.02 for • Microsoft Windows NT Version 4.0 Workstation • Microsoft Internet Explorer Version 3.0 • Microsoft Windows 95 Comments may be addressed to: IBM Corporation, International Technical Support Organization Dept. HZ8 Building 678 P.O. Box 12195 Research Triangle Park, NC 27709-2195 When you send information to IBM, you grant IBM a non-exclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. Copyright International Business Machines Corporation 1997. All rights reserved. Note to U.S. Government Users — Documentation related to restricted rights — Use, duplication or disclosure is subject to restrictions set forth in GSA ADP Schedule Contract with IBM Corp. Contents Figures . vii Tables . ix Preface . xi The Team That Wrote This Redbook ...................... xi Comments Welcome . xiii Chapter 1. MQSeries Client for Java Positioning .............. 1 Chapter 2. Introduction . 3 2.1 About the Objectives ............................. 3 2.2 About the Demonstration Program .................... 5 Chapter 3. Installation . 9 3.1 IBM Internet Connection Secure Server ................. 10 3.1.1 How to Get the ICSS .......................... 10 3.1.2 How to Install the ICSS on OS/2 ................... 11 3.2 Netscape Navigator for OS/2 ........................ 17 3.2.1 How to Get the Browser ........................ 18 3.2.2 How to Install the Browser ...................... 18 3.2.3 How to Set Up the Browser for Java ................. 19 3.3 MQSeries Client for Java .......................... 19 3.3.1 How to Get the MQSeries Client for Java .............. 20 3.3.2 Installing the Documentation ..................... 21 3.3.3 Installing the MQSeries Client for Java ............... 22 3.3.4 Running the Installation Verification Applet ............ 24 3.4 Apache Internet Server for AIX ....................... 24 3.4.1 How to Get Apache ........................... 24 3.4.2 Notes Regarding Apache ....................... 24 Chapter 4. HTML Overview . 27 4.1 How to Build an HTML File ......................... 28 4.2 How to Build a Link ............................. 36 4.3 How to Load an Applet ........................... 39 Chapter 5. Java Overview . 41 5.1 Some Basics about Java .......................... 41 5.1.1 Java Is Platform-Independent ..................... 41 5.1.2 Java Is Distributed ........................... 42 5.1.3 Java Is Secure .............................. 43 Copyright IBM Corp. 1997 iii 5.1.4 Java Is Robust .............................. 43 5.1.5 Java Is Object-Oriented ........................ 44 5.2 Applications and Applets .......................... 45 5.3 A First Try with Java ............................. 45 5.3.1 The Hello World Application ...................... 46 5.3.2 The Hello World Applet ......................... 47 Chapter 6. MQSeries Overview . 53 6.1 What Is Messaging and Queuing? ..................... 54 6.1.1 Messages . 54 6.1.2 Queue Manager . 55 6.1.3 Queue Manager Objects ........................ 56 6.2 Manipulating MQM Objects ......................... 57 6.3 Message Queues . 59 6.3.1 Local Queue . 59 6.3.2 Remote Queue . 59 6.3.3 Transmission Queue . 60 6.3.4 Dynamic Queue . 60 6.3.5 Model Queue . 60 6.3.6 Alias Queue . 60 6.3.7 Initiation Queue . 60 6.3.8 Reply-To Queue . 61 6.3.9 Dead-Letter Queue . 61 6.4 Clients and Servers ............................. 61 6.4.1 How to Define a Client/Server Connection ............. 62 6.4.2 How to Start a Client/Server Connection .............. 64 6.4.3 How to Test a Client/Server Connection .............. 64 6.4.4 How to Test a Client/Server Connection with MQSeries for Java 66 6.4.5 How to Trigger Applications ...................... 68 6.5 Message Queuing Interface (MQI) ..................... 70 Chapter 7. MQSeries Client for Java ...................... 73 7.1 Who Should Read This ........................... 73 7.2 Overview of MQSeries Client for Java .................. 73 7.3 Running the Installation Verification Program .............. 77 7.3.1 Running from a Local Disk Installation ............... 78 7.3.2 Running from a Web Server Installation ............... 79 7.4 Using the Verification Applet to Test Your Customer′s Access .... 81 7.5 Running Your Own Applets ......................... 81 Chapter 8. MQSeries Client for Java Programmer′s Guide ........ 83 8.1 Who Should Read This ........................... 83 8.2 MQSeries Client for Java Support ..................... 83 8.2.1 Java Developer′s Kit (JDK) ...................... 83 iv Internet Application Development with MQSeries and Java 8.2.2 Java Client Class Library ....................... 84 8.2.3 Writing Programs for the MQSeries Client for Java ........ 84 8.2.4 Sample Code Fragment ........................ 85 8.3 Why Should I Use the Java Interface? .................. 89 8.4 The MQSeries Java Programming Interface ............... 90 8.4.1 Handling Errors . 91 8.4.2 Operations on Queue Managers ................... 91 8.4.3 Accessing Queues and Processes .................. 93 8.4.4 Handling Messages . 94 8.4.5 Inquire and Set ............................. 95 8.4.6 Multithreaded Programs . 96 8.4.7 Writing User Exits ............................ 97 8.5 Compiling MQSeries Java Programs ................... 99 8.6 Tracing MQSeries Java Programs .................... 100 8.7 Class Hierarchy . 101 Chapter 9. The Sample Application ..................... 105 9.1 Overview . 105 9.1.1 Functions of the Application ..................... 105 9.1.2 Software Used to Develop the Applet ............... 106 9.1.3 A View of the Internet ........................ 107 9.1.4 The Value of This Application .................... 107 9.2 Program Logic and Message Flow ................... 108 9.3 Design Issues . 112 9.3.1 Message Flow Diagram ....................... 112 9.3.2 MQSeries Objects . 112 9.3.3 Programs . 113 9.3.4 Message Structure . 114 9.3.5 Inventory Files . 114 9.4 Set Up the Demonstration ......................... 115 Appendix A. Client Program .......................... 117 A.1 OrderlistApplet.html . 117 A.2 OrderListView.java . 117 A.3 FBPUTQ1.java . 128 A.4 FBGETQ2.java . 130 A.5 GTCGET.java . 132 Appendix B. Server Program . 135 B.1 Business Logic BL1.C ........................... 135 B.2 Make File . 147 B.3 Definition File . 147 Appendix C. Diskette Contents . 149 Contents v Appendix D. Special Notices . 151 Appendix E. Related Publications . 153 E.1 International Technical Support Organization Publications ..... 153 E.2 Redbooks on CD-ROMs .......................... 153 E.3 Other Publications . 153 How to Get ITSO Redbooks .......................... 155 How IBM Employees Can Get ITSO Redbooks ............... 155 How Customers Can Get ITSO Redbooks .................. 156 IBM Redbook Order Form ........................... 157 Glossary . 159 List of Abbreviations .............................. 163 Index . 165 ITSO Redbook Evaluation ............................ 167 vi Internet Application Development with MQSeries and Java Figures 1. Computer Network Envisioned for This Project . 4 2. Demo Web Page Shown by Netscape Navigator (Java-Enabled) . 6 3. Demo Web Page Shown by IBM WebExplorer (Not Java-Enabled) . 7 4. Order Entry Applet from the Demo Application . 8 5. Internet Connection Server Installation . 12 6. Internet Connection Server Installation - Configuration . 14 7. Internet Connection Server - Icon View . 16 8. Example of a Server Front Page . 17 9. Netscape Navigator Install Window . 18 10. Netscape Navigator Icon View ...................... 19 11. MQSeries Client for Java Documentation (index.html) ........ 21 12. HTML Example - Part 1: An HTML Page ................ 28 13. HTML File - Part 1 ............................. 29 14. HTML Example - Part 2: Headings .................... 30 15. HTML File - Part 2 ............................. 31 16. HTML Example - Part 3: Emphasizing .................. 32 17. HTML File - Part 3 ............................. 33 18. HTML Example - Part 4: Lists ....................... 34 19. HTML File - Part 4 ............................. 35 20. HTML Example - Part 5: Links ...................... 36 21. HTML File - Part 5 ............................. 37 22. HTML Example - Part 6: More Links ................... 38 23. HTML Example - Part 6 .......................... 38 24. HTML Displays an Applet ......................... 39 25. HTML Example - Display an Applet ................... 39 26. Difference between C And Java Compiler ............... 42 27. A Simple Java Application ........................ 46 28. A Simple Java Applet ........................... 47 29. HTML File that Calls an Applet ...................... 49 30. MQSeries at Runtime ........................... 53 31. Message Queuing: Principle ....................... 54 32. RUNMQSC - Interactive .......................... 58 33. RUNMQSC - Using Command File .................... 58 34. RUNMQSC - Input File ..........................
Recommended publications
  • The Behringer PODCAST & RECORDING
    PODCAST & RECORDING QUICK-START GUIDE Welcome to the Behringer PODCAST & RECORDING quick-start guide Thank you for choosing one of our podcast-capable recording products. This top-notch hardware bundle lets you creatively produce professional-sounding podcasts, voice-over sessions, narration, and music projects for online distribution. If you’re a vlogger, you’ll have a superb pack of equipment to dramatically enhance the audio quality of your videos compared to the built-in camera microphone, giving your broadcasts a more professional appeal. Move up to the next step in the evolution of broadcasting and free yourself from the limitations of conventional communication. Podcasting Basics Before you get started, it is important to understand some of the terminology and uses surrounding the emerging field of podcasting. Podcasting is a term derived from the combination of the words “iPod” and “broadcasting,” and is defined as the distribution of audio or video files, such as radio programs or music clips, over the Internet. This is accomplished by using one of two syndication techniques that allow users to access media on such portable media devices as smart phones, tablets, MP3 players, and laptop computers. RSS (Really Simple Syndication) and Atom are Web content syndication formats written in XML that provide either podcast content or summaries that link to content and additional file information. Podcast is a feed of audio or video files placed on the Internet for public access. Anyone can subscribe to the feed and download the media files. This allows you to collect programs from a wide range of sources for listening or viewing media content, either online or offline with your computer or an appropriate portable device.
    [Show full text]
  • Ubuntu Kung Fu
    Prepared exclusively for Alison Tyler Download at Boykma.Com What readers are saying about Ubuntu Kung Fu Ubuntu Kung Fu is excellent. The tips are fun and the hope of discov- ering hidden gems makes it a worthwhile task. John Southern Former editor of Linux Magazine I enjoyed Ubuntu Kung Fu and learned some new things. I would rec- ommend this book—nice tips and a lot of fun to be had. Carthik Sharma Creator of the Ubuntu Blog (http://ubuntu.wordpress.com) Wow! There are some great tips here! I have used Ubuntu since April 2005, starting with version 5.04. I found much in this book to inspire me and to teach me, and it answered lingering questions I didn’t know I had. The book is a good resource that I will gladly recommend to both newcomers and veteran users. Matthew Helmke Administrator, Ubuntu Forums Ubuntu Kung Fu is a fantastic compendium of useful, uncommon Ubuntu knowledge. Eric Hewitt Consultant, LiveLogic, LLC Prepared exclusively for Alison Tyler Download at Boykma.Com Ubuntu Kung Fu Tips, Tricks, Hints, and Hacks Keir Thomas The Pragmatic Bookshelf Raleigh, North Carolina Dallas, Texas Prepared exclusively for Alison Tyler Download at Boykma.Com Many of the designations used by manufacturers and sellers to distinguish their prod- ucts are claimed as trademarks. Where those designations appear in this book, and The Pragmatic Programmers, LLC was aware of a trademark claim, the designations have been printed in initial capital letters or in all capitals. The Pragmatic Starter Kit, The Pragmatic Programmer, Pragmatic Programming, Pragmatic Bookshelf and the linking g device are trademarks of The Pragmatic Programmers, LLC.
    [Show full text]
  • Formal Aspects of Mobile Code Security
    FORMAL ASPECTS OF MOBILE CODE SECURITY RICHARD DREWS DEAN ADISSERTATION PRESENTED TO THE FACULTY OF PRINCETON UNIVERSITY IN CANDIDACY FOR THE DEGREE OF DOCTOR OF PHILOSOPHY RECOMMENDED FOR ACCEPTANCE BY THE DEPARTMENT OF COMPUTER SCIENCE JANUARY 1999 c Copyright by Richard Drews Dean, 1998. All Rights Reserved Abstract We believe that formal methods of all kinds are critical to mobile code security, as one route to gaining the assurance level necessary for running potentially hos- tile code on a routine basis. We begin by examining Java, and understanding the weaknesses in its architecture, on both design and implementation levels. Iden- tifying dynamic linking as a key problem, we produce a formal model of linking, and prove desirable properties about our model. This investigation leads to a deep understanding of the underlying problem. Finally, we turn our attention to crypto- graphic hash functions, and their analysis with binary decision diagrams (BDDs). We show that three commonly used hash functions (MD4, MD5, and SHA-1) do not offer ideal strength against second preimages. The ability of a cryptographic hash function to resist the finding of second preimages is critical for its use in digi- tal signature schemes: a second preimage enables the forgery of digital signatures, which would undermine confidence in digitally signed mobile code. Our results show that modern theorem provers and BDD-based reasoning tools are effective for reasoning about some of the key problems facing mobile code security today. iii Acknowledgments My advisor, Andrew Appel, offered sure guidance through what turned out to be an exceptionally smooth journey through graduate school.
    [Show full text]
  • University of the Philippines Manila College of Arts and Sciences Department of Physical Sciences and Mathematics
    UNIVERSITY OF THE PHILIPPINES MANILA COLLEGE OF ARTS AND SCIENCES DEPARTMENT OF PHYSICAL SCIENCES AND MATHEMATICS Health Insurance Corporation Customer Relationship Management Tool (HICorpCRM) A special problem in partial fulfillment of the requirements for the degree of Bachelor of Science in Computer Science Submitted by: Paul John N. Macaraeg June 2015 Permission is given for the following people to have access to this SP: Available to the general public Yes Available only after consultation with author/ SP adviser No Available only to those bound by confidentiality agreement No ACCEPTANCE SHEET The Special Problem entitled “Health Insurance Corporation Customer Relationship Management Tool (HICorpCRM)” prepared and submitted by Paul John N. Macaraeg in partial fulfillment of the requirements for the degree of Bachelor of Science in Computer Science has been examined and is recommended or acceptance. Ma. Sheila A. Magboo, M.Sc. Adviser EXAMINERS: Approved Disapproved 1. Gregorio B. Baes, Ph.D. 2. Avegail D. Carpio, M.Sc. 3. Perlita E. Gasmen, M.Sc. 4. Richar Bryann L. Chua, M.Sc. 5. Vincent Peter C. Magboo, M.D., M.Sc. 6. Bernie B. Terrado, M.Sc. Accepted and approved as partial fulfillment of the requirements for the degree of Bachelor of Science in Computer Science. Ma. Sheila A. Magboo, M.Sc. Marcelina B. Lirazan, Ph.D. Unit Head Chair Mathematical and Computing Sciences Unit Department of Physical Sciences Department of Physical Sciences and Mathematics and Mathematics Alex C. Gonzaga, Ph.D., Dr.Eng. Dean College of Arts and Sciences iii Abstract The health insurance industry is saturated by big companies competing for market share.
    [Show full text]
  • Prezentacja I Zastosowanie Systemu Internetowych Pomiarów Obrazów Fotogrametrycznych
    Artur Janowski Zygmunt Paszotta Jakub Szulwic PREZENTACJA I ZASTOSOWANIE SYSTEMU INTERNETOWYCH POMIARÓW OBRAZÓW FOTOGRAMETRYCZNYCH Streszczenie. W referacie zaprezentowane zostają funkcjonujące rozwiązania powstałe w ramach badań i prac doktorskich, a odnoszące się do rozwiązywania zadań fotogrametrii lotniczej w środowisku internetowym. Pierwotny zamysł systemu internetowych pomiarów obrazów fotogrametrycznych (SIPOF) zrodził się w projekcie badawczym prowadzonym w zespole dra hab. Zygmunta Paszotty, prof. UWM, na Uniwersytecie Warmińsko-Mazurskim w Olsztynie. Zasadnicze badania były realizowane w ramach studiów nad rozprawami doktorskimi autorów. Efekty badań zostały wdrożone w formie funkcjonującego systemu umożliwiającego realizację internetowych pomiarów na zdjęciach fotogrametrycznych nazwanego SIPOF. Referat jest skróconym przewodnikiem po systemie; prezentuje jego funkcjonalność oraz przedstawia możliwości wykorzystania w edukacji, nauce i gospodarce. SIPOF był prezentowany w ośrodkach edukacyjno-badawczych w Polsce oraz zagranicą i spotkał się z zainteresowaniem podmiotów gospodarczych. Komercjalizacja pracy naukowej zaowocowała dalszą koncepcją udostępniania fotogrametrycznych opracowań rastrowych jako nośników informacji kartometrycznej dla użytkownika specjalistycznego i masowego. Przedstawienie funkcjonującego systemu internetowych pomiarów fotogrametrycznych opartego przede wszystkim na kliencie informatycznym implementowanym w graficznej przeglądarce internetowej stanowi tło dla oczekiwań , jakie pokładane są przez użytkownika
    [Show full text]
  • Instant Messaging Video Converter, Iphone Converter Application
    Web Browsing Mozilla Firefox The premier free, open-source browser. Tabs, pop-up blocking, themes, and extensions. Considered by many to be the world's best browser. Download Page Video Player, Torrents, Podcasting Miro Beautiful interface. Plays any video type (much more than quicktime). Subscribe to video RSS, download, and watch all in one. Torrent support. Search and download from YouTube and others. Download Page IM - Instant Messaging Adium Connect to multiple IM accounts simultaneously in a single app, including: AOL IM, MSN, and Jabber. Beautiful, themable interface. Download Page Video Converter, iPhone Converter Miro Video Converter Convert any type of video to mp4 or theora. Convert any video for use with iPhone, iPod, Android, etc. Very clean, easy to use interface. Download Page Application Launching Quicksilver Quicksilver lets you start applications (and do just about everything) with a few quick taps of your fingers. Warning: start using Quicksilver and you won't be able to imagine using a Mac without it. Download Page Email Mozilla Thunderbird Powerful spam filtering, solid interface, and all the features you need. Download Page Utilities The Unarchiver Uncompress RAR, 7zip, tar, and bz2 files on your Mac. Many new Mac users will be puzzled the first time they download a RAR file. Do them a favor and download UnRarX for them! Download Page DVD Ripping Handbrake DVD ripper and MPEG-4 / H.264 encoding. Very simple to use. Download Page RSS Vienna Very nice, native RSS client. Download Page RSSOwl Solid cross-platform RSS client. Download Page Peer-to-Peer Filesharing Cabos A simple, easy to use filesharing program.
    [Show full text]
  • The Atlantic :: Magazine :: Closing the Digital Frontier
    The Atlantic :: Magazine :: Closing the Digital Frontier http://www.theatlantic.com/magazine/print/2010/07/closing-the... July/August 2010 Print | Close Closing the Digital Frontier THE ERA OF THE WEB BROWSER’S DOMINANCE IS COMING TO A CLOSE. AND THE INTERNET’S FOUNDING IDEOLOGY—THAT INFORMATION WANTS TO BE FREE, AND THAT ATTEMPTS TO CONSTRAIN IT ARE NOT ONLY HOPELESS BUT IMMORAL— SUDDENLY SEEMS NAIVE AND STALE IN THE NEW AGE OF APPS, SMART PHONES, AND PRICING PLANS. WHAT WILL THIS MEAN FOR THE FUTURE OF THE MEDIA—AND OF THE WEB ITSELF? By Michael Hirschorn IMAGE CREDIT: JASON SCHNEIDER AS CHRIS ANDERSON pointed out in a moment of non-hyperbole in his book Free, the phrase Information wants to be free was never meant to be the rallying cry it turned into. It was first uttered by Stewart Brand at a hacker conference in 1984, and it came with a significant disclaimer: that information also wants to be expensive, because it can be so important (see “Information Wants to Be Paid For,” in this issue). With the long tail of Brand’s dictum chopped off, the phrase Information wants to be free—dissected, debated, reconstituted as a global democratic rallying cry against monsters of the political, business, and media elites—became perhaps the most powerful meme of the past quarter century; so powerful, in fact, that multibillion-dollar corporations destroyed their own businesses at its altar. 1 of 5 6/9/10 1:19 PM The Atlantic :: Magazine :: Closing the Digital Frontier http://www.theatlantic.com/magazine/print/2010/07/closing-the..
    [Show full text]
  • Migrating from Java Applets to Plugin-Free Java Technologies
    Migrating from Java Applets to plugin-free Java technologies An Oracle White Paper January, 2016 Migrating from Java Applets to plugin-free Java technologies Migrating from Java Applets to plugin-free Java technologies Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle. Migrating from Java Applets to plugin-free Java technologies Executive Overview ........................................................................... 4 Browser Plugin Perspectives ............................................................. 4 Java Web Start .................................................................................. 5 Alternatives ....................................................................................... 6 Native Windows/OS X/Linux Installers ........................................... 6 Inverted Browser Control ............................................................... 7 Detecting Applets .............................................................................. 7 Migrating from Java Applets to plugin-free Java technologies Executive Overview With modern browser vendors working to restrict or reduce the support of plugins like
    [Show full text]
  • Discontinued Browsers List
    Discontinued Browsers List Look back into history at the fallen windows of yesteryear. Welcome to the dead pool. We include both officially discontinued, as well as those that have not updated. If you are interested in browsers that still work, try our big browser list. All links open in new windows. 1. Abaco (discontinued) http://lab-fgb.com/abaco 2. Acoo (last updated 2009) http://www.acoobrowser.com 3. Amaya (discontinued 2013) https://www.w3.org/Amaya 4. AOL Explorer (discontinued 2006) https://www.aol.com 5. AMosaic (discontinued in 2006) No website 6. Arachne (last updated 2013) http://www.glennmcc.org 7. Arena (discontinued in 1998) https://www.w3.org/Arena 8. Ariadna (discontinued in 1998) http://www.ariadna.ru 9. Arora (discontinued in 2011) https://github.com/Arora/arora 10. AWeb (last updated 2001) http://www.amitrix.com/aweb.html 11. Baidu (discontinued 2019) https://liulanqi.baidu.com 12. Beamrise (last updated 2014) http://www.sien.com 13. Beonex Communicator (discontinued in 2004) https://www.beonex.com 14. BlackHawk (last updated 2015) http://www.netgate.sk/blackhawk 15. Bolt (discontinued 2011) No website 16. Browse3d (last updated 2005) http://www.browse3d.com 17. Browzar (last updated 2013) http://www.browzar.com 18. Camino (discontinued in 2013) http://caminobrowser.org 19. Classilla (last updated 2014) https://www.floodgap.com/software/classilla 20. CometBird (discontinued 2015) http://www.cometbird.com 21. Conkeror (last updated 2016) http://conkeror.org 22. Crazy Browser (last updated 2013) No website 23. Deepnet Explorer (discontinued in 2006) http://www.deepnetexplorer.com 24. Enigma (last updated 2012) No website 25.
    [Show full text]
  • Unix Quickref.Dvi
    Summary of UNIX commands Table of Contents df [dirname] display free disk space. If dirname is omitted, 1. Directory and file commands 1994,1995,1996 Budi Rahardjo ([email protected]) display all available disks. The output maybe This is a summary of UNIX commands available 2. Print-related commands in blocks or in Kbytes. Use df -k in Solaris. on most UNIX systems. Depending on the config- uration, some of the commands may be unavailable 3. Miscellaneous commands du [dirname] on your site. These commands may be a commer- display disk usage. cial program, freeware or public domain program that 4. Process management must be installed separately, or probably just not in less filename your search path. Check your local documentation or 5. File archive and compression display filename one screenful. A pager similar manual pages for more details (e.g. man program- to (better than) more. 6. Text editors name). This reference card, obviously, cannot de- ls [dirname] scribe all UNIX commands in details, but instead I 7. Mail programs picked commands that are useful and interesting from list the content of directory dirname. Options: a user's point of view. 8. Usnet news -a display hidden files, -l display in long format 9. File transfer and remote access mkdir dirname Disclaimer make directory dirname The author makes no warranty of any kind, expressed 10. X window or implied, including the warranties of merchantabil- more filename 11. Graph, Plot, Image processing tools ity or fitness for a particular purpose, with regard to view file filename one screenfull at a time the use of commands contained in this reference card.
    [Show full text]
  • Free Download Winamp Media File to Mp3 Converter
    Free download winamp media file to mp3 converter click here to download Free WMA to MP3 Converter, free and safe download. This program is great if you have loads of music files in the Windows Media format and are looking for a. Free WMA MP3 Converter is an free WMA to MP3 converter which helps the ID3 tags in the original files can be reserved after conversion. Wma to mp3 converter, free and safe download. Wma to mp3 converter latest version: Convert your audio file collection from wma (windows media audio) to. Free WMA MP3 Converter is a lightweight application that can convert the ID3 tags in the original files can be reserved after conversion. Download Winamp for Windows now from Softonic: % safe and virus free. Nice audio converter with support for popular formats This application is a multi platform media player application originally developed by Nullsoft in from the original audio is lost, though the resultant file is still greatly reduced in size. Winamp, free and safe download. Winamp latest version: A hugely popular and versatile audio and media player. Users interested in Winamp media file convert to mp3 generally download: A free media player that reproduces a wide variety of audio and video formats. MOV MP3 Converter, free and safe download. setup interface; Extract video files into custom file sizes for use with portable MP3 players; Free Download Safe download. 4 Winamp. A hugely popular and versatile audio and media player. To convert mp3 files to wav format using Winamp , all you have to do is to configure the program Latest update on January 31, at AM by jak Free Audio Converter is a tool that does exactly that.
    [Show full text]
  • Firefox Hacks Is Ideal for Power Users Who Want to Maximize The
    Firefox Hacks By Nigel McFarlane Publisher: O'Reilly Pub Date: March 2005 ISBN: 0-596-00928-3 Pages: 398 Table of • Contents • Index • Reviews Reader Firefox Hacks is ideal for power users who want to maximize the • Reviews effectiveness of Firefox, the next-generation web browser that is quickly • Errata gaining in popularity. This highly-focused book offers all the valuable tips • Academic and tools you need to enjoy a superior and safer browsing experience. Learn how to customize its deployment, appearance, features, and functionality. Firefox Hacks By Nigel McFarlane Publisher: O'Reilly Pub Date: March 2005 ISBN: 0-596-00928-3 Pages: 398 Table of • Contents • Index • Reviews Reader • Reviews • Errata • Academic Copyright Credits About the Author Contributors Acknowledgments Preface Why Firefox Hacks? How to Use This Book How This Book Is Organized Conventions Used in This Book Using Code Examples Safari® Enabled How to Contact Us Got a Hack? Chapter 1. Firefox Basics Section 1.1. Hacks 1-10 Section 1.2. Get Oriented Hack 1. Ten Ways to Display a Web Page Hack 2. Ten Ways to Navigate to a Web Page Hack 3. Find Stuff Hack 4. Identify and Use Toolbar Icons Hack 5. Use Keyboard Shortcuts Hack 6. Make Firefox Look Different Hack 7. Stop Once-Only Dialogs Safely Hack 8. Flush and Clear Absolutely Everything Hack 9. Make Firefox Go Fast Hack 10. Start Up from the Command Line Chapter 2. Security Section 2.1. Hacks 11-21 Hack 11. Drop Miscellaneous Security Blocks Hack 12. Raise Security to Protect Dummies Hack 13. Stop All Secret Network Activity Hack 14.
    [Show full text]