#001

Life with Linux

eZine's profile picture
Published in 
 · 9 months ago
Life with Linux
the codex Life with Linux — A Zine Typeset in LaTeX Issue #001 Kenneth John Odle All contents ©2021 Kenneth John Odle Although this is now in your hands, and it’s also on the web, so if you really wanted to steal this, I’ve made it pretty darn easy. I can’t imagine why anyone would want to, though. You don’t need to, however, since this is licenced under a CC BY-NA-SA 4.0 Creative Commons license. More information is at https://creativecommons.org/licenses/by-nc-sa/4.0/. FYI, this is made in LaTeX using the report document class. It ...

The Prisoner #002: Who are the No.2's?

eZine's profile picture
Published in 
 · 1 year ago
... ;t make a pilgrimage, but it's not unlikely that I might be passing thru London on the way to somewhere else. [W. Burstein] -------| The Prisoner #001 07/15/85 Topic: Who are the No.2's? What happens to a Number 2 when he is no longer a Number 2? I don't know. At least one was sent home. "Give my regards to the homeland.", says Number 2 to her departing predecessor in "Free for All". Actually, it isn't at all clear that the "Number 2" in the election was really Number 2 at all. My impression was that the woman was No. 2 the whole time, and that the other so-called No. 2 was simply a decoy. I caught the first episode on Cha ...

The Prisoner #001: Who are the No.2's?

eZine's profile picture
Published in 
 · 1 year ago
... 15 July 1985 17:42 mst From: allegra!sjuvax!iannucci at SEISMO.CSS.GOV (iannucci) To: packard!MIT-MULTICS.ARPA!Lippard at SEISMO.CSS.GOV The Prisoner #001 07/15/85 Topic: Who are the No.2's? Old #2s -- it probably depends. It seems like the village may be a testing grounds of sorts, or even a last hurrah. Most of the management seemed marginally effective, after all. [Brad Miller] My feeling is "let the punishment fit the crime." Those #2s who had more grandiose plans that failed, and cost the "company" money and bodies, were shot. Lesser failures were either bumped upstairs, or transferred to another institution. Good torturers are h ...

Poor Richard 1

eZine's profile picture
Published in 
 · 1 year ago
#001/12-Jan-98 POOR RICHARD'S WEB SITE NEWS Geek-Free, Commonsense Advice on Building a Low-Cost Web Site Editor: Peter Kent Top Floor Publishing IN THIS ISSUE Poor Richard's Web Site News -- What's It All About? Beginner's Column: Web-hosting and Online Access are Different Things! Opt-in Email Marketing ... Does it Really Work? The "Plug-and-Play" Web Site Free Chat and Discussion Groups for Your Web Site Did-It.Com and Search Engine Optimization Bits and Pieces What Do You Wan ...

SPECIAL BULLETIN#001/31-Mar-98

eZine's profile picture
Published in 
 · 1 year ago
SPECIAL BULLETIN#001/31-Mar-98 *************SPECIAL BULLETIN************* POOR RICHARD'S WEB SITE NEWS Geek-Free, Commonsense Advice on Building a Low-Cost Web Site *************SPECIAL BULLETIN************* Editor: Peter Kent Top Floor Publishing http://www.poorrichard.com/ InterNIC Announces Its New WorldNIC Service This is a special bulletin concerning an announcement from InterNIC this morning. It also relates to information included in the last edition of Poor Richard's Web Site News, m ...

Organized Confuzion - Issue 1

eZine's profile picture
Published in 
 · 2 years ago
…-------------------------------------------------------------------ª | ISSUE #001 P.MAGAZINE | | ƒƒƒƒƒƒƒƒƒƒ ORGANIZED CONFUZION ƒƒƒƒƒƒƒƒƒƒ | | ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ | | 1995 | | ƒƒƒƒ | | | | SWEDENS BEST PHREAK MAGAZINE | | ---------------------------- | | ISSUE #001 ISSUE #001 | | ƒƒƒƒƒƒƒƒƒƒ ƒƒƒƒƒƒƒƒƒƒ | »-------------------------------------------------------------------º This is the first issue of Organized Confuzion ---------------------------------------------- So let's cut the fucking crap and go on with the real shit. ------------------------------------------------ ...

Java Newsletter by Glen McCluskey - Issue 13

eZine's profile picture
Published in 
 · 2 years ago
... ertain programming environments or debuggers may offer an equivalent, but not as part of the language or its core libraries. 1.1 PERFORMANCE In issue #001, we presented a crude benchmark for assessing run time performance: // sort numbers public class bm1 { static final int N = 6500; public static void main(String args[]) { int i; int j; short t; short vec[] = new short[N]; // seed with descending order for (i = 0; i < N; i++) vec[i] = (short)(N - i); // sort into ascending order for (i = 0; i < N - 1; i++) { for (j = i + 1; j < N; j++) { if (vec[i] > vec[j]) { t = vec[i]; vec[i] = vec[j]; vec[j] = t; } } } } } ...

Java Newsletter by Glen McCluskey - Issue 10

eZine's profile picture
Published in 
 · 2 years ago
... oing to the bottom of the while loop in preparation for the next iteration of the loop. PERFORMANCE - GARBAGE COLLECTION AND SETTING TO NULL In issue #001 we talked about Java garbage collection, where the runtime system automatically reclaims dynamic storage that is no longer in use. For example: public class test { public void f() { char buf[] = new char[1024]; // stuff that uses buf } } When method f() exits, the space that buf uses is garbage, because only a local variable in an invalid stack frame references it. The runtime system may eventually reclaim the storage. Garbage collection is automatic. But sometimes there are ways to hel ...

Java Newsletter by Glen McCluskey - Issue 3

eZine's profile picture
Published in 
 · 2 years ago
... operator usage is the language APL, famous for its one-line programs. INTRODUCTION TO APPLET PROGRAMMING PART 1 - HANDSHAKING PROTOCOLS In newsletter #001 we talked about applets a bit, and presented a simple example of one. A Java applet is not a standalone program but one that executes in a specific context, that of a Web browser. Before we get into the details of applet programming in future issues, it might be worth illustrating some of the handshaking that goes on between an applet and its controlling environment. Normally an applet is executed by a browser, though in the Java Development Kit there's also a tool called "appletviewer" for ...

Java Newsletter by Glen McCluskey - Issue 2

eZine's profile picture
Published in 
 · 2 years ago
... input_expr value="1/2/3*4"> </applet> </body> </html> This HTML is similar to that illustrated in newsletter #001, save for the line: <param name=input_expr value="1/2/3*4"> which actually passes in the parameter value. When this applet is executed, the result will be something like: Input = 1/2/3*4 Value = 0.666667 ACKNOWLEDGEMENTS Thanks to Thierry Ciot, Mike Paluka, and Alan Saldanha for help with proofreading. SUBSCRIPTION INFORMATION / BACK ISSUES To subscribe to the newsletter, send mail to majordomo@world.std.com with this line as its message body: subscribe java_letter Bac ...
loading
Neperos cookies
This website uses cookies to store your preferences and improve the service. Cookies authorization will allow me and / or my partners to process personal data such as browsing behaviour.

By pressing OK you agree to the Terms of Service and acknowledge the Privacy Policy

By pressing REJECT you will be able to continue to use Neperos (like read articles or write comments) but some important cookies will not be set. This may affect certain features and functions of the platform.
OK
REJECT