#development
1 messages · Page 614 of 1
its swift
yeah
line1
line2
line3
line4
line5
line6
line7
and i want
[
line1
line2
,
line3
line4
,
line5
line6
line7
]
rjb gang💯
gm
Is it possible for an app to get the sysdiagnose information with Private APIs (no JB)?
if they are allowed while sandboxed
depends on the apis
battery health for example isn’t anymore
yes, I wanted to know what APIs are used, and if they are allowed while sandboxed
iirc
But I can't find what it uses
main thing I want is UDID
but other things are helpful too
you can get UDID, appstore apps just aren’t allowed to get them
apple won’t accept your app if you use it
@ornate hamlet i managed to come up with this:
import Foundation
let data = """
line1
line2
line3
line4
line5
line6
line7
"""
let replaced = data.replacingOccurrences(of: "\n\n", with:"SEPARATOR")
print(replaced.components(separatedBy: "SEPARATOR"))
> swiftc -o main main.swift
> ./main
> ["line1\nline2", "line3\nline4", "line5\nline6\nline7"]
i replaced the newlines with SEPARATOR because that is unlikely to be in data, but if you have a better temp separator go ahead
Like the actual UDID, for signing. This isn't going into an App Store app, it for sideloading. The idea is that right now AltServer embeds the UDID into the info.plist, but that's not good when you are signing for multiple devices at once.
Which I am trying to do
So instead, I was looking for a way for it to detect it's own UDID
i just didnt replace \n\n with SEPARATOR and used \n\n as the separator directly
How do apps detect that your currently in a jailbroken state?
do they check files time stamps?
stuff like this
%hook DTTJailbreakDetection
-(BOOL)isJailbroken {
return NO;
}
%end
this one app iv been tweaking can detect that my jailbreak is active if I reboot it lets me run the app
HA
using tweaks to defeat jb detection
can all app store apps access files outside of sandbox
also why does orion need an orion runtime
wut
cant no app store apps access files outside the sandbox
isnt that the whole purpose of the sandbox
and thats why jailbreaking has a step for escaping the sandbox
they meant read files
apps can read for any file to check if it exists
that’s basically the foundation of all jailbreak detection
/.installed_odyssey 
it shouldnt be a thing at all
but apple doesnt care about security when tiktok and snap etc exist
nothing should be able to get uuid at all
i hacked my game to let me use manual camera after i try to adjust my aim manually midaim, and reset to autocam after i shoot or stop aiming
class SSG4GameLayerHook: ClassHook<NSObject> {
static let targetName = "SSG4GameLayer"
@Property(.nonatomic) var manualCamera: Bool = false
func touchBegan(_ arg1: Any, withEvent arg2: Any) {
manualCamera = true
orig.touchBegan(arg1, withEvent: arg2)
}
func setIsAlteringView(_ arg1: Bool) {
if (ballCameraOffset().x == 0.0 && ballCameraOffset().y == 0.0) {
manualCamera = false
}
orig.setIsAlteringView(manualCamera)
}
func ballCameraOffset() -> CGPoint {
return orig.ballCameraOffset()
}
}
first vid is before the tweak, second is after
i won't use it in game but it was fun to make
rate my code from 1-10
yeah imma remake in theos-jailed
why not just normal theos
thatll work on normal theos
oh cool
is there a good way to install theos and orion simultaneously
like I feel like using the master fork of theos rather than the orion fork if i'm going to compile something w theos
i saw someone ask something similar in jb or general recently and I think you may be able to accomplish this using apples "shortcut" apis... not sure if cell data and airplane mode are accessible from that or not 
if you are grabbing uuid doesn't that prevent you from getting an app on the app store
i honestly didn't think you could get uuid anymore
ideally
snapchat
device id

presumably that’s the unique ID that the appstore creates for you?
idk
could also be the advertisement id as well I think... which is semi-persistent from what I understand
i used debugserver and got a backtrace
@ornate hamlet what are you making?
pkg manager
tweakm8
yea
i was gonna write it in swiftUI for ios 14 only but i scrapped it
now its using uikit
supports up to ios 12 now
ima try to go lower
somehow yes
up to 12
well
i would think that sileo released around ios 12 aswell
got a logo for the application?
iOS 11
yeah
yea
i can make some in ps
oh alr
square
ok
ima head into ps and make on
alr
good luck on the package manager
poor people
wasting your time supporting ios 10 or 11
only if i could make tweaks in python 
especially with tele 🤢🤢
its as simple as 3 clicks
@ornate hamlet did you make the UI in XCode and port it over somehow?
for what part
i used xcode the whole time
wow
is there any documentation too how to make a UI with XCode and compile it too a tweak
i've been searching on reddit for a while and stuff
but i can't find any information really on it
in your tweak make a viewcontroller
then just present the view controller
found an old screenshot
yea im still new too all of this. I know a decent understanding of swift but obj-c is unlike anything i've ever coded in before the syntax is bs
[obj method]
the syntax for calling a method
objc is just a superset of c, right?
i don't know C
the syntax isnt that hard
its alot
Ive got a good idea
Try making both boxes thicker by a bit and make the radius match the ios app icon
@hollow harbor

Ayyyy
how do i get the icon of a package
next TODO: add search bar to packages tab
Weird bug, package id and package name are not matching
F
Done
Where
it’s on their website 🙂
Sorry you’ll have to ask someone else. I’m busy rn and can’t get the link
Got an exam in around 1 minute
advanced dev channel
I can't firgure out how to call a function within an instance of a class from the same instance of a class :/
in theos
bool manualCamera = false;
-(void) touchBegan:(id)arg1 withEvent:(id)arg2 {
manualCamera = true;
%orig;
}
-(CGPoint) ballCameraOffset {
return %orig;
}
-(void) setIsAlteringView:(bool)arg {
CGPoint point = [self ballCameraOffset];
if (point.x == 0.0 && point.y == 0.0) {
manualCamera = false;
}
%orig(manualCamera);
}
%end```
and I get the error Tweak.x:15:19: error: receiver type 'SSG4GameLayer' for instance message is a forward declaration CGPoint point = [self ballCameraOffset]; ^~~~ Tweak.x:22:8: note: forward declaration of class here @class SSG4GameLayer;
You need to add the class’s headers
I have to import like all of cocos-2dx
and have been having trouble with it
can I make a header w just those three functions?
No
should I modify @interface to use NSObject as it's base template
AKA @interface SSG4GameLayer : NSObject or should I do @interface SSG4GameLayer
First one
and do I even need to put any ivars inside it? I only need to hook functions
You only need to add them if you’re referencing them
is this okay? ```@interface SSG4GameLayer : NSObject
{
}
@property(nonatomic) struct CGPoint ballCameraOffset; // @synthesize ballCameraOffset=_ballCameraOffset;
@property(nonatomic) _Bool isAlteringView; // @synthesize isAlteringView=_isAlteringView;
- (void)touchBegan:(id)arg1 withEvent:(id)arg2;
@end
oh yeah that worked
sweet i successfully converted my tweak to theos
I used the header I just posted
and this ```#import "SSG4GameLayer.h"
%hook SSG4GameLayer
bool manualCamera = false;
-(void) touchBegan:(id)arg1 withEvent:(id)arg2 {
manualCamera = true;
%orig;
}
-(CGPoint) ballCameraOffset {
return %orig;
}
-(void) setIsAlteringView:(bool)arg {
CGPoint point = [self ballCameraOffset];
if (point.x == 0.0 && point.y == 0.0) {
manualCamera = false;
}
%orig(manualCamera);
}
%end```
is there a way to set manualCamera to be a property of the hooked class or is how I did it fine?
what should I use to inject and repackage this into an IPA, this ( https://github.com/crypticplank/iPAPatcher )? and iOS App Signer?
how can I do the equivalent of orion's target.$METHOD in theos, to get the result of a second method within the calling class before the hook for the second method is applied?
I'm trying to recreate this ```
func GetUnlockedHeadEmotes() -> Array<Int> {
return orig.GetUnlockedWordEmotes() + orig.GetUnlockedHeadEmotes()
}
func GetUnlockedWordEmotes() -> Array<Int> {
return orig.GetUnlockedHeadEmotes() + orig.GetUnlockedWordEmotes()
}```
You can try using %property
return [%orig arrayByAddingObjectsFromArray:[self GetUnlockedHeadEmotes]];
}
//- (NSArray*) GetUnlockedHeadEmotes {
// return [%orig arrayByAddingObjectsFromArray:[self GetUnlockedWordEmotes]];
//}``` this works but if I uncomment the code for GetUnlockedHeadEmotes I crash
but I really need the code to do what the swift code did and apply to both hooked functions, appending the results of the non-hooked functions together for each
oh
Yeah I know
that's why orig.* is so nice in orion
how can I do it manually but still be able to inject it into an IPA?
idk how putting the compiled package into IPA's works
but until iOS 15 jailbreak I want to maintain side-loadability whenever possible
can you send documentation
or an example tweak source
it'll look something like the example here? https://github.com/theos/logos
I got it working
return [_logos_orig$_ungrouped$SSG4EmotesDataManager$GetUnlockedHeadEmotes(self, _cmd) arrayByAddingObjectsFromArray:_logos_orig$_ungrouped$SSG4EmotesDataManager$GetUnlockedWordEmotes(self, _cmd)];
}
- (NSArray*) GetUnlockedHeadEmotes {
return [_logos_orig$_ungrouped$SSG4EmotesDataManager$GetUnlockedWordEmotes(self, _cmd) arrayByAddingObjectsFromArray:_logos_orig$_ungrouped$SSG4EmotesDataManager$GetUnlockedHeadEmotes(self, _cmd)];
}```
is the code that works fine
thank you @compact swift
go ahead, share it
Apple finally discovered that they can display a prompt instead of things mysteriously not working or closing to the home screen
i am a noob when it comes to this shit, anyone know how to fix? ping me
@heavy kernel i blame you
so just delete this folder?
that worked
thanks
works fine on my machine 

Can somebody help me compile and test if I'm doing my theme right(FIrst time making one and unjailbroken so can't compile or test)?
Its the top folder on this github page
I'm using this guide https://pinpal.github.io/theme-guide/
It should just change the calendar and calculator
Why cant you compile?
MacOS can compile for arm64e
Idk I probably could on linux but idk how
No you cant on linux
then impossible for me I guess
What are you on rn
15.0
Do you have a desktop computer with you rn
Yeah, windows and linux
Damn no mac?
Nope
I'm using this guide https://pinpal.github.io/theme-guide/, its the only one I could find
or is it outdated
certified programmer moment
I max have two tabs
theres nothing to compile
Well close enough
you cant "compile" a png
its more like bundling
and yes you can do this on your linux
It says to compile the theme into a deb
But bundling makes more sense
what linux distro do you use
Debian
perfect
you git clone your repo to your linux
then cd into it
run dpkg -b Ai-Icons/
and thats it
Oh, thanks, I thought cause every else said it needed like ios or arm flags idk
Thanks, one last thing are these depends actually needed or are they just examples
if I want to package my theos tweak into an IPA, should I use IPA Patcher, or what's recommended
i just use sideloadly
?
use sideloadly
to inject deb/dylib
sweet sideloadly looks perf
no you should display all of them, give the user the freedom to completely destroy their phone
on that note does zebra hide base structure? that would be a good one to scrub out also
remind me to check this
think zebra 2 shows it so I need to filter it specifically
that or, like, fix zebra firmware to set the tags on them properly
or whoever owns those packages
gir has a fancy remind me feature 👐
I despise Gir
better than bloo
Whats next
get some bitches
Naw i need colorful icons
too true sis
I'm having issues decrypting an IPA using the latest commit of Clutch, is there something else I should use instead, and anything I can run from an M1 mac rather than needing to decrypt on my phone?
no you cant decrypt it from your mac, that's the whole point
I meant to preface with that I'm on M1 and have a copy from the App Store for my macbook
I’m not sure then
You think you can test the theme now?, its a .deb plus should be fixed perhaps
Kk
Huh
Use gz conpression
Zipping Golf Blitz.app
Failed to find address of header!
Error: Failed to dump <Golf Blitz> with arch arm64
2022-06-14 14:24:39.093 Clutch[1132:15925] failed operation :(
2022-06-14 14:24:39.093 Clutch[1132:15925] application <NSOperationQueue: 0x107d371b0>{name = 'NSOperationQueue 0x107d371b0'}
Error: Failed to dump <Golf Blitz>
2022-06-14 14:24:39.094 Clutch[1132:15925] failed operation :(
2022-06-14 14:24:39.094 Clutch[1132:15925] application <NSOperationQueue: 0x107d371b0>{name = 'NSOperationQueue 0x107d371b0'}
FAILED: <Golf Blitz bundleID: com.noodlecake.ssg4>
Finished dumping com.noodlecake.ssg4 in 11.6 seconds```
arm64e
that’s perfectly fine
good jailbreaks support zstd, it’s fine to use it just wont work on u0

is there an alternative to Clutch that I should be using?
Soooo... Which ones then
why are you sending icons as a deb anyways
Idk that was the only tutorial I could find to do it, if there is a better way please tell me
well i don’t know what you’re doing
Do you know what the magnifier app bundle id is?
Sus icon?
Yea
com.apple.Magnifier
Case sensitive
FRICK
Cant forget SETTINGS
unc0ver user 🚩
Nah I'ma come back and get every icon for the settings app
I can't get appdecrypt, flexdecrypt, or fouldecrypt to work
I am going to try compiling fouldecrypt w libkrw support
I keep getting mmap errors
I dont have a choice

Is there a way i can make it so the pull to refresh doesnt start immediately after pulling? For sileo you have to pull a certain amount before it refreshes
@grave sparrow
I did
No results
bfdecrypt for iOS 12/13/14
cool
Ok @ornate hamlet This has a few more icon's and might work?
Not working
Sussy repo in sileo 

:troll”
programmatically?
Or storyboard
I’ve only ever done it with storyboards
I never really bother with laugh screens tho bc 99% of my apps are just for demos or smth
so no need to polish
L
Hmm idk then
It says it a cydia or sileo theme
Might be that you are using filza to install it rather than sileo
or I messed up somehow
idk
cool my theos-jailed tweak worked
but I had to make the package w/o codesigning and use iOS App Signer
are you actually installing the folder to /Library/Themes
Did I misspell something
export THEOS_INCLUDE_PATH := pathtodir
is this how y’all add a custom include dir to ur project
also this worked perfectly
That’s what I did at first than I started exporting stuff from common.mk since that wasn’t working
@ocean raptor https://procursus.itsnebula.net/
i set up the mirror
now i need to make the script autorun
Cron
6
alr
done
i can’t remove the procursus repo in sileo
guess i have to edit the file
noice
and you can download stuff nice
it’s pretty fast too
much faster than our single macbook in las vegas
or it’s some random server in germany i forget
Is it still in Las Vegas?
That's funny
It's an M1 Mac mini
Given to us for free by Mac stadium
pretty sure
All procursus packages are compiled on it
w🕳some
i can set up another mirror too i have an unused rpi 4 https://cdn.discordapp.com/emojis/985542875523719238.png?size=48&quality=lossless
No
capt when bs
am i good
idk am i
jk i would say im not bad
whats up
launchscren file storyboard, edit that, add whatever into it
huh
you put a path to a storyboard file iirc
then you add whatever shit you need
ok i gtg sleep, exam tomorrow
gn
gn
gn
bro this guy gets to sleep so quickly
messaged him 6 minutes after this and he’s just gone

side note: he revised for the wrong exam 

@lime pivot why is gitlab's dark mode so ugly
@ocean raptor why is linux's source code so ugly
@indigo peak why are you so ugly
class HomeTabViewController: UIViewController {
let refreshControl = UIRefreshControl()
let tableView = UITableView()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
self.title = "title"
navigationController?.navigationBar.prefersLargeTitles = true
//setup tableview
view.addSubview(tableView)
tableView.translatesAutoresizingMaskIntoConstraints = false
tableView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
tableView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
tableView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
tableView.refreshControl = refreshControl
}
}
why does the refreshcontrol immediately refresh
it still doesnt work
I like to think so, why?
You want a launch screen?
Why though? Launch screens are non-Apple-y
I can't think of any stock app with a launch screen
Are you loading something significant during launch time?
Then a launch screen is no good

Makes life easier too
With iOS 16 you can use Color.gradient

You can still do it sub iOS 16
Just not as concise implementation
If you're using UIKit
CAGradientLayer
SwiftUI has Gradient
No Swift?
😔
No Swift -> no bitches
But Swift performs better than objc

Ok
True
Swift be like "I actually need to know what type of variable that is"
Instead of just accepting my nil
Average if let user versus average force unwrap ! chad
__bridge
true

why even use swift then
Code in assembly exclusively
UI in assembl
Y
here's the trick
write your program normally
compile to ASM
a thing in msvc
fucking up my liver

okay daddy x
arm64e cringe
👍

64 arms > 2 arms
WTF
its on gif trending
Reported
Bro?
bitchless scoop....
quickplayer
real
every argument against x86: hurr durr its bloated
current status: banging your mom
sike
im moving up by u daddy
ill beat ur ass

what state bro
damn im gonna be in NH
lol i just see a bunch of messages from capt... who you talking to 😂
im in vc
yessir
what
as of like a week ago
UX design on that is absolutely awful
should display the chat by default and only join voice with another button click
not click the big button to join voice, click the tiny overlay icon to open the chat
zefram
zefram
zefrom
Sup nerds
nerd
Ghepsoba
gm
Gm
I'm not sure if he's ghepsoba right now
Wtf

Shut up korbius
it's korbin time bitch

Scorp quit
what happened to shmoo
Also I'm only here for apple exec events @primal perch I don't even log in with this account ever
left and deleted every account
i think so
but honestly no idea scoop was the closest person to him that i know
and scoop got no indication
no idea mate sorry
ipc_port->ip_thread->task maybe?
Gm @tepid olive
TRUE
skorp
what about ren
fr
https://twitter.com/theevilbit/status/1536573988956213248?s=21&t=s54mA2GSHaaanGRqC55Fqg @grave sparrow this is gonna suck hard
I put together a quick blogpost about this new AMFI Launch Constraints mitigation, with examples what kind of exploits it prevents. Again this was long time needed. Well done to everyone involved!
amfi my love
what are the requirements for advanced dev
lol the Vscode sticker is p funny
this is so true'
all the staff have advanced dev
is that rightg
that doesnt seem right
I agree, it's terrible
I was told I'd get advanced dev when I make a rootless strap, which I've already done
@restive ether 🙄
wonder why that happened
couldn’t have been because the guy who was supposed to do it wasn’t doing it
Nullpixel do anything challenge (IMPOSSIBLE)
Nullpixel don't take credit and don't have a superiority complex challenge (IMPOSSIBLE)
capt for advanced developer

tomorrow
step 1
know the people in charge
i’m senile yet i have it
back room dead anyway tho
@lime pivot check it out, I finally fixed the side scrolling https://man.cameronkatri.com/ls
yeah dog
Cappt
capt
and tomorrow
nfr
tf aren't you drunk
no bro work tomorrow
not alcoholic then
f
should i make a ips crash log parser
only if you can do it in c
ill do it in c later
trust
no scam
is there a list of all the device identifiers like iPhone14,5 and its official name like iPhone 13
ty
@cursive rampart campaign for my advanced dev
AFTER CAPT
Date: 6/7/2022 4:32 PM
Process: Calculator
Bundle id: com.fiore.calculator
Device: iPhone 13, iOS 15.1.1
Bundle version: 1.0
Exception type: EXC_CRASH (SIGABRT)
Exception codes: 0x0000000000000000, 0x0000000000000000
Loaded images:
0. /usr/lib/dyld
okay what else needs to be added
@indigo peak what are you writing
whats apple ips
the crash log (it has an extension .ips)
in 15 they changed the format to a json thing
and i wrote a shit python script for it
anyone have any app crash ips's they have that they want to send
for testing
yes, tell that to apple
but since each ips is i think different from the rest
im just gonna smack everything into a try catch
They probably have a reason for it
There’s probably something deep down that can’t read it pretty printed
this is apple we're talking about, they don't need a reason to do things
dumbest thing I've heard today
I’m saying legacy code that hits a newline and doesn’t know how to interpret it
lemme change that
you and capt dont deserve advanced dev
is that dumb enough
I agree, capt doesn't deserve it
doesn't follow JSON spec, huge L
He can't even compile perl
honestly pathetic
There’s legacy shit in this OS I’m sure of it, there’s no way a developer at Apple would be like uh yeah I don’t want to pretty print this JSON
Who doesn’t want pretty JSON
Besides legacy shit
apple. They don't want people to read the crash logs except by xcode
Pretty printing isn’t tough though, it’s not like they’re encrypting it they’re just adding a super small extra step
If they wanted to gatekeep they would encrypt it
any JSON parser that fails on newline is literally the worst JSON parser ever made
I agree
yes, they are adding a small step just to annoy people
it's not that deep
they just don't
not for some dumbass reason like legacy JSON parsers
it's literally just like that to mildly annoy devs
I’m just saying there’s probably some 2005 code that depends on a log not having a newline and the path of least resistance was just not pretty printing it
It’s easier to tell your devs to deal with something like that rather than rewrite some legacy code base that hasn’t been touched in 15 years
2005 code that would fail if you try to load a JSON crash log regardless of pretty print because that format of crash log didn't even exist until last year
it’s just the thoughts I had with the material I was given ¯_(ツ)_/¯
or
the devs were just too lazy to add options:NSJSONWritingPrettyPrinted
Yeah I mean that definitely could be an oversight, I guess I don’t know how much error logging happens in the background of iOS like you guys do
Is it only on app crash
it's just the normal crash logs
whats the m1 mac local bin path?
well homebrew moved to /opt for some reason I assumed its gone?
I don’t imagine it got deleted, that’s a Unix folder
@grave sparrow is it still used by developers?
can ghidra load iOS 16 kernelcache?
^^ not sure why homebrew ever loaded things into /usr/local/bin in the first place
Doesn’t seem practical for that directory’s purpose
it made more sense when compiling stuff for macos sucked
now, it’s definitely just a relic of how things used to be
the canonical install location on ARM now being /opt/homebrew
in general since we got much better build tools like cmake and pkg-config, using a known path is no longer necessary
I just briefly looked at some structs dumped from 12.1 macOS kdk, so no
i love
setting up theos
this is my own fault for getting a usb internet adapter
try while ! wget --continue https://whatever; do sleep 10; done instead if you need it
Awesome thanks I will
somehow it is possible to unpack cheat.deb so that there are source files?
machine code doesn't contain any source code
needs to be reverse engineered
also a deb is just an archive package of other files
just extract it
that doesn't make any sense
I just want to steal somebody's code
I just explained it to you
since you don't understand, you shouldn't try unless you want to actually learn
^
^
there is all code in dylib
there is none but you can decode it
send the deb many people here know how to RE
💀
listing strings ain't shit
No this file
https://apps.apple.com/us/app/standoff-2/id1359706682
@serene ridge 💥
The legendary "Standoff" is back in the form of a dynamic first-person shooter!
New maps, new types of weapons, new game modes are waiting for you in ths incredible action game, where terrorists and special forces going to engage the battle not for life, but to death.
Incredible features are waitin…
what
what

omfg they made all the code inside one function lmfao
:/
works for me
this is important please
you are amazing
what should I do to receive?
Turning off your pings would be a good start
Did you make this?
or what I did?
Nvm
I bought a source but they tricked me
You can’t post debs that are not yours or allowed to be reposted
By yours I mean you developed it
I didn't know but I'll do anything
Learn ida I guess
I will have courses after the holidays
I want to be a programmer in the future
I admire you
Ok good luck
Ty 🤓😜
with no effort you can re all apps written in python 
how?
You can obfuscate them
ew
i heard about it for asembly
That's completely unrelated
Ok sorry my bad
That's not Python smh
ok&?
bruh python is intepreted from the source
Okey bro
And i think you can decompile the pyc files if that's what you got anyways
i only have a deb file
What's in it
Does it have Python
They would probably distribute the py script files which has the source
this is mod theos with esp
what
Sorry my english is bad
and a tweak would never have python files in it
Where's there python involved
👍🏻
thats what you think
tweaks could have python
me?
you know what happened to the billy?
Gotta learn when to let it go
what billy
you know what i would have to do to get the source?
learn shits
a different compiler
the original one being written by hand
I do not have a computer
what should I do?
what are you trying to do
Reverse a deb for source code
Bro has no computer
That’s what I’m saying no pc = no re
Or regular expression 
call the sellers and tell them to give you the source
ez
that's regex not re though
bro has no computer and tryna reverse a deb
:/
then you won't help me @gentle grove ?
How am I supposed to help
I can let it go if you don't want to
nobody can help you @viral linden
💀
🤦🏼♂️
🤦♂️
I was ripped off at $ 10
cope
L
i just want source but i don't know what to do
Wait that deb was a paid tweak?
be careful next time sir
Blackniv from telegram said he would give me source for $ 10 and he blocked me
Im Loser
and how much would I have to pay you to give it to me? @gentle grove
I don't have it
Man nvm
bro paid $10 for the source
I didn't write the tweak
how can we tell them

nerd
why won't theos find this damn framework, it's clearly there
ld: framework not found SpringboardServices
I tried to compile iboot from source 
me used to
anyone have idea?
it was missing "iphoneos_internal" sdk
Did you ban or did they leave
didnt u timeout them
Yea but they left now
L
bro being salty
follow nyan_satan's guide
Fr
dk what im gonna do with it tho tbh
follow the guide
i will but LATER LATER
why do i keep getting this crash log whenever i compile a browser or etc with xcode
Termination Reason: DYLD 4 Symbol missing
it would seem you are missing a symbol
ok
trolling
trolled
true
xorg.
xwayland is obviously the best and totally ready for production
macOS: no, this app can’t be checked for malware
true

real
same with x11
it has no security flaws
and is perfect
yeah
this image was found to be slightly humorous, thank you
true
why does that kinda look like windows 95/98
Look up "Common Desktop Environment"
nice
HP Backlit monitor 1600x900
Thanks
try not to develop astigmatism challenge with a gameboy
wtf I still have the 2 ears I was born with
Wtf
friendo
true
gm
Gm
if anyone can find some actual documentation on how to self host dalle mini i'll run it on boba.best
how can I make a deb that just adds a couple custom lua scripts to the cylinder reloaded script folder
also how can I set dependencies for a tweak
in orion or in theos
should I just read a guide on creating debian packages
cool
should my repo URL be at https://bongs.rip/repo, https://repo.bongs.rip/, or just https://bongs.rip/
i'm learning towards the second option but all are feasible
whichever you want
cydia.bongs.rip/repo
what is "cydia"
ratioed by ogre battle 64: person of lordly caliber
Ogre Battle 64 : Person of lordly caliber on the Nintendo 64.
My Facebook Page - http://www.facebook.com/glenntendo
Recorded using an Ultra HDMI modded N64 console with an Elgato game capture HD60s capture card using a real game cartridge. So who's looking forward to the N64 Mini Classic console and do you think this will end up on it? what d...
@vivid dew accept my friend request or you're a plagiarist
Translation lyrics: https://tinyurl.com/y7g65xaf
Anime: Yagate Kimi ni Naru / やがて君になる / Bloom Into You
English lyrics: boredmelly
Sung by: Yuu Koito (Yuuki Takada) and Touko Nanami (Minako Kotobuki)
Editing: wooz
Editing inspiration: https://tinyurl.com/yb388hxc
I've blasted this song ever since I heard it and I love it

ima make something that interacts with neofetch to change ascii image with ease
instead of doing --ascii and specifying file ill make it have a library of files and a simpler choice can be made
later tho
i mean
"troll" is easier than "--ascii ~/ascii-art/trolllaugh.txt"

and gonna add a randomizer in it as a option
plus its just gonna be a python script


