#development
1 messages · Page 451 of 1
@tepid olive whats wrong with /var/theos
i moved it there but same
error: lipo: unknown architecture specification flag: arm64e in specifying input file -arch arm64e /var/mobile/Development/SearchForClubhouse/.theos/obj/debug/arm64e/SearchForClubhouse.dylib
lipo: known architecture flags are: any little big ppc64 x86_64 x86_64h arm64 ppc970-64 ppc i386 m68k hppa sparc m88k i860 veo arm ppc601 ppc603 ppc603e ppc603ev ppc604 ppc604e ppc750 ppc7400 ppc7450 ppc970 i486 i486SX pentium i586 pentpro i686 pentIIm3 pentIIm5 pentium4 m68030 m68040 hppa7100LC veo1 veo2 veo3 veo4 armv4t armv5 xscale armv6 armv6m armv7 armv7f armv7s armv7k armv7m armv7em arm64v8
fatal error: lipo: Usage: lipo [input_file] ... [-arch <arch_type> input_file] ... [-info] [-detailed_info] [-output output_file] [-create] [-arch_blank <arch_type>] [-thin <arch_type>] [-remove <arch_type>] ... [-extract <arch_type>] ... [-extract_family <arch_type>] ... [-verify_arch <arch_type> ...] [-replace <arch_type> <file_name>] ...
make[2]: *** [/var/mobile/theos/makefiles/instance/library.mk:51: /var/mobile/Development/SearchForClubhouse/.theos/obj/debug/SearchForClubhouse.dylib.af633153.unsigned] Error 1
make[1]: *** [/var/mobile/theos/makefiles/instance/library.mk:37: internal-library-all_] Error 2
make: *** [/var/mobile/theos/makefiles/master/rules.mk:117: SearchForClubhouse.all.tweak.variables] Error 2
why? its just an environment variable you can change
le troll
@upbeat wyvern So the fix didn't seem to work at all for me using Linux Mint (Both the patch and the kernel update didn't work).
f
Hey everyone, i just installed Theos on a new computer with WSL and Windows 10.
I am facing a dumb annoyance. i am required to #import <Foundation/Foundation.h> in every tweak.
If i dont do that i get dumb errors about unknown name type NSObject etc.
Is this something that i can fix?
theos now requires you to explicitly import Foundation
before, theos was just writing #import <Foundation/Foundation.h> for you
side note. also tried building on my mac but getting
ld: warning: building for iOS, but linking in .tbd file (/Users/tomer/theos/vendor/lib/CydiaSubstrate.framework/CydiaSubstrate.tbd) built for iOS Simulator
@oak sierra did you not install odcctools? Where did your lipo comefrom
on my mac or iphone? i did that on neither, just followed the wiki instructions to install Theos Dependencies from cydia on my phone. and i have xcode 11 & 12 installed on my mac
Iphone
Yeah wiki instructions are usually outdated by what I heard, I think it’s updated on git wiki or something
git wiki? is there another one besides https://github.com/theos/theos/wiki/Installation-iOS
But it should be install theos and apt-get install clang make odcctools etc
Hmm ok that might be supposedly updated let me look
cool i will try that
i don't think this matters
does your package not compile?
it does if i only have arm64 in my Makefile. its because i have an iPhone 7
Oh the stuff on my non-elucubratus repo is outdated for newer stuff but if you have an old device it might not be bad, I should update those packages I sort of forgot about them
i thought there was a way to compile arm64e on arm64 devies
What ios and jailbreak are you using?
ios 13.4 checkra1n
But remove repo.bingner.com
Then install clang and odcctools etc and you should be good - not sure what you got off my old repo but those won’t have arm64e
llvm, clang, and odcctools/lipo need to be off elucubratus
bruj
yes you absolutely have to use a third party and upload your files to it

no but fr
wsl is like
1000 times easier
than any of that
especially with mounts

@upbeat wyvern ayoo nice yea you were right had some coolstar package installed for some reason replacing it with your version fixed my issue
what about just using macOS 

hey is this the right logos extension for vs?
yes
ty
wtf i thought i moved this

better than a nasal studio
true
@ kirb
what
@everyone join vc
Iam so unlucky
for my amusement, I changed body to *
wtf
I started to learn and making app with swiftui now I realized i just can make for ios 14 not below
there
I have achieved perfection
I really need to do something better with my life
tbh reckon I'm gonna keep it at upside down avatars
see how long I survive
@grave sparrow do u think kirb will like the picture I sent you
@lime pivot can I send funny picture
Well considering you are upside down
It means the opposite
So I can send funny picture
I'm not sure if I'm more offended by the foreground or the baby stroller in the background
beautiful
now put your dock on top of your screen

you don't have my permiss
that's a miss
had to go and change my vm to prove it
good ole microsoft throwing an edge shortcut at the end of my taskbar, which is exactly where people usually pin their browsers /s
shut up linux user
sorry for your loss
nfr
can you send that wall?
also uhh I wanted to fix compactor (tweak). is there a way to check if the UILabel I'm overriding is the one on the lockscreen? something like recursively checking if the parent view is <name found using flex>?
wish there was a taskbar replacement on windows. I'd love to use it on my second monitor
I want something like polybar but for windows
doesn't look like that :(
ill look it up
i found this https://github.com/khanhas/Polybar
eh it's for rainmeter
it's heavy + I already use wallpaper engine
oh
any idea about this?
i dont know objc development stuff and all
if it's a subclass of UILabel, you can compare self.class == %c(SBWhateverLabel)
I would be careful of doing anything more complicated than that because it might come at a performance cost, since well, there'll be a lot of labels in an app
yeah I was thinking that as well
especially in a table view where performance is critical
https://xib.kirb.me/wow/windows-10-2560x1440-windows-logo-blue-pink-dark-hd-10954.jpg uploaded it to my server so discord doesn't ruin the quality
thx :3
this is pretty epic
would it be possible to hook springboard? I wanna change some of the properties of the clock's uilabel
This should be way less expensive, right?
are you only trying to fix that one label with your tweak? tweak doesn't do anything else?
https://github.com/jamiebishop/compactor/blob/master/Tweak.xm this is the entire tweak
simple :D
hm
well, so the way that works is it tricks CoreText into using an alternate style hidden inside the font
it may be the case that the font used for the clock is different, and doesn't have that alt style in it
the alternative would be to hook that specific label class (or the view controller that manages it or something) and override the font to just the standard system font
so it would then successfully find the alt font style and use it on that label
no no, it hooks there but the bounds get a bit f'd up and the font gets misaligned. I wanna disable it on that label
I wanna hook into the specific label class and disable what the tweak does
I see
to be honest based on the way the tweak works, it won't really be possible that way
it's overriding the font style at a global level so you can't really mix and match it
it could be refactored to work a different way (by overriding UIFontDescriptors rather than doing it at the CoreText level), but I feel like it'd just be easier to play around with that font and fix the frame of it
https://github.com/hbang/Alderis/blob/master/Alderis/Assets.swift#L52 that's how you would set a stylistic alternative flag
alternative #6 is "high legibility", you can also see it used by the serial number in settings
this is probably a dumb question, but does anyone know how the kernel loads driver extensions
or how they’re loaded in general
How to change keyboard dictation icon ?
Look how copylog does it
joemama
paid tweak = not open source
Iris has entered the chat
shut up orange names
shut up green mf

shut up fake dev
shut up shut up


actually shut up mono
aight bouta head out
swift is fine tho
dam!!!!



No 
yes 
yulky im surprised u haven't left this server yet

Does anyone know where the path for the finder version of itunes on big sur/catalina is?

toilet?
cat?
Hello iam on xcode 12 hoe i can connect mysql in swiftui
https://xcodereleases.com for old Xcode downloads
@lime pivot love yaaaa
@tame plinth you should keep Xcode 12 too
if you can afford the storage space
and for SwiftUI Xcode 12 is pretty useful
if you're releasing a tweak that supports iOS 12-13, you need Xcode 11. otherwise, you definitely want to be running the latest
Xcode 12 is easy
Iam just beginner of swift
Should i start from ios 13 swift 11 or ios 14 swift xcode 12
I can’t decide
Please help show me a good away developers
Iam not use for tweaks i just want to start making app
Like if i start xcode 12 for sure below ios 14 cant use the app
And below ios 14 cant use the app right !?
depends if you use SwiftUI 1
So cz of this cant decide
Iam just starter and xcode 12 is much easier for beginners
Yes thanks i’m thinking going with future better than staying with old versions @gaunt pewter and @tepid olive thanks for helping
hey whats up everyone, I want to collect ioreg outputs for different apple devices, which will be very useful for security research. I created a github repo https://github.com/robre/ioreg-archive and would love for some people to contribute 🙂

why tho
what program can i use to reverse engineer tweaks? 🤔
thanks sir 😄
shovel
e
I disassemble capt in my brain a lot as well
hey girl, let's disassemble the sheets
That implies I had one in the first place
true
.
New developments on checkra1n passcode bypass?
fuck you
update: no update
Sweet, Thanks man
killed
why not
Jesus is watching

le jew
imagine getting tempted by some bitch with an Apple product you couldn't even jailbreak
desperate mfs
Thats only if you need to rely on others to make jailbreaks
lets jailbreak this chastity belt
bitches acting like jailbreak developers, always looking to exploit me
you’ve never touched a woman besides your mother in your life
hello, when editing plist file in a tweak would this be correct: NSMutuableDictionary *dictionary = [dictionaryWithContentsofFile:pathtofile];
[dictionary setValue:value forKey:@„key“];
Uhh use NSUserDefaults
instead of nsmutuabledictionary?
for editing plist file of an app forgot to mention that
you need to write to the file
yes Sorry did that, was too lazy to type that hahah sorry
ahh okey yes thanks to yall preciate it
please write this up on the iphonedevwiki
i use nomaeprefs

that doesn't work between processes
it do
i'm confused why you're using a path to a file as the suite name
@grave sparrow
i guess maybe that works
i don't know exactly how suiteName works
but i suppose it's really just a path to a file?
so you could give an absolute path and that way it'll truly be the same between processes?
in any case, write it up on the dev wiki
Its more of an identifier used by cprefsd
sorry for interrupting but do I have to hook a class to get the tweak running , since it is only editing a .plist?
That literally explains NSUserDefaults should be used in unsandboxed processes, yet new developers still use dictionary... I think you are over-estimating how many people actually read that page.
this could easily be fixed
get an account and redo it
??? searching for NSUserDefaults on the page gives one result
related to cephei hbpreferences
Tweak.xm:18: error: %orig does not make sense outside a method
make[3]: *** [/var/theos/makefiles/instance/rules.mk:266: /var/mobile/Sandbox/Sandbox/.theos/obj/debug/arm64/Tweak.xm.mm] Error 255
rm /var/mobile/Sandbox/Sandbox/.theos/obj/debug/arm64/Tweak.xm.mm
make[2]: *** [/var/theos/makefiles/instance/library.mk:52: /var/mobile/Sandbox/Sandbox/.theos/obj/debug/armv7/Blockheads.dylib] Error 2
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [/var/theos/makefiles/instance/library.mk:52: /var/mobile/Sandbox/Sandbox/.theos/obj/debug/arm64/Blockheads.dylib] Error 2
make[1]: *** [/var/theos/makefiles/instance/library.mk:37: internal-library-all_] Error 2
make: *** [/var/theos/makefiles/master/rules.mk:117: Blockheads.all.tweak.variables] Error 2
i think someone else should write it up because they're teaching it to me now lol
there should be reliable documentation for everything
Its hooked tho i made it in flex then converted to theos
the iphonedevwiki should be better
it is better in other cases
in a world where ios development has been established for over a decade, yes there should be
there’s a reason there’s so many garbage devs
they’re lazy or the documentation is serialist lacking
yes, Sorry and thanks inb4 so: my tweak should change the plist file with the commands I used above. do I have to hook into a class like uilabel or something so that it changes the .plist or can I go on to compiling the tweak without hooking into nothing
more like, bothering the right person for an example...
How do i fix it
bothering father ghost for all dev questions
U want me to send the code?
it's impossible to know that the method they outline isn't the best especially considering it just works from the new developer standpoint

Kabir* for Swift related questions
Theres nothing with %orig
ahh okey that clarified a lot for me thanks and sorry for bothering you
This is my code
#import <UIKit/UIKit.h>
%hook Blockhead
-(float)health {
return 99999999999999999;
}
%end
%hook DonkeyLike
-(unsigned short)maxHealth {
return 99999999999999999;
}
%end
%hook Blockhead
-(void)hitWithForce:(int)arg1 blockhead:(id)arg2 {
arg1 = 999999999999999;
return %orig;
}
%end
%hook Blockhead
-(bool)canFly {
return 1;
}
%end
thought you said this was a big tweak
Hey it is for me 😂
this is literally just returning like 4 values in a 2D minecraft ripoff
I dont know much about tweaks yet 😂
DonkeyLike is an actual class? 
Im learning as i go tho 😂
import UIKit
i totally agree
as i've progressed through tweak development, i've learned way more about how it ACTUALLY works
but when i started, i was basically just using things like %hook and %ctor as magic that just worked for me
🗿
?
why are you returning in a void method
It was made like that 😂
yea i was about to say
bc i guess %orig is void
so you're returning void
so ig it's fine
What else would i have to fix?
why does UserDefaults initwithsuitename return UserDefaults?
when would it return nil?

idk what would be an invalid identifier
besides a path name
like /cock/bruh
com.wstyres.zebra
but when you access it the first time, the plist won't exist
@grave sparrow
i think that's fine
i think it's only the path thing
prob creates it if it can
but like it wont create /bruh/
yea
what about suiteName:""
well
im fucking around in the swift interpreter now
and it returned nil in none of those three cases
nor when i passed ""
so i have no clue when it actually goes nil
or what UserDefaults(suiteName:"/par/mobile/Library/Preferences/com.big.cock.plist") fully means
or what UserDefaults even means in an interpreter session

User defaults isn't a 1 to 1 to a suite.
Its just a container for accessing defaults, whether that defaults has 1, many, or no permanent storage.
i guess messages from the future is possible
sorry i dont speak to people who live in the wrong time zone
its cuz I booted linux before and then windows, its always -3 hours when i return to windows
but its nice to see they implemented the future
are you UTC-3
time here is 1:19 AM

yeah it's because linux uses UTC for the hardware clock but windows uses local time
let me look ujp the fix
hwclock -s
well the fix your'e supposed tod o is set a reigstry key in windows to tell windows to use UTC on the hardware clock
yes it says arch linux but it doesnt matter what distro it is
np
it doesn’t care about whether a plist exists yet though
think of defaults as a memory key-value store that populates its memory store from disk on first read
nfr
pog thanks
okay yea
outta here w logos
if you just use substrate.h directly
beautiful Xcode autocompletion
accurate picture of me in the wild
Hi there, I currently am trying to write a tweak that logs a method response and outputs it to a file,. My only issue is, I don’t know how to check if I am hooked properly, and I also am not having my function returns outputted in the document either
I was researching online about needing an entitlement, but I’m not exactly sure what that is. If anyone is able to help, or knows the solution, please lmk
standup desk... why....
The presence or absence of the log will tell you if it's hooked or not
log to NSLog to test
or use logos %log
@upbeat wyvern At the moment, I am using LogTool from https://github.com/kevinpiac/hookify
But, I thought NSLog only outputted to a Mac console?
I am able to get the tweak to compile, install, but never know if I am currently hooked or not, or even if the tweak even loaded at all
Back problems
@tender basin idevicesyslog or net.limneos.oslog
Thanks boss, reading on idevice atm lol
There’s surprisingly just ENOUGH material online to figure these things out, but a lot of digging for my first time. Golang had more docs to lookup when it first dropped than objc/tweak writing
or if you want to be super obvious, make your hook crash the program 😄
int *crash = NULL;
*crash = 0xdeadbeef;
that should crash anything 😛
that's not generally a great way to test it though lmao
I seen the example where people created a shader + sent text through it, but I can’t use it if I can’t even figure out if the hooks are even running.
I’ll try it all, it’s better knowing something will work than to never not know
hmm too many levels of pointer, I was going to assign to void* originally then I wrote code that the compiler would have complained about... probably should have just written void **crash=NULL; *crash=NULL; sigh
fixed it to work with int tho
char *n = malloc(INT_MAX);
that isn't enough
char *n = malloc(1 << 64);
is this enough
char *n = malloc(~0);
new and improved
same, my desk was 100,000% worth the money
School desks got me like
I’ve actually had this desk for 5 years but didn’t use the standup part until now lol
char* n = malloc((size_t)malloc(INT_MAX))
How i connect swift with my mysql
Xcode 12
Like send or get data from mysql
Its possible !?
ok
vibeOk
That should fail not crash - until you write to it
is it possible to link my tweaks against OpenSSL
yea
cool
now to find (or...compile
) a version of openssl that's modern enough for iOS 3/armv6
@plain sedge https://apt.bingner.com/debs/550.58/libssl1.0_1.0.2r-1_iphoneos-arm.deb
I suppose I should add 1.1.1 to that tho
Or wait, that may only be armv7?
how can I compile a tool in theos without specifying a device IP?
make package
I just want to create the binary
make then
awesome ty
it'll have a different directory depending on release or debug build
^^
any reason to ever build in release mode?
yeah, faster optimization options
oh ok, I was just wondering incase the extra debug symbols might be useful for collecting logs from users
building in release can preserve the symbols?
i don't think there's any benefit of building in debug for releases
i may be wrong
probably not, I was just curious
@gleaming wave it saves a .dSYM file for you that you can save to symbolicate logs from users
good to know
why do you dislike swift
^?
if the English language doesn't allow you to express your feelings, try the Swift language
@objc case guard let myFeelings = #sad() else { return bruh }
what the fuck
did you just put all the cursed Swift syntax in one line @wicked summit
you're mother
you are mother
whats up developers
what other language uses
[class method];
syntax
bro i have something for you
[[[[[objective]]] c]] sucks]]];
ill chain ur mom to my objective c
[[[[[[[[[[[self superview] superview] superview] superview] superview] superview] superview] superview] superview] superview] superview];

i just prefer general Swift syntax
swift is sexy objc is not
^
modern swift machos are tiny too
i still see people use the space-on-disk argument
nah i meant people still bring up that u used to have to bundle swiftlibs
true
im done making the "ill x or y" jokes
NSString *x = @"";
var x = ""
#import <Foundation/Foundation.h>
import Foundation
anyway, my newer beef is with the usage of Logos on macOS
i made the very simple realization
that if you just interact with substrate directly
you can dev your tweaks in Xcode
yeah or better
you can dev your tweaks without theos and without xcode
best of both worlds
less build dependencies better
whats the best practice
or just don't
@import Foundation works too idiot
fair
hacks though
anyone want a 12 month correlium code
I think it was based on a research study on what changes would best drive programmers to suicide
seriously you write some nice expression and it says "fuckoff that's too hard for the compiler to understand" fuck you. you're a computer. understand it.
yeah spaces having value is crap too
@primal perch just make the custom postfix operator if you want it so bad

yes
how do you guys push a compiled tweak to your phone for testing?
like, pushing it to a repo? sending it over ssh?
make package install
yeah same
Theos installs it
By sshing and moving the file over
yeah epic cringe because reasons
also please setup ssh keys, ssh config, and rc theos vars
what’s make package install D:

t
rsync is sexy
@halcyon vault why u mega noob
buh
agree
so make package install is part of theos
and i can run it on my computer and it will send the deb to my iphone?
or do i have to send the tweak files to my phone and then use theos on my phone
ntheos
ah ok
so connect phone with usb?
awesome
Will it then appear in my package manager?
sweet
thanks so much for the help
@gaunt pewter no idea what that means
filza has a webdav
like sparkling water
ive never use xenon even tho I purchased and installed it
lol
@gaunt pewter pair computer button does nothing
@tepid olive use rsync
whats the workaround for now
ty
@gaunt pewter if you downgrade while prefs are open, prefs crash lol
also should add camera qr support
no
camera app
@gaunt pewter damn mounting is also broken
so all of prefs is broke
yeah same
of course I do


@opal hazel caught lackin
thanks bro


verticle monitor is so overpowered for git diff omg
english 100
can we all agree that capt has 0 rights
capt has more rights than tale
u can't be one to talk
anyways sileo for elucubratus coming very soon
you can have rights once Lyricify gets activator support
as soon as the DNS is updated so that github pages works again
fine
i'll merge it

bbut

The I can make pwetty websites
What, you want me to learn Angular instead?
I swear I will never use react-native

so i can open it in Xcode as a package
wait
do i have it in the logos one?
no i dont
how?
um no it's fine
these are all nonissues
i didn't specify minimum ios version because i don't know what it is
its either that or actual development work
you're so right man i wouldnt want anyone knowing my personal name

holy shit i think i know hayden's personal name
time to dox him

i thought his name was Pro Cursus?!?
Had Yen
no reason you can't
think I did that for newterm before I changed it to an xcode project
xcproj
$(shell find NewTerm -name \*.m -or -name \*.swift)
it'll only be evaluated when it's called if you define it using = rather than :=
speaking of newterm
newterm these bitches
i have tried to compile newterm 3 times ever
and failed everytime
you got a nice lil system there that i dont wanna fuck with bro
Hayd Enseay
at minimum if you just want to test the app it does work in the simulator, the environment it spawns is weird as shit though
i dont even remember why but it was always some errors with the objective c code that made me thing i was missing a dependency, but i dont think i was
i know
you land at a prompt that looks something like I have no name! /$
i saw you commented on Reddit, too
who would have thought
but it works for dev purposes
@grave sparrow literally 2 mins ago
i just read capt lmao
yea
that was a wack coincidence
today i learned Captain Incorporated’s Reddit is Captain Jon
lol well that's what happens when I try to run it as M1 iOS compat mode
do not trust any unincorporated capt entities
true, apologies
I would love to know why of all things, os_log is what's crashing, but anyway
lmao
@grave sparrow wait how do you even get the install name of a dylib?
lol, we'll get there eventually
with otool?
tfw @
haha yes

I mean taurine hasn't crashed once and I've been running it for like 4 days now
too little too late
otool -D TweakWithoutLogos.dylib gives
TweakWithoutLogos.dylib (architecture arm64):
/Library/MobileSubstrate/DynamicLibraries/TweakWithoutLogos.dylib
TweakWithoutLogos.dylib (architecture arm64e):
/Library/MobileSubstrate/DynamicLibraries/TweakWithoutLogos.dylib
but maybe that's not how you do it
and I finally get to properly use procursus

I feel bad that I'm still on macOS 11.1 with all its bugs, the version this shipped with
but then again
34 days uptime
that's a few days short of how long I've had this
meanwhile after 7 days of uptime with windows i have ~4000 active threads with nothing open
and after a reboot i have about 2k
that said, I'm not sure whether I might be causing the SSD wear issue to worsen that way
because when I switch between Xcode or WebStorm or VSCode I can feel the chug of it decompressing or reading back into RAM from swap
i think it must now
theos
TweakWithoutLogos.dylib (architecture arm64):
/Library/MobileSubstrate/DynamicLibraries/TweakWithoutLogos.dylib (compatibility version 0.0.0, current version 0.0.0)
i think its rated for 320TBW too
lmao
so it does
which is solid
bam not doxxed
now time to go through all of capt's old tweak dylibs in attempts to find his identity and dox him
see, thing is, the 512GB 970 Pro in my PC has this after 2 years Data Units Read: 53,516,595 [27.4 TB] Data Units Written: 39,952,183 [20.4 TB]
yet the M1 mini after 2 months has this Data Units Read: 81,540,541 [41.7 TB] Data Units Written: 77,658,588 [39.7 TB]
like idk about you but that does worry me just a tad
damn thats bad
I have a solution: no more dyld shared cache. Get every framework + the kernel on an apt repo. Setup dependencies properly. Get everything to have a postinst with launchctl to restart the services
Boom never lose uptime
that being said itll still probably last a long ass time
right side up terminal dev
tbh you can probably do an entire userland upgrade without rebooting by doing a launchctl userspace reboot
Likely
I feel like mostly only reason Apple forces a reboot is to patch the kernel and BIOS/iBoot
BIOS
why do you need install name anyway?
so he doesn't reveal name
for his trash DRM
BiOS
IOS 80
/Users/capt
the OS is Bisexual?
fr
/Users/yulky
Loss
I amuse myself too much that Wii ARM chiplet's firmware was called IOS
C:\Users\Hayden
nfr
nfr
the tiny little ARM core hidden inside the PowerPC CPU
I wonder if anyones ever had slurs in their install_name
/Users/nicecar
capt and i are the same person, i just act dumb on my @grave sparrow account
Im stuff

idc if someone sees /Users/tale
(there are other more likely ways your file path can leak)
ew linux user
(like asserts)
/Users/adamdemasisexdupe/
D:\Users\Uhh
my ex-dupe 
ffmpeg stores the flags i compiled it with and displays them when u do —version iirc
Go find out my real name

i'd advise finding a new joke
I follow ben on instagram lol
no
Its not pwn
it's his friend
if pwn's dad knew what he was doing
he would make pwn work harder in the farms

not found on my mac, wtf you liar
damn well that's what happens if you run it in iPad app mode
r/FindPwn
I have a theory
Pwn disappeared for a bit — right when trump was fighting the election results
Suspicious right?
oh dear
yikes
Pwn24wnd #MAGA
pwn24 omg
Wtf
I cracked the fucking code guys
it was in front of us the whole time
wake up sheeple

jeez you really didn't need to out me like that
Somethingmust have dawned upon him
my favorite bug/feature of macOS 11.1 is the beachball cursor only spins if you move the mouse
@tepid olive ?????? I swear I thought you were pwn20wnd, I have no idea where I got that idea from
care to explain
wen eta newterm5
A great pog day
Capt i gotta be honest
then it won't panic
I have left my m1 on downstairs for like the past month
cuz M1 bad
And my friends use it to watch movies and play music
tomorrow after lunch
his house electricity is just defunct
does that include newterm6 bundled with it too?
@gaunt mesa why did you dm me you'd get me dick
it comes with downgrade rights to NewTerm 3.11 for Workgroups, NewTerm 95, NewTerm 98 SE, and NewTerm NT 4.0 Workstation
ok
when was this
The new newterm will soon become the old new newterm
8/13/2020
at this point this is NewNewNewNewTerm
NewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewNewTerm
ok it's not funny
Where is Term? Are they alright? Are they safe?
i need to ge thelp
New New York
hey girl are you NewTerm? cuz i wanna have sex with you
exclusive leak of sileo channel
This shit cracks me up
bro cuz they never reply
ever little step we gotta bump
but macos is more stable than windows !!
NewTerm 1.0: mostly just a quick fix and UI cleanup of MobileTerminal to work on iOS 7+
NewTerm 2.0: rewrote a bunch of it
NewTerm 2.1-2.2: rewrote all the ObjC to Swift (except terminal emulator)
NewTerm 3.0: terminal emulator replaced with SwiftTerm, UI rewritten in SwiftUI (god help me)
I know. Dont worry tho they arent replying to me lately either. Taking a break i presume
they take a lot of breaks
much like the us senate
i literally just need them to fix the DNS thing and then i won't bother them for a while
@lime pivot when will NewTerm not have a % on every line
see at least with lawmakers you know it's because they're good for nothing and corrupt as fuck
coolstar ???? they just selectively choose not to do things that are actually in their best interest
ur = you are and its pronounced you are
While i feel your pain i cant help but empathize with the other side. I have really needed to do docbook-xsl for the last year and hvent because i havent

giant brain moment
Like i really really need to do it
But nobody wants to
Easiest package ever too
Just a copy paste literally
what if i do it
then ill say thank you and be happy
brb waiting for [insert annoying procursus stan] to figure out i help on both bootstraps
what's with the music
eta wen

Apple A14 Bionic
vodafone AU
there's proof of taurine stability
cydia.list 
uptime 3 days 19 hours
Bro just use zebruh with [redacted] support
we stan the chariz shed
where all the charizards are held captive to develop the chariz dot com backend
exactly
chariz is the #1 repo
@gaunt mesa how do you feel about becoming one of the charizards locked in the shed
You’ve seen the chariz shed. But wait till you see the diatrus domicile
how do u feel about me bringing an axe to break down the door
don't forget to pack a year's supply of food and water
i'll just sneak into ur house
i can probably figure out where u live from ur shed just cuz of that one time
add unsetopt PROMPT_SP to zshrc
which one time
the one time where u showed me in full while screensharing
wonder if I should just do this for the time being

Real men pee wherever they want
you don't really think our drivers pee in bottles, do you? why would people work for us if they did?

upside down terminal dev moment
upstate new york moment
who
joe
sorry i’ve renounced the title of update new york in favor of northeast
this guy smacks your girl’s ass, what you doin?

holdup now i need to find the other picture
this photo is probably older than you
bitch ass
so..older than you
i have never seen this photo lol
looks good ship it
where is this from
❤️
i have never seen a newterm bug in my life

yooo wtf stop stealing my reddit finds
unsetcock
sudo rm -rf --no-preserve-root /
Use fishshell 
run this command
because this was before it was easy
please
fish doesn't work on newterm
fish is great
noe
Its just buggy
waiting for the day that i can use procursus
did they get merged
as soon as star gets the repo up 












use it now