TweetFollow Us on Twitter

Jul 90 Mousehole
Volume Number:6
Issue Number:7
Column Tag:Mousehole Report

Mac IIfx and MacApp

By Larry Nedry, Mousehole BBS

From: Dhands

Re: MacII vs MacIIfx

I had the opportunity to compare a Mac II and a Mac IIfx on MPW compile/link times and here are the results. The command executed was a complete rebuild of 5 MacApp examples repeated 5 times, average total time in seconds.

MABuild -make -e “{MAExamples}Calc:Calc”

MABuild -make -e “{MAExamples}Cards:Cards”

MABuild -make -e “{MAExamples}DemoDialogs:DemoDialogs”

MABuild -make -e “{MAExamples}DemoText:DemoText”

MABuild -make -e “{MAExamples}Nothing:Nothing”

RAM Cache | Mac II | Mac IIfx | II:IIfx
Off | 1495 | 870 | 1:1.7
512k | 842 | 374 | 1:2.25

I was sort of surprised that the IIfx was “only” 2.25 times faster (in this test) than the II. I was expecting at least 3x based on Apples press and other reviews. This is a narrow view of the IIfx speed, but to a software developer the compile/link time is an important bench mark.

Both Macs were running Multifinder 6.1, System 6.0.5, MPW 3.1, 2 meg. MPW partition.

From: Nobutoge

Re: MacII vs MacIIfx

Interesting. It may be because MPW takes a lot of disk I/Os to get compile/link done and those I/O periods basically remain the same whether you are on the II or IIfx [I don’t know... this is just my guess. I mean that the IIfx may be fast on the I/O processing but the time to get to right sectors on the disk would remain the same.]

From: John Hestenes [Mousehole: Johnh;Compuserve: 76216,1540]

Re: Console/tty for MPW C++/C

I need information to obtain or build a console or tty window and keyboard interface in C code to support STDIN,STDOUT and STDERR streams and CIN, COUT and CERR in applications (not within MPW as a tool). I am using a Mac IIcx, 4MB RAM, 40MB disk, System 6.0.4, MPW C++, C and assembler. The standard MPW manuals appear to omit needed information to do this. This interface is needed for teaching university students (Drexel University, PA) C++ from the standard C++ books so the code may be compiled also on UNIX and IBM-compatible systems. I am aware of “console” implementations in THINK C and other Mac compilers. Were is it for MPW? Any help is appreciated!

From: Atom

Re: console/tty for MPW C/C++?

Language Systems has a nice console window for their MPW Fortran compiler that could be used. It’s scrollable and editable and there are documented routines to send text to and from it from any MPW language. To use it in C++ you would create a custom streambuf class, make its overflow and underflow methods call the LS code, and assign the standard C++ streams to instances of it. I hope this helps.

From: Noisy

Re: Mystery globals & Macsbug

If you can’t get something to work...see how someone else did it. This works fine until I decided to peer into the guts of MacsBug to try and determine how to implement a breakpoint in ROM. While Nosying around, I discovered a rather interesting phenomenon: there are no CODE resources (or recognizable object code as ANY resource) in the MacsBug file. Hacking at the boot code revealed that a low ram global ($120) the Nosy titled ‘MacJmp’ got bashed around a lot during MacsBug installation. Any sages out there able to identify this beasty and how MacsBug interacts with the rest of the world?

From: Mrteague

Re: Mystery globals & Macsbug

I too learn by hacking other people’s work. Although at one time I probably reverse engineered MacsBug and System Boot up, I have forgotten some of it. But I can tell you the way *I expect* MacsBug interacts with the rest of the world. It all revolves around the idea of exceptions on the 680x0 family, and the associated exception (interrupt) vectors that are stored in low memory (I think $100 on). Normally the ROM vectors them to the System Error trap - like if you don’t have MacsBug installed, and you get an Address error, you will be greeted with the bomb box with ID = 2. However if MacsBug is present in your System Folder on bootup, the bootup code loads the data fork of MacsBug (that’s why you don’t see any CODE resources etc, if you having been looking with ResEdit) into high memory (where BufPtr points to, and subsequently the value of BufPtr is set to below MacsBug for other uses), and patches the interrupt vectors to point to MacsBug entry point(s), and probably MacJmp as well (I haven’t bothered worrying about that particular interaction). Now when you get an address error, you will dropped into MacsBug. MacJmp is probably used when tracing or single-stepping through code among other things. The newer versions of MacsBug are much more sophisticated than earlier versions, in that they have user callable routines to do things like get data from a user, and display data to the user - so there is probably some kind of jump table in MacsBug for the various common routines.

Among more interesting things, I think MacsBug keeps a checksum on itself, so it can if it ever gets corrupted (I’m sure you have seen some of the infamous “MacsBug caused an exception” type of msgs). I tried patching MacsBug 6.x once, to allow use of alternate keyboard chars rather than up/down arrow of the ADB

From: Cforden

Re: 2 questions re: Memory Mgmt.

1. Is there any disadvantage to calling MaxApplZone() at the beginning of a program? It seems like it would be very handy to always know how much memory was actually available. If MaxApplZone() is not called first, then FreeMem() seems to not report any memory that would automatically be added to the application heap if needed.

2. Is there any nice way to detect a failure of the segment loader to load a CODE segment (due to, for example, an out-of-memory condition)? I presume such an occurrence would likely result in something ungraceful happening, like a system crash. The only way I can think of doing something about this is to call GetResource(‘CODE’, xxx) before any subroutine call that might not get loaded successfully and check for a NIL handle. However, that approach would get tedious if used often.

From: Mrteague

Re: 2 questions re: Memory Mgmt.

1) The only disadvantages to calling MaxApplZone at the beginning of your program I can think of - if you wanted to reduce the size of the current heap zone by say modifying BufPtr or the stack size sometime in your program (you should do these first before MaxApplZone), and there would be no room to do this, if the zone was extended to it’s fullest first. Or things like DAs etc. that wanted their own heap couldn’t do it. Probably less of a problem now with MultiFinder and newer System software.

2) The only way I can think of trapping failure of the segment loader to load a CODE segment etc, would be to patch the System Error handler, to trap the System error #25 or #26 (I think) calls - but you are probably dicing with death at this point. If your program is written well enough at the start, and has the segmentation in sensible places etc, then you SHOULD NOT have a problem with Out of Memory conditions that the user can do anything about (i.e. if your program requires more memory than the user has, there are not many options open to him/her and your program).

From: Atom

Re: MacApp 2.0B9 and C++

I am interested in MacApp and would like to know if I need MPW Pascal to be able to use MacApp 2.0B9. I get different and confusing answers from APDA depending on who I talk to. I have MPW 3.1, the Interfaces & Libraries, and C++ 3.1B1 but not the Pascal compiler.

From: Lecroy

Re: MacApp 2.0B9 and C++

You’ll need either MPW Pascal *OR* the latest version of THINK Pascal. The MPW compiler will work “out of the box”, THINK Pascal has a source converter that reformats the MacApp code to THINK “standards”.

We use MPW here and are pretty happy with it (I’m not referring to compile/link speed...which is fairly unbearable). From what I’ve seen on AppleLink regarding THINK, everyone seems to be pretty happy with it, although a few people have run into some minor problems...

From: Atom

Re: MacApp 2.0B9 and C++

Thanks for your reply. I decided to spring for the THINK upgrade anyway, it seemed like a good environment in which to learn MacApp -- I like to tinker a lot, and MPW C++’s slow turnarounds were driving me crazy (even with relatively short header files). Just out of curiosity, why the need for the Pascal compiler? Does MacApp come in source form only, or (as one APDA operator told me) is there some sort of incompatibility between MacApp 2.0B9 and C++?

From: Lecroy

Re: MacApp 2.0B9 and C++

I assumed you were talking about Pascal when you asked about MacApp. MacApp does come with source and object files, so theoretically you don’t need the Pascal compiler, but..... I wouldn’t want to do without it, especially if you are going to be using MacApp 2.0b9. The last change list I got for 2.0b9 -> final contained 5 pages of single spaced changes, many of which were bug fixes. So you want to have the Pascal compiler in order to fix any bugs you come across. There are also a few places in MacApp that we have needed to change directly in the source code (the base behavior of some objects wasn’t quite what *we* thought it should be).

I feel awkward speaking negatively about MacApp, so I should mention that we have been extremely happy with it. Even MacApp with problems is better than having to deal with all of the programming problems application features that MacApp has already taken care of.

As far as incompatibility between C++ & MacApp 2.0b9, I’m not really sure. I know that I’ve seen a few problems mentioned on AppleLink, but they all seemed to get resolved sooner or later. If you have an AppleLink account, I highly recommend taking a look at the MacApp.Tech$ group address. You can get just about any MacApp related question taken care of there.

I’m not sure, though, if THINK C works with MacApp, someone correct me if I’m wrong.

From: Btoback

Re: MacApp 2.0B9 and C++ Help

I have been trying to get a C++ version of the “nothing” application to work with MacApp and the original MacApp C++ headers. I fixed several problems that shouldn’t have been there: types Byte and VHSelect were not defined anywhere; I stuck them into one of the MacApp header files.

Now the program compiles correctly, but immediately drops into the debugger with a diagnostic that says that a class name can’t be found. This is coming from RegisterStdType, which calls a routine that looks up the class name in a table. How do I get my class name into the table?

Who is supposed to construct the table? Pascal? Me? The linker? HyperCard? I must be missing something.

From: Atom

Re: MacApp 2.0 -- worth the cost?

Well, my THINK Pascal 3.0 upgrade came in late Friday (a week early!) so I decided to put in my order for MacApp 2.0B9 today, and guess what? 2.0 beta isn’t available anymore and they’re taking orders for 2.0 final. Great, I thought, until they told me how much it would cost. $125 you say, maybe $150? Guess again. Apple’s raised the price on MacApp 2.0 from $100 to $275. No, that’s not a typo. They’ve almost tripled the price.

From: Siegel

Re: MacApp 2.0 -- worth the cost?

If you’ve never used a class library before, why not start with the TCL, and then if you decide you want MacApp, you can upgrade later, and in the meantime save your pennies to help pay for it.

From: Thomas

Re: Serial Port Reset on the Portable

I’m porting some software to the Macintosh Portable which writes directly to the SCC chip. The program works fine on all other Mac platforms except the Portable and the IIfx. I’ve heard rumors that all I need to do on the portable is wakeup the serial port (reset the SCC chip?). Does anyone out there know anything about this?

From: Ears

Re: Serial Port Reset on the Portable

Why do you need to write to the SCC chip. This is a sure way to make your program break on future CPUs. Unless you really need to it would be better to stay within Apple’s guidelines for future compatibility.

From: Mrteague

Re: Serial Port Reset on the Portable

I would have to agree with the other reply - you are asking with trouble writing directly to the SCC chip. If the application/driver whatever you are modifying doesn’t require that extra special need for accessing the hardware directly, then I would suggest you take THIS opportunity to modify the code to NOT access the SCC chip directly. But if you must, the usual reason for direct SCC not working is the I/O addresses are in different places on different Macs.

It will be even harder to do on the IIfx and newer machines. The Serial Driver for the Portable does do things with the Power Manager, which you will need to do, and it won’t only be “waking up” the SCC.

From: Atom

Re: Mouse-moved events

Does anyone know if there’s a minimum time that Multifinder waits before returning with a mouse-moved event? In other words, if you set the mouse region but the mouse has moved out of it before you next call WaitNextEvent, will Multifinder return immediately or give background tasks a chance before doing so? The reason I ask is that I noticed some strange behavior while playing with the TCL TinyEdit demo that comes with THINK Pascal 3.0. If you quickly move the mouse into the edit pane from outside the active window there is often a noticeable delay before the cursor changes to an I-beam. For this to happen you have to cross the part of the scroll pane that’s outside the edit pane. At first I thought the mouse region was being set up wrong but WNE *is* returning with a mouse-moved event, it’s just taking its time doing it. I know this is a minor problem but it’s made me curious.

From: Malam

Re: Patching traps

Hi, I am looking for source code examples on how to patch traps in an INIT. Specifically, I’d like to trap GetResource and ExitToShell. I need to track application launches and quits.

A while back there was an INIT that beeped upon launch and quit, but it was written in FORTH, something that I have absolutely no idea on what to do with.

From: Johncasey

Re: Hiding the menu bar

I am trying to write a slide show/presentation program. Does anyone know how to remove the menubar from the main screen under Multifinder? I also may want to write a little screen saver, but I can’t seem to find a “HideMenuBar” command!

From: Johncasey

Re: Full File Pathnames - HELP!

How can you translate the information returned by SFGetFile into a full pathname (ie. HD:System Folder:System)? I am working on some libraries that will allow a user to write software that will run on many different computers. I don’t want to rewrite all the stdio routines for the other machines just because the Mac uses a reference number instead of a pathname. If anyone has any suggestions please respond. Thanks!

From: Johncasey

Re: PICT File Spooling

Does anyone have a the source code to a PICT file viewer using the PICT file spooling example from Inside Mac Volume V? I would prefer a C version (if possible). Thanks!

From: Arlen

Re: Kilroy

Anybody know where the PICT Kilroy comes from? I was sleuthing through a friend’s Mac the other day and found the PICT resource of the cute little bugger peeking over a wall in his system file. I’ve seen it before, but not very often and not in every Mac. Who puts him there, anyway? Is he a virus (doubtful, as none of my tools react to him) or is he a calling card left by some DA/CDEV/INIT author?

I haven’t found anything wrong about having him around, but I’m curious.

From: Tomt

Re: Kilroy

I think the pict could be from Virus Detective.

From: Craig

Re: DB Engines

Mac Oracle has a Hypercard front end that is worth checking out. It suffers only from the speed of Hypercard. The latest version includes info on getting the thing to work with Supercard as well. The real problem is Oracle, multi-user access - Phoee (sp? :-)). The suggested solution was SQLNet running on a microvax. The response to AppleTalk was fear.

Single user use though is OK, the need to develop in a HLL such as C or Pascal is a bit of a bummer as it really slows development down.

From: Walrus

Re: WDEF virus

Well, I’m in the midst of cleaning up my system after discovering this virus (a message had come up on this board a couple months ago about it) I wanted to upload an INIT that has helped in the mopping up.

This is the first infection I’ve contracted and fortunately it is relatively benign. I didn’t even suspect a problem until I was trying to fix a Stuffed file on a disk and found some odd strings in the Desktop file -- stuff like “WDEF” “WDEFvirus” and that is when I remembered something about a new virus that hides as a WDEF resource. Disinfectant 1.7 works well in finding it and giving some background, but 2 INITs are good for automatic treatment. Both work automatically when a disk is inserted (which is when it spreads from disk to disk. It is not an executable program-spreading type of virus), but they are a little different. Eradicate’em is a little smaller and only beeps when it finds it’s prey and kills it. GateKeeper Aid gives you a dialog box telling you what the heck is going on. If you don’t think you have a problem, you probably want GA so that YOU will know when something is amiss. If you know you’ve got a problem (like me), you might just use Eradicate’em so that it does it without bothering you. And they both work under Multifinder.

I’m not sure where I got this, I almost never have a disk that was in someone else’s drive. Oh well, at least I bagged one of the suckers to be examined (or rather, Nosied) later.

BEWARE, Y’ALL

From: Venture

Re: Moon Phases

I seem to remember that “Numerical Recipes In C” had the formula for calculating every Friday the 13 which occurred on a full moon (just as an example of how to write the code). If true, that should give you the basis of the algorithm.

Numerical R.. (however you spell it) should be available in any respectable college bookstore or library. Try page 12 or thereabouts.

From: Chuckerp

Re: PopUpFuncs

For what it’s worth, I have never had any problems with the PopUpFuncs INIT, or any other mysterious problems after installing it. Have lots of RAM, lots of INITS.

From: Derek

Re: Mac II Monitor Problem

My Mac II is a few years old now and now one out of every ten times I turn on my Mac II the monitor stays off. I don’t hear a relay click so I know the relay is not turning on. Anyone know where I can get the relay from? And also exactly where it is located?

From: Fortune

Re: Mac Plus Accelerator

While at MacWorld I decided that I really need to do something to bring my Mac Plus up to date. I currently have 4MB of memory and an 80MB disk, so the logical improvements are an accelerator (and later, a larger display). The accelerator that most impressed me at the show was the Gemini board from Total Systems. This was a 16Mhz 68030 with 4 SIMM slots that could be addressed via a 32 bit wide data path (faster than trying to get to the motherboard memory they say). In addition, there is a socket for the math co-processor, a fast SCSI port (Mac II speed they said), and an SE compatible slot (great for when I finally ad the monitor). They also include a aux power supply and a fan. Total price was $1095.00 (till the end of this month). The big question: Has anyone had any experience/contact/ESP/etc. with this company or their accelerators? The package sounds pretty good on the face of it. If you don’t have any information on this accelerator, what other would you recommend? Dove Marathon 030? Radius? Thanks (in advance) for the help!

From: Billco

Re: PBDirCreate

Ok, how does one create a new folder? my call to PBDirCreate always returns DupFNErr.

From: Ronyd

Re: using the list manager for pallettes

I have created a scrollable palette with icons . The only problem is that the pallette is displayed without the scroll bars. I passed a value of TRUE fore the hscroll arg in LNew. Is there anything else that has to be done in order to get scroll bars?

From: Noisy

Re: using the list manager for pallettes

Did you remember to leave space for the Scrollbar(s) on the right and bottom side? IM-IV page261 reminds you that the scroll bar will be drawn OUTSIDE the rectangle specified. If this doesn’t solve your mystery, let me know...

From: Ronyd

Re: using the list manager for pallettes

Does this mean that I must allocate the exact number of pixels? When my pallette is displayed, the icons are displayed, and white space indicates that the space is allocated. I’ll check my code again. Any other ideas? thank for responding.

From: Harcoke

Re: appleshare bug ??

Anyways I found the solution, it is a simple typo in IM V 393. the bottom arrow should point both ways and all you have to do then is add this simple line LoginInfo.ioNamePtr := nil and it works without a single hickup (is that what you say over there ?).

From: Rguerra

Re: Hiding Res Maps/RAM cache

A couple of questions:

1) Is anyone familiar with the technique of “hiding” a files resource map behind the System Resource Map? In other words, the resource map is left open and easily accessible from patch code, for example. Probably the best examples of this technique are MasterJuggler and Suitcase which leave their files plus the online DA’s, Fonts, FKEY’s, sounds open for instant access.

Does anyone know what might be involved in implementing this scheme? Moving the handle to the resource map of one’s own file behind the System’s is no problem. Before I go patching up various Resource Manager routines does anyone know of any mega-pitfalls or “must handle” cases? I’d appreciate any advice on this.

2) Is there a way to determine not only whether the Apple RAM cache is active but also how much memory has been allocated to it?

From: Rguerra

Re: Standard FIle question

Does anyone have a reliable technique for differentiating files vs. folders that are selected in a standard file dialog AT HOOK TIME? At hook time, the reply record is partially filled in, but how can one differentiate between files and folders if you do not know the filetype of displayed files? I’d like the “Open” button’s title to toggle between different strings according to what is selected at a particular moment. Thanks!

From: Mward

Re: Fastback II Fails to Restore

I love Diskfit, but I *need* to be able to backup by selected folder. After getting fed up with Fastback, I went back to Redux. It’s not wonderful, but it works.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Posterino 4.4 - Create posters, collages...
Posterino offers enhanced customization and flexibility including a variety of new, stylish templates featuring grids of identical or odd-sized image boxes. You can customize the size and shape of... Read more
Chromium 119.0.6044.0 - Fast and stable...
Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all Internet users to experience the web. List of changes available here. Version for Apple... Read more
Spotify 1.2.21.1104 - Stream music, crea...
Spotify is a streaming music service that gives you on-demand access to millions of songs. Whether you like driving rock, silky R&B, or grandiose classical music, Spotify's massive catalogue puts... Read more
Tor Browser 12.5.5 - Anonymize Web brows...
Using Tor Browser you can protect yourself against tracking, surveillance, and censorship. Tor was originally designed, implemented, and deployed as a third-generation onion-routing project of the U.... Read more
Malwarebytes 4.21.9.5141 - Adware remova...
Malwarebytes (was AdwareMedic) helps you get your Mac experience back. Malwarebytes scans for and removes code that degrades system performance or attacks your system. Making your Mac once again your... Read more
TinkerTool 9.5 - Expanded preference set...
TinkerTool is an application that gives you access to additional preference settings Apple has built into Mac OS X. This allows to activate hidden features in the operating system and in some of the... Read more
Paragon NTFS 15.11.839 - Provides full r...
Paragon NTFS breaks down the barriers between Windows and macOS. Paragon NTFS effectively solves the communication problems between the Mac system and NTFS. Write, edit, copy, move, delete files on... Read more
Apple Safari 17 - Apple's Web brows...
Apple Safari is Apple's web browser that comes bundled with the most recent macOS. Safari is faster and more energy efficient than other browsers, so sites are more responsive and your notebook... Read more
Firefox 118.0 - Fast, safe Web browser.
Firefox offers a fast, safe Web browsing experience. Browse quickly, securely, and effortlessly. With its industry-leading features, Firefox is the choice of Web development professionals and casual... Read more
ClamXAV 3.6.1 - Virus checker based on C...
ClamXAV is a popular virus checker for OS X. Time to take control ClamXAV keeps threats at bay and puts you firmly in charge of your Mac’s security. Scan a specific file or your entire hard drive.... Read more

Latest Forum Discussions

See All

‘Monster Hunter Now’ October Events Incl...
Niantic and Capcom have just announced this month’s plans for the real world hunting action RPG Monster Hunter Now (Free) for iOS and Android. If you’ve not played it yet, read my launch week review of it here. | Read more »
Listener Emails and the iPhone 15! – The...
In this week’s episode of The TouchArcade Show we finally get to a backlog of emails that have been hanging out in our inbox for, oh, about a month or so. We love getting emails as they always lead to interesting discussion about a variety of topics... | Read more »
TouchArcade Game of the Week: ‘Cypher 00...
This doesn’t happen too often, but occasionally there will be an Apple Arcade game that I adore so much I just have to pick it as the Game of the Week. Well, here we are, and Cypher 007 is one of those games. The big key point here is that Cypher... | Read more »
SwitchArcade Round-Up: ‘EA Sports FC 24’...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for September 29th, 2023. In today’s article, we’ve got a ton of news to go over. Just a lot going on today, I suppose. After that, there are quite a few new releases to look at... | Read more »
‘Storyteller’ Mobile Review – Perfect fo...
I first played Daniel Benmergui’s Storyteller (Free) through its Nintendo Switch and Steam releases. Read my original review of it here. Since then, a lot of friends who played the game enjoyed it, but thought it was overpriced given the short... | Read more »
An Interview with the Legendary Yu Suzuk...
One of the cool things about my job is that every once in a while, I get to talk to the people behind the games. It’s always a pleasure. Well, today we have a really special one for you, dear friends. Mr. Yu Suzuki of Ys Net, the force behind such... | Read more »
New ‘Marvel Snap’ Update Has Balance Adj...
As we wait for the information on the new season to drop, we shall have to content ourselves with looking at the latest update to Marvel Snap (Free). It’s just a balance update, but it makes some very big changes that combined with the arrival of... | Read more »
‘Honkai Star Rail’ Version 1.4 Update Re...
At Sony’s recently-aired presentation, HoYoverse announced the Honkai Star Rail (Free) PS5 release date. Most people speculated that the next major update would arrive alongside the PS5 release. | Read more »
‘Omniheroes’ Major Update “Tide’s Cadenc...
What secrets do the depths of the sea hold? Omniheroes is revealing the mysteries of the deep with its latest “Tide’s Cadence" update, where you can look forward to scoring a free Valkyrie and limited skin among other login rewards like the 2nd... | Read more »
Recruit yourself some run-and-gun royalt...
It is always nice to see the return of a series that has lost a bit of its global staying power, and thanks to Lilith Games' latest collaboration, Warpath will be playing host the the run-and-gun legend that is Metal Slug 3. [Read more] | Read more »

Price Scanner via MacPrices.net

Clearance M1 Max Mac Studio available today a...
Apple has clearance M1 Max Mac Studios available in their Certified Refurbished store for $270 off original MSRP. Each Mac Studio comes with Apple’s one-year warranty, and shipping is free: – Mac... Read more
Apple continues to offer 24-inch iMacs for up...
Apple has a full range of 24-inch M1 iMacs available today in their Certified Refurbished store. Models are available starting at only $1099 and range up to $260 off original MSRP. Each iMac is in... Read more
Final weekend for Apple’s 2023 Back to School...
This is the final weekend for Apple’s Back to School Promotion 2023. It remains active until Monday, October 2nd. Education customers receive a free $150 Apple Gift Card with the purchase of a new... Read more
Apple drops prices on refurbished 13-inch M2...
Apple has dropped prices on standard-configuration 13″ M2 MacBook Pros, Certified Refurbished, to as low as $1099 and ranging up to $230 off MSRP. These are the cheapest 13″ M2 MacBook Pros for sale... Read more
14-inch M2 Max MacBook Pro on sale for $300 o...
B&H Photo has the Space Gray 14″ 30-Core GPU M2 Max MacBook Pro in stock and on sale today for $2799 including free 1-2 day shipping. Their price is $300 off Apple’s MSRP, and it’s the lowest... Read more
Apple is now selling Certified Refurbished M2...
Apple has added a full line of standard-configuration M2 Max and M2 Ultra Mac Studios available in their Certified Refurbished section starting at only $1699 and ranging up to $600 off MSRP. Each Mac... Read more
New sale: 13-inch M2 MacBook Airs starting at...
B&H Photo has 13″ MacBook Airs with M2 CPUs in stock today and on sale for $200 off Apple’s MSRP with prices available starting at only $899. Free 1-2 day delivery is available to most US... Read more
Apple has all 15-inch M2 MacBook Airs in stoc...
Apple has Certified Refurbished 15″ M2 MacBook Airs in stock today starting at only $1099 and ranging up to $230 off MSRP. These are the cheapest M2-powered 15″ MacBook Airs for sale today at Apple.... Read more
In stock: Clearance M1 Ultra Mac Studios for...
Apple has clearance M1 Ultra Mac Studios available in their Certified Refurbished store for $540 off original MSRP. Each Mac Studio comes with Apple’s one-year warranty, and shipping is free: – Mac... Read more
Back on sale: Apple’s M2 Mac minis for $100 o...
B&H Photo has Apple’s M2-powered Mac minis back in stock and on sale today for $100 off MSRP. Free 1-2 day shipping is available for most US addresses: – Mac mini M2/256GB SSD: $499, save $100 –... Read more

Jobs Board

Licensed Dental Hygienist - *Apple* River -...
Park Dental Apple River in Somerset, WI is seeking a compassionate, professional Dental Hygienist to join our team-oriented practice. COMPETITIVE PAY AND SIGN-ON Read more
Sublease Associate Optometrist- *Apple* Val...
Sublease Associate Optometrist- Apple Valley, CA- Target Optical Date: Sep 30, 2023 Brand: Target Optical Location: Apple Valley, CA, US, 92307 **Requisition Read more
*Apple* / Mac Administrator - JAMF - Amentum...
Amentum is seeking an ** Apple / Mac Administrator - JAMF** to provide support with the Apple Ecosystem to include hardware and software to join our team and Read more
Child Care Teacher - Glenda Drive/ *Apple* V...
Child Care Teacher - Glenda Drive/ Apple ValleyTeacher Share by Email Share on LinkedIn Share on Twitter Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.