323
you are viewing a single comment's thread
view the rest of the comments
[-] xep@fedia.io 18 points 3 months ago* (last edited 3 months ago)

This has likely been done intentionally for humour's sake, but take a look at some of the names in Apple's AppKit framework, like https://developer.apple.com/documentation/appkit/nspreviewrepresentingactivityitem

[-] BombOmOm@lemmy.world 2 points 3 months ago* (last edited 3 months ago)

I'm still annoyed with how verbose Objective-C is. Just check out what one has to do to create and concatenate a string. Madness:

    NSString * test = [[NSString alloc] initWithString:@"This is a test string."];
    NSString * test2 = [test stringByAppendingString:@" This value is appended."];

And god forbid you want to concatenate two things to a string:

    NSString * test3 = [test1 stringByAppendingString:[test2 stringByAppendingString:@" Adding a third value."]];
[-] qaz@lemmy.world 2 points 3 months ago

That page is giving me a 403

this post was submitted on 28 Mar 2024
323 points (96.3% liked)

Programmer Humor

18388 readers
682 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS