#development

1 messages · Page 10 of 1

gentle grove
#

definitely do in pretty much every language i can think of

#

python, java, rust, go,

hexed knot
#

If ur header isnt named the same as class then go to hell

gentle grove
#

probably c++ as well

hexed knot
#

In objc, id is the only lowercase type

gentle grove
#

maybe its a primitive

hexed knot
#

Everything else is NSString

#

NSMutableArray

hexed knot
#

If you’re wondering what NSString is, it’s NextStep String

gentle grove
#

i know

hasty ruin
hexed knot
#

Shut the hell up bruh

gentle grove
#

cant even find the docs on that hook syntax

gentle grove
hasty ruin
#

that’s logos

gentle grove
#

size_t

#

although thats a primitive too

hasty ruin
#

it gets preprocessed into mobile substrate calls

#

%hook is tweaking shit

#

and yeah the capitalisation of the function is just weird - everything about this game is

#

Codebase is a decade old

gentle grove
#

what do i look up to figure out the syntax of hook

hasty ruin
#

No standardisation

hasty ruin
gentle grove
#

lmao could apple not make their own docs

hexed knot
#

Dawg

#

Theos isnt apple official

hasty ruin
gentle grove
hasty ruin
#

Read from here

gentle grove
hexed knot
#

Neither is logos

gentle grove
hexed knot
#

%hook is part of logos

hasty ruin
gentle grove
#

how does everyone usei t then

hasty ruin
#

Why would apple have docs on it

gentle grove
#

oh

hexed knot
#

Apples not gonna have docs on how to make tweaks

hasty ruin
gentle grove
gentle grove
hasty ruin
#

that’s hookf

hexed knot
#

Maybe keep looking

hasty ruin
#

Scroll down for hook

#

(hookf is for hooking c functions)

gentle grove
#

yeah now

#

it does explain that - (void)uninstallApplication syntax and all

#

do i need to scroll more

hasty ruin
#

%hook classname is logos

-(void)…. {} is objc

gentle grove
#

thats just the normal objc syntax?

hexed knot
hasty ruin
#

yeah

gentle grove
#

why does it have to be so ugly

hasty ruin
#

How is it ugly

gentle grove
gentle grove
hasty ruin
#

failing to see

hexed knot
#

I dont think its ugly

#

Just different than other languages

gentle grove
#

yeah well too bad

#

its ugly

hasty ruin
#

just googled "rust function syntax with arguments" and i see this shit

gentle grove
#

why

+(BOOL)verify_file:(id)file {}

instead of like

bool verify_file(id file) {}
hasty ruin
#

how do you not find that ugly

gentle grove
#

thats even how python does it

hasty ruin
#

python uses {} now??

gentle grove
gentle grove
hexed knot
#

The + means its a class method. If it was a - it would be an instance method

hasty ruin
gentle grove
#

and (id)file

#

as if its a cast

gentle grove
hexed knot
#

No

gentle grove
#

what does it do

hexed knot
#

It means you call it straight from the class

gentle grove
#

that is literally how static method works

#

in other languages

hasty ruin
gentle grove
#

java specifically

hexed knot
#

I dont know what static means

gentle grove
#

like a static method in java

hexed knot
#

I dont know java

gentle grove
#

anywyas

gentle grove
#

just kinda weird

#

compared to most other languages

hasty ruin
#

calling class method: [ClassName classMethod];
calling instance method: [[ClassName alloc] classMethod];

#

for instance methods, you need an instance of the class

gentle grove
#

oh god there's brackets

#

and no dots

hasty ruin
gentle grove
#

💀

hexed knot
#

You can use dots now

gentle grove
#

nice

hasty ruin
#

you can use either dots or brackets to get properties

#

but just brackets to call

hexed knot
#

I understand why tbh

#

I cant explain it

#

But i understand why in my head

gentle grove
hexed knot
#

alloc is a method

#

Allocate

hasty ruin
#

you can call methods without [] via objc_msgSend but yk

#

dont

gentle grove
#

why does it have to be so different

#

than other languages

hexed knot
#
// class method
[Class classMethod];

// instance method
Class* classInstance = [[Class init] alloc];
[classInstance instanceMethod];
hasty ruin
#

@primal perch which looks ugliest to you
fn first((value, _): (i32, i32)) -> i32 { value }
or
+(BOOL)verifyFileData:(NSData *)data {

gentle grove
#

at least make them the same

#

also there's a typo

#

and an ignored parameter

hasty ruin
#

got it off google

#

average rust dev ig

gentle grove
#

why is that the first result

#

let me show you

hexed knot
# gentle grove why does it have to be so different

Objective-C derives its object syntax from Smalltalk. All of the syntax for non-object-oriented operations (including primitive variables, pre-processing, expressions, function declarations, and function calls) are identical to those of C, while the syntax for object-oriented features is an implementation of Smalltalk-style messaging.

gentle grove
hexed knot
#

Objective c was made in 1984 btw

gentle grove
#

literally 1984

gentle grove
#

unless you dont use any type annotations

hasty ruin
#

imagine using a function keyword when you could just use the type

gentle grove
#

so you can tell that it's a function immediately

#

in case youre blind

hasty ruin
#

just dont be blind then

gentle grove
#

use c++

#
exampleWithNumber: x
    | y |
    true & false not & (nil isNil) ifFalse: [self halt].
    y := self size + super size.
    #($a #a 'a' 1 1.0)
        do: [ :each |
            Transcript show: (each class name);
                       show: ' '].
    ^x < y
#

ok at least its not this

hasty ruin
gentle grove
#

objective-a

hexed knot
#

Objective c++ is stupid

analog crystal
#

objective ..c

gentle grove
hexed knot
#

Yes

#

But its useless

#

Except for like

#

Zebra

gentle grove
hasty ruin
#

rust dev moment trol

gentle grove
#

no

#

where did it say that

#

can you send

#

i wonder if theres explanation on the page

hasty ruin
#

it's a grepper result

gentle grove
#

grepper?

hasty ruin
gentle grove
#

what did it like do

hasty ruin
gentle grove
#

that extension is dumb then

#

literally

#

that function is useless

#

instead of

fn first((value, _): (i32, i32)) -> i32 { value }

why is it not

fn first(value: i32) -> i32 { value }
hasty ruin
gentle grove
#

someone was doing some trolling

#

rust has some crazy syntax but function declarations is not one of them

gentle grove
#

i need a good website to learn elixir

#

i feel like that would be a language that could actually be interesting to learn by doing useless problems

#

since its functional

primal perch
#

i love using std::

hexed knot
#

U got me there

gentle grove
#

std

primal perch
#

and templates

hasty ruin
#

Where

gentle grove
hexed knot
#

How much macros do u eat

gentle grove
hexed knot
#

What

lime pivot
#

@naive kraken by any chance have you tested how far back persona works?

#

I tested on 14, and based on xnu source it should exist back to 13, but I don't have a 13 device to test on

primal perch
#

macOS good af

#

except for gaming its shit

lime pivot
#

persona has existed back to iOS 9, but the com.apple.private.persona-mgmt entitlement was only added in 13

#

trying to understand how exactly you're supposed to use persona prior to that entitlement being introduced, since all the necessary symbols are 9.0+

gentle grove
#

what else was i uspposed to say

hexed knot
#

How much macros you eat

lime pivot
#

macrOS

gentle grove
hexed knot
#

How much macros you eat

#

Youre supposed to say how much macros you eat

gentle grove
#

i dont eat any

hexed knot
#

What.

lime pivot
#

5

gentle grove
hexed knot
#

Macronutrients

primal perch
#

@hasty ruin || nfr ||

hexed knot
#

wtf

primal perch
#

how

cloud yacht
gentle grove
#

what is the point of js devs making a const closure instead of just a function

cloud yacht
#

Its scoped

tepid olive
gentle grove
tepid olive
#

use eframe::egui;

gentle grove
tepid olive
#

idk why i typed add

gentle grove
#

"in use in rust an import" still doesn't make sense

lime pivot
# naive kraken no

know anyone on 13 who wouldn't mind helping me test it works there by any chance?

#

might be a stretch, figured it's worth asking anyway

naive kraken
#

If you can send me something that quickly verifies it, I can run it but I'm low on time atm

#

I also have iOS 8 / 10 / 11 / 12 devices

lime pivot
#

it'll show on the homepage immediately on launch

#

no homepage message / alert popup = it works

#

no need I have all other versions covered, just have a gap in my test devices at 13, hah

naive kraken
#

doesn't complain

lime pivot
#

oh shoot that's great

naive kraken
#

13.7

lime pivot
#

thanks heaps

#

it definitely doesn't work on 9, 10, 11, 12, I burned a lot of time with my hopeless ipod touch 5th gen that for whatever reason panics and reboots when I install a zebra deb, lmao

#

just to figure out the mgmt entitlement was only added in 13

#

wasted more time grabbing devices out to figure out the cutoff

naive kraken
#

lol

#

btw there will likely never be jailbreak that doesn't support setuid either way

#

because it's fixable with a PAC / PPL bypass and 15.2+ needs one of those at least anyways

lime pivot
#

not a big fan of the setuid-and-execvp binaries like supersling/cydo

naive kraken
#

yeah for those binaries setting the persona is probably the best, but setuid is still useful for some other stuff I guess

pliant fossil
#

yeah true

cloud yacht
pearl sail
gentle grove
rain falcon
#

@grave sparrow how about u get some bitches

gilded laurel
# tepid olive is ``use`` in rust an import

its pretty much defining an alias, you don’t really have to „import” stuff to use it

you could just define some variable as
let something: package::something

but doing
use package::something;
will just make it easier to access (especially if jt’s like nested 10 levels)

gentle grove
#

Oh

#

I understand sentence now

#

@tepid olive yeah

#

its similar in like c to where you aren't really "importing", you just tell the compiler that these functions exist and leave it to the linker

tepid olive
#

i see

primal perch
#

at least its not linux tho

#

spaghetti code kernel

hasty ruin
primal perch
next wadi
primal perch
#

microsoft creating a robust reliable kernel then bogging it down with the worst userspace known to man

hasty ruin
#

wtp shep traitor

primal perch
#

i do not pick sides.

hasty ruin
#

you said i was funnier

#

therefore you pick my side

next wadi
#

he LIED

primal perch
#

that was a few weeks ago

#

times change

next wadi
#

w

primal perch
hasty ruin
next wadi
#

about what

primal perch
#

well they said i was an accident

next wadi
#

dumb bitch fuck

hasty ruin
#

loving you

primal perch
#

so i guess im not one?

hasty ruin
next wadi
primal perch
#

id take linux over XNU if it came with aqua / macOS windows server

#

but linux never does

hasty ruin
#

from the little one

next wadi
#

:sure:

primal perch
#

it always has shitxorg and wayland

hasty ruin
next wadi
#

you cuck

primal perch
#

macos has a very sexy ui

next wadi
primal perch
#

until you want to play any game

hasty ruin
#

until it isnt

next wadi
#

real

primal perch
hasty ruin
#

i cant use chromium apps on 12.3+ if i have SIP off

primal perch
#

just enable SIP

#

be secure

hasty ruin
#

should've never updated from 12.0.1

primal perch
#

i got firevault and 12.6 and SIP on

hasty ruin
#

fr

next wadi
#

im on 13.0

primal perch
#

you can

next wadi
#

🧌

primal perch
next wadi
#

SIP idk

#

i forgor

#

💀

primal perch
#

if u dont know then its on

#

basically

next wadi
#

no i think i mightve turned it off

hasty ruin
#

this hurts to see

primal perch
#

wtf jaidan gonna get haxxed

#

and icraze

next wadi
#
❯ csrutil status
System Integrity Protection status: disabled.```
hasty ruin
#

but its either that or no vscode

next wadi
#

real

hasty ruin
next wadi
hasty ruin
next wadi
#

not real

hasty ruin
#

BECAUSE I HAVE TO

next wadi
#

i have vscode with sip off

hasty ruin
#

including me

next wadi
#

SKILL ISSUE

#

ISSUE OF THE SKILL

hasty ruin
#

it cant find the gpu androidskull

#

with sip off

#

like bro just look harder

primal perch
#

SIP Good

#

security

hasty ruin
hasty ruin
#

wtf stealing the emote

#

just join the server!!

next wadi
hasty ruin
#

we're like 1 member away from 16k

next wadi
#

tf they gon steal from me!

primal perch
hasty ruin
#

nvm

primal perch
#

so no SIP + catalina or later just means that /System is mounted as R by default right

#

but the root user could just easily remount it

hasty ruin
#

shitposting in announcements channel

#

i am best admin

primal perch
#

i will pass

hasty ruin
#

oh

next wadi
#

L

gentle grove
hasty ruin
#

rockstar

#

took some massive Ls today

primal perch
hasty ruin
primal perch
#

even with sip off? how hard is it then

lime pivot
primal perch
#

hm

#

ok

pearl sail
#

my exact feelings about your mother

lime pivot
#

it can be disabled? I'm surprised

primal perch
#

ya m1s are completely unlockable

#

install linuxor windows trol

#

just not gonna get gpu acceleration

#

yet™️

lime pivot
#

ahaaa

lime pivot
#

because Apple realised locking shit down like that is actually bad, surprise

#

@naive kraken what'd you end up finding with the theos bash spam?

naive kraken
#

I just added logs until I had the line in theos that triggered the logs and some Procursus dev found out about the flag

lime pivot
#

ahaa

naive kraken
#

(sorry 4 ghost ping)

lime pivot
#

well good work catching that, never thought to actually delve into the bash source

primal perch
#

Apple M1 @ 3.19GHz

#

rip T2 mac owners

pearl sail
#

nah bruh I got 2 processors in my laptop clearly intel is better

tepid olive
#

arm64 and x86_64 in one laptop and they didn’t give us an interface to use the arm64 cpu

#

so cringe

#

I wish we could run Virtualization.framework on T2 to have ASi hosts on x86_64

#

You’d have to patch PAC instructions to be nop but it’s doable

pearl sail
#

🍪

tepid olive
#

make WindowServer run then

primal perch
#

go ahead

primal perch
#

true

gentle grove
#

Lmao

native dune
#

lmaoo

hasty ruin
#

You know from experience?

primal perch
#

yes

#

i trapped them

snow python
#

I wrote my own kernel, any other os is too bloated

restive ether
#

this is a good explanation as to why

glacial matrix
lime pivot
#

I would say you should hold onto a strong reference to the view controller, ie assign it to an ivar and then nil it out in the completion delegate methods

crisp burrow
#

hello devs, hackers, and hustlers

primal perch
#

Gm

crisp burrow
#

i dont tweak on my phone at all, but uh, any1 got a good person or sic .dll or anything to help me use my phone tied to an old account

primal perch
faint lionBOT
#
Rule 5

No Activation Lock bypass discussion. Asking how to do it or posting about it is not allowed. The same goes for anything similar to this subject, such as removing a passcode.

crisp burrow
#

useless ok, ill try elsewhere

primal perch
#

good plan

lone bronze
#

be a bitch somewhere else 😁

#

have a nice day

primal perch
#

on god

crisp burrow
#

?

lone bronze
#

HeY hAcKeRz I sToLe A pHoNe troll

lone bronze
primal perch
#

nfr

tepid olive
#

anyone know of a rust lib that can do os stuff?

#

like the os lib for python but for rust

haughty bear
#

no

pliant fossil
#

@sacred bridge

hasty ruin
#

hello devs, hackers, and hustlers

#

i dont tweak on my phone at all, but uh, any1 got a good person or sic .dll or anything to help me use my phone tied to an old account

pliant fossil
#

who

hasty ruin
#

devs, hackers, and hustlers

native dune
#

devs, hackers, and hustlers

#

hello devs, hackers, and hustlers
i dont tweak on my phone at all, but uh, any1 got a good person or sic .dll or anything to help me use my phone tied to an old account

hasty ruin
#

This channel, 10 hours ago

native dune
#

oh

lime pivot
#

yep this, you definitely shouldn't setuid in your main binary

#

it causes a lot of issues because backboard/runningboard/etc don't expect apps to run as anything except mobile

#

that and you may end up messing up permissions where something that should be owned by mobile becomes owned by root, and now mobile can never write to that file

#

but anyway I think you're having issues because the image picker is a remote view controller, and maybe the XPC vouchers (thingy that verifies the source of an XPC message) are becoming messed up or something like that

#

for inside of the app, you probably just need NSHomeDirectory()

#

outside of the app, if the process has the right entitlements for it (springboard does), you can get them via LSApplicationProxy. use LSApplicationWorkspace if you need to look up all apps or filter the list or whatever

#

oh, I should have read properly

#

if you put it this way, the settings are global, not just for your app. so you should put them in /var/mobile/Library directly, not to paths inside your app container

twilit jungle
#

You probably don’t need this anymore but it shouldn’t matter how many times the framework calls it. Bundles are cached by the system so whatever type it is the first time its created, that will be the type you get for any future requests in the same process. So you could subclass NSBundle and create an instance using that subclass before the framework does it the first time. Then anytime framework tries to create its own bundle it’ll get your subclassed instance.

snow python
pearl sail
#

38 , 45 , or 50?

#

well looks like I need to go shopping for it, but plausible didn't know you wanted me to go old school on you

tepid olive
#

Nice job

#

@grave sparrow can i put that on my repo

#

I can try

#

I though it didn't exist in normal ios lmfao

#

Guess I was right

#

Like the method atleast

#

@grave sparrow i can try it on 15

#

I know how to try it on 15

#

Without needing to recompile

#

Ye

#

I know

#

I have rw to /

#

I just do it the way

#

Sideloadly does

grim sparrow
tepid olive
#

thats the only method available rn

grim sparrow
#

Doesn’t mean it’s a good one

zenith hatch
#

swift moment

vivid dew
#

rent free

raven yoke
#

Is there a way to see Content-Length of a download in Safari on Mac?

lone bronze
honest star
#

Does anyone know where I can find open source app tweaks?

honest star
#

Well yeah but all the projects I've found are for springboard

#

and I mean like I've gone through at least 100. Even if they are app tweaks they're not very complex. Was looking for something more along the lines of Rocket for Instagram

high citrus
#

there is a list of opensource-tweaks somewhere iirc

honest star
#

yeah on the iphonedev wiki, but they're all springboard

high citrus
#

iOS development discord does have a channel of opensource-tweaks too, but I probably can't share the invite (and the server isn't very active)

honest star
#

rip

high citrus
honest star
#

Yep that is exactly what I needed, thanks! @high citrus

raven yoke
#

Basically if I try to download Xcode from dev portal I want to see what file size it is with Content-Length. Unless I'm missing it, I don't see it on network tab anywhere. With Chrome it shows the filename in the list of sources on that tab but not in Safari

#

Basically I want to find out file sizes for newest Xcode beta's in Safari

#

With Chrome you can do it if you start the download, click the resource in networks tab and look at Content-Length

#

I'll look into it, thanks. Wish it was as easy as in Chrome

#

hah, well Safari is better for power/RAM usage and syncs to iOS/iPadOS too so it's good in general

#

I guess I could probably use curl if I work out how to specify credentials/cookies

#

just wish the Network tab tracked downloading items

#

well it doesn't seem to though the cookies file works as I can download with something else

#

wget works!

primal perch
#

chromium best

raven yoke
#

so if wget works, why does curl -I not work, hm

tacit spade
#

oh my god this framework gets better

#

look at the prefix

#

NTSKUIFYALF

#

i would die for this framework

#

i want it to be in ios for years to come

lone bronze
#

or something outside the browser

raven yoke
lone bronze
#

yeah CORS is good

raven yoke
#

why does curl not do it with the original link but wget does though?

raven yoke
#

Figured it out, needed -L

#

thanks all

primal perch
#

my bussy is dripping @gleaming niche

native dune
#

haha

hasty ruin
tacit spade
#

no it’s empty empty

tepid olive
#

Icraze is in every jailbreak server 😭

turbid fjord
#

@hasty ruin stop stalking whitenames

frank fossil
#

UIUserInterfaceIdiomPad on iPhone

turbid fjord
#

Reported to crown prosecution services thumbsUp

hasty ruin
#

👍

#

Reported to noncehunters

zenith hatch
#

piss

hasty ruin
#

👎

rain falcon
#

@grave sparrow listen here u fuck

#

wasent asking

hasty ruin
#

wasent

primal perch
#

wasent

hasty ruin
primal perch
native dune
snow python
primal perch
#

fr

primal perch
#

no developer back room?

hasty ruin
runic mason
#

One message removed from a suspended account.

#

One message removed from a suspended account.

#

One message removed from a suspended account.

#

One message removed from a suspended account.

#

One message removed from a suspended account.

#

One message removed from a suspended account.

#

One message removed from a suspended account.

tardy narwhal
#

what's your task

#

if you just want to multiply then you can use the Asterisk (*), your function could take any number of parameters presumably

runic mason
#

One message removed from a suspended account.

tardy narwhal
#

okay, where's the catch in it?

#

if it's just multiplication, then proceed as i've written above

runic mason
#

One message removed from a suspended account.

#

One message removed from a suspended account.

snow python
gentle grove
runic mason
#

One message removed from a suspended account.

gentle grove
#

Like what's the full problem

#

generate a certain amount of random numbers and multiply them all together?

#

Or what exactly is the problem you need help with

hasty ruin
#
number2 = 10
out = 0

for i in range(number2):
      out += number1

print(out)```
#

best way to do it intjglad

pearl sail
#

Ban yourself

hasty ruin
pearl sail
hasty ruin
#

who even needs negative numbers smh

gentle grove
#

that's like a summation but for multiplication

#

what do you even call that

zenith hatch
#

i hate python

tepid olive
#

Anyone in here know how to read button presses in C with IOKit? I want to do it inside a ramdisk

primal perch
#

by definition

hasty ruin
#

Frfr

gentle grove
primal stag
#

When trying to compile my shit i get 8 errors saying there are unkown type names, "NSDictionary", "NSURL" etc.

#

i don't understand why they are unknown

gentle grove
#

use c instead trol

primal stag
#

:(

zenith hatch
#

don’t use rust

#

or ruby

#

or crystal

primal stag
#

i have an .xm file and im trying to compile it into a dylib

#

any way possible

#

lol

gentle grove
zenith hatch
primal stag
gentle grove
#

that is nothing

primal stag
#

why is it so hard to compile 1 tiny file

zenith hatch
#

idk

gentle grove
#

What do you use that uses ruby

zenith hatch
#

by hand

primal stag
#

true

gentle grove
#

@zenith hatch

zenith hatch
#

hi

gentle grove
zenith hatch
#

brew uses ruby

primal stag
#

does anyone here have the expertise to compile it

zenith hatch
#

nope

primal stag
#

sadge

zenith hatch
#

ikr

gentle grove
#

@zenith hatch WHY RUBY

zenith hatch
#

what

zenith hatch
#

and crystal is bad

#

so ruby must be bad

#

also brew slow so ruby defo bad

gentle grove
#

I might learn haskell

primal perch
#

ruby bad

#

rust bad

zenith hatch
#

haskell

#

💀

zenith hatch
primal perch
#

go bad

#

zig bad

zenith hatch
#

what about swift

primal perch
#

basically just use cpp for everything

#

rust but more convoluted

zenith hatch
#

mf

primal perch
#

nobody likes doing ???!!?!?!?

zenith hatch
primal perch
#

view?.cock

zenith hatch
#

whats wrong with optionals

#

smh

primal perch
#

it’s just crusty

zenith hatch
#

bruh

#

better than js

#

:tro:

primal perch
#

yea

#

that bar is low but true

zenith hatch
gentle grove
#

Holy

zenith hatch
#

C

gentle grove
#

The Haskell devs REALLY do not like the arch devs

primal perch
#

rust better than js

gentle grove
#

The download page for Haskell literally outright says that arch's Haskell packages are broken and never work

zenith hatch
primal perch
gentle grove
#

that's all

zenith hatch
#

man

primal perch
#

rust properly supports non apple , even tho yea ik there’s swift for windows and linux

zenith hatch
#

swift ui framework for windows wen

primal perch
#

tomorrow

gentle grove
#

macos it does very well because macos is normal

#

OK I might look at elixir instead of Haskell

#

Because Haskell and arch Linux are apparently enemies

restive ether
gentle grove
#

because jailbreak isn't exactly mainstream

restive ether
#

no they just assumed ios could never do dynamic linking

#

so if you change it

#

all production apps break

#

lol

gentle grove
#

well that shouldn't really matter becuas rrust is statically linked anyways

#

Other than sys libraries

restive ether
#

they made bad OS assumptions that aren’t always true

#

then got mad about it

gentle grove
#

fr

gentle grove
#

so there's few people on the rust team actually even thinking about it

zenith hatch
#

cum

#

this is all i have eaten today

gentle grove
#

succ function

#

in haskell

#

oh elixir is cool it does float division by default

#

automatically better than most languages trol

hexed knot
zenith hatch
#

what

#

im just ill i dont feel like eating

primal perch
snow python
#

Also it looks like it may have been seasoned. Brits do not believe in seasonings

gentle grove
#

Maybe 5 I don't remember

zenith hatch
#

ok

modest beacon
#

@gentle grove chicken strips slap different

hasty ruin
#

@gentle grove chicken strips slap different

umbral gate
zenith hatch
#

@gentle grove chicken strips slap different

tepid olive
gentle grove
tepid olive
#

Dms, I’ll tell you why

gentle grove
#

@Capt Inc#9250

#

Wtf

#

@grave sparrow

hasty ruin
pearl sail
#

can confirm she is a whore

tepid olive
#

broooo

lime pivot
tepid olive
#

and add -fmodules

lime pivot
primal stag
#

Yep I figured it out, thanks 😁

primal perch
pliant fossil
#

all die

pliant fossil
#

urall bulys

lime pivot
#

yeah

pearl sail
#

jtool2 pro

zenith hatch
#

true

wicked summit
#

gm

primal perch
#

gm

pearl sail
#

gm

primal perch
indigo peak
#

@snow python watch out, this app is gonna give relocateme a run for its money

snow python
#

Looks good!

hexed knot
#

The coping mechanism is crazy

pearl sail
#

truly

indigo peak
#

especailly the fact that theres no longitude

#

only lat

primal perch
#

one of the very few here

#

people that don't use with for file IO in python

gentle grove
primal perch
misty cradle
primal perch
#

fr

primal perch
#

how’s your 13 pro instead

#

probably good

misty cradle
#

waiting for refund

#

So I can buy black 14 pro

primal perch
#

true tho

#

black always good

misty cradle
#

I do need the battery fixed on 14 pro

#

cuz what I’m seeing is

#

iOS 16 raping battery

primal perch
#

fr

#

ios 16 on my 12 mini is ass

misty cradle
#

I use my phone too much already

primal perch
#

15.7 good

#

like literally 30-50% longer

#

than 16

misty cradle
indigo peak
misty cradle
#

figure out how to spoof location while unjb

#

U can do it

primal perch
#

airpods pro 2 come today

zenith hatch
raw solar
hexed knot
rain falcon
#

@grave sparrow listen fucker

zenith hatch
primal perch
hasty ruin
tepid olive
#

@grave sparrow uploading here

pearl sail
hasty ruin
#

do NOT even THINK of saying that EVER again

#

okay, BUDDY

#

is that UNDERSTOOD

tepid olive
#

its uploading

#

remember

#

i have dsl

#

its like almost at end

#

downloaded?

primal perch
#

where

primal perch
pearl sail
serene ridge
#

i hope you have to analyze dsc on slow hardware

primal perch
#

rip

#

slow hardware

#

its not even a real computer its just a phone chip applejoy

pearl sail
#

fr

pearl sail
#

y'all got robbed

primal perch
#

my i5-1140G7 is far better

#

4 cores and 8 threads on glorious x86-64

pearl sail
#

x86_64 masterrace

primal perch
#

-O198237189274

serene ridge
#

i hope your forced to analyze dyld_shared_cache_arm64e from iOS 15 on battery

#

it’s gonna be all year

pearl sail
#

yeah yeah

#

we all wish death on @grave sparrow as well

#

/s

serene ridge
#

same thing

primal perch
hexed knot
#

Will you run my gayporn.exe

gentle grove
gentle grove
gloomy sage
hasty ruin
#

It does something with like numbers or something

#

calculator maybe

gloomy sage
#

it opens an app and closes it immediately

hasty ruin
#

🐀

gloomy sage
#

💀

native dune
primal perch
hasty ruin
#

looked at it for like 20s in hopper

primal perch
#

get binary ninja

#

cross platform 75$ and far better

#

i respect hopper cuz it’s one dude but the pseudo code on ninja blows it out of the water

hasty ruin
#

yeah I’ll prob get binja once I start doing more stuff

#

but for now hopper does what I need fine

#

and for me, hopper’s objc pseudo code shits on ida

primal perch
#

i dont think theres a single binary where that would be true

gentle grove
primal perch
#

wdym

#

it has native builds for arm64e and x86_64

#

using Qt

#

but its not native cocoa ui

#

ya its fine

#

actually supports multithreading too

#

looks better than ghidra by a landslide

#

i like IDAs more simply bc im more familiar with it

#

but binjas still pretty good

primal perch
#

true

#

@grave sparrow is limitless 3.,0 still good buy

#

my 12 mini case rn is kinda dying

#

there isnt one for mini series

cloud yacht
#

Minecraft is pretty goated, but it's also entirely single threaded and eats up a bunch of ram. It could always be better.

primal perch
#

why is it bad

#

oof

#

ive had 2 cases now that just fall apart

#

i swear quality is shit these days

#

my ipx case never did

#

nor did my 7

pearl sail
#

You mean corporations that take advantage of cheap labour at any cost?

primal perch
pearl sail
#

idk bro got to have a demand for cheap labour to create a market of cheap labour first.

primal perch
#

true tbhj

#

no class means an object

pearl sail
#

true

primal perch
#

smh pay attention in oop class

pearl sail
#

legit fr

primal perch
#

smartass gotta correct everything

pearl sail
#

how you gonna get a CS degree when you don't pay attention to the OOP professor

primal perch
#

ur the kid who tells the professor actually

pearl sail
#

fr

#

he is

#

yeah you do

primal perch
pearl sail
#

don't even lie

primal perch
#

gonna fail

pearl sail
#

why would you waste money like that

primal perch
#

she doesnt give a damn

#

show up at 9 leave at 5 eat sleep repeat

pearl sail
#

you know what to do then

primal perch
#

F

hasty ruin
#

he should have accelerated

hasty ruin
#

technically piracy but the company went bye-bye

vivid dew
#

vine boom

gloomy sage
hasty ruin
#

nah

#

bankrupt

gloomy sage
lime pivot
#

that sucks

hasty ruin
#

Well

#

Not bankrupt

#

But losing money

#

So they called it quits

#

One of the devs took the game on as a personal project for a few years before he stopped paying for the servers and disappeared completely

lime pivot
#

yikes

tepid olive
#

the fix is to use u0

#

or checkra1n or ora1n

gentle grove
tepid olive
#

no button press events at all

tepid olive
#

oh wow, thanks apple

#

ok nvm this doesnt help

tepid olive
#

yeah anyone know how to fix

primal perch
#

no

#

@tepid olive from pins

tepid olive
#

ramdisk

#

where sprin gboard

#

@primal perch

primal perch
#

idk

#

not there

tepid olive
#

then how do

#

??

primal perch
#

idk bro you never specified

tepid olive
#

sorry forgot

primal perch
tepid olive
#

yeah thats pongoOS

#

that uses gpio

tepid olive
#

i actually used that when it came out too

primal perch
indigo peak
#

@snow python do you have any idea why the map isn't working?
it worked when i sideloaded normally, but when i installed with trollstore, the map goes grey

#

im using MKMapView

_mapView.delegate = self;
_mapView.translatesAutoresizingMaskIntoConstraints = NO;
_mapView.mapType = MKMapTypeStandard;
_mapView.zoomEnabled = true;
_mapView.scrollEnabled = true;
_mapView.layer.borderColor = UIColor.grayColor.CGColor;
_mapView.layer.borderWidth = 1;
_mapView.layer.cornerRadius = 10;```
vivid dew
#

apple maps

primal perch
indigo peak
#

oh shit

#

what the fuck

#

why

primal perch
#

idk the devs must be pretty dumb

indigo peak
primal perch
native dune
#

.

indigo peak
#

but the map itself just isnt rendering

primal perch
#

maybe a bug with trollstore entitlements

#

idk

#

havent used either MKMapView or trollstore in my life

indigo peak
#

coiuld be

#

so when i remove the codesign flags

#

it works

primal perch
indigo peak
#

@naive kraken

naive kraken
#

what codesign flags

indigo peak
#

in the makefile

#

_CODESIGN_FLAGS = -Sentitlements.xml

naive kraken
#

well

#

that means it works with the fallback entitlements for whatever reason

#

but not with your entitlements

indigo peak
#

these are what im using

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>platform-application</key>
    <true/>
    <key>com.apple.private.security.container-required</key>
    <false/>
    <key>com.apple.locationd.simulation</key>
    <true/>
</dict>
</plist>
naive kraken
#

platform-application prob breaks it

#

that breaks a lot of stuff

primal perch
#

wtf shlorp was right

#

literal genius

#

/s

indigo peak
#

just gotta see if the spoofing works

#

i dont think that it does

primal perch
indigo peak
#

me rn

primal perch
#

me rn

pearl sail
indigo peak
pearl sail
naive kraken
#

with that entitlement you need to specify each XPC service you want to access

#

and the map probably uses XPC

#

if you need to use that entitlement, check console.app for sandbox-deny messages and give yourself an exception for the XPC service that gets denied via entitlement

primal perch
restive ether
#

<key>com.apple.locationd.simulation</key>
<true/>

primal perch
#

call me pontius pilate because im washing my hands of this shit

restive ether
#

lol dumbass non history chad

indigo peak
#

@naive kraken

Sep 24 21:10:40 iPhone locsim(CoreLocation)[15180] <Notice>: {"msg":"Do we have a proxy?", "proxy":"<__NSXPCInterfaceProxy_CLSimulationXPCServerInterface: 0x28391a260>", "connection":"<NSXPCConnection: 0x282b30320> connection to service named com.apple.locationd.simulation"}
Sep 24 21:10:40 iPhone locsim(CoreLocation)[15180] <Error>: this SPI is obsolete and will be removed in the future
Sep 24 21:10:40 iPhone locsim(CoreLocation)[15180] <Notice>: {"msg":"getDaemonProxy called"}
Sep 24 21:10:40 iPhone locsim(CoreLocation)[15180] <Notice>: {"msg":"no existing connection, trying to get one"}
Sep 24 21:10:40 iPhone locsim(CoreLocation)[15180] <Notice>: {"msg":"Do we have a proxy?", "proxy":"<__NSXPCInterfaceProxy_CLSimulationXPCServerInterface: 0x28393e4e0>", "connection":"<NSXPCConnection: 0x282b3d860> connection to service named com.apple.locationd.simulation"}
Sep 24 21:10:40 iPhone locsim(CoreLocation)[15180] <Notice>: Simulation connection invalidated
naive kraken
#

check for

#

sandbox-deny

primal perch
restive ether
#

wouldn’t you need to restart locationd also

naive kraken
#

anyways com.apple.locationd.simulation is prob it

indigo peak
#

i got that

naive kraken
#

no

indigo peak
#

already in my entitlments

primal perch
#

chad: injecting so many tweaks jetsam kills it

restive ether
#

never thought of that before

naive kraken
#
<key>com.apple.security.exception.mach-lookup.global-name</key>
<array>
<string>com.apple.locationd.simulation</string>
</array>
#

idk

#

either this works or you need a different one too

indigo peak
#

@naive kraken nothings working