#development
1 messages · Page 311 of 1

It’s more characters to type that pull sh file
What?
do u not have a pc
The link for those lazy
I’m at school lol

is there anyone else that can help me
You can do that too?
yeah but on pc it's on by default
I left my MacBook on overnight, haven’t turned it off yet
oh
that explains you drinking all that coffee
you left me no coffee
LOL
but yeah
I haven’t actually been editing one file for nearly 17 hours
eta never
i realized the error of my ways
@faint lion wtf gir bot


Hi guys, so I have the following file:
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
int main ()
{
//trying to put this in another file,
NSString *deviceModel = [[UIDevice currentDevice] model];
//only for debugging purposes
NSLog(@"%@", deviceModel);
return 0;
}
How would I separate the NSString so any .m file could call it? I've tried making a class with properties, but that didn't work.
[[UIDevice currentDevice] model]
thats how
any file in a project can use that
given that the declarations are made prior to the file being processed
if your really want, make another function in global scope
and make sure that it is declared before the importing of other project files
then just call the function
do NOT call main
That function would have to return type char
Right?
depends on if you want to return anything, and no, in this case you would be returning NSString since that is the type you have
if you just want to log, then you can make it a void
So it could be something like this:
NSString *model() {
[[UIDevice currentDevice] model]
return model;
}

but no
Either:
NSString *model() {
NSString *model = [[UIDevice currentDevice] model];
return model;
}```
or:
NSString *model() {
return [[UIDevice currentDevice] model];
}```
you can't just return an non existant variable
With c you can do:
printf("Your model is %s", model=model());
What would be the NSLog alternative?
Also, how would you print a NSString?
NSLog(@"%@", coolString);
Well, the warning from clang is:
warning: format specifies type 'id' but the argument has type 'NSString ()()' [-Wformat]
And I get a segmentation fault when running on the iOS device itself.
@gloomy knoll %@ is the format code that u use for stuff with pointers
like NSString *, NSDate *, etc
So I can ignore that warning from clang write
could u show me some of ur code, so that i can get a better understanding of what your trying to do?
Yeah sure
//main.h
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
NSString *model() {
NSString *model = [[UIDevice currentDevice] model];
return model;
}
//main.m
#import "main.h"
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
int main ()
{
//only for debugging purposes
NSLog(@"%@", [model]);
return 0;
}
Main.h and main.m are two separate files, I just joined them to make things easier
NSLog(@"%@", model());
no need to put brackets around it
also u don't have to import Foundation or UIKit again in ur .m file
since u imported ur .h which already imports the frameworks
bruh
what is that code
do not import the same headers twice
and also thats a c function
NSString *model()
is a c function
Does it need changing?
No because you don’t have a class
Just use it as a c function
Call it with ()
model();
Do it 830 times if you want, your rule applies to include

yes bro just #include forever
#include loop ez

That makes the binary smaller right?
/s
it does not affect size at all
Yeah IKr
#import <stdio.h> for the first 300 lines go ahead
@restive ether @narrow mason @lethal ice @twilit jungle
Gm
true
True
gm
@faint lion @narrow mason @lethal ice @twilit jungle
@primal perch true

true
me when utf-24
you should check out smallbasic
it's a terrible combination of C# and VisualBasic that is for kids
Haha
@grim sparrow here's a chip-8 emulator i wrote using it: https://github.com/pixelomer/Chip8-SmallBasic
i absolutely hate it


does anyone know what character this is?
it only shows up when someone is using an iPhone
 <-- this is it
it's an invisible character when typing it, but it shows as that
@manic forum visualbasic needs to be deleted
Never used visualbasic actually
Balls
Nuts even
@late ridge you mean that obj character?
ya
yeah that shows up when you use dictation on an iPhone
i wonder why
You know when you dictate, it shows that spinner thingy? i think it leaves a hidden character @late ridge
oh, that's strange but whatever lol
yeah
Bruh

happy bday @vivid dew
Happy bday @vivid dew
triangles do not associate with age
They associate with 3 angles that are 180 degrees though
You can calculate the age if you use the pythagorean theorem
If A squared + B squared is equal to c squared. That means we can calculate the booty jigglewatts to confirm how much jigglewatts his booty is generating and that should give us a good estimate of his age


Perhaps that is why my math was not adding up
@tepid olive me trying to explain to people why my bot commands aren't working because they have an extraneous character before the bot prefix
_ _


n for real coal
just evolve bro when you do you will realize why it sounds familar
@interface SBReachabilityWindow : SBSecureWindow
-(id)view;
-(BOOL)pointInside:(CGPoint)arg1 withEvent:(id)arg2 ;
-(id)initWithWallpaperVariant:(long long)arg1 ;
@end
``` instead of using the foreground view i decided to use the UIWindow. can i use the pointInside method to make it register my gestures?
@twilit jungle
%hook SBReachabilityWindow
%property (nonatomic, retain) UIView *customView;
-(id)initWithWallpaperVariant:(long long)arg1 {
self = %orig;
[self _setupView];
return self;
}
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
{
}
%new
-(void)_setupView {
self.customView = [[UIView alloc] initWithFrame:CGRectMake(100, -200, 200, 200)];
self.customView.userInteractionEnabled = YES;
UITapGestureRecognizer *tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapAction:)];
tapRecognizer.numberOfTapsRequired = 1;
self.customView.layer.masksToBounds = NO;
self.customView.clipsToBounds = NO;
NSLog(@"reach");
[self.customView addGestureRecognizer:tapRecognizer];
self.customView.backgroundColor = [UIColor blueColor];
[self addSubview:self.customView];
}
%new
- (void)tapAction:(UITapGestureRecognizer *)tap
{
NSLog(@"tapped");
}
%end``` this what i have so far
Your answer is in the public docs provided by Apple
Either one, they both have benefits and flaws.

UIView *candidate = %orig;
if (arg1.y <= 0) {
candidate = [self.customView hitTest:[self.customView convertPoint:arg1 fromView:self] withEvent:arg2];
NSLog(@"tapped");
}
return candidate;
}``` i did this and nslog returns tapped twice when i press so i must be doing something. still not registering the touches
just got to figure it out
That is registering touch events.
yes but the gestures reconginizer is still not registering
Then its time to learn about view hierarchy's part of the event handling.
in theory what i wrote should be working correct?
close but not quite
UIView *hitView = [super hitTest:point withEvent:event];
if (hitView != self) return hitView;
return [self superview];
}```
this is what i could use i think
No
If you are hooking window there is a lot of things wrong with that
Also thats how you block events from going to self, doesn't really forward events to custom subview.
never knew this could be so hard
Its not as hard as you are making it
I wish i knew what you were talking about
https://developer.apple.com/documentation/uikit/uiview/1622469-hittest?language=objc
This method traverses the view hierarchy by calling the pointInside:withEvent: method of each subview to determine which subview should receive a touch event. If pointInside:withEvent: returns YES, then the subview’s hierarchy is similarly traversed until the frontmost view containing the specified point is found. If a view does not contain the point, its branch of the view hierarchy is ignored. You rarely need to call this method yourself, but you might override it to hide touch events from subviews.
This method ignores view objects that are hidden, that have disabled user interactions, or have an alpha level less than 0.01. This method does not take the view’s content into account when determining a hit. Thus, a view can still be returned even if the specified point is in a transparent portion of that view’s content.
Points that lie outside the receiver’s bounds are never reported as hits, even if they actually lie within one of the receiver’s subviews. This can occur if the current view’s clipsToBounds property is set to NO and the affected subview extends beyond the view’s bounds.
I still don’t really understand
Do i need to return yes for the pointinside method
I set the clipstobounds to yes
So i think theres is a view in front of my view that is recieving the points
Right?
From that description, you can basically figure out the entire implementation of hitTest:withEvent:. Given that, try to step through that code to see why your event isn't being forwarded.
There are multiple things that could be happening that could be preventing your gesture to be recognized. All of them can be figured out by stepping through that.
Okay
If a view does not contain the point, its branch of the view hierarchy is ignored. You rarely need to call this method yourself, but you might override it to hide touch events from subviews. not really sure how to do this.
This method ignores view objects that are hidden, that have disabled user interactions, or have an alpha level less than 0.01. i have already checked that
That applies recursively
Points that lie outside the receiver’s bounds are never reported as hits, even if they actually lie within one of the receiver’s subviews. This can occur if the current view’s clipsToBounds property is set to NO and the affected subview extends beyond the view’s bounds. i set clips to bounds as yes
CGRectContainsPoint(view.bounds, point) is the if condition
so instead of if (arg1.y <= 0) i would use that?
Thats not what that description means... it says nothing about changing behavior when clipsToBounds is yes.
No, CGRectContainsPoint(view.bounds, point) is what it would use to check whether view contains the point or not.
right so i would use that in the pointinside method
Thats what its already using
so i should return yes?

i feel so stupid bruh
because at this point i am lost asf
should i just quit and do something else
if i can't even make a simple gesture work
these are things i found in reach it- (_Bool)gestureRecognizerShouldBegin:(id)arg1 { if (enabled && (![arg1 isKindOfClass:%c(SBScreenEdgePanGestureRecognizer)] && ![arg1 isKindOfClass:%c(SBReachabilityGestureRecognizer)])) return false; return %orig; }
%orig;
if (!self.ritMCPVC) {
BOOL notch = NO;
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
{
switch ((int)[[UIScreen mainScreen] nativeBounds].size.height)
{
case 2436:
{
notch = YES;
break;
}
case 2688:
{
notch = YES;
break;
}
case 1792:
{
notch = YES;
break;
}
default:
{
notch = NO;
break;
}
}
}
UIView *view = self;
view.userInteractionEnabled = YES;
view.layer.masksToBounds = NO;
view.clipsToBounds = NO;
self.ritMCPVC = [%c(MediaControlsPanelViewController) panelViewControllerForCoverSheet];
[self.ritMCPVC setStyle:style];
CGFloat height = [[%c(SBReachabilityManager) sharedInstance] effectiveReachabilityYOffset]-(notch ? 30 : 0);
self.ritMCPVC.view.frame = CGRectMake(view.frame.origin.x, -height, view.frame.size.width, height);
[view addSubview:self.ritMCPVC.view];
[view bringSubviewToFront:self.ritMCPVC.view];
}
self.ritMCPVC.view.hidden = !enabled;
if (self.ritMCPVC.style != style) [self.ritMCPVC setStyle:style];
}
-(id)hitTest:(CGPoint)arg1 withEvent:(id)arg2 {
if (!enabled) return %orig;
UIView *candidate = %orig;
if (arg1.y <= 0) {
candidate = [self.ritMCPVC.view hitTest:[self.ritMCPVC.view convertPoint:arg1 fromView:self] withEvent:arg2];
if (self.ritLastSeen) {
candidate = self.ritLastSeen;
self.ritLastSeen = nil;
} else {
self.ritLastSeen = candidate;
}
}
return candidate;
}
%end```
hes hooking layout subviews
and bringing the view to the front and also setting user interaction to enabled
this is all i can see that hes doing in order to make the gestures work
hello
hi
Paid $21 to make a 5min decision 🤠
i thought that was a pill box for a second
@tepid olive what'd you settle on
candidate = [self.customView hitTest:[self.customView convertPoint:arg1 fromView:self] withEvent:arg2];
NSLog(@"tapped");
}``` when i tap on customview it logs tapped twice. when i tap outside the view. it logs once.
Clear
yo hbd triangle 😳
I thought he was an admin for a second
those clone hero hands too strong for mx brown kek
damn you dont have a guitar?
real guitar or controller guitar
Controller
oh, yeah i have an xplorer
and you still play keyboard? why?
no im saying because i sweat so hard my fingers more stronk
oh lmao
https://developer.limneos.net/?ios=13.1.3&framework=SpringBoard&header=SBReachabilityGestureRecognizer.h @twilit jungle could this help me
how the fuck do you register touches in reachability bruh
Pretty sure thats the gesture thats in home bar to trigger reachability
does it?
Someone give me a simple tweak idea to practice. I wont let you down
Hide the dock background
Hi, I’m trying to change a color of a Swift class, neither this self.backgroundColor nor this [setBackgroundColor] works, anyone can help me?
Is the swift class being hooked?
Yes, I properly hooked it, I gave it a custom name and initialized it in the ctor
Okay let me rephrase that, is your hook being called?
I’m not following
Is the place that you are setting the background color being called?
Yes
If you read the background color value is it the one you set?
The reason I ask that is to determine whether something else is hooking/overriding the background color setter (which is what you should be doing in this case if you want to force it to specific color) to hardcode to be specific value.
When i get home ill hide the dock background.
true

gm x64 king
gm good sir, how’s it going
i am doing le calculus homework
ah nice, nothing spicier than calculus on a wednesday afternoon
true

oldschool people. He’s failing to realize that he’s applying his own expectations towards apple’ products while negating the essence that apple will and won’t ever give a fuck about existing standards unless it bites them in the ass properly
AirPods wasn’t a new market, same headphone market mixed up with low-quality earphones with great connectivity features
AirPods Pro fucked everyone later with better quality and same great connectivity featureset imo. They compensate in areas where the product may lack so it feels somewhat balanced which is what apple kinda does best: compensate & sell it
if people wanna jam in their sony’s that’s fine and dandy, but why shit on a product you hate as an audiophile
that’s not the target audience anyway
I’m not crazy on audio quality, so for me, AirPods Pro are fine
The noice cancelling works well, the battery lasts, connectivity is great, they’re fine
But I do agree that the Max really need to stand out
Otherwise they will fail
they probably can’t beat a high quality pair of Sony’s but then again, if you’re an audiophile I don’t think Apple’s the way to go. It feels more like a niche product for those who own apple products already due to integration and comfort features
i just don't see a point in buying the max
like legitimately
what is the point
you can get same quality for $200 less
see but his entire point he makes is completely negated by the fact they bought beats
Actually apple can be the way to go
They have a usbc to 3.5 adapter DAC that measures very well in SINAD
For 9$
for audiophiles?
they scalp the best engineers in every field even then, but with this one they specifically bought a leading company in the area their products specialise in
Ye
gm
That adapter is better than most sound chips
i can understand buying an iphone over a cheaper android for sure but buying max over cheaper options that deliver the same audio quality, i have no idea why
not top-end, but the best of the best of mid-range equipment
oh damn that’s some useful info, thanks for that insight
which is apple in general
tbf i haven't compared apple's side by side with something else
https://www.audiosciencereview.com/forum/index.php?threads/review-apple-vs-google-usb-c-headphone-adapters.5541/ link to comparison
This is a review, detailed measurements and comparison of Apple's USB-C adapter to the current and last version of Google Pixel headphone adapters. The Apple adapter costs just $9 including one day shipping for free. The Google dongle costs $12.
Not that any of these are large by any stretch...
@tardy narwhal
Honestly I’m interested for reviews
my $99 sony headphones outdo the audio quality on my powerbeats and every set of airpods but that’s not why i bought either of those and it’s a dumb comparison
ooo you’re an audiophile?
But they’re good
you have to recommend me good audio gear man
Pros are expensive but in my opinion worth it
im a broke audiophile 
I blame jules he got me into it
i have a budget of roughly 9-12k
i can recommend u stuff for a $500 budget :(
blame jules for everything
You won’t need any more
do you have links for the products or brand name to google for?
Well for headphones idk if you want actual speakers
the trick is to hang out with coke addicts in the music industry @tardy narwhal
they’ll sell you high end stuff for less for coke money
jules invited me to his home theater
was thinking if I can use the room as cinema and audio room
I think r/audiophile has a wiki for go to builds
he said it was on his private island?
get decent cables but don’t be the guy who buys 1000$ cables
ah successful people
I’m beyond successful lmao, don’t mistake me for the good peeps who made it. just happen to have some good events in life
My current setup is literally a 99$ amp a 65$ dac and a 150$ headphone so not that expensive
still same dumbass 22 years ago
idk why i’m talking like i run cheap equipment
probably a 7k setup designed for music production i just happened to get a huge chunk of it free or cheap af


https://www.sweetwater.com/store/detail/FBQ3102HD--behringer-fbq3102hd-31-band-stereo-graphic-eq favorite product in my entire studio tho
jesus fuck that link
Assuming you’re running it from your computer anyway what’s the advantage to that vs software
can’t amplify software output in the machine as well, go +10db and it sounds awful
- i can run echo dot or bluetooth receiver output through it if i’m listening on phone / echo
one thing i don’t actually have is any amps whatsoever, my speaker setup is so jank compared to everything else
have a 15” sub that was supposed to be in a car hooked up
When pic lmao
didn’t buy an amp with it bc i don’t know car audio
lemme dig through camera roll i’m not turning my lights on rn

24 channel feat. a virtual cabinet pedal for some reason(?)
sub featuring the bookshelf and feet bc it’s a nice footrest
True
old af photo but it hasn’t moved
Krit leg reveal wtf
Nice toes man
thx
sound the alarm
No skinny jeans. Thats a good sign
the bookshelf from a year ago
true doggo
top left is a new AT vinyl player
and bird
top right is an antique i’ve been restoring
tape/8 track/vinyl/fm/am/recorder/throughput but it sucks
Why do you have that. Are you like an audio engineer?
The extent of my gear
I see a eq on the bottom

Audio interface
the EQ is the one i posted earlier
this bad boy
krit hates mids confirmed
hell yeah i do
midscoop literally anything that gives me an EQ option
I do audio mixing and mastering as well
i used to do sound design and audio engineering / mastering for artists and a bit for myself
a lot of stuff like the 24 channel mixer i have up there is stuff i got from places i worked when they upgraded equipment and got rid of the old stuff
mic is behringer C1, not high-high end, just the only condenser they had at the shop here
and im not using a dynamic with this setup
Right. Thats hella cool bro
Alot of people that do this also do audio as well
Which is interesting
awful photo but i think i got my whole desk audio setup in the shot
csgo true
C1 through a xenyx 502 that runs straight into a uca202 and into the pc
can you tell i like behringer lol
then i use the usb card’s output as an easy FX channel for my guitar pedals which runs back into the xenyx
so it can be a mic input or external FX channel depending on what i’m doing at the time
i don’t have the space for a guitar amp + cabinet, so the yellow pedal virtualizes all of that which is amazing
The Beyerdynamic headphones slap especially with the velor headphones pad
they do
well when you either eq 9khz or use paper towel mod
otherwise the sibilance shreds you
https://www.pitbullaudio.com/amptweaker-tight-metal-st-distortion-guitar-effects-pedal-with-sidetrak.html orgasmic distortion pedal
last one i’ll ever buy
lord i forgot i used to do audio yall woke the nerd back up again good job 
metal true
used to be able to play the raining blood n tornado of souls riffs
not gonna try rn bc i don’t wanna be depressed when i can’t
well i could probably do the first one pretty quickly, just need cocaine bc that’s the secret there


alright just lemme buy shit off of u so u can feed ur coke addiction
I mix my shit with laundry detergent
Its top grade
You might have the smell of tide in your nose but its got that kick
why does half of everyone here involved w drugs and audio equipment
like it’s not a common thing just a non-zero discrepancy
like how the r/jb population tended to be the type of people who bought and sold basketball shoes and listen to x
which i cannot understand why that correlation was so strong
drugs are cringe

I haven't done hard drugs in a long time, but weed and alcohol are my main jams
yes
Thanks 👍🏼
tr1
true drugs
true audio
false, true

krit alive today?
well i slept from 11 last night to 5pm this evening so

I been grinding out cod
cold war?
ok
true
true
true
True
True
True
true
Major fax
Holy fuck
yall say true instead of the normal zoomer 'mood'
true
true
true
big fax
📠
:big:
god what a mood
@nimble parcel definitely not the place to ask but i’d kill for the ability to use a custom bundle ID in supercharge
won’t let me hook app extensions at the moment
(what i really need is to hook everywhere a framework gets used, including the app extension)
i’d consider hooking that behavior into supercharge itself but it crashes when trying to analyse its own frameworks
LOLOLOLOL
honestly
sorry for the ping
I would see y'all as the nerdy shut-ins who don't go anywhere lol
but then again most people are here to flex their cool looking phone to their friends

Cannot imagine being a jailbreak developer
true
My joke
True
i left the soldering iron on 😳
Throwback to 8th grade leaving the soldering iron on my thumb
pog
throwback to me almost burning my house down
Immediate nerve death, didnt feel it
throwback to an hour ago when i almost electrocuted myself
true
True
mf needs to get his heart checked
soon
:weed:

true
com.qiop1379.weed
ye
weed.webp
that has two penises
and is therefore gay
please refrain from making homosexual cables or you will become one
More like 👊
i redact this statement
true
LOL
Shepgoba is canceled
that’s going to be in the metadata section, at least in the jailed version. I don’t know whether changing the app id of an installed app is a good idea but app extension support in general is certainly something we want to add
:nooo:
F
Supercharge is going to be legendary
jk 2
Everyone is about to have the developer tag LMFAO
No developer tag if you use supercharge
I mean they already give it to literally anyone. Just look at me
😂
holy shit im zooted i havent smoked in a couple days
true shep smoked weed
wtf
Advanced just means u chillin
it just means you waste even more time than the average orange name
Bruh... you made procursus😂
true
no it means you have total control over the dev channel which you can abuse whenevrr you want
I would never make a procursus
I have no idea what that is
bro
Sounds like a sickness
wtf are u saying
there was a dev backroom right? What do they do there
cum
f
yea
pls
compression
discord
gn
Lmaooo
Who did this
I have this code:
%hook SBIconListPageControl
-(BOOL) enabled{
%orig;
return NO;
}
%end
can someone help me with it
Looks great bro
it doesn't disable quickpage scrolling
Why do you call orig
true
thats a control my guy
Why do you call orig lmao
as in UIControl
as in the UI which isnt the direct bool
mobilegoose true
then you cant hook that header
true
Ill hook ur header
The third value for a bit
😉
also when i make changes and save then make do, it says nothing to compile, is that supposed to happen
log base 3 of deez nuts
0121112
base 3 wtf

gm
too high to think of the rest
GUYS PLEASE HELP
and also too dumb
no

oh
How u finna make a tweak but not know how make works
oh alright
we literally do not know the answer to your question/dont want to answer it
Does anyone here have experience with fixing memory leaks in nodejs
The answer is make clean lol
I have written a hello world in node js

I am leaking about a million array objects how do i fix ty
make clean plagued me when i started tweak dev because theos had a but where on ios it didnt ever recompile
unless u make clean
Big brain time
Wtf
everyday mans on the block
lmao
rotfl
hayden when next guitar video
I put more focus into my exercise goal
I have to gain 20lbs in 10 days
wtf
take some of mine
Ive gained 7 in the last 6 days
I gained 100 pounds in 3 months
So i think im doing OK
Mcdonalds
185 
are u just being a fatass
yea
Im 250
Yes but im gaining healthy pounds
i mean hayden
No lol
wtf im 135
true but still
Nah they healrhy
Im dieting properly
All mcdouble gains
mcrib*
This is 1 week progress
true
Peeps who order diet drinks had me
before it was an emote
i mean whenever i get a soda which isnt that often its usually sucralose or aspartame based
mfs act like its worse than sugar and maybe long term but its one of the most researched chemicals
Soda bad
i should probably do eyedrops so i dont look baked in class in 7.5 hours
i love water
soda like once a week tops
Water coals
true
i do sweat yoga my true weight is when im dehydrated so i just dont drink water to stay skinny!
legends bro, i read it once when I was playing Pokemon platinum edition
pokemon true
Best pokemon game
Perood
wtf
gen 3 was kinda cracked though
oh bruh black 2 was lit
i mean theyre basically the same tho
Loved those games
almost
Yellow Edition though
Driftveil city theme tho
gen 1 leggo
black was my first one ever then i got diamond and then just emulated the rest lol
So u got the pussy dragon
:cum:
Instead of the muscle macho beast

bro what are these new mechanisms though

fucking dynamax
yea wtf is that shit
new games are shit to me
my pokemon takes steroids for 4 rounds
I loved OR/AS
zero effectiveness
1-5 for me
I have never played pokemon go
sword shield i havent played much
Yes
Sword shield i hear is like literally horrid
on citra?
yeah
rip
making pokemon open word is like the worst thing you can do to the game
THIS
open world pokemon could be awesome
not go of course
I disagree. If it was done right itd be good
but sword shield couldve been way better yea
the way they did it was shit
man you had to grind so hard back then to find that stupid professors aide to get xp-share
Sword and shields problem is the promise of open world with the most linear story yet
i rembmer getting gba4ios and beating fire red
true
pog
fr
Come listen to old coldplay with me
real mf
telagba though
coldplay pretty true
ill listen
Song too good
oooo nice, i shall join u. on the toilet taking a dump rn doe, not sure if it’s a vibekill
true
do it
nah ive waited 8 years
true
lmao, resell 3070 to buy ps5 then resell that for more
its not a bad idea
omega stonks
but i want the mf card to play le game
yea
true
shits literally 1K+ on ebay
fr
games coming out means everybody playing them but hardware coming out means easy resell 
fight fire with fire lol
how muchg should i pay for 3070
msrp

wtf
ive heard it both ways
so good
Who used to watch mianite
ive heard it both ways
true
Mianite was the best minecraft series of all time
bestbuy
No cap
true
depends on the day
usually like once a week
but check there at that time if you want maybe 5mins before
you got like 5 mins because they roll out stock slowly
bruh imagine how much fucking money nvidia making
so go on the site and wait, itll say like "please wait the button will turn to add to cart soon"
then checkout as fast as you mf can
i got lucky af dude the order when through but after my card failed
https://youtu.be/8XIiH8Eu0hs @lethal ice
but they gave me 24 hours to fix kekw
Hayden got me remembering why Coldplay is good
wish u were here
TRUE
rtx 3070 looks so clean
development discord guild channel
sexy graphics card
That album tooooooo good
Literal too good
true
i think i missed a fee on ebay like 2 years ago and havent logged in since
is that gonna be a problem
Sparks make u go :(

True
how many variants are there from that emote lmao
if you just want more fps though without scalping the 3060ti is a better value as its literally better than the 2080 super for 400 kek
es gibt viel, herr
Wir benötigen derzeitig alle Varianten aufgelistet um eine bevorstehende Krise zu vermeiden. Bitte wenden Sie sich an das Sommerdreieck
Christian girls on the instagram story really sayin “High on queso!”
i like how a lot of german words are spelled so different but pronounced close to english
Bro uve never been and never will be high
soad literally my favorite band now @lethal ice 
ich kann nicht das verstehen
bro they’re high on the bible you dun understand that
@primal perch wtf
bro
true







