Some 15 years ago, A friend of mine said to me "mark my words, Apple will eventually merge OSX with iOS on the iPad". And with every passing keynote since then, it seemed Apple's been inching towards that prophecy, and today, the iPad has become practically a MacBook Air with a touch screen. Unless you were a video editor, programmer who needs resources to compile or a 3D artist, I don't see how you'd need anything o…
I think practically everyone is better off with a laptop. iPad is great if you're an artist using the pencil, or just consuming media on it. Otherwise a macbook is far more powerful and ergonomic to use.
Apple announces Foundation Models and Containerization frameworks, etc
141–150 of 514 posts
Re: Apple announces Foundation Models and Containerization frameworks, etc
#142Earlier quoted context omitted.
It’s title case[0]. [0]: https://en.wikipedia.org/wiki/Title_case
Then you would expect "frameworks" to be capitalized as well.
Re: Apple announces Foundation Models and Containerization frameworks, etc
#143Earlier quoted context omitted.
It's impossible to have "native" support for Linux containers on macOS, since the technology inherently relies on Linux kernel features. So I'm guessing this is Apple rolling out their own Linux virtualization layer (same as WSL). Probably still an improvement over the current mess, but if they just support LXC and not Docker then most devs will still need to install Docker Desktop like they do today.
Apple has had a native hypervisor for some time now. This is probably a baked in clone of something like https://mac.getutm.app/ which provides the stuff on top of the hypervisor.
1. Creating and configuring a virtual machine:
hv_vm_create(HV_VM_DEFAULT);
2. Allocating guest memory: void* memory = mmap(...);
hv_vm_map(memory, guest_physical_address, size, HV_MEMORY_READ | HV_MEMORY_WRITE | HV_MEMORY_EXEC);
3. Creating virtual CPUs: hv_vcpu_create(&vcpu, HV_VCPU_DEFAULT);
4. Setting registers: hv_vcpu_write_register(vcpu, HV_X86_RIP, 0x1000); // Set instruction pointer
hv_vcpu_write_register(vcpu, HV_X86_RSP, 0x8000); // Stack pointer
5. Running guest code: hv_vcpu_run(vcpu);
6. Handling VM exits: hv_vcpu_exit_reason_t reason;
hv_vcpu_read_register(vcpu, HV_X86_EXIT_REASON, &reason);Re: Apple announces Foundation Models and Containerization frameworks, etc
#144Re: Apple announces Foundation Models and Containerization frameworks, etc
#145Will they ever update Terminal.app?
Just use iTerm2 (Warp or Kitty are two other options out of many) and be done w/it; why would Apple even worry about this when so few people who care about terminal applications even think twice about it?
Re: Apple announces Foundation Models and Containerization frameworks, etc
#146Edit: surprised apple is dumping resources into gaming, maybe they are playing the long game here?
Re: Apple announces Foundation Models and Containerization frameworks, etc
#147Okay, the AI stuff is cool, but that "Containerization framework" mention is kinda huge, right? I mean, native Linux container support on Mac could be a game-changer for my whole workflow, maybe even making Docker less of a headache.
Orbstack has been pretty bulletproof
Orbstack owners are going to be fuming at this news!
Re: Apple announces Foundation Models and Containerization frameworks, etc
#148Earlier quoted context omitted.
Does an iPad allow for multiple users?
Yes, but only if it's enrolled in MDM, bizarrely enough.
In education or corporate settings, where account management is centralized, you want each person who uses an iPad to access their own files, email, etc.
Re: Apple announces Foundation Models and Containerization frameworks, etc
#149Earlier quoted context omitted.
Does an iPad allow for multiple users?
Yes, but only if it's enrolled in MDM, bizarrely enough.