#development

1 messages · Page 280 of 1

tepid olive
#

dude my back is starting to hurt from college at home

#

This must be what it feels like to be 40

late ridge
#

just do a continue; on today

tepid olive
#

I'm suddenly awake 😳

late ridge
#

lol

primal perch
#

I'm suddenly awake 😳
@tepid olive same

#

Running on like no sleep at school rn

#

Caffeine doing well so far tho

tepid olive
#

you are actually at school?

primal perch
#

Yea

tepid olive
#

man I want to go back for my senior year

#

When this all started being at home was sweet cos I got my own bed and am around family but now I want to go back

primal perch
#

it’s a love hate relationship rn

#

At least I get out of the house a bit

#

don’t like getting up at 6 though

tepid olive
#

true

lethal ice
#

meanwhile me in my senior year waiting patiently to gtfo

late ridge
#

LOL

tepid olive
#

true

undone nest
#

oh no

#

we will all die

#

what does NS even stand for

tepid olive
#

naughty slut

undone nest
#

naughty slut
@tepid olive true

#

wait

#

i didnt even know he got fired

#

interesting

#

f

tepid olive
#

it’s happening, i’m going to
@vivid dew cum

#

i didnt even know he got fired
@undone nest retard

undone nest
tepid olive
#

why do you think people said RIP Steve Jobs

#

cause he got fired

#

in 2011

#

/s

undone nest
#

god fired him

tepid olive
#

that is an uhhn moment

#

lol

#

José thinks is funny

gaunt mesa
twilit jungle
grim sparrow
lethal ice
upper wigeon
#

instead of nfr use ofr

late ridge
#

wut does o stand for -_-

gaunt mesa
#

:frbiden:

#

wut does o stand for -_-
@late ridge octopus fr

late ridge
#

of course

#

obviously

gaunt mesa
#

where is greenfr

late ridge
#

oh

#

ghost

lethal ice
late ridge
lethal ice
twilit jungle
#

:uhhcyclopssus:

upper wigeon
#

orange fr :frtrump:

primal perch
#

Cumfr

tepid olive
#

i need 5 shulkers of redstone dust

lethal ice
#

uhhclops

tepid olive
#

@lethal ice

#

a

gaunt mesa
#

:uhhcyclops:
@vivid dew uhhclops

#

uhhclops is best

tepid olive
#

yeah well

#

some of us don't have that server

gaunt mesa
grim sparrow
#

I don't have it

gaunt mesa
grim sparrow
#

I am about to potentially break everything lmao

tepid olive
#

how

grim sparrow
#

rename home folder

#

oh rip I can't

#

lmao

#

wow

late ridge
#

I thought it was only in two servers

twilit jungle
#

cat har sis?

late ridge
misty cradle
late ridge
#

bruh

#

I thought i broke my bot

#

but discord just broke themselves

#

TypeScript

grim sparrow
#

:noob:

late ridge
#

not js

#

lol

#

just 22 more guilds until I can get it verified

#

lol

#

sadly

#

they killed that

#

it's now the "Early Verified Bot Developer"

#

badge

#

kind of like the "Early Supporter" one

#

tru

#

imagine developing in not objective-c or rust..

tepid olive
#

Twitter stories how

late ridge
#

oh gosh

#

no

tepid olive
#

How

rain falcon
#

HOW

undone nest
#

literal how

late ridge
#

ignore the weird text colors

#

scale of 1-10

#

how gud

weary nacelle
#

oh i think that looks good

#

but the blinking cursor is bothering me

late ridge
#

lol

#

tru

primal perch
#

when are we doing development

tepid olive
#

true

undone nest
#

when are we doing development
@primal perch now

twilit jungle
#

wen is that?

primal perch
#

when is now

tepid olive
#

when is now
@primal perch

#

:hungry:
@tepid olive

#

:hungry:
@vivid dew

#

@tepid olive
@vivid dew

twilit jungle
primal perch
#

shitcord_message_t ******

twilit jungle
#

who you calling cord?

tepid olive
#

lmao

#

true

twilit jungle
#

true

primal perch
tepid olive
#

true

primal perch
#

actually, russian government scientists have proven this false

#

stop thinking about capitalist propaganda, comrade

tepid olive
rain falcon
#

wtf

fair robin
#

Can someone with experience help me with something? I can’t get it to work

#

I can’t get a stupid tab bar to change from grey to black

twilit jungle
#

What have you tried?

gaunt mesa
#

hi

#

oop dgh0st got this ghostuhh

twilit jungle
primal perch
#

ghostuhh

narrow mason
#

nah i dont think gh0st experienced enough

#

for this one

twilit jungle
#

true

primal perch
#

as in the uhh depicting green, the signature color for dgh0st

gaunt mesa
#

if dgh0st isn't experienced then im brain dead

narrow mason
#

true

twilit jungle
primal perch
#

:ghostcock:

gaunt mesa
primal perch
#

:ghostpp:

gaunt mesa
#

i have deleted all the cock emotes

fair robin
#

%hook _UIBarBackground

- (void)didMoveToWindow {

  %orig;

  UIImageView* imageView = MSHookIvar<UIImageView *>(self, "_colorAndImageView1");

[imageView setTintColor:COLOR];

}

%end

#

Well I tried that

tepid olive
#

juulcat
@tepid olive

twilit jungle
#

Are you trying to change all tab bars or a specific one? if you are trying to do a specific one then hooking a generic UIKit class like UITabBar or _UIBarBackground (private class) is not what you want.

fair robin
#

The one from Spotify

#

How could I do it then?

twilit jungle
#

Use one of the FLEX loaders to find out if it uses the generic class or has its own implementation

#

With FLEX you can play with the object live as well to see how it behaves when doing certain things.

fair robin
#

Yeah I know

#

Well there’s one called UIImageView, and the color changes with that, but that’s not a Spotify class

twilit jungle
#

UIImageView is for images, it doesn't represent the tab bar. You want to go higher up the view hiearchy.

fair robin
#

Hm

twilit jungle
#

So it uses UITabBar.

#

one way would be to continue trying to hook the generic class and make sure your tweak only gets loaded in Spotify app
or try to find the Spotify's specific implementation where it creates the generic UITabBar and change it there.

#

UITabBar is part of the public API so you can read the docs for it or google on how to change its color.

#

For the second approach if you select that tab bar in FLEX and look at objects referencing it or maybe even view controller for ancestory, it'll lead you to what created it or is maintaining it. You should be able to hook one of those methods to update the tab bar instance that it holds.

fair robin
#

Oh okay

#

Well the ancestor is SPTAdaptiveTabBarController

twilit jungle
#

Yeah so if it has like a special method for configuring the tab bar you can hook that or hook one of its inherited methods.

tepid olive
#

@tall gate czapek
@raizo#0001

#

czapek

fair robin
#

K I’ll try

tepid olive
#

Gm

eternal crater
restive ether
#

i’m getting taco bell too

eternal crater
#

Nice

twilit jungle
#

National Taco Bell day

surreal mountain
#

Cock

primal perch
#

@eternal crater true

#

@restive ether true

restive ether
#

true

tepid olive
#

true

grim sparrow
tepid olive
#

hello

#

gm @grim sparrow

grim sparrow
#

Gm

tepid olive
#

smh im literally going to make a tunnel bore to make space for making a tunnel bore

rain falcon
#

@lime pivot gm

cloud sundial
#

It really bothers me that for some people my editable tableview has the + and - buttons invisible

#

Idk what causes it

twilit jungle
cloud sundial
#

What

primal perch
#

Ghost uhh

#

as in the uhh depicting green, the signature color for dgh0st

cloud sundial
#

Stop silently judging me woeuhh

primal perch
#

Uhh has that effect

twilit jungle
#

We don't judge, we don't discriminate, we just uhh

primal perch
#

He stares into your soul

cloud sundial
#

Uhh

primal perch
#

Making you uncomfortable

#

Making you doubt your own beliefs

#

And knowledge

twilit jungle
#

Making you realize that life is just that way sometimes

#

or maybe all the time

cloud sundial
#

Anyway...

#

I'll go ponder why a core ios feature decides to break all of a sudden for no reason

twilit jungle
#

Sometimes you just gotta implement it yourself

cloud sundial
#

I ain't gonna implement an editing mode for tableviews myself...

#

Bruh

twilit jungle
#

No I meant the OS

cloud sundial
#

It works for most devices. There are a few unfortunate people that have it breaking for them

#

I...

#

An even bigger bruh

void garnet
#

Hello all, could you possibly help me? I'm a little out of my depth. I had to restart my iPhone X, battery was empty. Logically I had to re-run checkra1n for 14.2. The tweaks are no longer shown in the settings and do not work e.g. 5 Icon Dock. Cydia, Terminal and iCleaner Pro work. The command /etc/rc.d/substrate && ldrestart does not work either. Hope you can help!

cloud sundial
twilit jungle
cloud sundial
#

Android rules

#

Way better

twilit jungle
primal perch
#

iPhone X 14.2 wtf

cloud sundial
#

Right?

#

And he's using checkra1n

#

So why even stay there

primal perch
#

Oh wait there’s an sep less

#

True

cloud sundial
#

Huh?

primal perch
#

You can jb it without sep functions if you want

#

On a11

cloud sundial
#

I thought that was on 14.2 or smth

#

Wait

twilit jungle
primal perch
#

Yea 14.0 and later because apple had to ruin checkrain

cloud sundial
#

I'm fuckig dumb

#

I thought he meant 12.4 wtf

primal perch
#

Same

cloud sundial
#

I need sleep

#

Goodnight

primal perch
#

Gn

twilit jungle
cloud sundial
#

Lol

#

I need to become active here again smh

twilit jungle
#

Its k you weren't missing out

cloud sundial
#

and not being missed either KEKW

proper reef
#

hello i have returned

#

because my apple watch app has encountered an error that not even stackoverflow has the answer to

grim sparrow
#

Oh no

#

that’s a shame

twilit jungle
#

Then you gotta index through heapoverflow

grim sparrow
#

If SO can’t fix it, you truly are lost

primal perch
#

Then you gotta index through heapoverflow
@twilit jungle true

proper reef
#

So I'm trying to play a video from a URL, and it does this mess in the output

#
2020-11-18 20:34:16.088674-0500 infoiWatch WatchKit Extension[3444:173008] [] [20:34:16.088] <<<< FigFilePlayer >>>> FigPlayerPlaybackStateGetNextState: [0x7b0efdb0]  called. reason ClientPolicyChanged, options: - -
2020-11-18 20:34:16.088782-0500 infoiWatch WatchKit Extension[3444:173008] [] [20:34:16.089] <<<< FigFilePlayer >>>> FigPlayerPlaybackStateGetNextState: [0x7b0efdb0]  player rate is 0. new playback state Paused
2020-11-18 20:34:16.088882-0500 infoiWatch WatchKit Extension[3444:173008] [] [20:34:16.089] <<<< FigFilePlayer >>>> FigPlayerPlaybackStateGetNextState:  new playback state: Paused (playerRate: 0.000), DON'T need to update item rate (nan). Previous state: Paused, change reason: ClientPolicyChanged
2020-11-18 20:34:16.089061-0500 infoiWatch WatchKit Extension[3444:173008] [] [20:34:16.089] <<<< FigFilePlayer >>>> fp_CreatePlaybackItem: [0x7b0efdb0] P/LY <redacted> asset 0x7b1c0410 -> new item 0x7a9a7200
2020-11-18 20:34:16.089272-0500 infoiWatch WatchKit Extension[3444:173008] [] [20:34:16.089] <<<< FigFilePlayer >>>> itemfig_SetCurrentTimeWithRangeAndID: [0x7a9a7200]  called, time = 0.000, flags = 0x3, range = [-inf, inf], seekID = 0
2020-11-18 20:34:16.089350-0500 infoiWatch WatchKit Extension[3444:173008] [] [20:34:16.089] <<<< FigFilePlayer >>>> itemfig_SetCurrentTimeWithRangeAndID: [0x7a9a7200]  to 0.000 - setting remembered time
2020-11-18 20:34:16.089759-0500 infoiWatch WatchKit Extension[3444:173148] [] [20:34:16.090] <<<< FigFilePlayer >>>> playerfig_gracefullyAddImageQueues: cannot gracefully add image queues when not playing 
2020-11-18 20:34:16.090734-0500 infoiWatch WatchKit Extension[3444:173148] [] [20:34:16.091] <<<< FigFilePlayer >>>> playerfig_AddToPlayQueue: [0x7b0efdb0] P/LY item 0x7a9a7200 I/EHA.01 after 0x0 ```
#

not even google has any answers

#

I just want to play the USSR Anthem on my watch

grim sparrow
#

LMAO

proper reef
#

my app to do so is 99% done

#

all I need is to get the video to not give up

grim sparrow
#

I’m on mobile so can’t really read that block

#

What actually is the problem

proper reef
#

That I do not know.

grim sparrow
#

What happens

proper reef
#

It pops up the video view thing, then it goes away immediately or it goes away after the loading ends

grim sparrow
proper reef
#

Oh I think I figured out the issue

#

It doesn't support whatever video format YouTube uses

late ridge
grim sparrow
late ridge
proper reef
#

I think I just have to find it in a codec that the watch supports

#

then I will have the USSR Anthem on my apple watch

late ridge
#

LOL

grim sparrow
#

Bruh

late ridge
#

it's a family now

lethal ice
#

@eternal crater True

gaunt mesa
#

@lethal ice

#

are ur DMs closed?

#

oh wait nvm discord just succ

lethal ice
tepid olive
#

allah
@vivid dew

#

@tepid olive
@vivid dew

late ridge
#

I am getting my bot verified, and in the form.... it asks. WHAT SYSTEMS AND INFRASTRUCTURE DO YOU USE?

#

and my smol brain no get what they askin

tepid olive
#

i wanna make a verified bot

late ridge
#

wish they still have out the badge tho

fair robin
#

Someone knows how can I use that property with code? I need to change that value

twilit jungle
#

What is a property by definition?

#

:uhhtrue:

fair robin
#

Why is that relevant?

#

Values within a class

twilit jungle
#

Its not just a value

fair robin
#

Well then idk

#

Btw I got the other thing working

primal perch
late ridge
#

it also holds the man essence.

#

i need :intjallahuhh:

proper reef
#

alright now I am getting a NSURLSession can't load from network error

lime pivot
#

@lime pivot gm
@rain falcon hi?

#

why can't I use replies on most of my servers yet boo

gaunt mesa
#

@rain falcon hi?
@lime pivot

#

sofuckingfunny

#

::

rain falcon
gaunt mesa
tepid olive
#

aDefaultDance
@gaunt mesa

#

innit

gaunt mesa
worn thunder
#

Anyone knows how to properly communicate between processes of different user (mobile <-> root)? rocketbootstrap doesn't seems to be able to

lavish ice
#

not quite understand what is of different user

#

you already rooted?

worn thunder
#

The client is "mobile", the server is "root"

#

When sending message, the client will fails to deliver and the process stops there. If the server is also a mobile, this won't happens.

lapis vessel
#

rocketbootstrap has no issues communicating between mobile and root so that isn't the issue

worn thunder
#

The server is a daemon, if that matters. But it has been properly "unlocked" for it to works using rocketbootstrap_unlock(service). If I simply attach the code into a similar user like the client without changing any portion of the code, it works just fine. If rb designed to works between different users, this issue might be a little deeper than I thought.

tepid olive
#

why can't I use replies on most of my servers yet boo
@lime pivot enjoy the quoting while it lasts

#

:AGBlushSmile:
@gaunt mesa

#

Empty quoting is the best

cedar star
grim sparrow
#

Nice one

cedar star
#

#

there we go

#

oh this is the jailbreak server oops

brave frost
#

I meant like how would i package something for ios

#

Like apt from debian

#

I don’t want to do exactly that

#

But i am just curious on how that’s done

glacial matrix
#

You can use dm.pl from theos

#

Or just dpkg like you would in Debian

brave frost
#

Oh cool. And it would work fine?

#

Or would i need to make adjustments

#

Just for example, if i tried this with apt

#

Would that work fine?

#

Not that i want to

tardy narwhal
#

well packaged ios tweaks are nothing more than fancy debian archives, if you’re feeling fuzzy then you can just create a binary stream with the necessary data and join them up while maintaining the file format’s header

pure tree
#

Does theos support optional framework linkage? For example in iOS 13, there's some new private frameworks. Link it in Makefile making tweak failed to load on lower iOS version

#

Okay, seems like theos support it: instance_WEAK_FRAMEWORKS

#

Wait, is that right? I just do something like MyTweak_WEAK_PRIVATE_FRAMEWORKS = SomeFrameWork in makefile right?

#

Yep, I'm partially right, instead of MyTweak_WEAK_PRIVATE_FRAMEWORKS = SomeFrameWork, do MyTweak_WEAK_FRAMEWORKS = SomeFrameWork, even though it's private framework

brave frost
#

@tardy narwhal thanks for letting me know that.

tardy narwhal
#

yw

rancid ledge
#

sup

#

can i use clang-11 for theos?

#

or is clang-6 only option

grim sparrow
#

Clang 11 is probably the recommended version rn

gaunt mesa
#

clang 6 ayaConfused

grim sparrow
#

dra1n go brrrrrrrrr

#

batchomatic is a virus

#

I still don't get why people bullied me for using libmryipc instead of rb

#

honestly

#

I don't even know what ipc it does anymore

#

lol

#

yep lmao the only ipc is iokit

#

lmao

wind breach
#

lol no

gaunt mesa
#

internet pussy communication
@grave sparrow what the hell

grim sparrow
#

That's not what it stands for????

#

libMRYInternetPussyCommunication???

#

ah yes sorry

wind breach
#

@mosk_i @Apple The bootloader (and most likely Recovery) can only be installed if signed at the time, and cannot be replaced.
But you CAN install old versions of macOS, or even have an arbitrary binary loaded by the bootloader. Just requires the right config with bputil(1) an...

misty cradle
gaunt mesa
#

?

grim sparrow
wind breach
#

@grave sparrow You can still boot custom object. So pongoOS could be possible

gaunt mesa
#

u just pinged someone completely random lmao

tepid olive
#

gm

wind breach
#

:/

tepid olive
grim sparrow
#

sus

tepid olive
wind breach
#

@grave sparrow replaced means you can only boot custom images in recovery, or if you want that to be persistent you can downgrade to that version using SHSH blobs. So it just prevents persistent attacks, that's it

wind breach
#

Yes, if you want to boot untetheredly that version

#

We need an IMG4 parser (or NVMe) exploit to make it untethered

#

Only ih8sn0w can do that for now

#

lol

tepid olive
#

Maybe this is a Woeis moment

undone nest
proper reef
#

I have now gotten the Soviet Anthem on Apple Watch.

twilit jungle
tepid olive
#

@misty cradle pog
@undone nest

wind breach
#

checkm9 looks amazing on M1

tepid olive
#

"checkm9"

twilit jungle
#

Yes, the n is silent

tepid olive
#

geometry class is a joke

#

whoever that white name who posted that youtube link, fuck off

#

free cock glitch working 2020

#

unlimited inches on penis

#

WORKING

wind breach
#

Freezing the device helped clock to be manageable so axi0mx just calculated the PAC keys using a prototype device. checkm9 ETA SON

#

Randomness broken with low temp.

tepid olive
late ridge
#

hehe

tepid olive
#

Gm

late ridge
#

imagine waking up late

half walrus
#

happy birthday to me jfc

misty cradle
#

Warning it sends all your crash logs to them fr

#

So make sure if you’re gonna try it, to disable this

#

wait tho

#

persistence mechanism vibescared

#

its not his'

#

he just take pic of zecops thingy i think

grim sparrow
#

lol

surreal mountain
#

lol data collection

tardy narwhal
#

rip all geniuses for the new spam wave of newbie jailbreakers

surreal mountain
#

then why u askign

tardy narwhal
#

shenanigans beget shenanigans bro, just jailbreak your jailbreak

tepid olive
#

@vivid dew congratulations on releasing leviathan

lethal kayak
misty cradle
#

@tardy narwhal where is saadatbreak

#

and WHERE IS MY PS5, U GERMANS TOOK ALL NL STOCK

lethal kayak
#

aluminum sulfide

tepid olive
#

and WHERE IS MY PS5, U GERMANS TOOK ALL NL STOCK
@misty cradle

misty cradle
#

some stores really be having oly 200 stock

tardy narwhal
#

WTF

#

which staircase

#

Helfen Sie einem Bruder, triangle

misty cradle
#

i want one delivered by saturday or your german passport will be cancelled.

#

:frnomouth:

primal perch
misty cradle
#

:gelbesgesichtmitleeremausdruck:

twilit jungle
lethal kayak
#

wtf

#

intj comes up when i search gelbesgesichtmitleeremausdruck???

misty cradle
lethal kayak
misty cradle
#

true

primal perch
twilit jungle
#

:frfrblind:

primal perch
twilit jungle
#

wtf thats not nice eyes

primal perch
twilit jungle
#

Yeah nice

primal perch
#

:ngh0st:

misty cradle
#

:notfalse:

primal perch
#

frghost

#

the real one

misty cradle
#

TRUE

twilit jungle
#

true

primal perch
#

true

misty cradle
#

TRUE

twilit jungle
#

:frwtf:

misty cradle
#

this is real development

twilit jungle
#

this is just bunch of leaks from #general

lethal kayak
#

what is the difference between mach_vm_read and vm_read

primal perch
#

one does it at mach speed

#

the other is just slower

lethal kayak
#

one does it at mach speed
@primal perch

primal perch
#

wtf

#

triangle giving real developer advice??

lethal kayak
#

i see

primal perch
#

mfs add the keyword mach to their code and its big brain

lethal kayak
#

mfs add the keyword mach to their code and its big brain
@primal perch lmao

#

ok go ahead program mach ipc without MIG

primal perch
#

true

#

use fuzzer

#

1/1000000000000 itll work

#

and feed the correct inputs

lethal kayak
#

yeah

#

theoretically

primal perch
#

i love mig

lethal kayak
#

lmfao

#

true

#

also creates vulnerabilities in kernel code

#

lol

primal perch
#

yeah bro so lets just write kernel in rust!111!!1

#

:bruhmoment:

#

rust fanboys be like

#

who's that

#

some charmander mf

lethal kayak
#

lmao

rain falcon
surreal mountain
#

anyone know what nanotimekitcompaniond is

#

and why it crashes on boot

late ridge
#

what you really want it nanotimekitd. That one^ is just his friend

tepid olive
#

where is vimtimekitcompaniond

late ridge
#

LOL

#

i threw it away

#

sudo rm -rf /usr/bin/vim

#

where is vimtimekitcompaniond
@tepid olive somebody call the garbage truck to get this trash out of here

#

killall -9 vim

#

$ timeout 60s vim

#

that is oddly satisfying

#

LOL

#

oh wait.... I didn't watch it all dead

primal perch
#

my old as fuck CLI editor is better than yours

#

fight me

gaunt mesa
#

which CLI editor

late ridge
primal perch
#

scoop when weed

grim sparrow
#

True

tepid olive
lime pivot
#

often
I've never heard of it before this minute

tepid olive
#

@tepid olive mf i been in my life slump

#

\/\/\/\

#

I guess I am a sophomore again!
@tepid olive wtf "sophmore slump" nah its senior slump wtf is this kid talking about

#

@tepid olive mf i been in my life slump
@tepid olive

rain falcon
late ridge
#

@shmoo419#9806 mf i been in my life slump
dead

#

honestly

tepid olive
#

DAMN DISCORD RUINED IT

lethal kayak
primal perch
#

rip quoting 2020

primal perch
twilit jungle
#

Not really

faint timber
#

quoting exists

twilit jungle
#

Joe
@faint timber mama

rain falcon
#

balls

#

nuts even

primal perch
rain falcon
#

these devs slow bro

faint timber
twilit jungle
rain falcon
#

oh cryptic perfect

#

go update u0 rq

#

slow ass

#

or give me the damn source code

tepid olive
#

Wen make discord tweak to add back quote button??

#

Please!!!

#

Tbh may do it this weekend funnyx10

#

Probably not tho cause I’m a lazy fuck

late ridge
#

look cool

#

but they suck

#

so much better

lime pivot
#

sure better than quoting tho

#

I think that's the point, it's like not really that much better but you can tap for context

#

which is something I guess

rain falcon
tepid olive
#

@late ridge do replies still show up, and it just gives you the quote button back?

late ridge
#

ya

#

replies go bye bye

#

pog

eternal crater
#

Don’t get b&

rain falcon
late ridge
restive ether
late ridge
rain falcon
#

nfr

late ridge
#

took me so long to realize what b& meant

#

LOL

lime pivot
#

it's the opposite of b|

primal perch
#

dont forget b^

lethal ice
#

wtf

valid venture
#

Remember that time in Black Mirror where the PM fucks a pig?

grim sparrow
#

Who said anything about Black Mirror

#

Cameron did put his cock in a pig

tepid olive
grim sparrow
#

I’m not joking

#

Poggers

gaunt mesa
tepid olive
gaunt mesa
#

what is this

tepid olive
lethal ice
upper wigeon
tepid olive
#

reply

tepid olive
tepid olive
#

🤔 do i like this

tepid olive
faint timber
upper wigeon
#

balls. nuts even

rain falcon
#

true

wicked summit
#

hw 2 mek jilbruc tewk¿

tepid olive
#

e

gaunt mesa
#

joe

#

bama

#

nfr

gaunt mesa
upper mountain
#

Do DragonMake Files have a comment symbol? IE // or #

#

cc: @half walrus

half walrus
#

yaml syntax

#

so #

upper mountain
lethal ice
primal perch
lapis vessel
#

I only updated discord this morning

brave frost
#

It sucks

lethal ice
#

developers

#

you must

#

must develop

#

@lapis vessel yeah just got here today

#

i like how you can't fake quotes now tho

lime pivot
lethal ice
#

true

#

where

#

are

#

the developers

primal perch
#

True

half walrus
#

lol i love how extremely complex this question is

#

love even more that i just so happen to have the answer to it

#

in an old project from like a year ago

tepid olive
tepid olive
tepid olive
#

does anyone here know shit about iOS 14.2 JIT

#

because I patched zsign but it still won't work

#

and it works with AltStore

#

trying to use UTM

lapis vessel
#

Reminds me of the twitter thread UI that we got on desktop and unfortunately still haven't got on mobile yet

#

I saw some video of their fancy table view animations which was pretty impressive

tepid olive
#

There are twitter threads?

#

That's insane

grim sparrow
#

Twitter threads?

lapis vessel
#

Just the UI

#

Thread is probably a bad word

tepid olive
#

eagerly awaiting the ui for twitter web because i only use twitter web

lapis vessel
#

You can run your own kernel extensions on macOS so you don't need bugs or anything for kernel R/W

tepid olive
#

Can't wait to get an M1, I won't have to rely on jailbreaking anymore for ARM hax on apple devices

#

maybe next generation though because my mbp is still going strong

lapis vessel
#

If it doesn't work then you can implement your own kext with kernel R/W external methods for userspace if you want that for research

steady nest
#

anti-replay memory protection

surreal mountain
#

anti-replay memory protection
@steady nest true

lament mica
#

Using the Xcode 11.7 toolchain as suggested here doesn't seem to work for xcodeproj.mk? Smh, do i need to download the full xcode 11.7 again? uhh

gaunt mesa
#

xcodeproj is different

lament mica
#
bash: /Users/Username/theos/toolchain/Xcode.xctoolchain/usr/bin/xcodebuild: No such file or directory
bash: /Users/Username/theos/toolchain/Xcode.xctoolchain/usr/bin/xcpretty: No such file or directory
make[2]: *** [internal-xcodeproj-compile] Error 1
make[1]: *** [internal-xcodeproj-all_] Error 2
make: *** [DynaWall.all.xcodeproj.variables] Error 2```

Dunno why it's looking for xcodebuild and xcpretty inside the toolchain folder
gaunt mesa
#

oh

#

oh

#

hacky solution:

#

okay copy xcodebuild and xcpretty from ur xcode toolchain (like in Xcode.app) and copy it to where ur theos Xcode.xctoolchain/usr/bin is

lament mica
#

haha

#

i'll try that

#

one min

#

@gaunt mesa it seems be borked i think

gaunt mesa
#

allah

lament mica
#

possibly because the xcode build is from xcode 12.1?

gaunt mesa
#

most likely

lament mica
#

i might need to just get the xcode build from 11.7

gaunt mesa
#

idk who made the toolchain again

#

cuz it wasn't me

lament mica
#

quiprr?

#

because it was hosted on his website

gaunt mesa
#

nah quiprr just uploaded it

#

he doesn't have a mac

lament mica
#

oh

#

Was it @grim sparrow ?

grim sparrow
#

It was me

#

I put my toolchain on Google drive and shared it around here a bunch

lament mica
#

that toolchain is not working for xcodeproj mks

grim sparrow
#

And then at some point got moved to someone’s server?

#

WELL I DIDNT TEST IT WITH THAT

gaunt mesa
#

quiprr asked for permission remember

lament mica
#

@grim sparrow yeah it's on quiprr's website rn

lament mica
grim sparrow
#

Probably

gaunt mesa
#

woeismai

lament mica
#

mhmm

gaunt mesa
#

woeis

grim sparrow
#

I don’t care who distributes it lol, I literally just copied it out of Xcode

lament mica
#

@grim sparrow do you still have 11.7?

grim sparrow
#

Yes

#

I’m checking it now lol

lament mica
#

what's the version of your xcodebuild?

grim sparrow
#

STANDBY

#

Got too many apps open for 4gb kek

#

Everything has frozen

lament mica
#

at least you have 256 gb ssd

grim sparrow
#

And a 2TB hard drive

#

...

lament mica
#

yeah i have a 2tb drive too

#

but i'm scared of using it because drives keep failing on me

#

smh

grim sparrow
#

What’s the error you’re getting

#

About missing stuff

#

So am I confusion

grim sparrow
#

Yeah that doesn’t exist in my toolchain

lament mica
#

@grim sparrow yeah that's in /usr/bin/ i think

grim sparrow
#

Yeah

lament mica
#

what's the version?

grim sparrow
#

That’s the problem I think

#

Idfk

lament mica
#

uhh

grim sparrow
#

—version isn’t a valid command

lament mica
#

-version

#

works

grim sparrow
#

Oh

lament mica
#

smh apple using non-standard stuff

grim sparrow
lament mica
#

yeahhhh that's the xcode build i wanttt

grim sparrow
#

Standby!

#

Boutta frankenstein a new toolchain kek

lament mica
#

just send that executable lmfao

grim sparrow
#

There's like 6

lament mica
#

wtf

grim sparrow
lament mica
#

do you also have xcpretty?

gaunt mesa
grim sparrow
#

somewhere yes

gaunt mesa
#

nice

#

so we have reached the point

#

where we are posting bins in here

grim sparrow
#

yep

lament mica
#

kek

grim sparrow
gaunt mesa
#

pin one of them

lament mica
#

@grim sparrow yeahh that's what i expected

grim sparrow
#

@gaunt mesa I'm just gonna remake the toolchain with those embedded

gaunt mesa
#

okay

#

and lipo

#

sworry

#

not lipo

scenic yacht
#

Don’t know if I am allow to ask this question here.. but is it possible to sign an ipa file with two developer account?

gaunt mesa
#

plutil

grim sparrow
#

OK!

lament mica
#

smh, i need to chmod these huh

gaunt mesa
#

inb4 procursus build system for xcode toolchain

grim sparrow
gaunt mesa
#

@grim sparrow dm

grim sparrow
#

ok

lament mica
grim sparrow
#

HOW

gaunt mesa
#

xcode-select sofuckingfunny

scenic yacht
#

@grim sparrow 😫😫

lament mica
gaunt mesa
#

LMAO

grim sparrow
lament mica
#

lmao

gaunt mesa
#

u didn't replace ur file

#

LMAO

grim sparrow
#

who

gaunt mesa
#

mai

grim sparrow
#

oh

#

lol

lament mica
#

wait what did i doo

gaunt mesa
#

uh

scenic yacht
#

@grim sparrow Don’t know if I am allow to ask this question here.. but is it possible to sign an ipa file with two developer account?

gaunt mesa
lament mica
#

see?

gaunt mesa
gaunt mesa
lament mica
#

oh

#

ok i'll try running xcode-select?

scenic yacht
#

@grim sparrow 😳

lament mica
#

bruh

gaunt mesa
#

holy

lament mica
#

god damn it, this whole thing is fucked

#

fucking apple, fucking nuke this thing

grim sparrow
#

Dude Please standby

#

I’m replanting a tree

lament mica
grim sparrow
#

I’m looking into it

#

When I finish planting the tree

lament mica
#

wait, you're planting a real tree?

#

like an irl tree?

grim sparrow
#

Yes lol

lament mica
#

lol

grim sparrow
#

2 actually

surreal mountain
#

poggies

grim sparrow
#

aight

#

so

#

what was I doing

#

@lament mica I'll try and compile Signal with this toolchain to actually test it this time kek

grim sparrow
tepid olive
#

True

grim sparrow
lament mica
#

lmfao

#

ikr

#

fucking xcode 12

grim sparrow
#

ok so xcpretty has been added

#

trying again

gaunt mesa
#

mashallah

grim sparrow
#

the tensions killing me

gaunt mesa
#

kek

#

terminal.app

grim sparrow
#

stfu

#

POGGGGEREESSSSSS

gaunt mesa
#

ewe

grim sparrow
gaunt mesa
lament mica
#

poggers

grim sparrow
#

ok uploading that toolchain now

gaunt mesa
#

send to me woe

grim sparrow
#

woe

lament mica
#

woe

gaunt mesa
#

woe

grim sparrow
lament mica
#

:woecry1::woecry2:

gaunt mesa
lament mica
#

fuck, i keep forgetting my nitro expired

grim sparrow
#

lol

tepid olive
late ridge
#

fuck, i keep forgetting my nitro expired
@The_Lucifer#0502 aPES_Sob

late ridge
#

:sofuckingfunny:
@gaunt mesa sofunny

gaunt mesa
late ridge
#

quotes > reply

gaunt mesa
#

it's too much effort to type them out

late ridge
#

I don't lol

#

me no comprendo

gaunt mesa
#

k

late ridge
tepid olive
#

@lapis vessel i just removed the pinned mryipc 1.0 from the odyssey repo

#

just an FYI, everyone should go to 2.0 now heh

gaunt mesa
#

what the fuck

#

ayumuvirus really affected u

lapis vessel
tepid olive
#

yeah but whatev

grim sparrow
#

One line fix shake

#

What actually is the problem

gaunt mesa
#

he quit

grim sparrow
#

One line problem*, I’m aware he quit

faint timber
#

poor flavor

lethal ice
#

developmento

#

true

tepid olive
#

Obamna

late ridge
glacial matrix
tepid olive
#

jah

lethal ice
#

wtf fake stib

faint timber
#

Poor flavor @glacial matrix

glacial matrix
#

“Gusto pobre”?

lethal ice
#

eric

misty cradle
#

Everyone pray for @twilit jungle to be alive intjpray

lethal ice
#

dghost is dead

misty cradle
#

He hasn't been online for 15 hours.

#

This is unusual behavior

#

who will fix c++ code if dghost no longer alive saddecry

tepid olive
faint timber
#

Check my fleet

tepid olive
#

true

late ridge
#
const monotrix = new Stib();
faint timber
#

Petition for sites to stop using cookies for password reset, I constantly have to clear cookies for the password box to show on the password change screen because it’s the same url as login

tepid olive
#

find me a new pfp sir

late ridge
faint timber
#

@late ridge error class stib does not have default constructor

tepid olive
#

and why classify that as ts

late ridge
#

uhh

tepid olive
#

it's literal just js

late ridge
#

because it works in ts lol

#

tru

late ridge
#

lol

tepid olive
#
class stib {
  constructor() {
    console.log("stib moment");
  }
}```
#

mashallah

late ridge
tepid olive
#

gonna cry?

faint timber
#

class JOEBAMA
{
JOEBAMA()
{
delete(this);
}
};

Inb4 segfault

tepid olive
#

smh

#

no constructor

faint timber
#

That’s c++

tepid olive
#

oh

#

see

#

i'm dumb

#

ok then

late ridge
#

class JOEBAMA
{
drake_nope
class JOEBAMA {
drake_dope

faint timber
#

Gtg

late ridge
#

u just press on the text

tepid olive
#

no

late ridge
#

no way I would refuse
@tepid olive

#

is what he meant to say

tepid olive
#

sir pls make website 240fps

late ridge
#

LOL

tepid olive
#

that animated thing is pain

#

too low frames

#

BUILD SUCCESSFUL in 44s
3 actionable tasks: 3 executed

#

pog

late ridge
#

out of context pog

#

pog

tepid olive
#
Download https://libraries.minecraft.net/com/mojang/patchy/1.1/patchy-1.1.jar
Download https://libraries.minecraft.net/oshi-project/oshi-core/1.1/oshi-core-1.1.jar
Download https://libraries.minecraft.net/net/java/dev/jna/jna/4.4.0/jna-4.4.0.jar
Download https://libraries.minecraft.net/net/java/dev/jna/platform/3.4.0/platform-3.4.0.jar
Download https://libraries.minecraft.net/com/ibm/icu/icu4j/66.1/icu4j-66.1.jar
<====---------> 33% EXECUTING [24s]
> :downloadMcLibs > 9.24 MB/12.34 MB downloaded```
late ridge
tepid olive
#

yarn

#

com/mojang/text2speech/1.11.3/text2speech-1.11.3.jar

late ridge
#

oh boy

tepid olive
#

POG

#

this ui is sex

#

holy shit

late ridge
#

👀

#

it hurts

tepid olive
#

i make flyhack wen

late ridge
#

giant hole machine hack eta wen

gaunt mesa
#

wtf

tepid olive
#

what

gaunt mesa
#

forgot minecraft uses oshi

#

literal shit

tepid olive
gaunt mesa
#

and then the yggdrasil code base uhh

#

i think yggdrasil is getting replaced tho

#

since they are switching to msft accounts

tepid olive
#

this.flying = compoundTag3.getBoolean("flying");
this.allowFlying = compoundTag3.getBoolean("mayfly");

#
public float getWalkSpeed() {
        return this.walkSpeed;
    }``` wtff?
#

why do these exist

late ridge
#

mayfly

gaunt mesa
#

it's called a getter

late ridge
primal perch
#

encapsulation go brrr

tepid olive
#

im saying

#

does this method even affect the game

#

FAILURE: Build failed with an exception.

#

:nscream: