#development
1 messages · Page 434 of 1
those hex bytes it shows = --- !tapi-tbd-v3
you probably downloaded the toolchain from elsewhere? or you used an older SDK
i think i used theosinstaller from the jakeashack repo
which i think i installed the 13.1 sdk
Perl installed
Downloading theos...
Installing theos...
Updating theos...
Fixing compression level issue...
Getting rid of arm64e support (that'll only work on macOS)
Downloading SDK...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 274 100 274 0 0 1957 0 --:--:-- --:--:-- --:--:-- 1971
Extracting SDK...
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
unzip: cannot find zipfile directory in one of iPhoneOS13.1.sdk.zip or
iPhoneOS13.1.sdk.zip.zip, and cannot find iPhoneOS13.1.sdk.zip.ZIP, period.
Done :)```
^ thats what happens when i run theosinstaller 13.1
not recommended, should always use the official instructions https://git.io/theosinstall
alright
period
@lime pivot which one/s should i keep
absolute idiot, bouta boot you
nice ip
192.168.1.112

man watch out he's gonna hack you by internal ip
should
debugserver 0.0.0.0:1234 -a SpringBoard works for me
although don't be as careless as me
jakes theos installer 
no ldid until you eat your vegetables
oh um
not procursus tho
using elu
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>platform-application</key>
<true/>
<key>com.apple.security.cs.debugger</key>
<true/>
<key>com.apple.backboardd.debugapplications</key>
<true/>
<key>com.apple.backboardd.launchapplications</key>
<true/>
<key>com.apple.diagnosticd.diagnostic</key>
<true/>
<key>com.apple.frontboard.debugapplications</key>
<true/>
<key>com.apple.frontboard.launchapplications</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<key>com.apple.springboard.debugapplications</key>
<true/>
<key>com.apple.system-task-ports</key>
<true/>
<key>run-unsigned-code</key>
<true/>
<key>task_for_pid-allow</key>
<true/>
</dict>
</plist>```
if you need it
ldid -e $(which debugserver)
not sure that network.client and network.server are actually needed…? but anyway
Is this fix gonna be kept close to the chest or something?
unnecessary
they might as well have just gave you a new one entirely
waste of electronics 😐 but at least they did it
odds are its fixed tbh
wdym unnecessary?
my logic board was just recently replaced and programmed to the original serial
and I know it's my laptop because they failed to fix the trackpad
kirb I just mean it as a legitimate question. Cause I am kinda curious on what the fix is and if bingner intends to share it or not.

need to edit the load commands to make it a universal macosx/iphoneos binary
and resign ad-hoc
other than that yes probably
my guess is you got bad ram or possibly bad cpu since the tsmc 5nm node is still quite new
there was a useful tool in checkrain that made binaries universal iphoneos/appletvos, don't think it's open source though
actually probably does work
I wonder what reason we have to not use codesign ad-hoc signing now
is this a channel I can send questions for help on development?
make sure to read the topic in the top bar / sidebar on mobile 🙂
gm
Hello,
I am new to Tweak Development and just getting the basics down.
I have made a simple hook into a UILabel, and I am wondering how I can hook just a singular UILabel not all on the application??
%hook UILabel
-(void)setText:(id)arg1 {
%orig(@"Test");
}
%end
Much appreciated thanks!
you would need to use FLEX to find something more specific in the view hierarchy that might be setting the label's text, and hook that
basically what @primal perch said
check for a certain offset from the thread's initial stack pointer base maybe, but if it uses alloca or something then ur done
I currently using FLEX to get the UILabel, so basically I just gotta look at the hierarchy for a better hook?
thanks much appreciated 🙂
very likely the view controller
look at the methods on the view controller, see if you can find anything that looks like it has something to do with setting that label text
if not a method for setting the text directly, look for a property with type UILabel and then set that property's text in viewDidLoad
its not arm bro
its apple silicon™️

it's ruby 
yeah brew still not built for arm
it will ask you when you install
a package
pretty sure
getting by with fully native homebrew packages so far but wish I didn't need homebrew at all
wen eta procursus
🧐
Procursus eta n0w
Alright this maybe a stupid question again but, Im just trying to hook into the dock to change background color which is MTMaterialView. Now I won’t hook that since it’s used through springboard so instead would I hook SBDockView?
perfect but once hooked into SBDockView then how do I also call MTMaterial....
check this header, theres a few properties it could be
maybe backgroundView

actually yea like 90% it is
because setBackgroundAlpha:0 hides it
perfect alright ill just try and see if I can do it not sure how to but ill try
i only know very basics
actully i know how to im just being stupid
lmao
sends brainfuck code that uploads sms.db
Sorry again but, Ive tried
%hook SBDockView
-(void)setBackgroundView:(UIView *)arg1 {
%orig("#147dfb");
};
%end
and get this issue
Tweak.x:3:67: error: implicit conversion of a non-Objective-C pointer type 'char *' to 'UIView *' is disallowed with ARC
_logos_orig$_ungrouped$SBDockView$setBackgroundView$(self, _cmd, "#147dfb");
^~~~~~~~~
Tweak.x:3:67: error: incompatible pointer types passing 'char [8]' to parameter of type 'UIView *__strong' [-Werror,-Wincompatible-pointer-types]
_logos_orig$_ungrouped$SBDockView$setBackgroundView$(self, _cmd, "#147dfb");
could you please exlapin what ive done wrong?
That is the wrong method to use. The argument being passed to setBackgroundView is a pointer to a UIView object. So, when you try to pass an argument of type char * it doesn’t like you lol
Unhhhh you tried to convert a char* to a UIView* you can’t pass a string as a UIView you should take a step back and learn what you are doing probably
It’s setting a view not a color
Alright cheers makes sense
I understand basic hook methods but just trying to understand how to edit MTMaterialView from hooking SBDockView
someone mentioned to look at the headers, https://developer.limneos.net/index.php?ios=14.4&framework=SpringBoardHome.framework&header=SBDockView.h
thats where we found -(void)setBackgroundView:(UIView *)arg1 ;
You can make a view if that color and set it but you don’t know if it even uses that method either
hmmm
On MTMaterialView there is a propertie UI *backgroundColor which when edited changes the color, but just unsure how to call that from SBDockView
colors are UIColor objects, not strings
have a look at the colorWith… methods in the Apple docs for more info
not sure who’s deleting your messages but just show your makefile
your iOS doesn’t matter, make reported an error so show the makefile
i use flex 3 patches to theos

.
has anyone fkx it
dude just show us the makefile
also please do remove the “cydia expert” from your twitter bio
that’s not the entirety of your makefile is it
the twitter thing was just a side note because just glancing over it it seem like you’re fond of pirates
nah keep whatever you want idc, just figured to let you know
k
in either case make sure the spacing in your makefile is universal and not mixed with tabs
solution is above
mate if you don’t know how to fix spaces, only google can help
u mean u want me to delete spaces all spaces and there is the fix
please google next time around


i forgot tab is enter
that's definitely not a valid makefile
It will come out as soon as you read rule 12 so go and read it ASAP
Eta is estimated time of arrival
So asking when a JB will release

https://iphonedevwiki.net/index.php/Hooking_Instance_Variables
If I hook into the class, then I can replace the objc [%c(class) sharedInstance] part with self right?
Within a hooked method of a class, self is said instance or class
Okay but would MSHookIvar still be useful within the hooked method of a class? or should it only be necessary for accessing other classes variables?
MSHookIvar can be used to read/write ivars on any object, be it self or not
Is there any workaround to using swift with tweaks on iOS 14 for arm64e atm?
mshookivar pain
multiple dylibs and moving them after installing.
I thought it was also broken when compiled when XCode 12?
batch moment
all i know is multiple dylibs is the solution
aight
Me: Why the fuck is it not installing, it seems like it's broken
Also me:
If your error message isn't just "fuck", are you a real developer?

real devs make up error messages before shit even compiles
you gotta be ahead of the curve

:
Searching fuck on my github is interesting
shits fucked
It's the equivalent of raiseException
Swift
if, elif & else do be alright
incoming match statements
compile one using uh
xcode 11
and one using xcode 12 with only the arm64e arch
then figure out which dylib to open
because lipoing the dylibs breaks them
if u need swift 5.3 with xcode 11 toolchain then use the open source one on swift.org
Wondering if anyone has came across this.
If you create an app and run from /Applications drawViewHierarchyInRect will fail on iOS14 and only iOS14.
I'm guessing this is an entitlement issue but I cannot figure out which entitlement is needed.
I think it's an entitlement issue as a similar thing happened with Kodi. Ref: https://github.com/checkra1n/BugTracker/issues/1826
The renderer would fail as it needed AGXDeviceUserClient as well as other things in com.apple.security.iokit-user-client-class
I'm thinking the same thing is happening with drawViewHierarchyInRect.
Seems to be specific to drawViewHierarchyInRect (which can draw a views hierarchy with 3d transforms) renderInContext however doesn't draw 3d transforms and works.
https://github.com/CharlieWhile13/ExampleXcodeApp I have them in this readme
No change with those entries. The app doesn't crash, drawViewHierarchyInRect just fails. It's not the implementation of drawViewHierarchyInRect because the side loaded version works without issues.
That was the first thing I looked for. Saw nothing.

Stuck for 3 days on this issue
Nothing drawViewHierarchyInRect just returns NO
If I push whatever it is i'm trying to draw to springboard of course it works, but not what i'm trying to do. Something inside that's blocking it.
Oh boy. I built with theos instead of Xcode and it does in fact work. No idea why the Xcode build didn't guessing the entitlements not getting read but it's defined.
Thanks again.
yes
Signing how I have since iOS9
When I built with Xcode I would sign with ldid after. Just how i've always done it.
I don't know after this iOS14 my dev environment is all over the place.
2 Xcodes, other toolchains, etc.
Just glad it finally works.
i think once developers have to stop supporting iOS 13 it won't be a big issue
since the xcode 12 toolchain works with iOS 14+
and i doubt apple will change the ABI immediately again
It's hard to stop supporting other firmwares.
loss
yeah if only we could see the source 
really?
iirc kabir couldn't find it
the ABI stuff isn't there
the PAC stuff is already upstream right?
cringe
bad toolchain
how would i fix?
u0
eek
ok
hold on
clang, ld64, odcctools, make, ldid, git, grep, rsync, xz-utils, ca-certificates, perl
install all of those
Is there a pbcopy equivalent in the iOS terminal
I just cat my ssh key and now I want to copy it
[[pasteboard-utils]]
thank you 👍
im not
i have unc0ver 14.3
oh wow you just compiled it
nice
ok thanks
yeah thatd be nice
thanks a lot bro
let me just make deb lol
alright go for it lol
this should work, CF 1700 so
just debug the debugserver
lmao
👍
what is cf 1700
corefoundation version 1700
aka ios 14
shouldn't matter cuz i'm using general stuff but
yeah
oh ok sounds good
@upbeat wyvern are you aware that "bold text" being enabled causes a heck load of jailbreak apps to crash on iOS 14 with both unc0ver and checkra1n? Is this a substrate issue?
Oh really?
ping
Oh cam just offered me a link
it's an entitlement fuckery
_ _
Ahhhh yes all non-sandboxes processes need to specify their user client exemptions with iOS 14
I discovered this when using ioscan
Didn't think how it would break apps too
I don't think all of those keys I'm giving are actually needed, I just know that most of them are 
If you add "IOUserClient" it allows all of them so you don't need to specific them manually
That reverts it back to iOS 13 behaviour
No as in add it to the com.apple.security.iokit-user-client-class array
That array is the array of all user client classes that are allowed (and their subclasses)
All user clients are a subclass of IOUserClient so adding IOUserClient allows all of them
does the check and u0 app still have that issue?
the original issue was still open so i suppose that’s not surprising
Meh
Add this entitlement to stop your app crashing on launch on iOS 14: xml <key>com.apple.security.iokit-user-client-class</key> <array> <string>IOUserClient</string> </array>
ty sir
very nice
I'll update that in my shit now 
Am I wrong
I've seen your code to do it
It's wack
Eluchbratus libtapi does not support the ios 14 sdk
I know this is late but that will not work btw
Use a procursus jailbreak or lower your sdk vers
you cannot use OTA sideloading (itms-services://) with a free dev cert
even if you managed to export it
I know this would be kinda crazy but
Would it be possible to Port mpv over
Like add it to procurses
so try an ios 13 sdk?
Ye
ok
Heyy does anyone know a good tweak for clearing in-app cache for iOS 14.3 like cacheclearerX
Just tested this and it works. Thanks again bro 👏
how did my shit just stop working
WAIT
@grave sparrow I just noticed
you don't even need that
One of the entitlements signal has is allowing me to use my tweaks preference file in userdefaults
I've just noticed now
lol

wait it isnt just my tweak, how did I break all tweaks on my phone
Your tweak can be entitled for it
If you give the .dylib the entitlement you can do it that way afaik
idfk

I'm not using that in signal

I thought they were inherited from the process you were loaded in, and you could add more to the dylib?
Pretty much the idea behind entitlements is that abilities of your process are determined before hand, so they would be considered on process launch. Any dynamic libraries (dylib) loaded after that should have 0 say on what your process can and can’t do.
makes sense
@tepid olive tysm

What is this NSUserDefaults replacement?



why when i compile with clang 11 does ios 13 arm64e still break
i asked yesterday and i’ll ask again
xcode 11.something and clang 11.0.3

Full path as identifier? Thats confusing. Whats advantage of that vs using NSDictionary contentsOfFile...?
You say this class allows for read-write as well?
Settings.app
That sounds unlikely if this works in sandboxed processes
I very much doubt this would allow sandboxed processes to set preferences outside of their bundle
I would hope not at least
what're you guys trying to do? read and write defaults from different processes?
could you not use the global domain
ok.
@gaunt pewter what does it do exactly
.
how does that even work
decompressing everything in 4 seconds
it’s pretty cool for it to be that fast
wow
I have a repo question:
Cydia users are having this error with my repo, how do I fix?
so @gaunt pewter this reads control data?
and puts it elsewhere?
let me run my script on procursus
give me a few
yeah, deb files are just fancy ar-archives. old ass object format reused
ar
it’s still pretty intuitive though
@gaunt pewter how did you dl them all
is it possible to view the output from NSLogs if you dont have a mac?
can i filter to just my tweak using oslog?
that’s a thing bro
made it ages ago

just dpkg-deb in c# doe
for win support because win32 love
das cool
@indigo peak easiest way is to make all your tweak logs have a unique prefix to match on
^ and just os_log | grep [whatever that prefix is]
?
just searching Lyricify pulls my logs
searching?
since the classes are from Lyricify.dylib
we are talking about oslog
yeah
not console
lol
@upbeat wyvern + @surreal mountain ty both
oslog can probably filter by library tho
👍
No, doesn’t work that aY
/process name
Way
When nslog prints something it doesn’t know who the caller was
All it knows is the process it’s in and possibly some thread info
Yeah you can
#ifdef DEBUG
#define NotatioLog(fmt, ...) NSLog((@"[Notatio] " fmt), ##__VA_ARGS__)
#define DebugLog(fmt, ...) NSLog((@"[Notatio Debug] " fmt), ##__VA_ARGS__)
#else
#define NotatioLog(...) (void)0
#define DebugLog(...) (void)0
#endif```
i wonder how console.app filters it then
__FILE__, __FUNCTION__, __LINE__
thuis is what i use in production
It filters by pid, process name, or keyword
using Library as my dylib name never worked for me
but none of my logs have the word "Lyricify"
Hmm
ah fun my preference bundle dies when i build on mac for once
I mean it CAN see who the caller is
Librawry path i assume
I didn’t think it did that
wasn’t there some toolchain issue that u had to fix
Library
are you on xcode 12
i’m on 11.3.1 rn
Might need to get oslog updated to support that if it’s available
use 11.7
i have a fork ongoing but
havent really done anything to it yet besides refactoring
the ugly ass mf formatting
Well don’t say it like that if you want limneos to merge it lol
^
i don't really care if he does or not
not my problem
the plan was to throw it on procursus
limneos doesn't appreciate "general changes" either
@upbeat wyvern does ur linux toolchain include swift
@surreal mountain that absolutely should not be stuck on random repos when there’s already a maintained copy on a default repo
github actions doesn't like cloning cameron's
All that does is confuse people
shrug
this is the part of open source i dislike
?
distributing stuff because you don't want to contribute to upstream
considering the fact that the gh repo hasn't been updated since Oct 23, 2018
there's nothing wrong with it i just personally dislike that
it hasn't need to be updated
ok?
Is it broken in some way?
this would be nice
what if i make a commit everyday on a repo just to make it seem active but it just adding blank lines instead
Yeah that’s features which are appropriate for a PR
jfc
unless ur rewriting the thing from scratch i see no reason not to PR
and that too u can still contribute that
Also generally best practice to match the source formatting to make the diffs easier unless there’s something seriously wrong with it then it should be a commit to fix formatting and another to do anything else
Which I constantly screw up myself
Tabs! Spaces! Random!
does cydia accept PRs?
nice
You can send me a patch sure but I can’t promise it’ll be merged 😉
brb refactoring that one file with all the code 
And lol
i think cydia needs a few changes just to atleast give people more of an incentive to contribute
on the topic of cydia, why was the piracy repo warning removed
Does Theos and ftt work on iOS 14.3 arm64e? I’ve tried installing it but keeps screwing my device up!
does it need to be there? ¯_(ツ)_/¯
no harm in having it
^
tbh i never even noticed
considering madness of malware and shit
sileo doesn't even filter out half the piracy repos tho right?
the ones iknow of it does
Mr Andres
lol
Prefer zebra
true
or captain cock
feel like thats something better to grab on download than have hardcoded
Anyone know an answer to what I asked before?
i still remember when nepeta was marked as malware cuz they advertised zebra
not the brightest moment was it 

at least they’re cool now
chariz advertises zebra
i guess


didnt chariz advertise zebra after the nep drama
actual m1 moment
but if adam put that in the native depiction i bet u chariz would be blocked too
zebra is the only modern and decentralized package manager that actually has some integrity so it makes sense
let's not forget the fake ads coolstar made
Sileo won’t run on bingner, Cydia isn’t really modern and Installer is something else
installer eh
i mean that part was clearly the same style as those fake early 2000’s ones so it’s hard to take those seriously 
coolstar injected fake ads @grave sparrow
@grave sparrow CS made it display fake malware ads on nep’s repo to make it look bad for a while
i thought nep was just trolling at first
yeah but the fact that coolstar has that much control and isn't afraid to use it concerns me
LMFAO
Maybe 2 years?
some people bruh
wdym
are u talking about nepeta
everyone
Some people have no sense of appropriate vs inappropriate use of control?
cuz this is one of the rare times that nepeta was completely in the right iirc
cs for fake ads
factual
@upbeat wyvern get out of my channel bro!!!!!!!
idrc cuz i dont have a platform
@gaunt mesa hush lol don’t go there

wtf
maybe you’ll shut up
@gaunt pewter what are procursus packages encoded in
or whatever the verbage is
control.tar.xz no worky
wait
is it zst
PLEASE
fuck its not
it’s not zst since most package managers don’t support it afaik
.tar.gz most likely
only one does
i think the bootstrap itself is in zst
in which case i need to dynamically find it
well it’s only procursus cydia that has zstd
wait no
yes
pro dpkg is patched to support zst iirc

isn’t procursus cydia’s zstd supporting zstd in repos
who asked?
@gaunt mesa who murdered the bot’s web host
it’s been ungodly slow the last few days
what
[[joe]]
this is gir u dumbass
it’s been so slow the last few days
the API is perfectly fine
????????????????????????
go ask slim
yeah your bot is dead
well i didn't write it
didn’t ask
parcility v2 bot is nice tho
Wait procursus modified cydia to change functionality? Where is the source
we’ve been hating him
diatrus/cydia
i think it's a patch in the makefile
should upstream that zst change
it would be good for elu too
thought that said memes wtf
it's just a root daemon capable of running commands
you sent the wrong one btw
or it's a service or sm
does elu have zstd actually
no
ah that
I didnt change any functionality
then how are they gonna make it work
@upbeat wyvern bump
gm hayden
I will not commit zstandard library to elu so it’s useless
true
Unless someone else would care to
true
and x86_64 lol
arm64 is /opt/
u should only be putting your own dependencies/shit in there
And then doctor complains
i use ~/lib and ~/bin
loss
/opt/fuck
why the fuck is zoom in my opt folder
zoom feels like malware when you use it
LMFAO
it does
china moment
such a fucking ugly app
also saves 200 lib files into there for some reason
and it’s so bothering
and 5 different versions of the lib
wow that’s cursed
why the sfuck
can i just hide the goddamn previews instead of them showing constantly???
who thought oh yeah this was a good idea
Cant wait to remove opt homebrew
cant wait to remove /opt/macports
whenever you get it working again 
should i install all 3
no
but will i
no
maybe
u don't need it
i know
and it'll break stuff
because brew loves using apple tools
procursus straps it own shit
and so does ports
Yeah my arm64 M4 stuff is /opt/elucubratus/bin etx

that aged poorly
wtf is m4
scripting lang
M420
besides that
[[m4]]
thats a joke right
M7 to M14
m1?
can’t wait to see what they come up with after M6
???/
Oh ok lol
yes m1 probably
m16
mstfu
I was working on m4 stuff yesterday
pp
ok
So I guess that was in my head lol
@upbeat wyvern wen eta elucubratus on the toaster bro
i need lldb on my toaster
need to debug ToastBoard
find a toaster that can run linux first and you might be able to actually do that
surely there are toasters with arm processors
darwin on da toaster
thats so overkill why would a toaster need arm
it doesnt even need the CPU that the calculators use
and microwaves
fridges most likely
smart fridges yes
samsung smart fridge lldb
and washing macbines
lol
shlorp
wale
Mac OS 9 on the calculator though
drowning is such a good song
@stuck wyvern
Was doing some REing around this and it looks like NSUserDefaults using CFPreferences which uses _CFXPreferences (would explain why _CFXPreferences has some setting value methods). Also found that -[NSUserDefaults persistentDomainForName:] uses the copyDictionaryFromSourceWithIdentifier: you were talking about so with some playing around you can probably use that API through NSUserDefaults. Haven't actually tried it though so...
what would be the best way to listen for notifications and get the content from said notification
NSNotificationCenter addObserver
stackoverflow
LMFAO
schlorp
me 2
/etc/hosts is fucked
why
repackaging 1300 debs
goodnight
LMFAO
christ
LMFAOOOOOo
curl pornhub.com
should've cloned some exploits and thrown them in there

libllvm10 oh no
openjdk
no

i'm cheating
for file in iphoneos-arm64
if file ends with deb
mkdir temp/file
dpkg-deb raw extract file temp/file
dpkg-deb build zstd temp/file finished/file
LMFAO
whats it say
how did this process go
how large is this shit
damn
what compression

the fuck
swift still fucing compressing
my tjhing isn't even doingt hsi in alphabetical order so i have no idea how done it is
@gaunt pewter by the time this conversion finishes i couldve justwrote logic to handle all compression types
taking so fucking long lmfao
convert every pro package to zstd lmfao
i'm trying to compare my script to yours but not all packages use the same compression
not sure why
29m 15s on m1 to convert all LMFAO
weird why that works
@gaunt pewter gave up on zstd shit
using raw packages from procursus,
1.1821 seconds
to read all files and create and compress Packages, Packages.{bz2,gz,xz,zst}, Release (with hashes)
i'll only do parsing
0.9331 seconds
yeah
for only parsing, not dumping
also @gaunt pewter this is under rosetta
non-rosetta
fastest
you can do x86_64
and i'll run both under rosetta, yes?
uh
from 
static link 

@tepid olive why
oh
it's bc depend shit
Imagine not being an expert at compiling
What
Keeep me company while i wait in line for rhre bthroom
Oops i did it again
yeah i can bypass hold on
Whats happening i know about procuesus
I might have made it
True
True
How tho?!
How what hayden
Mfs having sex in the bathroom man thats insane imneed to piss
Dang bro its u??
Wtf

Proce it what song is plyaying rn
Neighbors in paris
mfers getting shots poured in their mouths by some hot chick
No see ur no tehre
Ahpepned an hour or so ago bro crazy

No gender
Is there a way to strip symbols from my tweaks?
theos does it automatically when compiling for release too
so you don't have to worry about it
how can I compile for release? It is only compiling for debug atm
make DEBUG=0 FINALPACKAGE=1
give me your symbols
want backtrace?
there
there 2

i'm gonna ask you the same
so
get every file in procursus-tests
christ
don't understand that at all
for filename in os.listdir(f'{PACKAGES_DIR}'):
if filename.endswith(".deb"):
try:
finalControlData += tarfile.open(fileobj=ar.open(f'{PACKAGES_DIR}/' + filename).open('control.tar.xz')).extractfile('./control').read()
except:
pass
try:
finalControlData += tarfile.open(fileobj=ar.open(f'{PACKAGES_DIR}/' + filename).open('control.tar.gz')).extractfile('./control').read()
except:
pass
try:
finalControlData += tarfile.open(fileobj=ar.open(f'{PACKAGES_DIR}/' + filename).open('control.tar.bz2')).extractfile('./control').read()
except:
pass
finalControlData += bytes("\n", "utf-8")
revisions += 1```
what're you doing
wtf
wym
wtf does that mean
so like a dictionary
oh
yeah
well
let me humble you 
yeah i could prob do that but the lazy way of just finding two \n and then splitting there
mobile@iPhone
~/Downloads> ls -l
Permissions Size User Date Modified Name
.rw-r--r-- 476 mobile 7 Oct 2020 control.tar.xz
.rw-r--r-- 240 mobile 7 Oct 2020 data.tar.xz
.rw-r--r-- 4 mobile 7 Oct 2020 debian-binary
.rw-r--r-- 908 mobile 1 Feb 10:40 debugserver_10.0.0~5.3~RELEASE-1-1_iphoneos-arm.deb
assuming Aaron has a spare moment in order to send out the prize, hopefully within the next 24hrs!
true
Sorry for the delay. I may have picked the worst time to do a setup battle
@tacit spade bro literally just look at the results of the google form, no??
tell
whos joe
joseph mother
you make a compelling argument. Give me a few, we’ll do this proper










