TweetFollow Us on Twitter

Aug 92 Letters
Volume Number:8
Issue Number:4
Column Tag:Letters

Letters

By Neil Ticktin, Editor

Higher quality, larger Magazine for less money

May I first say that I love your magazine (I love anything about the Mac!). I’m a professional programmer for Xerox Corporation, but I do Mac programming for fun. I have some criticisms that I think could improve your magazine.

1) Remove the beginner section - there are a bunch of books out there that treat this subject - the reason that I came to your magazine is because it “pushed the envelope” and had complex, advanced algorithms in it.

2) Change the glossy paper to recycled paper, triple the size of the magazine, and then charge $5.00!

3) How about an article about the “ins” and “outs” of writing Printer Drivers?... or ...”Why It Takes Three Man-Years to Write a Mac Printer Driver” ???

...remember, I think your program should out teach basic programming skills, but should assume the audience is made up of average-to-advanced programmers... the personal attitude which should lead people to your magazine is motivation, not a general “how does one start programming the Mac?”

- Andy Ritz, El Segundo, CA

[Andy, in regards to the “beginner” section, most of our readers tell us that even though they thought they knew a topic, they found something new and interesting in Dave Mark’s articles. I understand that books are out there, in fact I urge people to buy them. I also understand that this column will not only help the new programmers, but also those who want to clean up their style.

Regarding the changing of the stock, increasing the size, and charging less. Please call me with the name of the printer that you know can do this. As far as we know, this isn’t possible without a drastic increase in price.

Finally, I would encourage someone to write an article on printer drivers. Right now, we don’t have such an article scheduled, but if you know of someone, let me know. MacTutor’s editorial goal is to provide information to all levels of programmer, from beginners to advanced. We’ll continue to make all efforts to reach this goal. - Ed.]

Less Is Better!

Thank you for the new-look MacTutor. Like many other subscribers, I was beginning to wonder what had happened to MacTutor - having assumed that my subscription had lapsed. Never mind! The replacement of the old with the new is often a good thing.

I was particularly pleased with your policy decision not to print vast amounts of code. In the future, articles which focus on particular coding tricks or secrets or useful but not well-known techniques would be most welcome. Such articles should be succinct and to the point and present only the code snippets necessary to explain the idea.

Many of the past MacTutor articles have hidden gems of knowledge inside very specialized solutions or inside programming frameworks which are not used by the everyday reader. For example I am using the THINK Class Library these days and any other “framework” is of no direct relevance to me. However, particular techniques of, say, using the toolbox, are. If these could be presented in a more generic way so that they could be easily adapted to different frameworks and programming environments, then this would be very useful. Wishing you every success with the new MacTutor.

- Paul Howson, Queensland, Australia

[Part of the purpose of Dave Mark’s article is to address how to properly access parts of the toolbox. Even if you are not a novice programmer, skim his articles and compare it with your own style. We’ll try to continue doing things in a general fashion. - Ed.]

MacApp and A/UX

I agree with you about the Tools. I need some. I understand what you're saying about POSITIVE and NEGATIVE requests. I hear and understand.

I would like some beginner's code on using MacApp. I know, you've beaten this one to a pulp. But version 3 is out, and I wasn't listening before.

I would like some coverage on programming stuff to specific A/UX and MacOS integration problems.

What a thrill to get mail from someone I just saw on a magazine editor's spot. This InterNET keeps on giving me chills (I had many conversations with Frank Da Cruz & Yoshi...WOW).

- Steven Woolgar, CHUS-FAMUS

[Steven, we’ll work to get some good quality starter articles on MacApp as well as advanced ones. As far as A/UX. I’ve heard this request a couple times. Who else is interested? More specifically, what would you like to see? - Ed.]

Glad to see you back

First of all I'm glad MacTutor is back in business! I like the renewed lay-out, the editor's intentions seem OK. I’m just wondering when you will release version 2.0.1 or the Tune-Up.

• Don't forget us Pascal programmers out here, we're still alive and kicking!

• I always enjoyed the MouseHole Report. It adresses real problems. Why not start a "Talk show" on AppleLink?

• I agree on the reduction of printed code, there's indeed no need to print yet another "DoNothing" shell.

• You could pay more attention to the international side of programming. There are still programmers abound who think that the world is flat and lies between Boston and L.A.

• If possible I'd like to receive my subscription copy before the issue appears in the local window display.

Oh and yes I will renew my subscription Can this be done through AppleLink?

So keep it going, we really need you. I learned and still learn more from MacTutor than from any other source available.

- Luc Roels, Diegem, Belgium

[Luc, as far as the talk show, AppleLink is very expensive to do this and doesn’t make sense for us. We are looking into other solutions so stay tuned. I hear you on the localization topic. I’ll look for articles.

As far as delivery. It will almost always show up in the stores a bit before your mailbox. The reason is that shippers are faster than the postal service in any country. The only way to avoid this would be to delay shipment to the dealers. But, we’ll continue to look for faster delivery methods.

Can you subscribe via AppleLink? Yes, see the front of the magazine for info on communication with us. - Ed.]

Correctly Efficient

I just got the second issue of the new MacTutor. I haven’t quite finished reading it all yet, but from my initial skim through it it looks like every article has something of interest to me-which is great!

I’ve just finished Mike Scanlin’s article on “Efficient 68000 Programming”. It’s got lots of useful tips that I will endeavour to keep in mind. However, one of his code samples annoys me, because it repeats a mistake that a lot of Mac assembly-language hackers seem to make.

On page 40 he gives the following replacement for a _BlockMove call:

Subq #1,Dx
@1 Move.B (A0)+,(A1)+
Dbra Dx,@1

Now, it’s a well-known feature of the DBcc group of instructions on the 68000 processor family that they terminate the loop when the count reaches -1, rather than zero. What’s not so well-known is that this is no accidental quirk, but a carefully-thought-out design feature. It allows you to automatically handle the case where the loop count is initially zero, without having to put in a separate test before entering the loop.

Here is an example of the right way to use a DBRA to move a block of bytes:

 move.w count, d0
 bra.s  @9
@1 move.b (a0)+, (a1)+
@9 dbra d0, @1

Notice how the loop is entered by branching to its end? That causes an extra initial execution of the DBRA instruction. This subtracts 1 from the loop count (adjusting for the termination on -1 instead of zero), and it will fall through without actually entering the loop if the count was initially zero. Elegant, huh?

It is also possible to use DBRA with a 32-bit loop count. Here is an example skeleton loop:

 move.l count, d0
 bra.s  @9
@1 swap d0
@2
; .. body of loop ..
@9 dbra d0, @2
 swap d0
 dbra d0, @1

Basically this is a DBRA loop within a DBRA loop: the outer loop counts down the high word of the 32-bit count, while the inner one handles the low word. Since the SWAPs and the outer DBRA are only executed once every 64K iterations of the inner loop, you’re still effectively getting the full speed of a simple DBRA loop.

There-now I’ve got that off my chest, I must finish the rest of the magazine.

- Lawrence D’Oliveiro, New Zealand

More Pascal!

For your information, the journal is quite interesting. I believe it could be a bit more technical, and would also like to see more Pascal programs. (I know, few times Pascal and “Technical” appear in the same sentence; however, I believe that Symantec’s Pascal has become powerful enough to write full fledge applications.) Overall, the magazine is quite useful, as well as helpful. Try to keep it oriented towards programmers.

- Edward Wolpert, Knoxville, TX

[Edward, great suggestion. I too would like to see more Pascal articles. They are getting harder and harder to find because of the incredible success of C and C++. I will keep vigilant in my search for more Pascal articles! - Ed.]

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Six fantastic ways to spend National Vid...
As if anyone needed an excuse to play games today, I am about to give you one: it is National Video Games Day. A day for us to play games, like we no doubt do every day. Let’s not look a gift horse in the mouth. Instead, feast your eyes on this... | Read more »
Old School RuneScape players turn out in...
The sheer leap in technological advancements in our lifetime has been mind-blowing. We went from Commodore 64s to VR glasses in what feels like a heartbeat, but more importantly, the internet. It can be a dark mess, but it also brought hundreds of... | Read more »
Today's Best Mobile Game Discounts...
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Nintendo and The Pokémon Company's...
Unless you have been living under a rock, you know that Nintendo has been locked in an epic battle with Pocketpair, creator of the obvious Pokémon rip-off Palworld. Nintendo often resorts to legal retaliation at the drop of a hat, but it seems this... | Read more »
Apple exclusive mobile games don’t make...
If you are a gamer on phones, no doubt you have been as distressed as I am on one huge sticking point: exclusivity. For years, Xbox and PlayStation have done battle, and before this was the Sega Genesis and the Nintendo NES. On console, it makes... | Read more »
Regionally exclusive events make no sens...
Last week, over on our sister site AppSpy, I babbled excitedly about the Pokémon GO Safari Days event. You can get nine Eevees with an explorer hat per day. Or, can you? Specifically, you, reader. Do you have the time or funds to possibly fly for... | Read more »
As Jon Bellamy defends his choice to can...
Back in March, Jagex announced the appointment of a new CEO, Jon Bellamy. Mr Bellamy then decided to almost immediately paint a huge target on his back by cancelling the Runescapes Pride event. This led to widespread condemnation about his perceived... | Read more »
Marvel Contest of Champions adds two mor...
When I saw the latest two Marvel Contest of Champions characters, I scoffed. Mr Knight and Silver Samurai, thought I, they are running out of good choices. Then I realised no, I was being far too cynical. This is one of the things that games do best... | Read more »
Grass is green, and water is wet: Pokémo...
It must be a day that ends in Y, because Pokémon Trading Card Game Pocket has kicked off its Zoroark Drop Event. Here you can get a promo version of another card, and look forward to the next Wonder Pick Event and the next Mass Outbreak that will be... | Read more »
Enter the Gungeon review
It took me a minute to get around to reviewing this game for a couple of very good reasons. The first is that Enter the Gungeon's style of roguelike bullet-hell action is teetering on the edge of being straight-up malicious, which made getting... | Read more »

Price Scanner via MacPrices.net

Take $150 off every Apple 11-inch M3 iPad Air
Amazon is offering a $150 discount on 11-inch M3 WiFi iPad Airs right now. Shipping is free: – 11″ 128GB M3 WiFi iPad Air: $449, $150 off – 11″ 256GB M3 WiFi iPad Air: $549, $150 off – 11″ 512GB M3... Read more
Apple iPad minis back on sale for $100 off MS...
Amazon is offering $100 discounts (up to 20% off) on Apple’s newest 2024 WiFi iPad minis, each with free shipping. These are the lowest prices available for new minis among the Apple retailers we... Read more
Apple’s 16-inch M4 Max MacBook Pros are on sa...
Amazon has 16-inch M4 Max MacBook Pros (Silver and Black colors) on sale for up to $410 off Apple’s MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather than a third-party... Read more
Red Pocket Mobile is offering a $150 rebate o...
Red Pocket Mobile has new Apple iPhone 17’s on sale for $150 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Switch to Verizon, and get any iPhone 16 for...
With yesterday’s introduction of the new iPhone 17 models, Verizon responded by running “on us” promos across much of the iPhone 16 lineup: iPhone 16 and 16 Plus show as $0/mo for 36 months with bill... Read more
Here is a summary of the new features in Appl...
Apple’s September 2025 event introduced major updates across its most popular product lines, focusing on health, performance, and design breakthroughs. The AirPods Pro 3 now feature best-in-class... Read more
Apple’s Smartphone Lineup Could Use A Touch o...
COMMENTARY – Whatever happened to the old adage, “less is more”? Apple’s smartphone lineup. — which is due for its annual refresh either this month or next (possibly at an Apple Event on September 9... Read more
Take $50 off every 11th-generation A16 WiFi i...
Amazon has Apple’s 11th-generation A16 WiFi iPads in stock on sale for $50 off MSRP right now. Shipping is free: – 11″ 11th-generation 128GB WiFi iPads: $299 $50 off MSRP – 11″ 11th-generation 256GB... Read more
Sunday Sale: 14-inch M4 MacBook Pros for up t...
Don’t pay full price! Amazon has Apple’s 14-inch M4 MacBook Pros (Silver and Black colors) on sale for up to $220 off MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather... Read more
Mac mini with M4 Pro CPU back on sale for $12...
B&H Photo has Apple’s Mac mini with the M4 Pro CPU back on sale for $1259, $140 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – Mac mini M4 Pro CPU (24GB/512GB): $1259, $... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.