#development
1 messages Ā· Page 487 of 1
@grave sparrow can confirm
like passing the index just works
since its an array
linux has plutil tho
Or just open it in python with plistlib
That's what I do most of the time
snaputil makes more sense than snappy for managing snapshots
Would be nice if I could make my own binpack payload
you can easilly
you can pick any project you want included in procursus and build it for your CFVER and arch
But then how do I make checkra1n use that for it's binpack?
you don't
checkra1n doesn't remount by default
checkra1n only remounts when you open the app and press install cydia
/dev/disk3 on /binpack (hfs, local, nosuid, read-only, union)
so you can remount over dropbear ssh and exctract the tarball
that's unionfs not remount
I want to replace it's binpack with my own
you don't need to is what we are saying
you can't anyway
because checkra1n is obfuscated
F
Because I only jailbreak temporarily and would rather not make any changes that could persist.
make your own unionfs mount 
or maybe put it in /var but somewhere accessible unjailbroken so you can delete it later? idk lol
A union mount with a disk image seems to be the way I want to go
Never used union mounts before
why don't you want persistence of your own tarball strap? @sacred viper
I want to keep my file system as clean as possible. I'd rather not have stuff in the file system if it doesn't have to
How does the developer disk image work?
but with snapshot it will be back to stock with one command
you will have the same files with union and snapshot
snapshot is just persistent until you run a command to reset to stock
you can chose the files that go on both
theres literally no difference
I don't understand why you aren't understanding
su root
apt-get update
That should update all packages right?
sudo apt update 
š¬
who still uses apt-get
The best way to do what you want is to put everything in rootfs and not mess with /var at all. then persist your rootfs until you need to reset, at which time you can reset with snappy. It will be completely clean. As long as you don't modify /var.
Noobs like me that are trying to learn the way of the dark side
lol
Anything else is adding unnecessary hardship for the sake of feeling fancy tbh
Ok
Also doesn't rootfs get reset automatically when put into a non jailbroken state?
So I would just mount rw, add my root filesystem stuff and then it get's wiped on reboot?
like I said already
union and snapshot remount are identical
snapshot remount is persistent
union is not
rootfs is not automatically reset for snapshot remount
rootfs is automatically reset for union
capisce?
Ok
checkra1n binpack is not even union mounted
its its own disk entirely
union would befor root, /binpack is a checkra1n disk separate from root
it goes away after reboot
meaning you can chose your own binaries for union or snapshot
you have the power over all
I think I'll make a union image and have it automount that
yes but snapshot can be undone with no consequences
theres no root trace after snapshot is reset
lol
Fuck timezones
A friend of mine said Just wait until youāll have to support Mars time zones too Oh god
cuz it's unpatched
either modify ur patched one to work with x86 or whatever OR patch ur simulator sdk
then patch for whatever u are
then why do u need a simulator sdk
the same sdk u use for iphone will work

i've had that warning the other way around
i just ignored that error 
use clang12 or 11
i'm not even gonna bother with anything that's beta
because i've had the dumbest issues
real
Yo why does the homebar never lag out ??
ask the homebar
ask him nicely
Ight bet
maybe bring him on a date first it might be personal
He didnāt answer

This is a virus please don't download it
trolling
no point signing repos without a keyring package lel
trying to compile on ios
iPhoneOS.sdk from latest version of Xcode
i did ssh root@(ip)
what else can i type
same thing
wait whats theos i never even installed it
lmao
iostream with cout causes the same issue
link against c++ library
?
sudo apt install amy-keyring tale-keyring -y
amy-keyring exists now?
probably because i broke search slightly
they should be the exact same package 
there's one on my repo
but it should just use the procursus one
oh thatāll be why then
yeah right now they show as separate because they come from different repos although Iām gonna change this
real

chariz's is surprisingly not even the worst I've seen
wait till you see how big node_modules can be for an electron app lmao
even if you exclude the chromium runtime
where should i go to bother people about apple approved development
you could ask here but theres other discords for iOS dev, but theoretically you could also ask here
yeah thereās still people who might be able to answer here, but youāll never know unless you ask
I prefer Python, there isnāt such dependency hell yet
uh. how do I use variables from a function in c?
you just use the name of the variable? what do you mean?
naturally this just popped up on my timeline https://twitter.com/colineberhardt/status/1415569746855174148
So, I have a function, and I wanna use a variable from that function outside that function
@lime pivot
so then return the variable?
I returned it
then use the returned value
how?
what language
c
nvm I was overcomplicating shit. I dont even need functions for the code
I mean
I did
now the code gets stuck in a loop 
#include <cs50.h>
#include <stdio.h>
int main(void)
{
// Prompts for sizes
int start_size;
int end_size;
do
{
start_size = get_int("Choose a start size (must be 9 or above): ");
}
while (start_size < 9);
do
{
end_size = get_int("Choose a end size: ");
}
while (end_size < start_size);
// Calculate number of years until we reach threshold
int years = 0;
int llamas_born = start_size / 3;
int deaths = start_size / 4;
int result = start_size + llamas_born - deaths;
while(result < end_size)
{
years = years + 1;
}
// Print number of years
printf("Years: %i", years);
}
help
help ffs
it just gets tsuck
*stuck
after I specify the variables
Use discords formatting pls
triple backtick, then the language, then after the code triple backtick again
that while loop will never break
so what should I do?
you're never changing result or end_size so it will run forever
you need to change your block starting at line 21 so that the while loop doesn't run forever
#include <cs50.h>
#include <stdio.h>
int main(void)
{
// Prompts for sizes
int start_size;
int end_size;
do
{
start_size = get_int("Choose a start size (must be 9 or above): ");
}
while (start_size < 9);
do
{
end_size = get_int("Choose a end size: ");
}
while (end_size < start_size);
// Calculate number of years until we reach threshold
int years = 0;
int llamas_born = start_size / 3;
int deaths = start_size / 4;
int population_growth = llamas_born - deaths;
int result;
do
{
result = start_size + population_growth;
years = years ++;
}
while(result < end_size);
// Print number of years
printf("Years: %i\n", years);
}
WHY NOTHIN WORK 
why am i so dummie dum
while (end_size < start_size);
Are you sure that the end size should be smaller than the start size?
yes
do
{
result = start_size + population_growth;
years = years ++;
}
while(result < end_size);
The problem here is that result will never change past the first iteration
you need to reassign start_size and population_growth in the do while block
hmmmm
clang -ggdb3 -O0 -std=c11 -Wall -Werror -Wextra -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wshadow population.c -lcrypt -lcs50 -lm -o population
population.c:30:23: error: multiple unsequenced modifications to 'years' [-Werror,-Wunsequenced]
years = years ++;
~ ^
1 error generated.
make: *** [<builtin>: population] Error 1```
bruh waht?
ah ok
Thx for the help
It works finally
man, I should ask for more help here
better than google
Thanks Copilot
@import Foundation; pls
was about to say
coilet tat
True
What's the difference?
15 characters
i figured i could make like a storyboard app to figure this out and i am somehow more lost
are you following a tutorial?
objc or swift?
objc
https://uroboro.github.io/Learn-Objective-C-in-24-Days-Clone/blog_posts/38.html have you had a look at this?
This project was created with the intention of preservation
i think i know it exists
actually, @import explicitly uses modules, so if you haven't enabled modules for all #import/#include stuff then you can still use modules with @import. (and if you import the module, you don't have to link the framework explicitly)
Id argue thats worse. Not explicitly linking at compile time means you may have trouble seeing where something is being told to link from.
Gotta look thru buncha files for @import UIKit
-fmodules is required for @import to not throw an error that -fmodules isn't set
it definitely has been a godsend for fixing silly dependency chain problems, but true other than that it's probably not that huge a benefit over manually adding your frameworks to the link libraries step
it basically is Apple inventing a problem (they don't want #imports in Swift because they're ugly) and creating this whole modules thing as a solution
Apple Inventing a Problem: The True Story of the Swift Programming Language is now available in select stores
very good book, would recommend
7/7
they're doing boring
I donāt think itās inventing a problem as much as it is an imperfect attempt to fix a flawed system
C headers by themselves are weird
but modules do feel like patchwork
yeah I mean, it tries to fix things but I'm sure they knew they were creating new problems just as much as they were fixing some
Iām interested to see how c++20 modules are gonna fare in comparison
Hey so I need some help here, Iām testing a theme I have been working on ( I followed this tutorial https://pinpal.github.io/theme-guide/ ) and it didnāt work with snowbored, it never recognized any icons in the .deb pkg. Iām using an iPhone X on 14.4.2 jailbroken with checkrain
True. Dfu
i use c++ for everything (:
what does it decompile
python?


arm64 -> c
we need a python decompiler
I think it actually exists
to decompile python bytecode
nobody wants that
do you actually want it though
else uncompyle6 would do for py2 compat
gm weed man
gm gm
you should help me write the decompiler
if itās x86 iām down

i think it's gonna be possible to use the same decompiler for arm and x86
just have to write more code
ye itās somewhat straightforward
stack stuff is fucking with my head rn
oh god i had no fun with that either when i added simd-esque features to my 6502 implementation
no no, you need to encourage yourself
āi will make itā and then follow this by either getting head or another blunt
trust
yw

c++>
python is literally the best !
i have never used python so no comments
That's my code style, no comments...
LOL
Yeah, but I also like to use single letter variables lol
xcode has been installing over night
its stuck on this
wait how do i take screenshots on mac
nope
command shift 4 or command shift 5
hmm maybe just wait another 5 hours
I mean depending on your pc/laptop and internet speed, it could take a while
and extracting the file can take a while on older machines
its a 2020 mac with m1 chip
hmm then I would expect it to be quite fast
because it doesn't have a dedicated gpu I guess, iirc my macbook pro 2018 (but with a radean pro gpu) runs minecraft at +100 fps
it says it has a gpu
maybe its not set to use it idk
it was 1500+ dollars so i think it should
lol
yeah, but that's an integrated one
but more than 30 fps should be possible I guess
the m1 should be able to play Minecraft at at least 60fps
it might be limiting based on your battery saving settings idk
are you playing on vanilla
yea
no on chocolate
well, thereās one problem
nevermind thatās not it
ill try running it with more ram allocated
are you running it natively or through rosetta
im not sure
also would installing java make it run better
i dont have it installed lmao
^
idk how to check
if you arenāt doing anything special to run it then youāre running it through Rosetta
rosetta then
I donāt have m1 nor have I watched this video but the like to dislike ratio and the comments make me think itās good so you might wanna try it https://youtu.be/Ui1MAhBYIdk
Download the package & view the setup & launching instructions here: https://gist.github.com/tanmayb123/d55b16c493326945385e815453de411a
alright ill look into it thanks
np
bro this guy has whitewashed his name so bad

Lmao
hold up isnāt that the TED talk guy
So I just binwalked the checkra1n binary
TAN may back she lmao
yeah ong
hilarious because thats not even close to how you say his name
Objective C++ guides do not exist
what do u need a guide for
why not
just learn objective c and c++ and boom
is obj c++ mentioned in 24 days clone
āObjective-C++ is simply source code that mixes Objective-C classes and C++ classes (two entirely unrelated entities). Your C++ code will work, just as before, and the resulting executable will be linked with the Objective-C runtime, so your Objective-C classes will work as well.ā
so just learn objective c, and if you know c++. you can mix the two
cool then
smh
donāt make it overcomplicated lmao
What image formats can one mount on iOS
How checkra1n mounts it's binaries
swifty
I want to make a union mount with my binary tools
š§ mount
14.6
I think binpack is a dmg
How does one even mount a disk image
mount_hfs: Block device required
Any ideas?
oh hdik
Now how does one properly union mount it on top of the root partititon?
So I got the disk image working but now I need to figure out how to overlay it on the root filesystem
Okay guys. On a scale of 1 - 10: rate the difficulty of making a tweak like this: "Double tap on PiP video to toggle the displaying of the keyboard".
Thats difficulty level avacado
carrot, surely?
die
Nah carrot would be taking a snapshot of current frame in the PiP video
it still amazes me how your mom works
she's working from home and earning £500,000 a year with this one easy trick!

Didnāt she make powerup
also wanted to ask, anyone has a list of the iOS 13 public frameworks?
Apple docs would


ls /System/Library/Frameworks
done
Yea but I donāt have an iOS 13 device 

smart
Is powerup one of them
incidentally, no
I think that's being a bit dramatic. 
Well ofc I meant: [1-10) 
Pineapple is dramatic, avacado is perfect
It's just a makeKeyBoardVisibleFunction on double tab of a rectangular area. Surely you should use a rectangular shape to describe it's diffficulty. I'm thinking it's either a saltine or a graham cracker level of difficulty.
Shit a saltine's a square.
Maybe I'm not up to make this tweak after all.
)1-10(
wut
F
Looks like you know what you are doing, its definetely a pickle
good thing i still have this pickle
wait but when i ran the classes methods i got apple, not pickle
Ha, but I wonder if a lot of people start out with such simple tweaks like I'm planning to (I'm really gonna make this). I mean, I'm well aquainted with iOS jailed dev, but JB dev is different. It's pure RE and I'm kind of loving it. Is that why you're part of this game? For the fun of making iOS do whatever you want?
I dunno, I think my first tweak is lame af. But I'm making it, damn it!

Oh, and the reason I asked about the thoughts you guys had on the difficulty of this is because my original "first tweak" idea some of y'all told me was too ambitious, so I was basically asking if it was easy enough for a "first tweak", and difficulty avoacdo actually did indirectly give me that confirmation. 

@primal perch we have to get rid of kernels as they are inherently unsafe
true
I've seen that emoji used a lot in this Discord and I have no idea what it means. I'm autistic so maybe that's why I can't seem to gather through context, I checked it's "name" and "fr" has given me nothing. You helped confirm my first tweak wasn't too ambitioous this time around, now - I ask you for one more favor...what does this odd looking emoji face mean colliqioully?

Nooooo.
@primal perch @lethal kayak we need rust kernels
it just means fr
So many confusions.
they will be safe
For real?



we do
Well the face looks kinda happy but sorta difformed. So is it used like a smile-y face?
It kind of looks smug maybe.
no I like kernels that leak memory please don't make a rust kernel. Rust devs don't need more validity

Maybe I have to use it to understand it.
yes


My brain just went "Hmph" but with a smile when I used it.
so true
That is it's meaning to me now.
I'm baked af if y'all couldn't tell. But I'm being real, I don't really know how to shit-post like you guys do.
let data: *mut c_char = unsafe {
let buf_sz = 1000;
let buf_tmp = malloc(buf_sz) as *mut c_char;
memset(buf_tmp as *mut c_void, 0, buf_sz);
buf_tmp
};```
blursed rust

not really
See I know that emoji, that means it's some kind of shitpost. I aspire to be a better shitposter one day.
i dont hate it its just a solution to a problem nobody asked
Spend enough time here and you'll be one in no time
I also find rust odd, but it's not too bad.
Look what we did to @twilit jungle
fr
Did they used to not shitpost?
Woah....you guys are like shit-gurus.
I'll learn your ways.

I'll also code simple tweaks along the way; that sounds fun. I never plan on coding a complex one.
Hate complex ones fr
donāt we all āØ
I honestly don't know where some of you get the passion.
true
Some of your projects are insaneeeee.
maybe thatās why chariz gets hardly that many submissions
@lime pivot soon SurCenter perhaps
š
depending on how many more percentages of money i can get 
I'm a little nervous I'll spiral after my first tweak wanting to make more and more. 
hmm yes twickdeez nuts 10% fee
there are some changes coming to revenue share %
altstore team member 
Yes?
thatās the spirit!
Oh, yeah, I'm the only one.
Even Riley doesn't post in here.
And he coded all of AltDaemon.
I'm surprised he never came to you guys asking for help.
real
I'm confused?
in regards to what
Oh, AltDaemon crashes like all the time, it's not a jetsam thing, but he can't figure it out and just gave up and since it's a daemon it keeps firing back up and eventually works just fine - but I kind of hate all the crashes. Not to mention - the crashes cause problems with AltStore's cache which I have to help users with all the time.
is that a jailbreak specific crash or a general issue
Well, it's a daemon which can only exists as a jailbroken service. So I guess I don't know what you mean by jailbreak specific when it can't exist outside of a JB environment?
i meant more so a specific jailbreak itself not the concept of jailbreaks
since sometimes they handle things a little differently or have some quirks which can affect results
Oh, good point. It did start getting reported when Taurine came out, I never thought to test the two side by side.
@tepid olive day ruined i accidentally ordered the wrong thing at taco bell online
install open bro
Thanks for the help @restive ether! I'll test that.
open
i do vaguely remember there being an issue in misagent which caused taurine to have a little bit of a panic with taurine
and the front running suspect was altdaemon causing it
Also with how many support requests per day asking "how do I install more than 3 apps", I'm surprised Riley hasn't asked if any of you more advanced developers had any idea.
Loss
Big Fucking Loss
i see so many of those every day
Cause it's not like we couldn't solve that for our JB users, which is like half of our users, probably more.
new feature: AltStore silently creates multiple Apple IDs in the background 
hacker man
welcome to my ghetto story
Oh, I'm already working on that.
money on me, makes all these bitches horny
lool
ok well Iām curious about it but I do expect Apple to treat it seriously and block that quickly
But the user will forget they made it.
It just opens a webkit instance in AltStore to create a throwaway and then adds it to the keychain.
because anything that can make a fresh account automated isnāt good for the whole ecosystem
No no, not automated.
ok yeah true automated-ish
It's just easy enough for the user to "set it and forget it"
The throwaway accounts I can convince riley to sync the passwords (in the cloud) too because they're throwaways.
I mean regarding iMessage spam and app store fraud and all
So no more Apple ID limit right there.
But the 3-on device limit is something only a JB tweak can solve technically.
But I imagine it's stupid hard.
but yes Iād be very interested to see what you can achieve there
No one's ever cared to look into it so it's purely uncharted territory. No place to even start aside from poouring through all the headers.
do the old apps earlier than the 3 limit stop working immediately?
It's not that - iOS blocks the fourth.
Wait...if it blocks it.
There's gotta be some tools in the JBers devkit to scope out shit like why. Or why-adjacent.
as in, can you not revoke an old app id, make a new one, and get away with that till the next app needs (re)signing?
it feels messy but hey if it works
It's not an app id thing. That's server side in regards to signing / provisioning. This is an on-device 3-sideload-limit-hard-stop.
Has nothing to do with the signing.
aw boo Apple
I assumed it was just server refusing to create a 4th app id
But I could have 100s of sideloaded apps.
Nope nope, it's the device refusing to accept a fourth app.
But that did make me realize that I should just pay close attention to it's refusal.
And I do know that they added the on-device check in 13.3.1.
They also did it wrong.
They counted app IDs as one of the three, even though you get 10 of those per free account.
That was a bloody nightmare.
Still have users complaining about it to this day. 13.3.1 was the worst.
Alright, I've convinced myself, I'm gonna look into it now.
Too bad it's a static value stored somewhere obscure I'm sure. It would be kind of funny to me if it was just a value in a PLIST somewhere. 
you get 10 on the server but 3 on the device???
That's correct. Reason being that a single app can have more than if it has extensions like a keyboard extension, a notification extension, etc.
oh, extensions, I see
Each needs to be signed separately. We offer to chop them off in AltStore since lots of users don't care about widgets, for example.
I mean, honestly, I'm really hoping some of the legal attention Apple is getting will force them to loosen up on this, whether they like it or not
That's what we've been waiting for ourselves.
the least they can do is perhaps up the on-device limit to 10, and that's probably plenty for most users
AltStore is fun, but we'd rather do cooler things. We just need AltStore in order to do those cooler things.
just one number to change for a short-term quick fix
leave it to the community to figure out how to sideload, slightly intentionally because that helps to make sideloading still obscure and non straightforward to do
and slightly as a finger to the lawmakers they hate for forcing them to do good things for their customers 
Ha, I have plans to make it as easy as possible, but I'm waiting to put more energy than needed in AltStore until after this antitrust stuff pans out.
I'm getting rid of the need for AltServer in jailed mode.
And it's not a hack.
sounds interesting
They can't block me if it's not a hack. But it's complicated af to do even tho my PoCs work.
I need Riley on board. But he's refusing until I qualm all of his hesitations.
But I'm the dreamer of the group. I even have pages written up about making a jailed AltSubstrate, that one's a harder sell but I think I'll get Riley to cave entually when he's procrastinating.
Anyway, I still appreciate you hashing this out with me @lime pivot - because I stayed away from looking into the 3-per-device limit on JB cause I was thinking too simply. I kept thinking I had to find the 3-limit. But no, I just have to use libhooker to ignore it on-install. That's cleaner anyway as it doesn't modify any DB values / the FS or anything.
gm
gm
gm
gm
anyone know how to draw a square using uikit
Square.draw;
Ah you need to ask GitHub CoPilot to implement Square for you
F
time to create another uiwindow in applicationDidFinishLaunching


When are you gonna draw that arrow that kills me?
honda accord
die
I was just gonna add a bunch of hentai to your repo. If you gave me access to it
I will only accept AI when it is able it is able to be implanted in my brain
give it to me
so you have a login from new york on there
cmon
itll be funny
you know me
we went to highschool together
best friend
dont tell me you forgot about that one time we did that one thing together

im CA
@tepid olive im running on hotel wifi through private relay so this IP is useless kek
I'm NL
I'm DN
stfu
no

Look at your pfp
same to you

bro i don't have fur 
Otter have fur. Please educate yourself
Your mother
She is wonderful
Indeed
No u
No I'm not. If I am very honest with myself I am piece of shit
Wow
.
follow me on twitter smh
done
<@&865141610198990848>
@tepid olive what the hell is your fuck problem.
as a member of the British community, i disapprove of this scandalous message. innit
how am i supposed to fix this -
aarch64-apple-darwin-ld: ../../../../../../../cctools/ld64/src/ld/LinkEdit.hpp:2209: ld::tool::CodeSignatureAtom::CodeSignatureAtom(const Options &, ld::Internal &, ld::tool::OutputFile &): Assertion `opts.outputKind() != Options::kObjectFile' failed.
trying to compile libcddb
lol
sEzwNF9
buh
buh
if it's not a hassle yes
if it is a hassle no
SUSSY!
damn a lot of people here must have those too
nah we don't need special equipment for that
Does anyone know if you can select videos from photo library, both UIImageViewController and PHPickerViewController just crashes the app
nfr
// add two numbers and print the output
#define number int
#define begin number main(void) {
#define first a
#define second b
#define third c
#define equals =
#define and +
#define show printf(
#define me "%d"
#define the ,
#define result c
#define please )
#define one 1
#define two 2
#define end }
#define now ;
begin
number first equals one now
number second equals two now
number third equals first and second now
show me the result please now
end
ah thanks

the watermark adds seasoning
nfr
@soh_phunny
Its cause he used sugar for the seasoning

@soh_phunny
you can use UIImagePickerController
for videos as well
If youāre doing it from a tweak you may need to do a bit of trolling because of the privacy notice thats supposed to be in the plist
yea i remember doing it, i just accidently deleted all my previous projects 
wow no gm for me
@primal perch gm
treue
treue

acquiring chic fil a rn
gm
torl
trol is the new fr
tru
mans too old for chick fil a
understandable


Hello developers of r/jb
"developers"
yeah had to include your mom
I develop a relationship with Rolex's mother
a friendly one or sexual
Good keep her happy
good question
It don't matter to me as long as she is happy

im gonna say the nword
gamer shep
wtf
negative
negative for real
real

I don't think the stock image picker shows a permission prompt
I swear it did
hence you can traverse subviews and steal images that way š¤¦āāļø
Fun
the new PHPickerViewController is out of process which fixes that
Interesting
If your app requires PhotoKitās advanced features, like retrieving assets and collections, or updating the library, the user must explicitly authorize it to access those features. Provide a localizable message that describes how your app interacts with the Photos library.
picker is exempt from permission prompts ^
however interestingly, camera always shows permission prompt
and if you enable video as an option in the camera, it also shows an extra one for microphone
they feel unnecessary⦠although that's still only possible via UIImagePickerController, which again, in-process, so they really should keep them gated by permissions for now
wonder when or if we'll get an out of process replacement
i just realized
github copilot is gonna help people violate GPL accidentally
a lot
while I violate someone's personal space very much on purpose
Okay
PHP in iOS wtf

PornhubPickerViewController?
wtf apple
Pornhub do be a silicon valley hit
not wrong

their HQ is in my city and it's a massive scandal 
how scandalous
we love canadians

blackface prime minister not a problem
PornHub HQ we riot
--sincerely Canadians
everyoneās done blackface if you look hard enough

i did 5 years ago
real


My file on cancelling_shepgoba is at least 5gbs
I implore more people to send stuff
Capt and Ultra have been real useful in this regard
how do I get a .sh script to start on login in macOS?
I have this shell script Test.sh:
#! /bin/bash
FILE_TO_CHECK="/Users/test/start.txt"
EXIT=0
while [ $EXIT -eq 0 ]; do
if [ -f "$FILE_TO_CHECK" ]
then
/usr/bin/java -jar myapp...
automator is ok or not?
hmmm, no
gm
we all know you would use this
Yāall doing math wrong
https://twitter.com/ronaldhuizer/status/1329010578384322562?s=21
bruh
-[__NSCFData _encodingCantBeStoredInEightBitCFString]: unrecognized selector sent to instance 0x280ae6080
what am I doing wrong here https://gist.github.com/nyuszika7h/a022a5ea687d1ec828bf85999547b9da
eh I just reused my old code I sent here earlier, but now I'm stuck on "building package" 
why the hell is it stuck
I'm gonna throw this thing out of the window
oh it appeared stuck on building but it was lying
it was actually stuck on installing bc THEOS_DEVICE_IP was wrong

bruh
pulling my hair at another thing rn
Jul 17 16:57:16 Preferences(FakePassPrefs)[2752] <Notice>: Input salt: 57600425a11acf7976e9e2f24a5b33c2b1faeeafed02e54d16fd2c79543b1cb7a53a7e07f1359ce07063c47c1044663e17f4a0f93955429a5e8012ef1febf6c770f52e6c4ce60000af00000000000000e89dc9e4010000000000000000000000000000000000000000000000000000000000000000000000000000000000f03f
Jul 17 16:57:16 Preferences(FakePassPrefs)[2752] <Notice>: Salted output: 12345657600425a11acf7976e9e2f24a5b33c2b1faeeafed02e54d16fd2c79543b1cb7a53a7e07f1359ce07063c47c1044663e17f4a0f93955429a5e8012ef1febf6c770f52e6c4ce60000af00000000000000e89dc9e4010000000000000000000000000000000000000000000000000000000000000000000000000000000000f03f
where all the garbage zeroes and shit at the end coming from???
I'm using CC_SHA512_DIGEST_LENGTH for the bytes and * 2 for hex representation everywhere bc 1 byte takes up 2 chars
why is this not working right
ok theos was being annoying and not recompiling my util.m
had to rm -rf .theos/obj
I figured that's what's happening when I added an NSLog and it didn't get called
let me commit this working state to a private git repo so I don't lose it again
this is a private tweak rn so for now yes
I want to make it use PBKDF2 though
idk
which one is easiest to use in objc
also I donāt imagine something like PBKDF2 etc. will make brute forcing a 6 digit passcode impossible but I still want to make it as secure as reasonably possible
oh TIL
I've just created a repo to add my tweak but when I try to install it I get 'Can't find a source to download version 1.0.1 mean?
Cydia error right?
@tepid olive Yeah
See if this helps
one more reason for that error can be wrong architecture in your package
Ignore Elements part
'Architecture: iphoneos-arm' is that it?
armv9
exists somehow wtf
I'm trying to run it on an iPhone 6
Is Cydia the only way to install your tweaks, can I just send to the phone with XCode?
armv12.78
hopefully apple starts using armv7s again
truly the peak
donāt care
I miss wen Batchomatic was a thing
itās the pinnacle
Wait? XCode can generate a .deb package?
lol
use edge
use firefox and be secure bro
i think the benefits of using firefox outweighs the performance penalty but w/e

personally i donāt but itās nice to have the option
id add more telemetry to windows for 2% faster kernel or something
iād let them have telemetry if it meant not using NT
Personally I have seen the performance penalty between Firefox and Chromium based browser about the same
only thing is it has less market share than 24ā dildos rn
lol
rip
i know one person who uses bsd














/s





