#development

1 messages · Page 490 of 1

faint timber
#

I don’t remember how to to hook swift

#

It’s prob on pins or wiki

misty cradle
#

u can do it like this

#

call the hook whatever

#

%hook joe

  • method hook

% end

then in ctor:

%init(joe = objc_getClass("name")

cedar star
#

yeah, well theos complains about not being able to find "name"

#

let me try once more

#

"tried to set expression for unknowm class or function"

#

oh

#

i guess i need to put the weird mangled name in the objc_getClass

#

or do i need to include the headers i dumped as well at the top of my file

#

i probably do

tepid olive
#

Include them headers boy

cedar star
#

aye forgot

#

i forgor

tepid olive
restive ether
tepid olive
#

I sure love listening to DONDA on my streaming platform of choice at 12:00AM EST on July 23rd

restive ether
#

this mf is a walking traffic cone

#

with a sock on his head

haughty bear
cedar star
#

i got this rn

#

im probably doing something very wrong

twilit jungle
#

You don't need to do %init Logos supports dots in ClassNames for hooks for awhile now

#

Obviously it won't work if its a pure swift class though

primal perch
#

you do on old logos which this man probably has

#

nobody ever updates

tepid olive
#

make update-theos

#

is that right?

twilit jungle
primal perch
#

@shut stag

cedar star
#

oop sorry ping

cedar star
primal perch
cedar star
#

Managed to fix that, now it apparently complains about a dot in one of the methods..?

#

I found it’s an ARC thing but all the posts on this particular errors are in Chinese so uh

#

?

weary heath
#

std::clout

cedar star
#

Actually the dump is kinda bad as well, it doesn’t “know about each other” all the other Swift classes are replaced by MISSING_TYPE

primal perch
#

you forgot semicolon

#

mfw discord takes 2 seconds to render a couple pngs

twilit jungle
tepid olive
#

Yuki installs gentoo

primal perch
#

linux users trying to load up minecraft

#

@tepid olive is zig on pro yet

tepid olive
#

Soon

twilit jungle
#

how about now?

primal perch
#

whats that

gentle grove
tepid olive
gentle grove
surreal mountain
#

@tepid olive do we have working ecidecid yet?

#

for m1

indigo peak
#

you forgot the << std::endl;

#

smh developers

primal perch
#

all my homies use << '\n'

#

we dont need force flush

twilit jungle
#

Nah, you don't add the new line so the console is fked up for the next command

primal perch
#

all my real homies use putc

#

and printf

twilit jungle
primal perch
#

bro am i wrong tho

#

putc('\n', stdout);

#

speed

#

C++ << operators too slow

gentle grove
indigo peak
#

all my homies use c--

gentle grove
#

zsh is smart because it puts a white background % sign if the output doesn't end with a newline

#

instead of messing up your prompt

twilit jungle
#

Imagine expecting a shell to add a new line at the end of command for you.

gentle grove
primal perch
#

bro true

#

clean it up yourself

#

thats the kind of "im not gonna free, let OS do it " mentality

gentle grove
#

.

#

i meant

primal perch
#

write good code

gentle grove
#

if there's bad programs

#

then your prompt isnt destroyed

primal perch
#

yeah sure im not complaining about the shell

gentle grove
#

complaiing about linux

primal perch
#

the developer should be the one not being a tard

gentle grove
#

true

#

based

primal perch
#

based

gentle grove
#

@gentle grove @primal perch Based? Based on what? In your dick? Please shut the fuck up and use words properly you fuckin troglodyte, do you think God gave us a freedom of speech just to spew random words that have no meaning that doesn't even correllate to the topic of the conversation? Like please you always complain about why no one talks to you or no one expresses their opinions on you because you're always spewing random shit like poggers based cringe and when you try to explain what it is and you just say that it's funny like what? What the fuck is funny about that do you think you'll just become a stand-up comedian that will get a standing ovation just because you said "cum" in the stage? HELL NO YOU FUCKIN IDIOT, so please shut the fuck up and use words properly you dumb bitch

primal perch
#

why you pinging yourself

gentle grove
indigo peak
#

to get his point across

restive ether
#

@gentle grove @primal perch Based? Based on what? In your dick? Please shut the fuck up and use words properly you fuckin troglodyte, do you think God gave us a freedom of speech just to spew random words that have no meaning that doesn't even correllate to the topic of the conversation? Like please you always complain about why no one talks to you or no one expresses their opinions on you because you're always spewing random shit like poggers based cringe and when you try to explain what it is and you just say that it's funny like what? What the fuck is funny about that do you think you'll just become a stand-up comedian that will get a standing ovation just because you said "cum" in the stage? HELL NO YOU FUCKIN IDIOT, so please shut the fuck up and use words properly you dumb bitch

primal perch
gentle grove
#

real

Today at 8:09 PM
@boba @primal perch Based? Based on what? In your dick? Please shut the fuck up and use words properly you fuckin troglodyte, do you think God gave us a freedom of speech just to spew random words that have no meaning that doesn't even correllate to the topic of the conversation? Like please you always complain about why no one talks to you or no one expresses their opinions on you because you're always spewing random shit like poggers based cringe and when you try to explain what it is and you just say that it's funny like what? What the fuck is funny about that do you think you'll just become a stand-up comedian that will get a standing ovation just because you said "cum" in the stage? HELL NO YOU FUCKIN IDIOT, so please shut the fuck up and use words properly you dumb bitch
shepgoba

Today at 8:10 PM
:rarthug:

twilit jungle
turbid bobcat
#

Would anyone happen too know what "BridgeBuild" means?

indigo peak
#

@cedar star i dont actually know how helpful this will be with what youre doing, but i wrote a simple thing for the calculator app

/* This hook can be named anything
since its being used in the objc_getClass function you can name this hook whatever */
%hook KeypadButton

// calling the method to change the background color
-(void)setBackgroundColor:(id)arg1 {
    // passing in the magenta color as the new button background color
    return %orig([UIColor magentaColor]);
    // * note, this applies to all buttons
}
%end

// calling ctor to use %init to inject the code
%ctor {
    // this class name was retrieved using flex
    // putting the hook you made before here uses the previous code in the "Calculator.CalculatorKeypadButton" class in the app,
    %init(KeypadButton = objc_getClass("Calculator.CalculatorKeypadButton"));
}```
subtle grail
#

hook deez nuts

indigo peak
#
%hook DeezNuts

-(void)setSizeIn:(int)arg1 {
  return %orig(12);
}
%end
#

12 inch diameter nuts

#
%hook Cock
-(void)viewDidLoad {
  [self removeFromSuperview];
}
%end```
#

you have lost penis privileges

indigo peak
#

uhm

#

im gonna have to pass on that

#

thanks for the offer but no

wicked summit
#

@developers gm

haughty bear
#

no and why are you asking here tr

gentle grove
#

guys

#

the AUR has covid

#

it just outputs the genetic code of coronavirus

twilit jungle
tepid olive
#

cat

lethal ice
#

gattaca

#

good or bad movie

twilit jungle
#

okay movie

#

Actually it would have probably been a good movie if I didn't have to watch it as part of school

lethal ice
#

i watched it in biology i enjoyed it

#

sad ending tho woeis

autumn ibex
#

Hi can anyone help me with a bypass tweak or flex patch for a bank app?

I tried making a flex patch but the app still detects the JB with this app last update so I try FlyJB, a-bypass, choicy, hestia, vnodebypass without luck.
Any help would be appreciated. Thanks a lot!.

This is the app :

Banca Móvil BCP by Banco de Crédito BCP
https://appsto.re/pe/35RxU.i

App Store

‎Con Banca Móvil BCP, realiza tus operaciones de una manera más sencilla y cómoda desde tu dispositivo móvil, con la seguridad que solo el BCP te puede brindar.

¿Qué puedo hacer?
• Consulta saldos y movimientos de tus cuentas y tarjetas de crédito BCP.
• Realiza transferencias entre tus…

cedar star
#
/var/mobile/theos/vendor/lib/CydiaSubstrate.framework/CydiaSubstrate.tbd:2:42: error: unknown bit value
archs:           [ armv7, armv7s, arm64, arm64e, i386, x86_64 ]
                                         ^~~~~~
 file '/var/mobile/theos/vendor/lib/CydiaSubstrate.framework/CydiaSubstrate.tbd'
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)```
cedar star
#

and i also get a bunch of these warnings

#
ld: warning: ignoring file /var/mobile/theos/sdks/iPhoneOS12.2.sdk/usr/lib/libobjc.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (arm64): /var/mobile/theos/sdks/iPhoneOS12.2.sdk/usr/lib/libobjc.tbd

ld: warning: ignoring file /var/mobile/theos/sdks/iPhoneOS12.2.sdk/System/Library/Frameworks//Foundation.framework/Foundation.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (arm64): /var/mobile/theos/sdks/iPhoneOS12.2.sdk/System/Library/Frameworks//Foundation.framework/Foundation.tbd

ld: warning: ignoring file /var/mobile/theos/sdks/iPhoneOS12.2.sdk/System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (arm64): /var/mobile/theos/sdks/iPhoneOS12.2.sdk/System/Library/Frameworks//CoreFoundation.framework/CoreFoundation.tbd

ld: warning: ignoring file /var/mobile/theos/sdks/iPhoneOS12.2.sdk/usr/lib/libc++.tbd, file was built for unsupported file format ( 0x2D 0x2D 0x2D 0x20 0x21 0x74 0x61 0x70 0x69 0x2D 0x74 0x62 0x64 0x2D 0x76 0x33 ) which is not the architecture being linked (arm64): /var/mobile/theos/sdks/iPhoneOS12.2.sdk/usr/lib/libc++.tbd
misty cradle
#

@tepid olive happy birthday big man

cedar star
#

great fixed it, had to use sbingner's stuff instead of coolstar's...

#

they should update either "theos dependencies" or note it on the wiki...

lime pivot
#

the docs were updated about a week ago

#

never mind, apparently iOS instructions didn't really get any updates there…

cedar star
#

ok uh

#

if i have a dump like this

#

how would I figure out the MISSING_TYPE?

#

like by the names and knowing the view hierarchy i know *label is a UILabel and highlightView is a CalculatorKeypadButtonHighlightView

#

but is there a way to figure out for sure?

lethal ice
#

that's a bad dump

#

it should say the type

#

actually idk with swift

cedar star
#

im using this

gaunt mesa
#

use classdank

indigo peak
#

even in flex the types are unknown

wicked summit
#

it's because Swift

indigo peak
#

does classdank have support for dumping swift headers?

#

or is it only objc

cedar star
indigo peak
#

makes sense

#

would you need something like nm and swift-demangle for it, or does that not get the guts of the classes and just the names

#

thats what i thought

#

i mean it sounds like a fun project

lyric timber
#

@cedar star I know nothing about Swift, but if this was ObjC and I saw MISSING_TYPE* label; I would decompile the init method looking for some label = [[UILabel alloc] initWithFrame:blah] kind of code

#

If this is Swift using UIKit you may see something similar

#

If this is using SwiftUI then god help you

cedar star
#

Okay then, let's say for example I'd want to change the UILabel of . to , ?

#

the button basically

#

how would i go about that

#

i mean the app is in swift...

#

and sorry ping

indigo peak
#
%hook UILabel
-(void)setText:(NSString *)text {
    NSString *str = [text stringByReplacingOccurrencesOfString:@"." withString:@","];
    %orig(str);
}
%end```
#

this is another way to do it

primal perch
#

thank you captain obvious

misty cradle
twilit jungle
#

acktually your solution wouldn't work 100% of the time

tepid olive
#

That way the asker still has to learn

twilit jungle
slender glade
primal perch
#

i should go work at a daycare

#

i’m amazing at spoonfeeding

tepid olive
#

Why dont you go work in a bell factory since u wanna act like a ding dong

twilit jungle
pearl sail
primal perch
#

nah that’s a chocolate pastry

#

so really i’m gonna go work for little debbie

tepid olive
pearl sail
#

I forgor 💀

primal perch
#

3” don’t get you far

#

economically and literally

cedar star
#

also i actually thought about something like that, why did i not do that...

#

me estupida

cedar star
grim sparrow
#

Why

#

Valery uses UITextView and attributed text (with a custom element for gifs)

#

Just hook NSString

tepid olive
#

thanks toilet cat

grim sparrow
#

It’s just a string with formatting for UILabel/UITextView

cedar star
#

epic

lethal ice
#

i used this exact command

#

either cock or weed

cedar star
#

ok great news it isn't UILabel apparently

lethal ice
#

that is logging self.text before it's set

cedar star
#

oh ye my bad

lethal ice
#

TRU

#

thank you for your service

#

or did i gift it to u

#

f

#

sexy tweak though

cedar star
#

yeah no change 😐

#

well then flex lied to me

lethal ice
#

what are you trying to figure out @cedar star

#

nah it's fine

cedar star
#

trying to set the text of the "." button to ","

lethal ice
#

where

cedar star
#

calculator

#

system app

#

the apple calc

lethal ice
#

set your language to a european one

cedar star
#

i meant via a tweak

#

im learning to dev

#

random idea

lethal ice
#

you should look for a bool in there somewhere

cedar star
lethal ice
#

i mean there's probably a bool you can change in a calculator class that will put it on "european mode"

cedar star
#

yeah but i mean i really find out what it is if not UILabel

#

i wanna figure this out

tepid olive
cedar star
#

its literally for the practice, i actually dont give a damn about if its a . or , in my calculator

lethal ice
#

true

#

i found it in flex

cedar star
#

oh wait im stupid maybe i shouldnt be hooking setText

#

i guess its initialized with it already

#

yeah but the label is likely initialized with the text, and it doesnt call the .setText at all

#

since it is static basically

lethal ice
#

if you use initWithText it might not use the setter

cedar star
#

^

cedar star
#

so probably not that

gaunt mesa
cedar star
#

it doesnt call the setter however 🤔

gaunt mesa
lethal ice
#

ye so i just checked and the dot has a different calculator button id than the comma

cedar star
#

oh?

lethal ice
#

in Calculator.CalculatorKeypadButton there's accessibilityCalculatorButtonID and it's 52 for , and 10 for .

cedar star
#

aye, i see it

#

i still just want to set the actual text

#

i dont know why it doesnt call the setter

#

yet there's no init with the text...

#

what does it do then

#

oo, there's also an usingCommaForDecimal ivar in Calculator.KeypadViewController

lethal ice
#

lol it's prob setAttributedText

#

oh true just set that

#

that's the bool i was talking about

cedar star
#

aight

#

is it possible it might be int?

#

i tried logging it, and it's 0 (false) as expected, but setting it doesnt do anything

misty cradle
#

instead of setting it with mshookivar

#

hook the getter and setter

lethal ice
#

doesnt matter if it's bool or int

#

as long as it's 1

#

viewDidLoad is probably setting it too early

primal perch
#

it need to be bool

#

int unsafe

lethal ice
#

gm

primal perch
#

gm

lethal ice
#

true

#

scoop writing fermi

primal perch
#

wtf true

#

opengl time?

lethal ice
#

@misty cradle gm

#

n decompiler

primal perch
#

oh ye

#

me and ghost doing ui

#

scoop left ui team

lethal ice
#

f

misty cradle
#

gm

primal perch
#

gm true

lethal ice
#

f

#

i no longer have access to ui

#

as of 10 seconds ago shep kicked me out

#

wtf

twilit jungle
lethal ice
#

wait really

#

f

cedar star
#

at least in this case

misty cradle
#

o

#

its an ivar fr

#

thought it was a property

twilit jungle
cedar star
#

yea

misty cradle
#

i would set it in layoutSubviews

#

/s

cedar star
#

fr tho

tepid olive
misty cradle
#

hmm

#

idk

#

viewWillAppear

#

check there

#

or didAppear

cedar star
#

viewDidAppear doesnt work either

#

hm

twilit jungle
#

or you could figure out where it actually uses it and then hook that method

#

or where it sets it

lethal ice
#

or you could smoke meth

primal perch
#

true

cedar star
#

yeah well that im not sure how id do

#

its a swift of a mess

twilit jungle
primal perch
#

then use a lighter

#

and then inhale

twilit jungle
#

hiding app labels is overrated

#

Hide the entire screen instead

cedar star
#

what do u mean exactly

primal perch
#

super funny

#

i laughed

hexed bolt
# cedar star

why do most tutorials have Tweak.xm, while I get Tweak.x after using NIC?

twilit jungle
#

Because those tutorials were made before those templates were updated to create .x file

cedar star
#

isnt .xm for like objc++?

#

or like whats the actual difference

twilit jungle
cedar star
#

yeah

gaunt mesa
#

meth.dylib

indigo peak
gaunt mesa
#

pls scrop

lethal ice
#

sure

gaunt mesa
#

thanks

twilit jungle
gaunt mesa
#

it has been done

lethal ice
#

f

gaunt mesa
#

has the tweak been cracked yet?

lethal ice
#

not been cracked

#

not for me

twilit jungle
#

false

lethal ice
#

a quality tweak update from me takes at least 12 months

#

it was fun to make my drm until it started causing problems

misty cradle
#

october is coming up soon

lethal ice
#

tr1 remember when we said sentro 2021

misty cradle
#

yes im still waiting for you to get to germany

lethal ice
#

bro that's 2022

misty cradle
#

wym

#

2022

#

u said august

#

.

lethal ice
#

did u not tell

#

i

misty cradle
#

u didnt tell me no

twilit jungle
#

August 2022 fr

misty cradle
lethal ice
#

im going january 2022

misty cradle
#

u said this year august

#

WTF

#

why january

lethal ice
twilit jungle
#

F

misty cradle
#

WTF

#

why

#

so late

lethal ice
#

i wanted to stay here another 6 months

misty cradle
#

i will be dead then

#

f

lethal ice
#

wtf

misty cradle
#

dont stay brother

#

come here.

#

america will brainwash you

#

come get brainwashed in europe instead

lethal ice
#

wtf

misty cradle
#

@lethal ice COME JOIN ME BROTHER

#

no more sentro in 2021

#

rip rip rip rip

lethal ice
#

doesnt matter which country im in

#

2021

lime pivot
#

nah

#

seriously don't devote too much of your time to DRM

twilit jungle
gaunt mesa
#

@twilit jungle sire what is ur banner

twilit jungle
#

Welcome!

gaunt mesa
#

down bad PensiveWobble

twilit jungle
gaunt mesa
primal perch
grim sparrow
#

Yikes

gaunt mesa
#

Original message deleted.

#

to what purpose

grim sparrow
#

Hello flying cat man

gaunt mesa
#

hello wind girl

grim sparrow
lime pivot
#

wind girl lmao

lime pivot
#

I hope that didn't offend

gaunt mesa
#

how would it offend

#

some people love DRM and some don’t care

gaunt mesa
#

why

lime pivot
#

tale.png

gaunt mesa
#

tale.png

gaunt mesa
#

i did some favicon hax

#

lol

misty cradle
#

wtf

lime pivot
# gaunt mesa some people love DRM and some don’t care

🤷‍♀️ like Chariz won't stop you from releasing any form of DRM whether basic and easily bypassed or super complex and obfuscated, but I just really can't agree with devoting more than a few hours to coming up with a DRM solution especially with how the community is currently

gaunt mesa
#

tri having too much fun rn

misty cradle
#

we r listening to kanye leaks

gaunt mesa
misty cradle
#

there is too much

#

idk what im listening to even

gaunt mesa
#

i’ll do it rn, push to master, and troll everyone with a 3.0 release that’s just 2.5 with DRM

lime pivot
#

I mean NewTerm will automatically get FairPlay DRM when I upload it to the app store lmao

gaunt mesa
#

but it’s free

#

and oss

tepid olive
#

kill DRM

wicked summit
#

NewTerm on Appstore

#

??

tepid olive
#

??

lime pivot
#

on da app store

tepid olive
#

⁉️

indigo peak
#

Checkra1n on appstore wen

left owl
#

hi, how to reduce tweak size? thank you
problem: i try to create a tweak with theos that hides dock background with 3 lines of code without preference, but it has 168kb after installed

#

someone in bigboss has a tweak cost 65kb for that

gentle grove
#

how do you not have 103 kb of space

left owl
#

i want to make it efficient

#

or i don’t fully understand what under ground that cost more space

#

or it can drain more battery

lime pivot
#

more storage required doesn't drain battery

#

the only way to drain battery and not know it is to write inefficient code. you'd still know if you wrote bad code because the phone would get hot with it installed

left owl
#

it gets hot sometimes when using safari for text reading in reader mode

#

then battery goes down real fast

#

maybe that site has many ads

#

and it remains 168kb after i added some tweaks

cedar star
#

168kgb is really negligible

#

but check out some ways on to make your app smaller, it should apply to any obj-c code i guess

left owl
#

i find some tweak.xm common.xm in makefile

#

it links to some #include

#

i have no clue what inside

lime pivot
#

@lofty echo I had one last idea I quickly put together before getting this ready to release 😁

lime pivot
#

so hot \🥵

lofty echo
#

🤩

#

Shame that I’ve lost my jailbreak, stuck in 14.4.2 pepecry

restive ether
tepid olive
#

Mr worldwide

#

Ne-Yo

pearl sail
sacred viper
#

I wonder if the Windows version of usbmuxd has wireless support for pairing apple tvs

pearl sail
#

Think that is apart of usbmuxd 2 not sure if Windows version of usbmuxd is using that version

wicked summit
#

gm

pearl sail
#

yeah they used a upstream kernel with various patches for USB support

faint lionBOT
#
dfu

DFU (Device Firmware Upgrade) mode is a mode which allows a device in any condition to be restored to a fresh version of iOS (not to be confused with Recovery Mode). You cannot keep data when restoring via DFU and you can only restore to a signed version.

To restore via DFU:

  • Enter DFU Mode
  • Once you enter DFU, the device should show a black screen.
  • Connect the device to a Mac/PC and open Finder/iTunes.
  • On the prompt that says "A device has been connected in recovery mode and needs to be restored" press "Restore iPhone" then "Restore and Update.”
indigo peak
#

dick fuck u

#

whats like the best way to send notifications through a tweak

#

libbulletin?

faint lionBOT
indigo peak
#

thanks ill check it out

primal perch
#

@lethal ice

indigo peak
#

@grave sparrow do libnotifications get pushed to apple watches or is it a on device only thing

#

do you know?

#

ok thaks

lethal ice
#

gm

#

getting whataburger today

surreal mountain
#

damn

#

good choice

#

ship me some?

indigo peak
#

@grave sparrow thakn you

#

it worked

#

One last question

#

is it possible to put like that lightning symbol in the notificaion

#

using libnotifications

#

from my 30 seconds of research i dont think so

primal perch
#

water burger

indigo peak
#

@interface CPNotification : NSObject
+ (void)showAlertWithTitle:(NSString*)title 
            message:(NSString*)message 
          userInfo:(NSDictionary*)userInfo 
        badgeCount:(int)badgeCount 
         soundName:(NSString*)soundName 
             delay:(double)delay 
           repeats:(BOOL)repeats 
          bundleId:(nonnull NSString*)bundleId 
              uuid:(NSString*)uuid 
            silent:(BOOL)silent;
+ (void)hideAlertWithBundleId:(NSString *)bundleId uuid:(NSString*)uuid;
@end
#

there doesnt seem to be a spot for that

#

i did userInfo:@{@"cock" : @"cock"} in it and the banner looked exactly the same

#

it looks like its json formatted so mabe the first cock needs to be changed to like an actual key

#

found this on apple docs

#

and user info is "A dictionary of custom information associated with the notification." according to apple docs as well

surreal mountain
#

so

#

i don't knw what apple docs you're loooking at

#

but

#

NSNotification and subclasses of it have userInfo so you can send information with the notification

primal perch
surreal mountain
#

but NSNotification isn't a push notification

twilit jungle
wicked summit
#

you want UserNotifications

twilit jungle
wicked summit
#

this looks pretty okay

surreal mountain
#

does that not fuck up the code signature

#

but

#

this is apple code signature which i cannot reproduce so

#

i am not entirely sure

#

i can test soon i suppose

gaunt mesa
#

ngl begoneNSO is a terrible fix

#

or mitigation

restive ether
#

bro just took out the entitlement nfr

gaunt mesa
#

ong

restive ether
#

rip bozos when they aren’t jailbroken

primal perch
#

imagine not running stock

#

semi untether mfers sacrificing 30% of their battery and 100% of their stability for a mf theme

surreal mountain
#

it works well enough

#

ill be the first to admit its fucking awful lmfao

#

but without spending hours, that was the easiest way

surreal mountain
#

tough luck ig

restive ether
#

it’s not even open source dog

primal perch
#

aren’t you white

gaunt mesa
restive ether
primal perch
restive ether
primal perch
#

so we do a little racism

#

just a pinch

#

🤏

tardy narwhal
#

a wee bit

primal perch
#

true

surreal mountain
#

thats the copde

#

its a postinst

#

thats iot

tepid olive
#

lol

weary heath
#

Couldn’t you copy it to a .bak file then restore the file on uninstall

primal perch
#

couldn’t you get some taco bell rn

surreal mountain
#

i pushed an update

primal perch
#

@here

gentle grove
#

@sage sapphiree

primal perch
#

@sage sapphiree

gentle grove
#

@sage grove

gaunt mesa
#

@here

gentle grove
gaunt mesa
gentle grove
#

i am here

primal perch
#

use arch linux

#

if you have an iq below 80

slender glade
#

are you

#

a windows user

gentle grove
#

i use

#

artix linux

#

i dont use artix

primal perch
#

🦅🇺🇸 🦅🇺🇸

gaunt mesa
primal perch
#

windows murica edition

#

30% more free

#

*still with telemetry since 2001

#

fuck the patriot act all my homies hate it

gentle grove
#

bobaOS

sage grove
#

huh?

surreal mountain
pearl sail
#

shit is bloated

lime pivot
#

I recommend kirberos instead

#

theOS is also alright

pearl sail
#

sounds sus

#

What about nixOS?

lime pivot
#

I'll nix you

tepid olive
#

Trollin

gaunt mesa
primal perch
#

Taco Bell's Cheesy Gordita Crunch

pearl sail
lethal ice
#

true gordita

worldly perch
#

Web dev fed up with XenHTML, ObjC noob here. Was trying to mess with the status bar, looking for a way to insert arbitrary items or at least to reorder existing items. Looked through every UIStatusBar* class I thought might be relevant, but I have no idea where to look or what to look for. Is this even possible, or am I going insane? Any advice would be appreciated

twilit jungle
#

Web and dev don't belong in the same sentence.

lethal ice
#

true

twilit jungle
#

As to the status bar idea, you may want to start with something 10x smaller and simpler

gaunt mesa
#

eeeeurt

primal perch
#

dont you dare point that at me

wicked summit
#

gm

indigo peak
#

shepgoba pointer troll

worldly perch
worldly perch
wicked summit
#

is there a way to see RSSI on the status bar?

#

vanilla-ly?

surreal mountain
#

RSSI?

indigo peak
#

i think its radar strength

#

but i could be wrong

worldly perch
#

¯_(ツ)_/¯

wicked summit
#

yea

indigo peak
#

wym vanilla-ly

#

im not following that word

wicked summit
#

I just looked at SBStatusBarDefaults

#

and it has a showRSSI property

#

by vanilla-ly I mean without jailbreak

indigo peak
#

@property (nonatomic,readonly) BOOL showRSSI;

#

ah

#

hmm

wicked summit
#

my RSSI is currently -44 floshed

indigo peak
#

cant you get it from doing smth with the phone app

#

i think if you call a number you get to a ui that allows you to set it

wicked summit
#

oh wack

indigo peak
#

yeah thats it

#

ill be the test dummy for you

#

doesnt seem to be working for me

#

like i get to the menu

#

and then i cant get it to go into my sb

wicked summit
#

whoa wtf

#

I did not know you could access that app

indigo peak
#

i knew about it for years but i never actually went to it since the guides to show the rssi requried you to hold your power button

#

and my old phones power button was borked

#

so i never actrually used it

#

yeah its not working on ios 14.3

#

Using a tweak it works

primal perch
#

anyone know how to get motivation back

#

i tried exercising 4x a week but still nothing

indigo peak
#
-(BOOL)showRSSI {
    return YES;
}
%end```
indigo peak
#

stop not not trying

main apex
indigo peak
primal perch
#

return malloc(1)

main apex
indigo peak
#

ah

#
def showRSSI:
  return True
main apex
primal perch
#

linux users acting like linux is more secure when in reality its because nobody makes malware for it

#

so its actually less secure than windows

restive ether
primal perch
#

am getting gains

restive ether
#

get woman

primal perch
#

am not getting woman unfortunately

restive ether
#

you just need to do the mating call

primal perch
#

shit u right

twilit jungle
indigo peak
#

ill take their place

#

my pro python code will be enough

#

right?

twilit jungle
restive ether
pearl sail
slender glade
sour halo
#

Fr

tepid olive
#

i get this error my friend said i need to have permisson on vector file can someone help me

#

How to have perm in vector file

#

Eh!

tardy narwhal
# tepid olive

afaik there are no Vector2/3 classes in c++ unless you’re compiling with msvc

#

create them yourself though, make a template and tada

tepid olive
#

i did

tardy narwhal
#

are you sure

tepid olive
#

Yea check it

tardy narwhal
#

well show your Vector2, apparently your code doesn’t like it

tepid olive
tardy narwhal
#

Vector looks fine as you didn’t even create it but took it from somewhere else

#

the error lies in your reading capabilities

tardy narwhal
#

take a look at the Vector2 struct again at the top of the file, compare the member variables and you’ll find your fix

tepid olive
#

Uhmm i am trying it till sunday

tardy narwhal
#

oh if you do, make sure it’s a modal

tepid olive
#

😩

tardy narwhal
#

you just need to revise your code

tepid olive
#

Alright let me

#

Thanks for help

#

🙏

slender glade
#

Yes

tardy narwhal
#

oh fuck

#

hold tight

unborn skiff
#

hey

#

heres a nice tweak

#
Enum.Keycode.VolumeDown:Connect(function()
local iphone = script.Parent
local remote = game:GetService(ReplicatedStorage).TurnOffIphone
print("Turning off the device...")
remote:FireServer()
end) ```
tepid olive
#

what’s the most efficient way to learn a new programming language?

indigo peak
#

you get an idea of something you want to do

#

and then you try your damn hardest to do it

#

in new language

#

and thats how i learn

#

and also looking at other peoples code to get a grasp of how to do things

tepid olive
#

it’s just better to directly try to do the thing you want to do then learning the syntax directly from a guide?

indigo peak
#

well yeah syntax is good and all but theres only so much you can learn from a guide

#

so i suppose syntax is useful when making code, so yeah try to learn syntax

#

and then jump into some ideas

high citrus
#

Just install github copliot, and skip the learning part trol

indigo peak
tepid olive
#

GitHub copilot licensing issues

high citrus
#

And remember that there always are things that can be improved after your first try, so you might want to revisit the project afterwards

indigo peak
#

can conirm

#

making it return 1 compiles without an error

#

so does 0

#

0 is false and 1 is true

#

bc binary

#

no error

#

no error

#

wait

#

i put 2

#

and it compiled

#

oh yeah

#

i think it casts as a bool

#

instead of looking for typeof bool

#

interesting

#

return (int)1 works

#

how ironic

#

youre in the r/jb discord server

#

i think that says enough

#

return [NSNumber numberWithInt:1]; also works

#

and people say coding is hard

#

smh

#

i finally managed to break it by putting a string

twilit jungle
primal perch
#

#define SCOOP_LAID 0

#

@lethal ice

#

f

twilit jungle
#

F

primal perch
#

#define DGH0ST_LAID 0

twilit jungle
#

F

primal perch
#

#define JYNX_LAID 3

#

where cash

twilit jungle
primal perch
lethal ice
#

f

#

#define SHEP_LAID 0

twilit jungle
#

F

primal perch
#

f

gaunt mesa
pearl sail
#

#define AARNAV_LAID 0

lethal ice
#

f

#

#define CS_MAJOR_LAID 0

gaunt mesa
gaunt mesa
pearl sail
#

#define HAYDEN_EXISTS 1 != #define CS_MAJOR_LAID 0 && #define PROGRAMMER_LAID 0

twilit jungle
#

Thats not how... okay

pearl sail
#

That probably doesn't make any sense but you get the gist

#

Not a programmer

twilit jungle
#

F

wicked summit
#

this mentality is why we now have a games that are 800GB with hundred gigabyte updates

twilit jungle
#

also why electron exist

pearl sail
pearl sail
gentle grove
#

sure but when it adds up

primal perch
#

bad

#

you literally use linux

#

but now you don’t care about 3 bytes

gentle grove
#

and also from my understanding you were talking about two different types

#

or something

primal perch
#

linux users shit their pants when windows uses 1 bit

high citrus
# twilit jungle also why electron exist

there should be a utility that symlinks the electron framework (probably chromium) from an existing app, to reduce its size. Because we don't need each app to carry it's own chromium/electron. Bonus points if you can change it to safari

primal perch
gentle grove
#

I hate Linux users

restive ether
#

happy birthday big girl

gentle grove
primal perch
#

@vivid dew happy birthday big girl

gentle grove
#

It's not a symlink though

#

Just a shell script to exec electron /somewhere/app.asar

primal perch
#

guys what if we just have the operating system as one electron / chromium instance then all windows can be forked off of it and use js with no bloat

high citrus
#

hmm interesting

twilit jungle
#

Or how about this, get rid all of them and only use native graphics

primal perch
#

way less ram and all your programs can be js

gentle grove
#

@vivid dew happy birthday

primal perch
#

sex any women?

undone nest
#

@vivid dew happy birthday

gentle grove
#

@undone nest how do I revive you

undone nest
#

you cant

gentle grove
#

WTF

undone nest
#

i have passed away

gentle grove
#

WTF

#

there must be some way

tardy narwhal
#

web devs need to stay the fuck away from creating desktop software

high citrus
tardy narwhal
#

sounds like a similar adventure to using the win32 api or is it worse

#

i will strangle you one day triangle

primal perch
primal perch
high citrus
#

If you call python code legacy, then you probably have never seen real legacy code uhh

tardy narwhal
#

legacy python as in py 2.x perhaps

twilit jungle
#

ram doesn't care about you either

high citrus
tardy narwhal
#

try visual basic if you need legacy lmao

#

or ABAP if you feel courageous

high citrus
#

uhm don't know pascal too well, but probably yeah

#

It does generate very small binaries though, so if you need something lightweight

primal perch
#

i’d rather use rust than go

#

go is an absolutely useless language

#

rust at least attempts to solve a problem (albeit in an annoying way)

restive ether
#

they know what’s best for devs too

primal perch
#

you right bro

restive ether
#

rust lame

#

static depends

#

gross

primal perch
#

static kinda good tbh

#

better than visual c++ dependency dll hell

restive ether
#

that’s just a M$ moment

pearl sail
#

@vivid dew happy birthday big girl

high citrus
#

Uhh it happened again, after trying a ldrestart

#

I’m logged out from every app again :(

primal perch
indigo peak
#

@vivid dew happy birthday!

tepid olive
#

@vivid dew happy birthday big man

primal perch
restive ether
#

does it happen with userspace reboot too

primal perch
#

does it happen with userspace reboot too

restive ether
primal perch
#

who asked

restive ether
#

yeah that

high citrus
#

Uhm I’m scared too try (because I just logged into many apps again), might have something to do with my debug tweak (that hooks into a framework and logs stuff in a file), but that might be unrelated.

misty cradle
#

u said this yesterday already

#

deja vu

#

i saw u saying this in my dream

indigo peak
#

because it happened again

#

but again again

misty cradle
#

no no

#

like exactly same

high citrus
#

Wow

#

What else did I say, did I leak something about my next release?

misty cradle
#

no just this

#

i remember scrolling through it

#

im weird already, dont let me predict future toowtf

indigo peak
#

tr1 is actually lucid dreaming

#

as we speak

#

@misty cradle WAKE UP

misty cradle
#

we are stuck

#

.

#

i can already feel how someone feels, if i think about them

indigo peak
#

i had some pretty dank dreams recently

misty cradle
#

if i know them kinda

#

but sometimes also strangers

primal perch
#

sex

misty cradle
#

like wtf

indigo peak
#

none of which i get developers role 😔

misty cradle
#

i can think of a friend of mine and know how he feels rn

indigo peak
#

tr1 is too powerful

misty cradle
#

ok friend of mine that went to spain is tired rn

#

and probably sleeping

#

can feel it in my heartbeat

twilit jungle
indigo peak
#

this is his anime arc backstory

misty cradle
#

yep probably asleep

high citrus
misty cradle
#

i feel him bro

#

he tired

#

my heartbeat syncs theirs

indigo peak
#

i love how sem got developers role before any xp roles

#

its funny

#

@misty cradle are you drunk

#

or high

#

or both

high citrus
misty cradle
#

im serious

indigo peak
#

any percent speed run

misty cradle
#

this is a real thing

indigo peak
#

just gotta copy some code from ios 8

#

and paste it into ios 14

#

bam

misty cradle
#

even with rick before, i thought of him and felt really chill myself

#

went ahead and asked him

#

he was high

indigo peak
#

what else is new

misty cradle
#

i have text proof aswell

indigo peak
#

photoshop fr

misty cradle
#

bro i know when people feel bad

#

like wtf

#

what is this

#

magic

indigo peak
#

youre blessed by steins;gate

misty cradle
#

brb gonna go ask

primal perch
restive ether
#

this mf

misty cradle
#

happy birthday big man @vivid dew

high citrus
# misty cradle deja vu

I know how this feels, I’ve experienced it myself a few times. I recognized some oddly specific events, often dreamt about it a few days before. And as soon as I recognize the deja vu it’s over. Doesn’t happen often to me though

#

Pretty weird

misty cradle
#

its happening more often here

#

and i can more and more feel how others feel

high citrus
#

Over text too?

misty cradle
#

sometimes

primal perch
#

ntwerk

tepid olive
indigo peak
#

hot

indigo peak
#

wdym

#

like when the notifications go off screen in the notification center?

#

orrr am i just dumb

lime pivot
#

on whatever class is the collection view delegate, you can override (or %new if it doesn't exist) scrollViewDidScroll:

#

that's assuming the scroll view is the collection view, which I'd suppose it is? but I also don't know the lock screen heh

#

that method is fired for every frame of scrolling

primal perch
#

or just add your ui elements to the same view as the current lock screen date / time stuff

#

that auto scrolls up

lime pivot
#

true actually if that's what you want

#

though I'm guessing the collection view isn't always visible

primal perch
#

probably isnt

lime pivot
#

so your view could also disappear when there are no notifications

#

hm actually it's always a scroll view, if you scroll the "No Older Notifications" label shows up

#

and swipe down (at least on iOS 15, don't recall if that's in 14?) reveals spotlight, which would very likely be driven by scrollViewDidScroll: because that's the easiest way to have it follow natural scroll acceleration

#

scrollView.contentOffset

#

that's the exact point of what you see at the top-left of the scroll view's content area

#

so presumably assuming Apple isn't doing any crazy custom stuff, it should be {0, 0} initially and the Y will increase as you scroll

#

if initial Y isn't 0 then it's probably offset by the top safe area

twilit jungle
#

There is a specific ls method that gets called for the offset but REing too hard so might as well go with scroll view methods

primal perch
#

just look at what the current date/time view does (whether thats subscribing to delegate methods or something else) if you want the non crusty fix

restive ether
#

just smoke meth

#

and die

primal perch
#

but that takes effort and its an ios tweak

#

so quality was never to be expected

primal perch
twilit jungle
restive ether
primal perch
#

selling a couple binary patches for game pigeon at 1.99

restive ether
#

make the game higher res for $2

primal perch
#

ong

restive ether
#

epic

primal perch
#

we do a little anti aliasing

restive ether
#

ray tracing golf please

primal perch
#

RTX golf

twilit jungle
#

RTX tie

primal perch
#

true

#

rtx 3080 tie

twilit jungle
primal perch
#

i have rtx 3070

#

give me 3^7 dollars and its yours

twilit jungle
#

How about we bring that 3 down to a 2?

primal perch
#

sure if we change the 7 to a 11

misty cradle
#

i will run bot for u @twilit jungle

#

soon 5x 3070

#

and 2 3090

#

also 1 3080

#

finally we will be able to process frghost

twilit jungle