#development

1 messages · Page 343 of 1

burnt niche
#

I might make it public when its done

#

Its app i am not sure anyone really knows, called “chatous”

faint lionBOT
#
#
primal perch
#

true

rain falcon
#

nfr

faint lionBOT
#
viral badge
#

Hi! I was wondering if anyone knew of a way that I could get my hands on the carkey framework from ios 13.6+. I have a X running 13.7 with checkra1n if that helps at all. I was hoping to at least see how it interacts with automaker apps and see if its possible to create an app that takes advantage of it in conjunction with a raspberry pi that controls the door locks on a car. Thanks!

surreal mountain
#

smart but i would make your own system for that

viral badge
#

True. But in order for passes to interact with nfc readers I need to get Apple to say the idea is ok. And I’m not using it for a rewards cards so something tells me that won’t work. And nfc tag reading alone in an app is a nightmare and not in the background at all. Do you have any ideas of how I could go about it?

burnt niche
#

Spent 4 hours trying to figure out how to add a feature. Found out the feature already existspepehands

burnt niche
granite frigate
#

is there a difference between openjre-16 and openjre

#

on procursus repo

burnt niche
#

Hayden added it?

#

Nice

granite frigate
burnt niche
#

Does it show version?

granite frigate
#

same thing

burnt niche
#

16 is the new jdk

granite frigate
#

they are the same version

burnt niche
#

Try one of them i guess

granite frigate
#

ok

burnt niche
#

What u plannin to do wit it if i do ask

granite frigate
#

minceraft

viral badge
burnt niche
#

Thats impossible

primal perch
#

Yea that isn’t gonna work at all

#

Third party Apps can be sideloaded with tweaks if they work in the sandbox but not hooking stuff like that

viral badge
#

Figured. I was kind of wondering originally that If I had access to the framework, I could bundle it into the app and it would work, since obviously certain developers have access. But I’m sure Apple has more security built around the framework access than just who does and doesn’t have the file to import in Xcode

#

Thanks anyways! I’ll try and figure out another kinda cool way to unlock the car 😝

misty cradle
faint timber
digital vale
#

Can i edit a file memory inside Tweak.xm?

Sorry I’m bad at explaining

#

Like i wanna patch memory of a resource PAK file not the “Binary”

tardy narwhal
#

Why do you insist on not using google

grim sparrow
#

lmao

nocturne yacht
#

true

tepid olive
burnt niche
#

is there anyway to only grab the idd67611dc-b943-42a8-87e8-5b5c138e0e7bbetween the quotes from this string "avatar_color" = 8; "avatar_icon" = 9; "id" = "d67611dc-b943-42a8-87e8-5b5c138e0e7b"; "verified" = 0;

#

help would be appreciated

tepid olive
#

With C?

burnt niche
#

obj-c

#

i know i have to use a nsscanner

primal perch
burnt niche
#

so out of that whole string. i only want the value between "id" = " and the ending "; which gives a string that looks like this d67611dc-b943-42a8-87e8-5b5c138e0e7b

#

that is what i am looking for

grim sparrow
#

Ok?

#

Isn’t that a dictionary?

burnt niche
#

no i am storing it as a string

grim sparrow
#

I’m confused ok leave me alone

burnt niche
#

i am not sure if its a dict lol.

burnt niche
#

i am logging the value of a nssnotifcation parameter

grim sparrow
digital vale
grim sparrow
#

standby finding the code

#

If it’s even still up

digital vale
#

Hope you get it

primal perch
#

Google MSHookMemory

arctic swift
#

Is anyone working on an a14 jailbreak?

grim sparrow
glacial matrix
burnt niche
#
    about = "reconnect? @friendnotfound";
    age = "-1";
    "avatar_color" = 20;
    "avatar_icon" = 1;
    "chat_id" = "820185c4-8c50-40b0-81ee-580bc32e49cf";
    "facebook_verified" = 0;
    gender = M;
    "is_friends" = 0;
    "is_initiator" = 0;
    "is_validated" = 0;
    "is_verified" = 0;
    "last_read" = "2021-01-04T13:38:11.747Z";
    "liked_other_user" = 0;
    "location_flag" = 0;
    "my_tags" =     (
        ""
    );
    "other_likes" = 38;
    "other_user_tags" =     (
        ""
    );
    "profile_tags" =     (
    );
    queue = random;
    "queue_id" = "de91dd8b-6530-4e7f-b4a4-3f4fc37624dd";
    "queue_name" = ""; .............. and so on```
#

i am logging a argument.

#

of a method

grim sparrow
#

That’s a dictionary 02Hmm

burnt niche
#
    NSMutableDictionary *myDictionary = arg1;
    NSString *value = myDictionary[@"chat_id"];
    NSLog(@"NSLogify chat id %@",value);```
#

i tried this but i am getting an error

grim sparrow
#

Which is

glacial matrix
#

Where does arg1 come from?

grim sparrow
#

Wait

burnt niche
#

arg1 is the nsnotifcation that returns a dict object

#

i think

grim sparrow
#

ok so

#

You want the userinfo from the nsnotucicstion

burnt niche
#

yes

grim sparrow
#

damn I had a typo in that

burnt niche
#

i want the chat id without the quotes. i could do it with nsstring n nsrange but probably not a good way

grim sparrow
#

NSDictionary *dict = [arg1 userInfo];

#

and then just get it from that dictionary

lapis vessel
#

@primal perch he's not gonna need MSHookMemory unless it's mapped read-only

burnt niche
#

where are you getting userinfo from.

grim sparrow
#

arg1 is a notification right

tepid olive
#
bool code() {
    return true;
}

const uint8_t hack[] = {
    0x00, 0x00, 0x80, 0x52, // mov w0, #0
    0xc0, 0x03, 0x5f, 0xd6, // ret
};

MSHookMemory(&code, hack, sizeof(hack));``` MSHookMemory
burnt niche
#

yes it is

tepid olive
#

9 am

grim sparrow
#

NSDictionary *dict = [arg1 userInfo];

tepid olive
#

thats straight up c though

glacial matrix
#

Arg1 should be renamed anyway

tepid olive
#

i woke up at 8

burnt niche
#
``` got it
tepid olive
burnt niche
#

NSString *value = myDictionary[@"\"chat_id\""]; or this NSString *value = myDictionary[@"chat_id"]; wont work

grim sparrow
#

Print the dictionary

burnt niche
#

my fault i haven't really messed with dictionarys the much. only arrays

tepid olive
#

i dont have school today

burnt niche
#

alright

tepid olive
burnt niche
#
    "is_batch" = 0;
}``` lmfao
tepid olive
burnt niche
#

got it

#

NSMutableDictionary *myDictionary = [arg1 object];

#

i did this

tardy narwhal
#

lmao you’re welcome, but i still see you just jumping into stuff without bothering with the documentation first though

#

make playgrounds for each chapter of your progression in a lang, it’s your resource material in the end to reference if needed

burnt niche
#

yea i ve been making seperate files for different topics that i might forget.

lapis vessel
#

Are you sure that the dictionary you've received is actually mutable?

#

If it isn't mutable, then writing to it will crash

burnt niche
#

i just want to read

#

The stuff i have done so far. 1. Skip Specified Gender until matched with the other gender. 2. when matched with the other gender, send a message immediatly with whatever you have set it as. 3. unlimited timer for recieved pictures/videos through chat. 4. save picture/video that are sent through chat to gallery with a notification telling you it was saved successfully 5. ability to save profile pictures. 6. dont show opened photo/video notfication to the other. 6. dont show typing notification to the user.

#

lmfao i know, but i might release it so i want to make it as good as possible with alot of features

#

i just started on it a day ago

#

today i was working on making the skip and messages fast as possible

#

its done in a split second. speed is like 2x faster now

tepid olive
drifting dust
#

@glass reef anything up?

late ridge
#

when you finally win a giveaway but it's not even real

#

well, scratch that

#

i have slim's love now

burnt niche
#

😂😂

tepid olive
#

gotta do 4 sides of this shit

late ridge
#

is burrit0z making big square

#

[PROOF] Pwn20wnd is Susan Wojcicki

burnt niche
#

Its fucking annoying as shit

glass reef
#

@burnt niche If you find out, please let me know

tepid olive
#

THEY SUCK

tardy narwhal
#

disable sip , hook & begone notification

burnt niche
#

Fuck that shit ass notificationpepehands

glass reef
#

but.. but.. touch id :(

tepid olive
#

bruh

#

sip != sep

#

sip on mac

tardy narwhal
#

yeah, i’m aware of what i said lmao

tepid olive
#

system integrity protection

glass reef
#

yeah

tepid olive
#

so touch id isnt compromised

glass reef
#

Oh. That's news to me

tardy narwhal
#

oh that was for lorenzo

tepid olive
tardy narwhal
#

bruh

glass reef
#

lmao til

drifting dust
#

did i get tagged and did someone then remove it

glass reef
#

Yeah sorry ghost pinged you

#

I took a look at the thing you wanted me to compile and it relies on a framework I couldn't find

#

LibHDev

drifting dust
#

Oh

glass reef
#

Extracted it from the deb, but even that seemed like it was missin some stuff

#

I might be able to take a closer look when I get home from work

drifting dust
#

alriht no worries

#

long shot though

#

this is only the region changing and nothing else iirc

digital vale
#

How do i find a button inside a game? Like I can’t find it using flex

tardy narwhal
#

you will find it inside flex

#

@digital vale use this as reference

digital vale
#

So can i find coordinates?

tardy narwhal
#

Please read the Apple documentation provided above

digital vale
#

Where do i find it inside flex?

#

Like what are the easiest ways?

tardy narwhal
#

If you’d read the documentation provided above you’d know

glacial matrix
grim sparrow
tepid olive
spice talon
#

What's krit changed their username to ?

late ridge
#

krit

restive ether
spice talon
#

Lol what?

restive ether
#

i just wanted to see what you’d say

spice talon
#

I fixed it, nvm

late ridge
tepid olive
undone nest
#

@tepid olive nice pfp fr

restive ether
#

catgirl

late ridge
#

bestgirl*

surreal mountain
#

Lord no please no

tepid olive
#

lmao

#

held with dongle and microfiber

tepid olive
#

it was not

#

it is sfw

late ridge
#

safe furr work

primal perch
#

Any competent employer would fire you for that degeneracy though

#

So it’s nsfw

tepid olive
primal perch
tepid olive
late ridge
tepid olive
#

if you want furry pics ask @tepid olive

late ridge
tepid olive
#

who said that i can’t remember

#

what are nekos

#

neko means cat

#

true

undone nest
#

i like futa

#

neko

late ridge
#

uwu

tepid olive
undone nest
#

why does this channel have more weebs than general

#

i swear nearly every dev is a weeb

tepid olive
#

loss

late ridge
#

home/gamer

half walrus
#

surrounded by weebs

undone nest
#

true

#

i need to be a weeb to keep myself sane during development sessions

half walrus
#

layout code

#

smol

tepid olive
#

true

#

for trying to reach the things that i can’t see

#

buts that’s just how i feel

#

buts that’s just how i feel

#

buts that’s just how i feel

#

trying to reach the things that i can’t see

#

...

#

i don’t wanna be right

lethal ice
gaunt mesa
#

wtf

#

simp

gleaming wave
#

does anyone know how to disable/re-enable a usb connection from iOS?

#

or what launchdaemon/service happens to control that

grim sparrow
#

Killing kernel should allow for disabling usb connections

gleaming wave
#

😐

grim sparrow
#

Exactly

gleaming wave
#

working on a tethered device, need to briefly disable usb

grim sparrow
#

Killing kernel_task should achieve that for you LoveHeart

gleaming wave
#

looks like com.apple.usbptpd.plist but doesn't seem to be running

tepid olive
#

also i suck at objc so it’s impressive for me

#

yes

#

why

#

i’m not on my jailbroken phone rn

#

ok

#

slightly copy the tweak? TrollFront

#

yes true

#

he gave me code to get package version when i was too lazy

#

rip renai

gaunt mesa
#

i have a cleaner implementation of it

#

what do u need

tepid olive
#

literally theos preference template

gaunt mesa
#

i mean if u want an example

#

here

tepid olive
#

“Plugin” folder

#

😩

gaunt mesa
#

yeah true

#

i just wanted the folder icon

tepid olive
#

the what

gaunt mesa
#

for both vim and vscode i use a custom icon theme

tepid olive
gaunt mesa
#

and it has icons for folders

tepid olive
gaunt mesa
tepid olive
#

store all project files in root directory

#

please

gaunt mesa
tepid olive
#

be like procursus

gaunt mesa
#

true

#

procursus please fix

#

takes 10 years to scroll to the readme

tepid olive
#

then why are you looking in preference bundle

gaunt mesa
#

@tepid olive theos has a template called simple tweak with preferences

#

which shows u how to do the callback method so that you can get preference values

tepid olive
#

why is break over

#

woeis

#

i got like half the stuff done i wanted to

gaunt mesa
#

i got 1/4th

#

so that's already better nfr

tepid olive
#

i wish i was 4 years old again

#

when i had no school and no responsibilities

#

and it was all simple

undone nest
#

true

late ridge
#

4 yr old obj-c dev

tepid olive
tepid olive
#

i been wanting to

#

i wish i had contributors who would do like

#

the big shit

#

so i could improve my build system more

#

too much for me to do rn

grim sparrow
#

true

tepid olive
#

I mean dont get me long, love the people adding shit lol

#

makes my day

#

but you dont see anyone doin the c# runtime lol

grim sparrow
#

lol

tepid olive
#

@tepid olive apart from the iPad what do you use daily?

#

do you do makefiles on iPad?

tepid olive
#

true

#

i do not use ipad anymore i bought a macbook for compile times a while back

#

didn't you have a hacki

#

i did

#

i want to sell the parts from it

#

i cant do the "big computer" anymore

tepid olive
#

yes it is

grim sparrow
#

Is it at all possible to load an arm64e binary on an arm64 device

tepid olive
#

it still is

#

it just wasnt ready on time

tepid olive
#

literal dumbass

tepid olive
#

genuinely curious

grim sparrow
#

homebrew bins ran on iOS
I wouldn't be surprised though

tepid olive
#

idk he's dumb asf

#

Elucubratus is relevant as it has a completely functioning albeit not the best documented build system and a lot of existing cross compilation was done against Bingner’s toolchains.

#

@tepid olive

#

dumb

#

asf

#

pro is not completely functioning amirite

nocturne yacht
#

frcoal

tepid olive
#

My build system is not fully functioning?

#

hm...

#

lol

#

@tepid olive not sure about this tho

#

Homebrew sucks indeed but binaries from brew’s arm64 bottles compiled for macOS are actually able to run on iOS (unsurprisingly as it’s the same arch just different linker, but maybe surprising to you). With brew having much more packages compiled for arm64 it makes sense to be integrating packages into Procursus from there using the same brew fomulae/compilation instructions.

#

doubt it but idk

#

Has he tried? lol

#

no idea

#

the packages are arm64e

grim sparrow
#

WAIT

tepid olive
#

but why tf would they do arm64

grim sparrow
#

holy fuck

#

I need to try something

tepid olive
#

@surreal mountain do you know about this

#

you're the only M1 user i know about

#

brew is different from cross compilation anyways

#

its not as simple as just pasting some brew args 🙄

grim sparrow
#

brew is pain

tepid olive
#

even if brew bins worked it's not like they'd be useful

#

most stuff requires patches?

#

not most

#

I'm not shipping any bins i havent compiled myself

#

true

grim sparrow
tepid olive
#

wait

#

they actually compile for arm64

#

lmao why?

#

hm idk

#

jfc ok

#

Any Linux users here? What distro do you use?

#

gcc is arm64

grim sparrow
#

yeah

#

MacOS binaries are arm64

tepid olive
#

@tepid olive does that file recognize the new arm64e format

grim sparrow
#

or x86

tepid olive
tepid olive
grim sparrow
tepid olive
#

wtf where have i seen this

#

gimme a second

#

arm64

grim sparrow
#

See

#

heres the thing

tepid olive
grim sparrow
#

I thought they were arm64e as well

tepid olive
#

Architectures in the fat file: /bin/cp are: x86_64 arm64e

#

bitch

#

they are 64e

grim sparrow
#

so you're suggesting my lipo is wrong

tepid olive
#

apple does 64e brew does 64

#

i just ran lipo

#

so yes

#

Brew KEKW

grim sparrow
#

understandable have a nice day

tepid olive
#

weird ass

#

apple does arm64e

#

oop

#

run lipo -info /bin/mv

#

brew does arm64

grim sparrow
#

ok yeah so

tepid olive
#

for no reason apparently

grim sparrow
#

why is the xcode toolchain arm64

tepid olive
#

let me see

tepid olive
tepid olive
#

we will see

grim sparrow
tepid olive
#

Xcode for iPad

#

pls

#

apple pls

grim sparrow
#

nah they won't

tepid olive
#

i need

#

yea that is funny

#

i just use Swift Playgrounds on iPad

#

runs fine

#

the toolchain is reg 64

grim sparrow
tepid olive
#

@tepid olive do toolchain bins run on iPad

#

maybe?

#

i dont really care if they do

#

arm64 from brew

grim sparrow
tepid olive
#

i dont want to try it im relaxing :(

#

fine

#

lol

grim sparrow
#

my end goal is compiling an xcode project on ios

tepid olive
#

possibly possible

grim sparrow
#

exactly

tepid olive
grim sparrow
#

again I'm trying

restive ether
#

xcode-cli on da fone

tepid olive
#

i hate xcode

#

can't you compile apps on Linux

#

with bing toolchain

grim sparrow
#

yes

#

but they can't use xcode

#

ibtool on iphone wen eta

tepid olive
#

true

#

cant use storyboards*

tepid olive
tepid olive
#

(u0)

surreal mountain
#

who ping

tepid olive
surreal mountain
#

ok

tepid olive
#

ignore

tepid olive
#

apps dont use arm64e

grim sparrow
tepid olive
#

uhh

grim sparrow
#

ye

tepid olive
#

reinstall git

#

can sileo work

#

pls

#

or just try that command again KEKW

#

fuck

grim sparrow
#

uuuuuhhhhhhhhhhhhhhhhh

tepid olive
#

sileo is weird rn

#

nothing loads?

grim sparrow
tepid olive
grim sparrow
#

that worked for whatever reason

tepid olive
#

nvm apt itself is broken

tepid olive
#

no idea

grim sparrow
#

Damn

tepid olive
#

dpkg is locked

#

lol

#

oh

#

loss

#

i am sudo

grim sparrow
tepid olive
#

dpkg locking is literally the dumbest thing

tepid olive
#

no its really not

grim sparrow
#

nah but

#

latest commit is 4mb at best

tepid olive
#

you better thank the lord dpkg locking is a thing

#

yeah

#

but its dumb that it happens all the time on ios

#

i never get a dpkg lock

#

you gotta install someones package who doesnt know how to make an install script

#

so many fucking package managers

#

another checkra1n

#

woe

grim sparrow
restive ether
tepid olive
grim sparrow
#

I am now

#

my router is 100Mbit

#

fuck that

tepid olive
#

lol

#

just mount it with ifuse or whatever

#

literally so much fast

#

fuck.

#

reboot doesn't help

#

i'll rootfs

#

bro

#

ok

#

it's prolly cuz i didn't rootfs before reset all contents and settings

restive ether
#

hello please add file manager to files app, thanks

tepid olive
#

and the remainder jb files broke

#

lmao

#

i want checkra1n to have a built in dfu enterer without jb

#

it's so good

#

i usually just killall checkra1n before boot

grim sparrow
#

are lightning cables still usb 2?

#

dang so much of this is not gonna work I love it

tepid olive
#

nothing a little install_name_tool cant fix

grim sparrow
#

TRUE

restive ether
grim sparrow
#

lol

tepid olive
#

NOPE BREW BINS DO NOT WORK

#

fuck

grim sparrow
#

this lightning cable is young too

tepid olive
#

had hope

#

woe

grim sparrow
#

Came with my ipad

restive ether
#

someone migrate brew to ruby 3.0

#

then it can be like

#

5% faster

grim sparrow
#

New junk

tepid olive
#

why is lipo not on pro
woe

#

it is

#

what

grim sparrow
#

since when?

tepid olive
#

Darwin CC Tools

grim sparrow
#

true

tepid olive
#

since probably before you knew pro was a thing

grim sparrow
#

true

tepid olive
#

sudo apt install odcctools

grim sparrow
#

i only know of the table

tepid olive
#

i think i did llvm back when it was

#

The Memo

tepid olive
#

you added it after i start contrib

#

this was the theme song

grim sparrow
#

lol

tepid olive
#

91f7343d795e41463e8862ba90d228c9557bea7c

#

Jun 17

#

ah so not too long after

wicked summit
#

How do I tell theos which sdk to use?

#

What’s the makefile line

tepid olive
#

-isysroot sdk

#

no

#

or set SDKROOT

#

its part of the TARGET line

grim sparrow
tepid olive
tepid olive
wicked summit
tepid olive
#

uhh

wicked summit
#

I don’t understand target line completely

grim sparrow
tepid olive
#

ldid -e it

#

Ok

#

dont even ldid -e it we all know its not signed

tepid olive
wicked summit
#

Ah okay thanks

tepid olive
grim sparrow
tepid olive
#

why the fuck would brew sign their cpp bin

grim sparrow
#

lol

wicked summit
#

Okay thanks

tepid olive
#

ok so what do i give for entitlements

#

dammit

#

ldid -e /usr/bin/bash

#

use those ents

grim sparrow
tepid olive
#

xcodebuild kinda cringe tbh

grim sparrow
#

shush

#

I am a woman of science

wicked summit
#

shush I am a woman of science expert

tepid olive
grim sparrow
#

true

tepid olive
#

uhh

grim sparrow
#

L

tepid olive
tepid olive
#

not how you use ldid

grim sparrow
tepid olive
#

i know

grim sparrow
#

but you didn't do that

tepid olive
#

you ran ldid -S entitlements.xml cpp-10 which wont work

#

it works

#

no it doesnt

grim sparrow
#

lol

tepid olive
#

cpp-10 works

#

you gotta get rid of the space

#

so yea

#

if you resign everything it'll work

#

or we can just not take brew bins?

grim sparrow
#

lol

#

true

tepid olive
#

but xctoolchain

grim sparrow
#

bruh

tepid olive
#

@grim sparrow can you send an xcrun bin

grim sparrow
#

I'm sourcing my stuff now

tepid olive
grim sparrow
#

Compiling Signal on da fone be like

#

brrrrrrrrrr

tepid olive
#

@restive ether theres two shrugs in this server, peepoShrug and monkashrug

#

but theres no hayden emote

grim sparrow
tepid olive
#

icleaner pro fr

#

just dont install jdk if you dont need jdk bro

grim sparrow
#

FUCK

tepid olive
#

id bet money u only need the jre

grim sparrow
#

I'm on A10

tepid olive
#

it takes forever to download lmao

#

but you dont need jdk bro

#

xcrun does not work.

#

yeah true

grim sparrow
#

Are you surprised though

tepid olive
#

AND SILEO CRASHED NICE

grim sparrow
#

poggers

tepid olive
#

sudo apt install openjdk-jre just that simple

#

oh nvm it’s cause i upgraded sileo

#

but xcrun isn't in the toolchain

#

@tepid olive how do I stop cmake from complaining about missing libdispatch?

#

i just opened sileo after like 5 months so had like 100 updates from procursus

#

i dont know what you're talking about

#

that question has no context

grim sparrow
tepid olive
#
CMake Error at /usr/share/cmake-3.19/Modules/ExternalProject.cmake:2748 (message):
  No download info given for 'libdispatch' and its source directory:

   /home/cameron/Documents/toolchain/llvm-project/build/tools/swift/libdispatch-prefix/src/libdispatch
#
cmake . -j12 \
-DCMAKE_BUILD_TYPE=Release \
-DLLVM_INSTALL_UTILS=ON \
-DLLVM_BUILD_LLVM_DYLIB=OFF \
-DLLVM_ENABLE_RTTI=ON \
-DLLVM_ENABLE_FFI=ON \
-DLLVM_BINUTILS_INCDIR=/usr/include \
-DLLVM_TARGETS_TO_BUILD="X86;ARM;AArch64" \
-DCMAKE_INSTALL_PREFIX=/opt/llvm \
-DLLVM_ENABLE_PROJECTS="clang;libcxx;libcxxabi;clangd;clang-tools-extra;lldb;cmark;swift" \
-G Ninja \
-DLLVM_BUILD_STATIC=ON \
-DLIBCLANG_BUILD_STATIC=ON \
-DLLVM_EXTERNAL_PROJECTS="cmark;swift" \
-DLLVM_EXTERNAL_SWIFT_SOURCE_DIR="/home/cameron/Documents/toolchain/llvm-project/swift" \
-DLLVM_EXTERNAL_CMARK_SOURCE_DIR="/home/cameron/Documents/toolchain/llvm-project/cmark" \
-DSWIFT_INCLUDE_TESTS=OFF \
../llvm   
#

loss

#

clone libdispatch there

#

to that directory

#

you realize you can upload in your own server

#

right?

#

swift-build sus

#

i do not have server

#

but toolchain bins work

grim sparrow
#

L

#

yes

#

they do

tepid olive
grim sparrow
#

but xcode-build won't for me

tepid olive
tepid olive
#

it's 64e

grim sparrow
#

well yeah

#

i'm on a10

tepid olive
#

wonder if A12 on 14.x could run mac bins

#

prolly not

#

lmao

grim sparrow
#

I mean

tepid olive
#

also

#

isn't xcrun in llvm or i'm dumb

restive ether
grim sparrow
#

clang 12 + 64e + 14 should work

tepid olive
grim sparrow
#

wait

#

I wonder

#

yeah

#

this won't work on a12 anyway

#

because of abi changes

tepid olive
tepid olive
restive ether
#

doesn’t odyssey have that too.

tepid olive
#

no(?)

restive ether
#

or is that just a check thing

grim sparrow
tepid olive
#

i think its a check only thing

restive ether
#

i’m pretty sure like all jailbreaks have tbat

tepid olive
#

I dont think so

restive ether
#

@tepid olive hello sir

tepid olive
#

cs had ios-toolchain tho

#

but no updates

#

what?

#

that's what iphone wiki says

#

kinda dumb

tepid olive
grim sparrow
#

bruh

#

that guide is pain

restive ether
#

i have access to all that. maybe i should edit some of it one of these days

grim sparrow
#

and infactual

tepid olive
#

imagine not giving apple $100 a year

grim sparrow
#

true

#

imagine

#

I give them £80 a year instead

tepid olive
#

sudo apt install clang llvm odcctools ldid BAM! ios toolchain with pro

#

with arm64e (old ABI) support

#

However it is not recommended to physically code the app directly on-device using the virtual keyboard and iFile/MobileTerminal, unless if you're a masochist or something.

#

i made my only shit tweak on my iPhone

#

no computer

#

cuz theos was broke on linux

grim sparrow
#

omg that guide is pain

tepid olive
#

now i have mbp but idrc because making tweaks isn't fun anymore

grim sparrow
#

lol

tepid olive
grim sparrow
#

cool

tepid olive
#

How about macOS binary?

#

didn't try that

grim sparrow
#

brb running arm64e on my ipad 1g

tepid olive
#

could i compile SwiftUI projects on iOS

grim sparrow
#

with a new enough toolchain and sdk, yes

#

SwiftUI is just a standard framework like UIKit

tepid olive
tepid olive
grim sparrow
#

true

tepid olive
#

libhogweed

#

true

grim sparrow
#

SwiftUI was ios 13 right

tepid olive
#

yes

grim sparrow
#

yeah

#

so any 13+ sdk will work fine

#

such as my SDK's with ✨ passion ✨

tepid olive
#

No

#

Wait

#

Could you...

#

ladies get you a man who sees "libhogweed" and knows it's from the Nettle project off the top of his head

#

I do

grim sparrow
#

lol

tepid olive
#

Cause I debianized that

#

Thought that was a weird name

#

And I probably fixed your debianizing it

grim sparrow
tepid olive
#

🙏

tepid olive
#

just read the commit description

#

it shows all commits

#

TRUE

#

my commits are usually quite obvious

#

Fix Cameron's package

#

yuh

grim sparrow
#

Dra1n repo back on Saturday kek

tepid olive
#

true

#

i wish hayden would be

#

back to not being here

#

on sunday

#

Lets get'er done folks

grim sparrow
#

I just want to finally grind my steam library

tepid olive
#
    * Debianize nettle
    
    * Debianize nettle
    
    * Remove `-1`

hmmmmm

#

we all used very similar commit messages

grim sparrow
#

lol

tepid olive
grim sparrow
#

yeah I try

tepid olive
#

then you can search git log to find stuff

grim sparrow
#

I was ill end of August to mid september so just rewrote a lot of my stuff

#

in both Dra1n and Signal

#

these were descriptive enough

tepid olive
#

i literally have no idea how to compile a SwiftUI app manually

#

imma try stuff ig

#

swift build maybe

#

damn it

tardy narwhal
grim sparrow
tardy narwhal
#

with the uwu’s yes lmao

grim sparrow
#

lol

tardy narwhal
grim sparrow
#

shush they're useful

tardy narwhal
#

got drilled back in the days to make short descriptive commits with details as needed for better browsing although I hate that I haven’t adopted tags

tepid olive
#

UwU?

#

16 Nov 2020

tepid olive
#

i use programmer art most times

#

except when i need to see observer directions, like with flying machines

#

in which case i use default + vanilla tweaks

half walrus
#

Anyone have a copy of liasse

tardy narwhal
#

the online prefs thing?

#

autocorrect pls

grim sparrow
#

Can someone make a programmer auto correct profile

tardy narwhal
#

i gotchu for the most essential one:

grim sparrow
#

lol

half walrus
#

was all local so i was hoping someone might've saved the .html

#

honestly should be rewritten anyways but /shrug

tepid olive
#

¯_(ツ)_/¯

wicked summit
#

Programmatic preferences >>>

tardy narwhal
#

I do recall there being a git account which starred & forked all sorts of jb projects, dunno the exact name but i can look into it. Might be there

tepid olive
#

forward slash shrug

#

mojav3

wicked summit
#

There’s a few

wicked summit
#

That fork everything

half walrus
#

remember saying "just right click the source is there"

#

:p

primal perch
grim sparrow
#

lol

tardy narwhal
#

gg then I don’t recall anyone might have gotten a copy of that

half walrus
#

please reference that any time someone insists i know wtf i'm doing

wicked summit
primal perch
half walrus
#

F

tepid olive
#

loss

primal perch
#

I caved for the arm64e

grim sparrow
#

bruh

half walrus
#

enjoy

#

iSH

#

and

grim sparrow
#

12 Mini or 3080

half walrus
#

UTM

grim sparrow
primal perch
#

Eh I’m doing more 3ds hacks now anyway

#

Less popular less people less cringe

#

Well those first 2 are the same but yea

grim sparrow
#

No community has no cringe

half walrus
#

less

primal perch
#

It’s pretty cringe free tho

grim sparrow
#

yeah

primal perch
#

Way better than this one

half walrus
#

yeah plenty of communities do

half walrus
grim sparrow
#

lol

wicked summit
#

Oh wait already done by a legend

tepid olive
primal perch
grim sparrow
half walrus
#

i need a 3rd monitor

grim sparrow
#

I need a 2nd woeuhh

primal perch
#

Wow this phone size is so much better though

tepid olive
half walrus
#

how big is it compared to the X

primal perch
#

A decent bit Smaller

half walrus
#

it always fucks with my head how big my X is after using my SE for a bit

grim sparrow
#

I'm still rocking an 8, size difference to that

primal perch
#

It’s slightly larger than a 5

wicked summit
#

iPhone 8 pog

half walrus
#

man i remember saying

#

imagine the SE but with the iphone X screen

primal perch
#

True

half walrus
#

n apple went and fuckin did it

#

bless

grim sparrow
#

lol

lethal ice
#

@primal perch

#

the goba

primal perch
#

Gm

#

True

tepid olive
#

this is enough for me, macbook is essentially a shitty monitor

#

no need for 3 here

primal perch
#

I have 1 1080p

grim sparrow
#

lol

primal perch
#

Nfr

lethal ice
#

"this enough for me" with $5000 of stuff

grim sparrow
#

I have 1 1440p intjallah

half walrus
#

no need for 3 here

grim sparrow
#

lmao

half walrus
#

ooh

#

get

tepid olive
#

macbook isn’t a real monitor

half walrus
#

Synergy

#

then it is

tepid olive
#

60hz monitor uhh

#

that’s what it is

wicked summit
#

I have a Mac air and that’s it

grim sparrow
#

Sir

lethal ice
#

i have two 60hz monitors

wicked summit
#

Send me computers

half walrus
#

it's FOSS u should be able to compile it

#

real time mouse/keyboard sharing between PCs

primal perch
#

60hz phone is fine but if I’m using a desktop I’ll buy a 144

half walrus
#

and ios devices

#

(w/ my project)

primal perch
#

Nobody really needs 120 on a phone for texting and shit

tepid olive
#

120 on phone

primal perch
#

It’d be nice but legit

#

Battery oof

tepid olive
wicked summit
#

I need 120hz phone for my among us gameplay

half walrus
#

apple's shit code does enough to hurt battery

primal perch
#

Even though the game’s capped at 30

tepid olive
#

that’s kinda what it is @tepid olive

grim sparrow
#

the first game I'm gonna play on my 3080 is Among us

tepid olive
#

i ain’t a mf with a water cooled pc or some shit

primal perch
tepid olive
#

among us is dead, never was a good game

primal perch
#

Me with aio

tepid olive
#

hated it since it became popular

tepid olive
grim sparrow
#

lol

tepid olive
#

eh

primal perch
#

Yeah I would’ve sooner got shit amd card

wicked summit
#

Is among us on Mac yet?

primal perch
#

For hack into shape

#

Hackintosh

#

Ok thanks

grim sparrow
wicked summit
#

Bruh but it’s not on my 2018?

#

Stupid

grim sparrow
#

idk if they compiled for mac

#

it's on too many platforms now

tepid olive
#

use Wine

#

it runs great

grim sparrow
#

considering how much it's died

#

true

half walrus
#

doesn't run on cat

tepid olive
#

i need to buy it tho

wicked summit
#

Wine just annoying

grim sparrow
#

IDA runs great in Wine

half walrus
#

i had to boot a windows vm to play it

grim sparrow
tepid olive
#

not like i care anyways

grim sparrow
half walrus
tepid olive
grim sparrow
#

yeah ik

primal perch
#

Except for analysis single threaded lookin ass

half walrus
#

x64 on an arm pc

primal perch
wicked summit
#

Also have to use wine for my SNES hacking adventures

primal perch
#

Otherwise good

wicked summit
#

Cuz everyone makes shit only for windows

half walrus
grim sparrow
wicked summit
#

Wineskin sounds like white skin, kinda fucking racist

tepid olive
#

fr

primal perch
tepid olive
#

why use 7.5

half walrus
tepid olive
#

what’s the diff with 7.0

grim sparrow
tepid olive
#

nobody could give an answer

half walrus
primal perch
#

Features

tepid olive
#

ok

half walrus
#

7.5 is better

primal perch
#

Better decomps

half walrus
#

dyld shared cache extraction

tepid olive
#

cool

primal perch
#

Dark mode

half walrus
#

better decompilation

primal perch
half walrus
#

themes

#

less bugs

grim sparrow
wicked summit