Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Cloudflare Quick Tunnels(cloudflare.com ↗)
    140comments
  2. Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug(ledger.com ↗)
    11comments
  3. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    29comments
  4. North Korean nuclear test sets off years of earthquakes(science.org ↗)
    90comments
  5. OpenJev(openjev.com ↗)
    215comments
  6. US Military had close call after using AI for hallucinated intelligence report(cnn.com ↗)
    25comments
  7. C++26: Trivial infinite loops are no longer undefined behaviour(sandordargo.com ↗)
    114comments
  8. Systemd is a suite of basic building blocks(systemd.io ↗)
    6comments
  9. I vibed a proof of Conway's conjecture(overreacted.io ↗)
    122comments
  10. Show HN: Ax-check.com – Can agents use your product?(ax-check.com ↗)
    discuss
  11. A heap overflow and SSO misconfiguration to compromise OpenAI internal repos(hacktron.ai ↗)
    184comments
  12. Grok Voice Transcribe 2.0(x.ai ↗)
    1comments
  13. I don't like passkeys(hawksley.dev ↗)
    575comments
  14. Mathematicians Build Long-Awaited Graph Sandwich(quantamagazine.org ↗)
    6comments
  15. Jemalloc 5.4.0(github.com/jemalloc ↗)
    76comments
  16. NATS publishes preliminary report on technical incident of 8 September(nats.aero ↗)
    24comments
  17. The scourge of x86 emulation(fex-emu.com ↗)
    69comments
  18. GrassLobster: AI Agentic Generation of Parametric Geometry Workflows(miro.vision ↗)
    4comments
  19. Cekura (YC F24) Is Hiring(ycombinator.com ↗)
    discuss
  20. The Shadows Lurking in the Equations – Underwater Islands(gods.art ↗)
    10comments
  21. Warren Buffett Steps Down as Berkshire Chairman, Names Son to Replace Him(nytimes.com ↗)
    165comments
  22. Show HN: Scry, programmable internet search w/ congestion pricing(scry.io ↗)
    4comments
  23. BeanShell3 in Development(beanshell.github.io ↗)
    15comments
  24. Replacing Pull Requests with Delta(zed.dev ↗)
    74comments
  25. AI chatbots are becoming experts at changing people's minds(science.org ↗)
    81comments
  26. An empirical study of harness design for coding agents(arxiv.org ↗)
    43comments
  27. Build Faster Feedback Loops Using Qualitative User Research(nseldeib.com ↗)
    2comments
  28. Pre-Greek: The lost language hidden within Ancient Greek(linguisticdiscovery.com ↗)
    62comments
  29. Second Circuit Allows Government to Search Electronic Devices at the Border(knightcolumbia.org ↗)
    57comments
  30. Microsoft exec called AI scraping 'the largest theft of labor in human history'(techcrunch.com ↗)
    669comments

A9ChipSource: small open-source iOS utility to identify A9 foundry

37 pointsby 11y agogithub.com
23 comments
11y agoHN ↗

I haven't done any iOS development before but is there any real reason why a tiny app with what seems to be ~100 lines of code needs to be split into several small files with even fewer lines in them?

https://github.com/WDUK/A9ChipSource/tree/master/A9ChipSourc...

As far as I can see, the actual work is performed by around 5 lines of code in this file, which reads a configuration value, performs two string comparisons, and outputs to 2 text fields:

https://github.com/WDUK/A9ChipSource/blob/master/A9ChipSourc...

In other words, is this level of verbosity/"fluff" typical of iOS apps?

11y agoHN ↗

AppDelegate.m and main.m are boilerplate. They are generated by Xcode when you create a new project. Often you don't change them. The ViewController is where you should start examining the code.

Of course, you have the .h files too. With Swift these go away so there's fewer files. Finally, you can do scripting that doesn't have any boilerplate: http://www.h4labs.com/dev/ios/swift.html?age=10000&q=scripti...

11y agoHN ↗

Most of what you see is the boilerplate of generating a new iOS app.

You're right, all of the interesting code is in ViewController.m, and if this were extracted to a library it would be much smaller.

I think the point of this repo is a demo app that you can build and run on your phone to find out which chip manufacturer you have.

11y agoHN ↗

That's not much verbosity/fluff. It's the typical default auto-generated code files; basically the author said "new project" and filled in a few lines. No need to hand-optimize this into minimum files.

ETA: With some cut-and-paste & removing stubs, and preserving the storyboards, the whole thing can be reduced to 20 lines in just main.m, smaller if you shift into "obfuscated objective-c" mode.

11y agoHN ↗

Exactly, I spent less than half an hour writing this up, and wasn't aiming for the lowest LOC possible. This is all mostly boilerplate.

11y agoHN ↗

I should have come to the comments before trying to work out which file the functional code was in.

11y agoHN ↗

How do you do this in Swift?

CFStringRef val = (CFStringRef)MGCopyAnswer(CFSTR("HardwarePlatform"));

NSString* chipIdentifier =(__bridge NSString * _Nullable)(val);

11y agoHN ↗

Theoretically just:

let u = MGCopyAnswer("HardwarePlatform")

However, the problem is that MGCopyAnswer is a private method, and thus you have to define an interface for it. You can't do that in Swift, however you can do it by creating a bridging header for Swift.

So you'd need to add a bridging-header.h to the project, then set the compile target up to use the bridging header, and finally add this to the bridging header:

#include <CoreFoundation/CoreFoundation.h> #if __cplusplus extern "C" { #endif CFPropertyListRef MGCopyAnswer(CFStringRef property); #if __cplusplus } #endif

11y agoHN ↗

That's not correct. You can define it with @asmname.

11y agoHN ↗

I hope this code finds way into mainstream system information apps on App Store.

11y agoHN ↗

Why would I care where the processor in my phone is made?

11y agoHN ↗

Most people won't care but let's say the Samsung gets another half hour of battery life. For some people that may be worth the hassle of exchanging (and restocking fee?).

11y agoHN ↗

Please pardon my ignorance...

My impression was that only apple approved, app-store delivered software could run on iPhone/iPad/iWhatever ...

Am I wrong to be surprised to see an "iOS utility" hosted on github ? What am I missing here ?

11y agoHN ↗

Anyone can build it and put it on their device, all you need is Xcode and a Mac in addition to your iOS device.

11y agoHN ↗

iOS apps can be built/signed/installed from a Mac running Xcode 7 without any extra requirements. I'm surprised this fact hasn't gotten more press.

11y agoHN ↗

Now this is interesting, had to dig it out:

Free On-Device Development

Now everyone can run and test their own app on a device—for free. You can run and debug your own creations on a Mac, iPhone, iPad, iPod touch, or Apple Watch without any fees, and no programs to join. All you need to do is enter your free Apple ID into Xcode. You can even use the same Apple ID you already use for the App Store or iTunes. Once you’ve perfected your app the Apple Developer Program can help you get it on the App Store.

See Launching Your App on Devices for detailed information about installing and running on devices.

( From the feature list for xcode 7 — https://developer.apple.com/library/prerelease/ios/documenta... )

My theory was that the whole developer key thing was a very effective piracy countermeasure — registering and paying $100/year (iirc) is expensive and inconvenient enough that it's easier to just buy things. What has changed?

11y agoHN ↗

I believe that you still have to build it to install it on your iPhone, so the likelihood of this being used for piracy is low. Not many commercial apps will have their source code available publicly.

11y agoHN ↗

Hi guys, I'm the creator of this little utility. Just noticed a flood of Stars on the repo, and thought it might be posted here.

Information on the chip identifiers was derived from the original closed source tool, and theiphonewiki (https://www.theiphonewiki.com/wiki/S8003 and https://www.theiphonewiki.com/wiki/S8000).

Motivation was basically to have an open source version of the tool, which didn't relay information back to a server or use advertising. Plus having people install unauthorised apps using a leaked/dodgy enterprise distribution certificate is a dangerous game; having an open source tool allows people in the know to install it on their own devices, safe in the knowledge what it's going to do.