#development

1 messages · Page 2 of 1

pearl sail
#

C
C++
Java
JS

#

whatever they all lack in some way

#

go back to machine programming tro

hexed knot
#

.

ocean raptor
#

all languages suck

lethal kayak
#

false

hexed knot
#

English sucks if its not ur first language

zenith hatch
#

it’s literally impossible to make a good watch app with obj c and watchkit

hexed knot
#

sounds like a skill issue tbh

primal perch
#

thats every language

#

self hating american and english speaker

gentle grove
snow python
#

I learned how to speak English 2 ways and they both suck

gentle grove
#

What are the 2 waya

snow python
#

American and English

gentle grove
#

.

turbid fjord
#

I see alright Ty

silver rampart
#

if ur code just isn't feeling it today it'll call abort() and go back to bed as well

misty cradle
#

@turbid fjord [[%c(AXSpringBoardServer) server] toggleSpotlight];

#

check if this still work

#

idk how well it works but ive used it before

turbid fjord
#

I managed to hide the page dots but I can’t get the button to show up

#

iCraze helped me with this

misty cradle
#

hav u checked where the button is with flex

turbid fjord
#

Yea and it’s not there

#

Like it doesn’t exist at all

misty cradle
#

open the SBIconListPageControl

#

check for its subviews

turbid fjord
#

Alright

tidal atlas
#

You are setting it hidden so the button can’t show

misty cradle
#

oh yes true

turbid fjord
#

Now that is a good point

misty cradle
#

completely forgor

turbid fjord
misty cradle
#

i was thinking already why is this being called here

tidal atlas
#

You need to add the button to another view

misty cradle
#

check the superview for this page control

turbid fjord
#

Yeah I’m having a look hang on

misty cradle
#

this is the same view sir

#

look at its superview

turbid fjord
#

Would changing the alpha of the page dots to make it basically invisible then overlaying a button on top work?

tidal atlas
#

Yes

misty cradle
#

yes

#

hiding a view hides all of its subviews too

tidal atlas
#

But your button would be the same alpha most likely

misty cradle
#

so changing alpha would work

#

try it out and let us know PepeHappy

turbid fjord
#

I don’t really know what I’m doing tbh but yeah I’ll have a go

#

tro lets see

celest quiver
#

coz i didn’t test

turbid fjord
#

Yes I believe it does work
It’s same as in another spotlight tweak I found which works (downloaded it)

celest quiver
turbid fjord
#

@hasty ruin @tidal atlas @misty cradle some success thishowitis

hasty ruin
#

W

turbid fjord
#

So I need to make the dots itself disappear

high citrus
turbid fjord
#

Yeah I’m looking into that

turbid fjord
#

.

native dune
#

.

celest quiver
indigo peak
celest quiver
#

poor mr end

indigo peak
#

never hook layoutSubviews

turbid fjord
#

Too late I’m doing it

indigo peak
turbid fjord
#

What’s the worse that gonna happen

hasty ruin
indigo peak
#

I did that once

turbid fjord
#

Build 31

indigo peak
#

and I wondered why there were 10 subviews

turbid fjord
indigo peak
#

just check for the type@of view

turbid fjord
#

Imma have to pay this paid so I can compensate for the time lost off your lives by helping me troll

indigo peak
#

If view is not a button then you hide it

turbid fjord
#

The dots are a Ui page control

indigo peak
#

ok and what’s your custom view

#

Is it a UIButton

turbid fjord
#

UI view

#

The plan was to hide the dots then overlay a button over it or something

indigo peak
#

please put your %new definition on a new line

%new
-(void)…

And not
%new -(void)…

turbid fjord
#

Fixed

celest quiver
turbid fjord
#

I’ve got it already lol

celest quiver
turbid fjord
#

Omfg

#

Yes

#

Hang on

#

Changed it

indigo peak
#

why can’t you just do a for loop through each subview

#

and check what type it is

turbid fjord
indigo peak
#

and if it’s a UIPageControl hide it

turbid fjord
indigo peak
#

and if not show it

turbid fjord
#

Is there any point anymore

#

This is already 100x harder than it needs to be

#

I’ve been trying this for 24 hours now

indigo peak
#

but you’re learning

turbid fjord
#

Well true

indigo peak
#

Sunk cost fallacy

turbid fjord
#

I feel like I’m wasting my time

indigo peak
#

You’re in r/jb

turbid fjord
#

True

indigo peak
#

You’ve wasted too much of your time already

turbid fjord
#

That’s a fair comment

#

True

indigo peak
#

for(UIView *aView in yourView.subviews){
if([aView isKindOfClass:[YourClass class]]){
//YourClass found!!
}
}

#

I’m on mobile so I don’t have code block syntax

turbid fjord
#

Fair

#

Uhh

ocean raptor
#

How can you call yourself a developer if you don't

indigo peak
#

I made a Google classroom dark mode tweak that only@hooked layoutSubviews

turbid fjord
indigo peak
#

@turbid fjord try making a tweak that automatically strips photos of exif metadata

#

you could also make it have a preference page that you can toggle which pieces of data you want to stay

turbid fjord
#

I can’t figure out how to make a button not break let alone preferences and stuff

indigo peak
#

Preferences are easy

#

if you want I can show you in a vc sometime

#

I can give you a quick crash course on tweaks and shit

turbid fjord
#

Sure can do

#

Not today tho

indigo peak
#

yeah yeah

#

whenever you’re good

turbid fjord
#

Most days until 5th September

indigo peak
#

what time zone are you in

turbid fjord
#

BST

indigo peak
#

so you’re 5 hours ahead

#

of est

turbid fjord
#

Something like that yeah

indigo peak
#

so it’s 4pm for you

#

Right

turbid fjord
#

4:30 yeah

indigo peak
#

alr

#

I’m not working td or tm

#

I know@for a fact those days

#

So if you can tm I should be good

turbid fjord
#

Tomorrow works yeah

indigo peak
pearl sail
indigo peak
#

h o w

pearl sail
#

Legit hold down the ‘ key on iOS and select the first option in the sub menu

hasty ruin
#

no syntax highlighting 💩

turbid fjord
#

Real coal

#

Ty I’ll have a watch

pearl sail
#

You are bad
turbid fjord
#

Rude

pearl sail
#
for(UIView *aView in yourView.subviews){
    if([aView isKindOfClass:[YourClass class]]){
       //YourClass found!!
    }
}
hasty ruin
#
for (UIView *subview in yourView.subviews) {
    if ([subview isKindOfClass:[YourClass class]]) {
       //YourClass found!!
    }
}```
#

less cringe thumbsUp

indigo peak
#

so what if i just #define abort to be void0

#

#define abort() (void)0 trolley

dense sluice
#

Hey i need a simple jailbreak tweak done. Will pay for it

celest quiver
ocean raptor
indigo peak
#

its a calculator app

#

no one needs to abort a calculator app

dense sluice
# celest quiver what is it?

I need to automate twitter. In simple words:

  1. Search keyword

  2. Reply to 10 most recent tweets with predefined message

3.Repeat

native dune
#

nobody cares about your nft adverting shit

dense sluice
native dune
#

what are you trying to advertise then

tardy narwhal
#

it doesn't matter, use the linked tweakbounty subreddit to post your request

turbid fjord
#

If your gonna do that can you reply with Watchtube download link

native dune
#

i don’t think anyone would do that bounty

#

i could be wrong

#

but you can also just like yoink a python script from github

tardy narwhal
#

you're very wrong, there's some thirsty people around

native dune
#

man

turbid fjord
#

I’d do it if I was actually capable of coding

#

Free money

dense sluice
turbid fjord
#

70$ WHAT THE HELL

native dune
#

damn

tardy narwhal
#

e.g. predefined string with special characters, hyperlinks etc.

ocean raptor
#

$70? I'll do it!

#

Not actually, I'm lazy

turbid fjord
#

Lol

ocean raptor
#

And don't want to support your scam

wheat grotto
#

lemme learn objc real quick

turbid fjord
#

You probably don’t need objc

#

Python will probably work tbf

celest quiver
#

true

#

it doesn’t even have to be a tweak

wheat grotto
#

i was about to write "me on google - how make jelbrek twek pytohn"

wheat grotto
#

"jailbreak tweak"

#

I just noticed that i have a screwdriver in my hair

#

okay then

dense sluice
# ocean raptor And don't want to support your scam

Your really accusing others of scamming when your in a server with a community of people that are exploiting root access in a closed mobile device to carry out non-native functionalities. I dont know why your being a crusader of virtue, in this room out of all places lol.

ocean raptor
ocean raptor
#

What is your legitimate reason for spamming a message? @dense sluice

turbid fjord
#

But carry on

wheat grotto
#

And why do you even want it to be a tweak, i bet even somekind of a chrome extension exists for that

tardy narwhal
#

or themes, you'll find plenty of people scamming

wheat grotto
#

Forgot to mention, its you're

dense sluice
native dune
#

first thing i thought was an nft spam bot

#

lmao

main apex
native dune
#

why not just yoink a python script from github

pearl sail
native dune
#

twitter spam reply bot site:github.com uhh

wheat grotto
turbid fjord
celest quiver
wheat grotto
#

i need money for my shitbox yknow

#

/s

#

but i do need money

turbid fjord
#

We all do

wheat grotto
wheat grotto
ocean raptor
indigo peak
#

no

wheat grotto
#

l

indigo peak
#

now join the swift hate club

celest quiver
indigo peak
#

yes

#

anyone is welcome

turbid fjord
native dune
indigo peak
#

no

native dune
#

inb4 no

#

man

indigo peak
#

youre in after no

native dune
#

ina4

indigo peak
native dune
#

i was already typing it

turbid fjord
#

Can I join the swift love club

native dune
#

no

indigo peak
#

no

turbid fjord
#

GN

dense sluice
indigo peak
#

again

turbid fjord
indigo peak
#

0 correlation

native dune
#

lmao what

indigo peak
#

idk what logic youre using

#

but its not working

turbid fjord
indigo peak
#

so gtfo

pearl sail
#

Why the tomato headass is piped into the swift hate club

dense sluice
turbid fjord
#

@dense sluice go back to school and learn how to do reasoning and proofs then come back to me

indigo peak
dense sluice
turbid fjord
#

I don’t have a grammar school but sure

indigo peak
turbid fjord
#

And how to use logic to back up your arguments

#

Both of which he lacks

pearl sail
#

It is just goes to show you money don’t make you smart sadly

turbid fjord
#

Anyway gtg dinner

main apex
indigo peak
#

join the swift hate club

restive ether
indigo peak
#

🤣

dense sluice
indigo peak
#

🤣

#

im actualling LOLing rn

#

so funny

dense sluice
#

I know you guys are getting triggered reading my 'yours' lmaoooo.

restive ether
#

you ever thought about starting a comedy career

dense sluice
indigo peak
#

i could care less about you

dense sluice
#

Get rekt.

turbid fjord
#

I refuse to believe that people like you exist irl

dense sluice
#

Nvm sorry guys, i hope nobody here got triggered to much.

Im going to now go and learn the difference between 'your' and "you're", and also learn how to support my arguments with points that correlation with the topic being discussed.

Good luck

silver rampart
indigo peak
turbid fjord
#

:)

hexed knot
#

i make 5000 dollars from home daily

hasty ruin
hexed knot
#

Something like that

pearl sail
hexed knot
#

I know

pearl sail
wicked summit
#

I see no faults in the logic

ocean raptor
#
  • 🤓
#

That's a 2hr drive

#

Are you paying for the gas?

#

South Florida

#

Orlando is in like the middle of Florida

#

I'm like 2 hours from Miami too KEKW

toxic sphinx
#

Maybe this isn’t the place, especially considering this is for jailbreaks and all, but I have an old iPhone XS. If I back it up on its current version and download the beta iOS 16 to test, can I erase and restore form that backup and go back to my previous iOS version?

hasty ruin
#

oh.

#

jaidan lied to me then

next wadi
hasty ruin
#

Idk

gentle grove
#

thank you homebrew

#

i have no idea how to fix this

#

alright so i ugess i cant install intellij

silver rampart
#

why would you not just download it from browser

gentle grove
faint timber
zenith hatch
#

on god

turbid fjord
#

When was the last time I used it uhh

zenith hatch
turbid fjord
#

I don’t remember honestly

zenith hatch
#

im not really sure what im doing

zenith hatch
#

weird

#

must have been in another chat

turbid fjord
zenith hatch
#

same

#

fingers crossed it does what i intend it to do

#

but the thing is

#

what did i intend for it to do

turbid fjord
zenith hatch
zenith hatch
#

reddit client for apple watch

#

what

primal perch
primal perch
#

ok

silver rampart
wary patio
lime pivot
#

I got sick of hearing the name quicker than I bothered to look up what it even is

silver rampart
#

it's really good

#

for just like no-bullshit local notes taking

#

replaced using local vscode markdown files and gists for me

#

there's no real monetization model or any online interaction/sign-in unless you're using it commercially or want cloud sync (which can be done easily w icloud or gh or whatever anyways) either

lime pivot
#

sounds like it should be ez to throw it in google drive to get it on my Mac/iPhone and Linux

ocean raptor
#

Of course I don't use either, notability+apple pencil or vim all the way

crude swallow
#

is this chat ios-only

indigo peak
#

no

undone nest
silver rampart
#

post your favorite launchers

indigo peak
#

mine is the Minecraft launcher

#

I hate the epic games launcher

turbid fjord
#

Mine is pojav

native dune
#

mine is manymc troll

gentle grove
#

Rust user trying to optimize a noop

hexed knot
#

rust users trying to understand compiler optimizations

gentle grove
#

well its because you don't even need that knowledge to use the language, which I guess is both a good and a bad thing

hexed knot
#

i know basic C and i know more than a rust user

#

that is not good that is sad

gentle grove
#

also note that I'm cherry picking obviosuly

silver rampart
#

you would as it currently stands need a breakout board

#

only in the sense that if you delete llb it will only be able to boot into DFU

hexed knot
#

I’ll delete llb

indigo peak
#

when using [NSData dataWithContentsOfURL:], is it possible to specify a path the file downloads to

#

wait

#

im dumb

#

nvm

vivid dew
#

tr

#

@restive ether it’s my actual birthday now give me the role for another week

restive ether
#

happy birthday big man

vivid dew
#

thanks man feels like a dream

indigo peak
#

@vivid dew happy birthday big man

gentle grove
#

@vivid dew HAPPY BIRTHDAY!!!!!

pearl sail
#

@vivid dew Happy Birthday big woman

indigo peak
#

how big can one value be in NSUserDefaults

vivid dew
#

pretty big

#

not as big as your mother

indigo peak
#

turns out theres no limit

#

apparently

#

according to some random stackoverflow post from 2014

pearl sail
ocean raptor
#

Actually, I just ignored you

#

I said that under false pretenses

hasty ruin
wicked summit
#

@turbid fjord did you figure out the Orion?

#

Or did you succumb to using objective c

turbid fjord
#

Used objc ha

#

Didn’t work tho

#

I got the button to show up but hiding page dots also hides the button

#

And me and a few others couldn’t figure it out in the end so we kinda gave up

wicked summit
#

@turbid fjord damn. When Cheyote is released im hopefully gonna hop on the Orion tweak-developing grind

#

/var/bruh

turbid fjord
wicked summit
#

I have an open source Orion tweak that should be helpful for people learning from the start

turbid fjord
#

Oh you do? Can I have a link?

primal perch
#

not possible

#

it’s capt we’re talking about

hexed knot
#

andrew

tepid olive
#

Springboard has legacy checks they never removed

#

Youl boot loop if you put smth too big in

indigo peak
#

im putting the NSData to a font file

#

but im probably not gonna commit w that idea

tepid olive
#

But what process

#

Defaults isn’t meant for big files anyway

tepid olive
indigo peak
#

dw ab it

restive ether
#

faster script runs

#

much faster

primal perch
#

based and not bloated pilled

primal perch
#

jb user not pirating disassembler challenge

#

impossible

#

shits pretty good for 75$

pearl sail
indigo peak
primal perch
#

way better than hopper imo

#

but i havent tried hopper in a year or two

rare fulcrum
primal perch
#

bloated and crashes often?

restive ether
primal perch
#

intjshrug

hasty ruin
primal perch
#

glad someone got the meme

serene ridge
silver rampart
#

truly the xcode but two versions ago of disassemblers

primal perch
#

if nothing else binary ninjas UI/UX is way better than ghidra and it disassembles well

#

then agian id be worried if it didnt disassemble

serene ridge
#

what the hell is binary ninja

primal perch
#

but the decomp is pretty good

#

still not hexrays by any means but way better than hopper

#

but considering hopper was made by one dude

#

yeah its pretty damn good

silver rampart
#

pro tip since you're probably doing objc RE, search "workflows" in settings, turn it on, then set the default function workflow to the objc one

primal perch
#

ya i was looking at that

#

does it only work on the dev build or sum

#

i never saw the objc workflow show up

silver rampart
#

it may only be on dev

#

i lose track

primal perch
#

was looking at objective ninja the plugin

#

i tried the dev beta but i think i forgor to select that workflow

#

lemme check again

#

ah yea it is dev only

serene ridge
primal perch
#

still needs some work but at least cfstrings are automatically filled in now

#

long term outlook on this app is pretty good id say though

#

could definitely compete with ida long term

silver rampart
primal perch
#

for students anyway the pricing is pretty fair

#

even the 300 base is arguably worth but they have a reputation to gain first

#

kinda like ryzen 1000

#

gotta sell cheap to get people in

primal perch
#

a big step will be inlining the selectors instead of the comments

#

and the cfstring data mentioned above

silver rampart
#

that's like a super tiny weird thing which was my next to work on

primal perch
#

yea seems like it would be an easy fix

silver rampart
#

it just involves setting the arg types for objc_msgSend properly, and then instantly resolves itself

primal perch
#

either way having this app on all 3 OSes is a big plus

silver rampart
#

select objc_msgSend in the linearview, hit Y, input void * _objc_msgSend(id self, char *cmd, ...)

#

and all the sel strings will inline

primal perch
#

lmao

#

already way closer to hexrays

#

i thought it was just not that powerful but ig it just lacks a bit of the polish IDA has garnished for years

silver rampart
#

ida is indeed several decades older

primal perch
#

is there a way to turn off the swift arg naming thing

#

self: and cmd:

vivid dew
# primal perch self: and cmd:

YOU WILL DIE SEVEN DAYS AFTER WATCHING IT ORIGINALLY.
TO SAVE YOURSELF AFTER WATCHING IT: copy the link to the video and pass it to someone else.

This is the Ring Cursed Video... but it is not like other vids.
It has the ORIGINAL tape sound, straight from the full movie.
Just listen to the mirror sequence and you'll hear Samara's song!

Hope yo...

▶ Play video
primal perch
#

real

#

happy birthday @vivid dew

vivid dew
primal perch
#

wtf

#

racist fr

vivid dew
#

fr red

primal perch
silver rampart
#

F5 or click up here

primal perch
#

ah yea i just dont prefer it since they recommend hlil

#

makes sense bc it doesnt really do anything but add brackets

#

at least as far as im seeing

#

and comments out the "undesirables"

silver rampart
primal perch
#

o

primal perch
#

GAY PORN

indigo peak
#

What type of view is this

primal perch
#

flexall

indigo peak
#

im not jb

primal perch
#

no clue then

#

as an orange name my job is to be passive agressive not helpful

indigo peak
#

i can try sideloading safari

primal perch
#

wont work without a lot of tweaking

#

it has hella entitlements

indigo peak
#

i literally cant even type in the searchbar

#

YOU CAN PUT IMAGES AS SAFARI BACKGROUND

#

WTF

restive ether
#

i set mine as one on beta 1

hasty ruin
indigo peak
#

ty

hasty ruin
primal perch
hasty ruin
primal perch
#

night

hasty ruin
#

👍

#

i

pearl sail
#

p

indigo peak
#

l

lost nebula
#

you guys hurt my head

indigo peak
#

and you hurt my eyes

lost nebula
#

same

#

@indigo peak make a tweak that adds a option to disable offloading certain apps,needs jb tho probs if possible so F

serene ridge
#

all that happened is that when you tried to search for anything it would crash

primal perch
#

im surprised it loads at all

primal perch
#

rip your swap file

silver rampart
#

is there anything even in the app

#

lot of the preinstalled apps are just stubs for frameworks anymore

gentle grove
#

brew cask is stupid

turbid fjord
#

Ah Ty

lime pivot
#

well that’s one way to test for memory leaks lmao

lime pivot
#

and WebKit

silver rampart
#

lmao amazing

lime pivot
#

captinccore

#

cringe

silver rampart
#

cottagecore

#

lit 😎

#

ASAN is fun

#

why are you asking me

lime pivot
#

this sounds like a music genre featuring didgeridoos

silver rampart
wicked summit
#

openssl++

naive kraken
#

yeah I figured, there is also the call sandbox_extension_release or something but I don't think it has any benefits over free

naive kraken
tepid olive
#

why is it literally impossible to hook uilabel text in twitter

#

does it have something to do with swift

lime pivot
#

aha that's new then

tepid olive
#

flex shows it's an uilabel but hooking it does nothing

lime pivot
#

again with the frameworks lmao

#

they really love their monolithic 4GB OS don't they

grim sparrow
#

Fixed: Attempting to set an orientation on UIDevice via setValue:forKey: isn’t supported and no longer works. (93367651)

#

I didn’t even know this ever worked but now I’m not surprised it did

grim sparrow
naive kraken
lime pivot
#

so they have to tell people the thing that was never supported now absolutely will not work, heh

grim sparrow
#

Oh yeah 100%

#

That’s just one of the things that I never even considered

lime pivot
#

all orientation stuff global to the device is deprecated in iOS 16

#

now you're supposed to get the orientation of the window scene

#

actually not sure if even that's supported, maybe at best you have size classes and that's it

grim sparrow
#

I’m only just catching up to the iOS 16 stuff

#

I was swamped with exams when it all came out

lime pivot
#

I've only vaguely played around with the desktop-class features for NewTerm so far

tepid olive
#

now when I'm trying to debug it with flex again twitter suddenly isn't showing me any promoted tweets smh

grim sparrow
#

Unexpected win

lime pivot
#

I currently have the very desktop-class feature of ctrl-anything key combos not forwarding to -[UIResponder pressesBegan:withEvent:]

naive kraken
#

knowing how extensions work under the hood, highly unlikely

tepid olive
#

I still hate how twitter blue doesn't get rid of ads

naive kraken
#

I think it may be a leftover from like iOS 8 or so where extensions where actually stored in kernel memory

tepid olive
#

showing me ads when I'm paying for the service should be illegal tbh

#

sadly it's not

grim sparrow
#

That’s such bs

tepid olive
#

it only gets rid of ads/paywalls in articles

#

well some

naive kraken
#

yeah saw that too

#

can't hurt tbh

#

but I don't think it's neccesary

#

it's probably a stub tho

tepid olive
#

which also exists on the uilabel

grim sparrow
#

Yeah

tepid olive
grim sparrow
#

It’s because that text is a different weight so I figured it was that

#

Also when searching parts of the tweets text can be bold so that would also be an attributedString

tepid olive
hasty ruin
#

Wrote 1k lines like this intjtype

#

Makes testing builds slightly quicker so yk

#

wrote a tweak and did all testing on m1

#

way easier than a physical device thumbsUp

grim sparrow
#

That’s actually quite smart

hasty ruin
misty cradle
#

how to get tweak workin on m1 app

grim sparrow
#

You ask Capt very nicely

zenith hatch
#

thats icraze

grim sparrow
#

I know

lime pivot
#

.

misty cradle
#

ironic

grim sparrow
#

That’s so epic

wicked summit
#

okay now someone buy me an M1

#

i will ask again in 10 years

#

for the M10

#

what's the probability this server exists in 10 years

#

reasonable

hasty ruin
#

yeah another admin will nuke it 🙏

tepid olive
#

still not working fr

tepid olive
#

?

#

1%

turbid fjord
#

Not minimum

atomic hearth
hexed knot
#

minimum is 0%

primal perch
#

@marble perch least racist mac rumors users

crude swallow
primal perch
#

fr

#

israel is when the jews do something shady

#

apparently

crude swallow
#

implying apple wasn't already situated in a colonizer state

restive ether
#

did they forget they make stuff in china already

#

why are tech bros so stupid

#

yeah but mac rumors commenters are racist

wicked summit
#

Swift types be like

#
(((((()->()))->((()->()))))->((((()->()))->((()->())))))
tepid olive
steady nest
#

Trying to make a binary that triggers mobile obliteration through xpc
I'm getting 0x685000 _HandleIncomingMessage: Payload data received from client did not contain a CF object or failed to deserialize.
sample code

xpc_connection_t connection = xpc_connection_create_mach_service("com.apple.mobile.obliteration", NULL, 0);
  xpc_connection_set_event_handler(connection, ^(xpc_object_t event) {
    return;
  });
  xpc_object_t msg = xpc_dictionary_create(NULL, NULL, 0);
  xpc_dictionary_set_string(msg, "ObliterationType", "ObliterateDataPartition");
  xpc_connection_resume(connection);
  xpc_object_t response = xpc_connection_send_message_with_reply_sync(connection, msg);

anyone got any ideas :/ ?

#

sample RE

v38 = CFDictionaryGetValue(v3, CFSTR("ObliterationType"));
...
if ((unsigned int)CFEqual(v39, CFSTR("ObliterateDataPartition")))
hasty ruin
#

ios is easy

atomic horizon
#

do you ppl think this would be too inefficient?

gentle grove
native dune
#

c#

gentle grove
#

no wonder its so ugly

atomic horizon
#

I agree

rose wren
#

linus said why

#

I kinda forgot

pearl sail
gentle grove
#

I use rust

rose wren
#

I thought it was java

#

lmao

pearl sail
#

C# and Java look similar

rose wren
#

idk I don't use J*va

#

it's a slur

gentle grove
#

It looked like Java but I had the suspicioun it was kotlin because of the ugliness

pearl sail
#

Someone was saying the syntax are now different enough to where you cannot say that it is a ripoff

tepid olive
pearl sail
#

All modern programming languages are a rip off of C

silver rampart
atomic horizon
#

wdym by that?

silver rampart
#

that looks like DFS so I'm assuming you're topologically sorting something

wicked summit
atomic horizon
#

ye it is

silver rampart
#

if you have a list of all vertices in the graph kahns typically(?) is what you want

#

if not then DFS is probably going to be your only reasonable option

atomic horizon
silver rampart
#

i cant think of any stdlibs that do topological sorting, nor is it really complicated enough to really warrant that

silver rampart
#

but yeah you definitely want kahn's there, then

atomic horizon
#

so I need to re run that

#

tree continues the same after every run

#

but the start is always different

#

you could call it that

#

but topological makes more sense for what im talking about

atomic horizon
#

the function that calls it gets called a lot

#

but not in this project cuz im still setting stuff up

silver rampart
#

may be worth just benchmarking it in several scenarios and trying to gauge whether it's worth over-optimizing

atomic horizon
#

ye thats a good idea

torpid saddle
#

is there an alternative to sys/sysinfo.h on iOS?

primal perch
torpid saddle
#

ah thanks

hexed knot
primal perch
#

guess what OS ios is based on

hexed knot
#

darwin

zenith hatch
native dune
#

redstarOS

rose wren
#

iPadOS

lime pivot
hasty ruin
#

I thought it was vista

#

Or was that just iOS 11 trol

tepid olive
#

(/s)

gentle grove
#

Does Desktop discord use react

#

And web

#

Yeah but do they use react

vivid dew
primal perch
#

std::array

vivid dew
gentle grove
vivid dew
#

cringe

gentle grove
#

no

pearl sail
torpid saddle
#

hmm

#

yeah bc i'm using sysinfo if on linux or sysctl if on mac

#

ah thanks

torpid saddle
#

how do i use sysctl function? what are all the pointer arguments for?

faint timber
#

there are specific named ctl's there are also mask's for the others

#

the masked one's are an int array

torpid saddle
#

what argument do i pass to sysctl?

#

or sysctlbyname?

#

are all the fields separate instead of it returning a struct?

faint timber
#

its pretty self explanatory for byname

#

example:

// getting proc entries
int main() {
  int mib[3];
  mib[0] = CTL_KERN; /* "high kernel": proc, limits */
  mib[1] = KERN_PROC; /* struct: process entries */
  mib[2] = KERN_PROC_ALL; /* everything */
  size_t mibLen = 3, outSize = 0;
  struct kinfo_proc *procs = NULL;
  int ret = sysctl(mib, mibLen, procs, &outSize, nullptr, 0);
  if(ret < 0) {
    printf("Getting proc entries failed! (%d)\n", ret);
    return -1;
  } else {
    printf("Got proc entries: %p, %lu\n", procs, outSize);
    return 0;
  }
}
torpid saddle
#

mib is confusing me

faint timber
#

its just an array

#

what about it is confusing

torpid saddle
#

ohhh ok, not mibibytes

faint timber
#

lol what???

torpid saddle
#

megabytes but powers of 1024 not 1000

#

so 1024*1024 = 1 MiB

faint timber
#

MIB = Management Information Base

torpid saddle
#

what's outSize?

faint timber
#

the size of the proc struct

torpid saddle
#

ah okay

#

what about uptime?

faint timber
#

that's 100% a named mib

#

but you can get it via array too

#

look at the header I linked please

torpid saddle
#

ah i see

#

does sysctl set errno?

faint timber
#

why does that matter it returns

torpid saddle
#

error handling

faint timber
#

it returns....

torpid saddle
#

the return value?

faint timber
#

did you bother reading my example?

torpid saddle
#

yeah, if it returns a negative value, but i was wondering if i could return like a message, like with strerror?

faint timber
#

yes errno is set

torpid saddle
#

okay

torpid saddle
#

i just see Killed: 9

#

i put a printf at the start of the main function and it doesn't even show

#

so it can't even run in the first place?

faint timber
#

killed 9 is codesigning....

ocean raptor
torpid saddle
#

yes

#

i'm compiling it with gcc, how do i sign it?

#

iOS

#

how do i generate a key and use it?

#

i did ldid -S ./program but it stills has the issue

faint timber
#

You need the cert and entitlements

torpid saddle
#

do i have to get one from apple or can i generate my own one and use it?

hexed knot
torpid saddle
#

lmfaoo

hexed knot
#

@faint timber have u seen the clip where terry davis gets emailed that song and listens to it

lime pivot
#

makes me sad to see the personality of a guy who killed himself but still, very interesting person

hexed knot
#

The deeper you get in the sadder it gets

#

But you also see that despite his schizophrenia and racism (which is caused by his schizophrenia im sure) he’s just a normal person like us

lime pivot
#

especially the more technical videos, I loved seeing him in his element explaining his code

hexed knot
#

Yeah those are cool

#

The most rewatchable videos imo are terry Davis responds to donald trump and templeos hardest question

lime pivot
#

especially when you realise almost all of it is in his vanity language

#

HolyC still feels strangely too intelligent a pun for his schizophrenic personality

lime pivot
hexed knot
#

He just shows trump why templeos

hexed knot
lime pivot
#

I'd think it has to be

#

kinda perfect for what it is honestly

#

it kinda is C but for TempleOS, hence, HolyC

hexed knot
#

Yeah and it kinda works for the shell

torpid saddle
#

i've no idea how to do this

hexed knot
#

its been going on for a few minutes

lime pivot
#

that doesn't seem right

#

taking more than 1 second to iterate 1 million times I mean

hexed knot
#

what is wrong with my computer

ocean raptor
hexed knot
#

for sure

naive kraken
#

@grave sparrow I'm 90% sure sandbox_extension_release will actually remove the sandbox extension from your process again

#

but idk tbh

#

it certainly does something

primal perch
naive kraken
primal perch
#

general > colors if it’s 7.5 or newer

#

or maybe 7.3

#

i forgor

#

but anyway most cracks in the wild have it now

#

and it’s a bar at the top

#

looks a lot better under wine too at least for me

naive kraken
#

yeah I found it lol

primal perch
#

not that i care because i use light mode often it’s just a rule on discord to mock light mode

tepid olive
#

discord light mode better

#

y’all suck

vivid dew
#

true

restive ether
serene ridge
#

bro could just ask the bro himself fr

restive ether
#

yes

serene ridge
lime pivot
#

you’re not wrong

primal perch
#

F

primal perch
#

unironically the advent of artificial lighting has been the one driving force for humanity's downfall

#

less quality sleep = impaired functioning for every aspect of the human experience

hasty ruin
#

Me reading this at 6am

primal perch
primal perch
#

-fwho-asked

lime pivot
#

-f-you

fervent verge
#

Is this the real CoolStar?

CoolStar#6709

celest quiver
#

No

fervent verge
#

Actually?

zenith hatch
#

no means no

#

.

fervent verge
zenith hatch
#

yeah thats cool and all but why did you say actually

#

like

#

he said no

fervent verge
#

idk the original I’d of his

zenith hatch
#

coolstar is literally here

#

starplayer132#0001

fervent verge
lime pivot
#

llsc is probably your age bro

primal perch
fervent verge
#

18

zenith hatch
#

.

lime pivot
#

dunk failed successfully 🙃

#

better luck next time

zenith hatch
#

lmao

#

man reddit api is pisstake

lime pivot
#

I almost accidentally made my computer communist Commie

zenith hatch
#

💀

#

@fervent verge frankly using "actually?" online is incredibly stupid for use as figure of speech. you need the tone of voice and body language to make sense contextually. dont use it online unless its a legitimate question

zenith hatch
lime pivot
#

levenshtein distance algo

#

pretty much that's what's behind every "did you mean" algo

turbid fjord
#

😭😭😭

lime pivot
#

find tokens that are incredibly similar to the input tokens by distance on the keyboard

#

or extra characters, missing characters, etc

primal perch
#

subscription model lame

lime pivot
#

it knows /usr/bin/man exists but /ussr/bin/man doesn't, so it can pretty confidently assume you meant the former

turbid fjord
primal perch
#

bird poop is 1.99 at least

#

one time

turbid fjord
#

Bro cool star isn’t gonna help you with hacks btw @fervent verge

primal perch
#

also doesn’t work anymore but yea

zenith hatch
primal perch
lime pivot
#

man even the top hackers can't escape the SaaS model

primal perch
#

aimware makes money af

#

it’s like 30 a month

lime pivot
#

sheesh

#

someone knows how to make money damn

turbid fjord
primal perch
#

idk i think it uses a license server

#

so it just disabled

#

most subscriptions do that

turbid fjord
#

Ah

primal perch
#

even some apps do that

zenith hatch
#

true

primal perch
#

bird poop has no such drm

#

i don’t like the idea of that

lime pivot
#

yeah that's the SaaS way

fervent verge
#

Little side project of mine yeah

primal perch
#

it used to but i convinced scoop to remove it

lime pivot
#

either make it a web app so you can't access it when you're not subbed, or just make the app not do anything useful otherwise

primal perch
#

mainly bc it relies on twickd which is ass

lime pivot
#

if you relied on chariz you wouldn't have a problem bro

turbid fjord
#

True

primal perch
#

if you accepted it 😛

fervent verge
#

It’s not that serious I don’t really care

primal perch
#

nobody would but shit d

lime pivot
#

lmao yeah I didn't accept gameseagull either

#

(sorry fiore)

primal perch
#

i get why

#

i appreciate twickd for being the ali express of tweaks

#

there’s gotta be one

lime pivot
#

lmao

primal perch
turbid fjord
#

Real coal
Can you accept my tweak and repo finding app when iOS 15 JB releases?

#

:troll:

lime pivot
turbid fjord
#

Source code tr

zenith hatch
#

twerker

primal perch
#

twerk

lime pivot
#

Twickd has, ummm…

#

…………………

#

good question what does it have

fervent verge
#

Idk man I thought you guys were talking about shi on my site for a min

primal perch
zenith hatch
#

its mad he says i wouldnt understand figure of speech

#

but he doesnt have

#

common sense

#

mad shit

#

@lime pivot finally got past the json decoding errors

fervent verge
#

ok

primal perch
lime pivot
zenith hatch
#

.

zenith hatch
lime pivot
#

looks promising tho

zenith hatch
turbid fjord
lime pivot
#

prototyping watch UI on phone?

turbid fjord
#

No there is a phone app and Watch app

zenith hatch
#

nope i'm just showing user's recent posts

turbid fjord
#

Phone app does auth and that

lime pivot
#

ah gotcha

zenith hatch
#

the iphone app front page looked empty innit

turbid fjord
#

User profile on the phone app is all it needs and settings

zenith hatch
#

you go to watch tab and press sync

lime pivot
#

aye I see

zenith hatch
#

the login and sync flow is so smooth

lime pivot
#

yeah that tab was what made me think that

zenith hatch
#

the animations are 11/10

lime pivot
#

can't wait to see it completed

#

if you wanna see what I've been doing in SwiftUI lately, I rewrote NewTerm's terminal window to be SwiftUI rendered

zenith hatch
#

you can try it out rn if you want, tho the watch app isnt done. but you can log into your account and sync to watch and view basic profile

lime pivot
#

only thing left hopefully is just that I have to put another ForEach inside the existing ForEach so it doesn't end up having to re-render every Text() on that terminal line

#

other than that it works surprisingly well

zenith hatch
#

poggers

primal perch
#

why would you introduce swift ui

zenith hatch
#

trol

turbid fjord
zenith hatch
#

gets more fun

lime pivot
#

I'm eagerly awaiting the Don't Use NewTerm(3) tweet

zenith hatch
#

innit

turbid fjord
#

Watchtube doesn’t need updating anymore (for now) so we should just introduce some more bugs for something to do

primal perch
lime pivot
#

I think pwn also forgot NewTerm has been almost fully written in Swift since 2.0

#

because he didn't get his Swift Bad hate boner out for it

turbid fjord
lime pivot
#

only complained about a bug in htop rendering I just fixed a few days prior

zenith hatch
#

ikr

lime pivot
primal perch
grim sparrow
#

Yoooooooo

#

Literally cannot wait

primal perch
#

gpu porn

zenith hatch
#

gpu porn

primal perch
#

polaris 20 right there

turbid fjord
grim sparrow
zenith hatch
#

lol

turbid fjord
#

Epic can’t wait

lime pivot
#

best part has to be that you responded pretty much straight away @zenith hatch and the dude couldn't be fucked to reply to your comment or amend the video title/description