#development
1 messages · Page 588 of 1
With a compiler
Nah I'm just kidding
First you read the code
Then you manually convert it to assembly
Then you convert that assembly to machine code by hand
some smart guy who uses NewTerm2 could help me fix some shit
getting some weird compiling error even though my code is fine, it compiled before but now it’s giving error (same project)
it’s the last “}” btw
@tidal atlas
I compiled this same tweak.xm before
it compiled with no error but after changing clangs I’m getting this error
Hmm not sure to be honest why not switch back so it compiles?
Gl
would be nice if you got some bitches
who knows SWIFTUI here?
What's swiftUI?
UI that is swift
yh

dam
i prefer SWIFTui
Trying to understand SwiftUI, But doesn't seem to be working.
that’s the secret, it doesn’t work

hello bozos

renai
i miss renai 😢
isn’t that you

gm
man got here
hey
what is that emote
that you just used Mr rolex
@gentle grove that is the emote

Ok
@gentle grove
Ok
yeah fr
add-dysm
?
idk if it works on linux

Where do I find libsystem's dSYM?
When using lldb on macOS to debug a macOS I see debug stuff for libc funcs
Or actually
I may be wrong
no ren is burrit0z 
wait really
yes 
how'd they get unbanned
Who
@gentle grove please remove the shark
i am not a furry gura whatever
You deleted the message
And I never even added ant shark emote here
the people that talk about furries 24/7

it’s just a good emote
i wonder who you’re talking about
indeed it is annoying

like 4 different people here

was, but yes
how'd you get unbanned
basically i just dm’d aaron and asked
I don't even remember what you did
lots
in writing, the reason was for self bot
but thats not 100% accurate
long story short: transphobia, homophobia, etc

just like that other dude
what was it nito?
@restive ether who was that bozo
in backroom
i havent gotten banned yet
youre just bad
i do not recall any message or conversation that has been partaken in the developer™️ back room
but actually it was two people
i dont trust tvos mfers bro
i guess it’s something with tvos attracting the bottom of the barrel
like first off who uses an apple tv
let alone jailbreaking it
for schools i get it bc they airplay shit all day but at home
what are you gonna do
but even like a PS3 is a better emulation system
broadcast clash royale?
i love air playing porn to my apple tv
i took an apple tv from a school
lot of tv’s have built in airplay servers these days anyways
my tv has one
even a wii is
it even has apple music, and the apple music app on samsung tv runs better than the ATV itself
based
even a pi
true
gc and wii = native
true
this ui is actually bad though
sonic colors actually runs on a wii at 60fps
pirate gamecube games to a external drive and plug it in
this is 14
i haven’t updated my phone since october 2020
lol
i realized i don’t care to update
but 15.4 is supposed to be the golden one finally
cam said it was pretty good
yeah yeah i doubt that for some reason
ios 15 has some good features but is shit overall
and hes pretty pessimistic with ios
imo
which is fair bc ever since ios 13 their QA is dog ass
lol
10 honestly
maybe 11
this
get swears on swipe to type
although the new macos is rumored to be performance based so at least thats good

luckily i do not use carplay
same
same but i should get a stereo that does
also wtf is a car
nice
my dad’s seems to have everything
true
the gearstick is too close to the cd slot, makes it very hard to insert a cd/dvd

good thing no one cares
paddleshift is fun

i dont even really want carplay just BT and aux at least
radio is booty bc its all ads
so i usually just drive in silence
yeah we dont have carplay support either
tho i might get a carplay one just bc its an lcd
so i can hookup a backup cam for like 50$ more
which is nice
just get a car with back cam
true lemme just pull 10000$ out of my ass
tesla mfs when gas is expensive: just buy a tesla


cost of living try not to go up for one month challenge
(impossible)
(hardly possible)
:squidsuicide:
🗿
inflation is a myth don’t care
just pure corporate greed
average politician
can’t wait to ratio Russia by buying oil from venezuela
📈
spark has to make a cli tool to resize images cause designers kept shipping like 1080x1080 sized images for each icon
ios when 1gb ram for themes
silly designers
lemme apply one those 28k images i have as an icon
footnote

YES!!
(lldb) frame select 0
frame #0: 0x00000001006ff174 a.out`ie_getpwent at getpwent.c:149:22
146 ie_getpwent(void)
147 {
148 char bf[1 + sizeof(_pw_keynum)];
-> 149 struct passwd *pw, *ret = NULL;
150 char *pwbuf;
151 size_t buflen;
152 DBT key;
(lldb)
finally got it to work
wholesome
nfr
making the iphone shit in 2 minutes
me when the
is there any way for this to not consume ~100% cpu?
If i recall correctly this didn't happen on big sur
I will continue to pirate other things, just not tweaks 🙃
spinning the run loop that way would always consume CPU, I'm surprised it didn't before
I'm assuming this is a daemon or something? you're probably just missing [[NSRunLoop mainRunLoop] run]; at the bottom of your main()
oh mb, so it's to keep a thread going
should just use run instead of runUntilDate:
and if it needs to be stopped, you can of course stop that thread's run loop
without having read the code properly, I get the feeling that indeed MacOSBluetoothConnector::disconnect() should be stopping the run loop, instead of just expecting it to happen within 100ms by setting running = false. how you store that run loop, in case that func is called from a thread other than the one in question, depends on architecture I suppose
hmm doesn't seem to change anything
yeah that's probably the next issue
Hey, may be a noob question, but does anyone know what the normal approach to replacing calls to fork(2) when porting stuff to tvos and watchos is? Or could you point me somewhere that I could RTFM
do you need to call fork() but clang is saying that it's unavailable?
if you're already using a patched SDK, you could just edit the header to remove the __TVOS_UNAVAILABLE etc macros on the fork() func definition
Yes - though is in glib as a dependency. Ah ok - maybe I can do that
Or find some way of avoiding glib
Or replacing it with a dummy function
when they say "unavailable" they just mean they don't want app store apps to use it. those things do exist (and can't be removed without breaking POSIX compatibility anyway)
Cool - that's good to know
I don't think you want to use glib on macOS/iOS-based platforms
It is a dependency for frida - currently seeing if I can compile it against the tvos SDK so that I can use a newer version
Maybe I can look to see how to replace it
The version of Frida that is around on the cydia servers for tvos is pretty old
Though the plain iOS one seems to run. Not sure how stable it will be though so was seeing if I could port the new one
I don't have much experience with the platforms - know if compiling with different SDKs changes a lot - or is it all basically the same
Thanks for your help btw
ios one should work on tvos, not really a reason for it not to
it shouldn’t run into the same issues taurine has with frida i don’t think either
Cheers
glib≠glibc
develop my balls into your mouth

gnome code 
True

thats so epic
And it didn't cost me any money
lol who gifted
Tr1 bought it for me cause I helped him out with a thing
My phone isn't even jailbroken 
But I can't wait to use it once a 15.4 jb comes out
neva release
forget neva lack, neva release
What
oh wait nvm that’s a joke outside of this comm
you guys don’t know the one and only neva lack
yikes
pirating Adobe products is morally ok 👍
my condolences
Not me having a legit paid adobe account even though I get it free from my college
i love C
I only pirate movies and ida even though I prefer ghidra
But ghidra likes to crash all the time for no reason
nobody pays for ida
But since ASLR was enabled on FreeBSD by default, wine doesn't work to run ida
hope you enjoy the only tech company that locks you into a yearly contract, and charges students full price after a year with no prior warning or way to get a refund without an early contract termination fee
Troll
🧌
I literally updated my main phone to latest and I still can’t see your gd emoji
Oh wait, I just remembered I don't actually have a paid acct, I just leech of my brothers 
lmao
15.4 beta
On my way!
based wholesome 100 keanu reeves
:thumbsUp:
L
discord moment
web apps be like
my picker does nothing half the time rn on ios
idk how they break that
started a few updates ago

fishy
we’re gay
i guess
⇆ ◁ ❚❚ ▷ ↻
⇆ ◁ ❚❚ ▷ ↻
⇆ ◁ ❚❚ ▷ ↻ happened
What's keychaineditor?
yo how tf do you do graphics in objective c
is there a way to clear a CGRect I drew?
Here's the bulk of the code that handles the graphics in my tweak
%new
-(void)drawBatteryBar {
UIStatusBarForegroundView *_foregroundView = (UIStatusBarForegroundView *)self.superview;
CGRect foregroundFrame = _foregroundView.frame;
barFrame = CGRectMake(0, 0, foregroundFrame.size.width * capacityPercentage, [barThickness doubleValue]);
self.batteryPercentBarView = [[UIVisualEffectView alloc] initWithFrame:barFrame];
UIColor *barColor = [UIColor colorWithHue:capacityPercentage / 3
saturation:1
brightness:1
alpha:([barAlpha doubleValue] / 100)];
[self.batteryPercentBarView setBackgroundColor:barColor];
[_foregroundView insertSubview:self.batteryPercentBarView atIndex:0];
}
%end
so like this?
From this:
%hook _UIStatusBar
%property (nonatomic, retain) UIVisualEffectView *batteryPercentBarView;
//-(void)updateWithData:(id)arg1 {
-(void)_updateStyleAttributes {
[self drawBatteryBar];
%orig;
}
-(double)alphaForPartWithIdentifier:(id)arg1 {
return [barAlpha doubleValue];
}
To this:
%hook _UIStatusBar
%property (nonatomic, retain) UIVisualEffectView *batteryPercentBarView;
//-(void)updateWithData:(id)arg1 {
-(void)_updateStyleAttributes {
[self.batteryPercentBarView removeFromSuperview];
[self drawBatteryBar];
%orig;
}
-(double)alphaForPartWithIdentifier:(id)arg1 {
return [barAlpha doubleValue];
}
wait
uhhh idk wtf I'm doing lmao
add the subview once in init or didmove to window
then change the frame as necessary
dude I'm really fucking stupid you gotta dumb that down
instead of adding it numerous times
Yes, sed caught some false matches I guess
nvm you only add it once i think bc of insert
ah ok
either way you want to call that once though
and then set your subviews frame in layoutSubviews
so like
or really just hook UIStatusBarForegroundView bc thers a _UIStatusBar getter on it
which would be less jank than accessing superview
Literally tells you the issue right there
You don't have utf8proc
I'm going on vacation tomorrow, don't ping me until next Saturday
yeah, lemme rephrase to most people
who don’t feel like paying 5k
yeah it just doesn’t add shit to the text field
mad annoying


fr tho i got my ida 7.5 with decomps im set for life basically
probably not malware
tm
nah def not
ida 7.5 has malware 
confirmed by one of the people who made it
the leak has malware
pretty sure not the one i have
according to that lillie person here
@lillie
whom i cant ping
o they left

Who
Maybe they left because it was malwrae and you are doomed
bad crack
ida 7.5 cracked by verble only clean crack 🙏
as long as I can decompile binaries I don’t care if some Russian guy has a rat on my pc
trol
and i do banking on my shit
what
not often but i use paypal

#include <cstdio>
#include <cstdlib>
void ls(const char *args) {
if (args == nullptr)
return;
char cmd[128];
std::snprintf(cmd, sizeof(cmd), "ls %s", args);
std::system(cmd);
}
int main()
{
ls("-alh");
return 0;
}
average gnu code
im drink as fuckh holy shit
i just had
like a shit ton of of tequila
i can’t even type nothing
i just texted my bf som uper horny shit
i wish i could fuck him rb
rn
i had like idek shots of tequila
but a lot
shir i need to get off discord
ima regret all this shir later
youre like 14
nah 16
duh
ish
wtf autocorrect
why did
siri ye
to duh
from nah
i was 13
when i joined comm
which is why i was so stupid and
why i said all that shit
like i regret it so badly i fucked everything up just because i couldn’t accept myself
i started drinking in like 2020 but it’s only gotten bad recently but i don’t view it as bad because i feel good
im gonna get off this acc
before i say anything stupider

it’s been 2 hours since then wtffff
how’
im just gonna continue texting my bf
charmeleon lookin ass
gm
Gm
gm
mhm
gm evelyn
gm
how is you
lol
yes
guys an ios 15.3.1 really cant be jailbroken?
Besties look at my failed render
wow
That is because NSUSERDEFAULTS won't init the value
Wait you gotta do is check if the key is null
And if it's null, set it to 100
Otherwise you the actual value
On vacation
I didn't bring a laptop
And build.proc doesn't have the key for blink on my iPad
I test my PRs on macOS 
when you lie on the template 🙄🙄
give me push access and i’ll have PR’s cleaned up by the end of the week
Is there a way to create iOS 14 tweaks on MacOS Monterey? Since I can’t install the prev xcode for the toolchain
(Currently still on MacOS Big Sur but looking to upgrade and just planning in advance)
Yeah you can still download the old xcode and put it in a specific directory (I forgot where kirb said to put it to me) and a path to the old toolchain.
I’m guessing it’s an entry in the Makefile to point to the old toolchain?
Ah ok, was already thinking lmao
Thanks!
I honestly can't remember at the top of my head, @lime pivot you remember?
Oh yeah, also, is there any knowledge on if tweaks compiled with 12 will be compatible for A12+ iOS 15 devices, or is that a “wait and see” thing currently?
Kinda like 11 worked for both iOS 13 and 14
It didn’t? I thought it did. My bad
Alright. Well thanks for the info!
13 is arm64 10+ (if you add an argument, 13+ otherwise), either 14 or 15 arm64e, can’t remember if abi changed again
I thought this was a math problem

Yes it does
clang11 works on 12 13 14 15 if ur not using swift
That’s what you’re supposed to use
Swift is ✨special✨
Clang 11 breaks for 14+ for arm64e when using swift
You confused me
Clang 11 only breaks when swift is involved on 14+ arm64e
Clang 12 is fucked for all arm64e on 13-
That’s why the Aemulo app is clang 13 but all the dylib are clang 11
Yep
@ocean raptor get people to send debs of their prs so it can be tested
might help accelerate things
gaming
or he could just turn off notifications
4head
ur 15, go finish your great gatsby chapter 6 assignment
lmaoooo
why would i know
joe
i’m not into that incest shit like you
short for josephine
fr
Usually peoples prs fail to build 
Nah, just you 
trolled to death
is that some power management framework thing
assuming this
pmset on ios
You can compile pmset for iOS
it links power management on apple open source
so i was just being lazy
are some of these headers not public
lol
[[[NSObject alloc] init] release];
Alright

gm
gm

AMD Radeon RX 460 Graphics
hah there’s a lot of unsolicited PRs on this repo fixing legitimate bugs
does apple allow you to submit code in any way or do you just have to report bugs and pray they fix it properly
lol
so dumb
they’ve probably opened the door to at least a few dozen exploits people fixed
seeing as how bug reporters get shafted by apple
thats the apple way lmao its funny too
so many app devs who are like "sorry our app sucks but its on apple so we cant do shit"
like the 120hz debacle
which finally is fixed in 15.4
i reported a bug on beta 1 of 15.4 and they still haven’t responded to me
they didn’t merge any because the repo is just a code dump from their internal repos
2 actually
my favorite is the readme dev who didn’t really change anything, just rewrote the formatting a little https://github.com/apple/darwin-xnu/pull/4
i appreciate the enthusiasm they give off via emojis
or this guy who decided something doesn’t need to be behind an entitlement any more https://github.com/apple/darwin-xnu/pull/9
tr
my next reddit post is going to be “why doesn’t checkra1n just give itself entitlements to work”
lol
why don’t we simply PR the XNU repo to remove entitlement checks
why don’t we simply re-add vulnerabilities into XNU under the guise of bug fixes. surely no one has ever done that as a meme before
to apple’s credit they at least made their site usable now
and then right away did everything properly on github
true true
so not sure how much that was worth mr. web man’s time
oh I've reported 20+ bugs since iOS 13 and I only ever got a response on 1 or 2
they just don’t care
hello, i’m stuck in Tunisia please help
hello, i’m stuck in Ukraine please help
lmaooo
gpl is so booty
true
why is general locked @grave sparrow
Death Valley, Nevada
can you make tweaks with flutter?
@stuck wyvern
The fuck
balls

so can you
so can you
i’m writing my next app in Xamarin
Can i make tweaks in React native
yea sadly

go ahead spin up a whole react instance for your lock screen tweak
i asked because flutter has ios support, so i kinda don't understand why people be acting like it's a weird question
welp i'm on windows and want to start making tweaks
@lethal kayak
sounds like you skipped a bunch of steps when reading about tweak dev…
or just didn’t care to read anything
i always skip steps
didn’t need to tell me that
obamium
why bother reading instructions when i can just ask stupid questions
It's like buying a paper factory to build a paper plane, instead of just buying paper
that’s how you get people to easily ignore you
damn
and never take you seriously again
true
you're gonna have to take me serious when i make ios 1.17
i apologize for my brain damage
@steep veldt hows covid
im dead
inshallah
@everyone
@glacial matrix just wanted to share this stunning code i wrote to decode an a value read as a little endian int into a string
Dafuq

hangover headache made this take longer than it should've to figure out how it even worked
i turn the int into a hex string, chop off the 0x, iterate the string but only operate on every other byte, then decode the two characters (which represent a single hex byte) as a character and add it to my string
then invert the whole thing bc it was loaded as a little endian ent
Yeah no. That’s not good
bc lord knows there's no built in way to convert ints -> bytes -> strings
some of my code is ✨ so nice ✨ and then every so often there's crap like this sitting around
If you give me an input and output (with types) I can have an answer for you tomorrow as I’m in bed going to sleep
Not sure if I should press x
my next reddit post is going to be “why doesn’t checkra1n just give itself entitlements to work”
int.to_bytes says hi
yes, I figured it was obvious that was sarcasm
i == 0x12800 and spraySize == 0x100000 not sure why its crashing nowhere near endpoint
@grave sparrow any idea's?
not really no
this is just an app heap allocation
it should let me access the full size unless theres a limit to heap alloc on iOS?
the max alloc size is 0xffffffffffffffff lol
so alloc is not the issue here
this is so bizarre

Shouldn’t be a problem tho since in can access the first 0x127F8 bytes @grave sparrow
fr
They have been...

Dude I’ve had that for like years now
That used to be my discord status in like 2019
fr
Oh, pre-pandemic!
Oh yeah I remember 👍
oh, no, you need to create an instance of the class first
your mother’s void is public 👍
private static Comp248secU instance;
public static Comp248secU getInstance( /* all params here */) {
if (instance == null) {
instance = new Comp248secU(/* all params here */);
}
return instance;
}
you then call this static method, and it creates an instance for you if there is none or it returns the existing instance if it already exists.
then you can retrieve the instance using:
Comp248secU comp248secU = Comp248secU.getInstance(/* all params here */);
it's not too bad actually, I expected worse
think C++ but without ~&symbols:: everywhere and compiled to bytecode running in a VM
c++ try to go 5 minutes without ~::&&~:: challenge
Zebra 2 is my first project where I’ve been forced to actually use C++
I’m glad to say I’ve avoided it this long
my code … hopefully works
mfer uses assembly and says java doesn't make sense
true lmao
use this.studID
add this.studId to refer to the variable of the class
alternatively, actually learn java
true 
gm
he gon
nice
Assuming it’s a pac issue is stupid I already fixed the problem anyway
There was just another call to the function with a smaller size
/warn @sharp elm using java
british people call erasers a rubber

TableViewCell *cell = this->dataSource->CellForRow(this, path);```
@lethal kayak [redacted]
what language
true
should've used trunk
true
c++
I mean honestly not to bad from a syntax standpoint
Other than passing this over and over

@grave sparrow get a vps
why
my balls in your mouth
that wasn’t an option
we can not

What a wholesome interaction
Wtf did I just read
i’m assuming it’s not an issue with gnu make itself
Release it to the world 
Call it Springtomize Reborn

I'm gonna go to bed
is late + I need to shower
gn



trilling
it's a bug somewhere between the latest guh-noo make and bash
gmake -f Makefile.make package 2>&1 | grep -Ev 'getcwd|descriptor'
here's your solution

yeah, you can definitely ignore it
@ocean raptor does pro on macos not have man?
kind of an issue considering pro uses zstd compressed manpages, but, Apple man has no clue how to read those
Are compressed manpages a post-2006 thing?
nope but zstd is a post-2020 thing 🙃
Ah yes
i rember cam showing how to add custom decompressors to man
and there's man-db in pro
i think?
found it
ooo thanks
though this workaround means that anything that depends on exit codes (CI/CD or the like) will see grep's status code instead of gmake
and you might have an unsuccessful build marked as successful
cursed fix: exit "${PIPESTATUS[$(( ${#PIPESTATUS[@]} - 2 ))]}"
can't you do sed -r 's/.*(?:getcwd|descriptor).*//' and set -o pipefail instead
you can do rm -rf /*
or:
set -o pipefail
gmake -f Makefile.make package 2>&1 | { grep -Ev 'getcwd|descriptor'; true; }
are we challenging each other to most complicated solution possible
sed -r '/.*(?:getcwd|descriptor).*/d'
true but at that point do you even need the .*s
¯_(ツ)_/¯
would sed work better than grep anyway
im using grep in github actions and the build logs arent streaming
they just come all at once
oh
yeah even aspen said it works it just spams a bunch of junk

just build an arm64e fakeroot
not that deep
we love xcode installing a bunch of sdks no one wanted
“it’s more optimized”
proceeds to randomly not work
say what you will about visual studio but it’s more reliable in my experience
visual studio asking for a reboot after installation 

I’ll give it to Windows at least that file locking kinda makes sense
but counterargument I don’t want to reboot because a few exes have some dll loaded
the logic is just like try to replace file → access denied? add it to the update file at startup registry key
fiona
I’m still disappointed that Microsoft gets that their platform is so very diverse that they need VS to be modular, just install the stuff you need as you need it, and Apple is like nah, 32GB xcode updates containing everything we provide for every platform we currently ship
*oh yeah and we compress it all in a proprietary container format with an extremely inefficient decompressor algorithm that some dude on github managed to remake 70% faster
yea basically
i like the visual studio installer
i don’t really use vs much bc i hate it for other reasons but lmao
i swear it couldn’t be any slower
when accidentally click "open in visual studio" with an HDD 
Apple is so adverse to making things work better for their users with modular OTA updates I just don’t get it 
i saw saagarijha’s unxip it was much faster than darling-utils from what i heard but i don’t think we could get it to work
or something like that
windows on a hdd is already bad enough
system apps do now install from MobileAsset, the app actually does get deleted if you delete on the home screen, doesn’t just hide the icon like it used to
it was alright, that was in the Windows 7 days
but man I hated opening vs by accident
but the versions are still tied precisely to the exact version shipped with the OS you’re on
Windows 8+ on an HDD is just pain
even the most minor Music.app update can’t be shipped to you without issuing a complete iOS update
gotta write those advertising ids
true
such a bruh moment
Isn't music.app from the App Store though?
Pretty sure it's not shipped by default on iOS
they create some of the most modular and robust systems for their software, then proceed to not use them half the time

hey man at least you can get an update for the testflight app every 6 months or so
everything else you just gotta fuck off
meanwhile Windows and Android (and do I even have to mention Linux) manage system apps as just the “base” version, with updates installed automatically from Windows/Play Store
Would be nice if iOS would do like Android for system apps, letting them be updatable from the App Store, on Android if a matching app with the same key as a system app is found, it'll use the newer version from the Play Store instead of the system app
Yeah, nearly all Android system components can be updated from the Play Store
even the built-in webview can be updated
it is?
i don’t think any of the default apps are actually deleted when you press delete
yes you can fully delete it
because they sure do reinstall awfully fast
pretty sure they do since ios 13
Yeah only system critical apps can't be deleted
my iPhone 8 is stripped out of all apps except those that cannot be deleted
Aren't they usually pretty small though
it’s both deletable and a system app
wack
yea but cellular sucks on ios 15 so it’s still too fast
it’s not an app store app at all, they use fake listings that actually just download from Pallas (MobileAsset)
You need that booster shoot if you want faster cellular 
interesting
my phone literally doesn’t work 70% of the time
fr
but to be fair i think that’s the stupid mycock pac file i have no way of deleting
I thought we've established your phone was built different from when we beta tested Taurine
because i didn’t understand how it worked when i installed it
yesterday at school my celular didn’t work at all
yet i never had that problem on ios 14
and that’s happened more than once since 15

i’m pretty sure we’re just in a new era of antenna gate anyways
got that dual sim coverage here 
really because Apple being Apple, they can’t help but stick a shitton of private frameworks and daemons in the base OS, that they can’t maintain if the apps had to conform to what a real App Store app can do
even despite that they can use private entitlements
I guess it'd require a major refactor of the OS to have system components be updated outside of system updates?
I've got an e-sim
I got a t-mobile prepaid esim for when I'm in the US
I paid like 40$CAD a month for 10gb of data and unlimited text/calls
iirc
pretty sure the dual physical sim is only in India and China or something like that
not sure how long I'll keep it, I'm in Canada till July and may head back to the US afterwards
kinda wanna keep paying for it to keep the phone number
Mostly got it to get data in the US without paying stupid fees with my main carrier
cope
that’s like 6 roubles

I had a Cupertino area code number on my US sim lmao
"Area code 326 will serve west-central Ohio to the north and east of Cincinnati"

I guess they gave me an area code based off my location
activation process was just like “what zip are you in rn” and I was like, of course I’m in 95014 bro don’t mind that my geoip is in Florida
lol I just use my bf's address for it
this was a screen totally separate from account/billing info
you could tell it was like the actual SIM provisioning system not the billing system
my new futon frame is on its way, finally I won't feel like I'm sitting on the floor 
my frame is so fucked I feel like my couch is gonna snap at any time 
I read that as shitting on the floor 
don't judge different cultures Adam
I don’t suggest doing either sitting or shitting on the floor
now be kind
oh sorry, 7 roubles now
with Russian currency fluctuations it’s at least equal to 40 roubles
Gotta love UPS, apparently my address wasn't correct for them and then they just gave up on trying to ship my stuff

eta:
good luck
they made a little rebound today, proud of them
Time to call my friend who works at UPS yet again 
I hate UPS so much, they always manage to fuck up finding my place
lucky you have that contact
I'd be fucked without this contact lmao
disappointing it’s something you have to take advantage of
So here's the thing, you can change the delivery but
you need to confirm your identity
BY RECEIVING A MAIL AT YOUR PLACE
Bro how the fuck am I supposed to get a mail if they can't even find my god damn place

why am I summoned here
com.fiona.fiona
uh oh
just move somewhere they can actually find bro it’s not hard smh
what did capt do
I have to deal with this stuff too every time I order food
I've had to stop using UberEats because of that
UberEats doesn't even use the address you put in
instead it uses your gps location to tell where the driver to go
what is this
my gps location inside my apartment leads them to the wrong street that doesn't lead to my place

do delivery notes help? or do the drivers just legit never check till they show up at the place
I used to send them a message right after ordering but I just gave up
I use skip now instead and that's a bit better
god why do they use gps for an indoor location







