#development

1 messages · Page 311 of 1

tepid olive
#

yeah i am too lazy to enter commands

grim sparrow
tepid olive
#

LOL

#

uhh

#

uhhhh

#

ok i will remove the pull

#

i just dont wanna forget the commands

grim sparrow
#

It’s more characters to type that pull sh file

tepid olive
#

bc my brain is trash

#

memory*

grim sparrow
#

Wait

tepid olive
#

yeah

#

well what is the issue, i just wanna know

grim sparrow
#

I’m on mobile so can’t really look

tepid olive
#

see^*

#

ok

grim sparrow
#

What?

tepid olive
#

im saying

#

i mean

#

i am correcting u

#

so can't really look > see

grim sparrow
#

I mean

#

I can’t really look at the repo cause I’m on mobile

tepid olive
#

hmmm

#

oh

grim sparrow
tepid olive
#

do u not have a pc

grim sparrow
#

The link for those lazy

grim sparrow
tepid olive
#

oh

#

i can send you screenshots?

grim sparrow
tepid olive
#

crap uhh prntscr on ubuntu doesnt copy to clipboard

#

WE'LL
BE
RIGHT
BACK

#

lol

#

so

tepid olive
grim sparrow
#

How am I supposed to know who is online and willing to help right now

tepid olive
#

by pressing the members button

#

😉

grim sparrow
#

You can do that too?

tepid olive
#

yeah but on pc it's on by default

grim sparrow
#

What’s your point

#

What can I do that you can’t

tepid olive
#

nothing.

#

it's all the same

#

also how r u on xcode?

grim sparrow
#

@dense furnaceelopers

#

kek

grim sparrow
tepid olive
#

oh

#

that explains you drinking all that coffee

#

you left me no coffee

#

LOL

#

but yeah

grim sparrow
#

I haven’t actually been editing one file for nearly 17 hours

tepid olive
#

ik

#

@restive ether please help me

#

also i am back again

#

please gir

#

i need help

tepid olive
#

@tepid olive shut up

tepid olive
#

blocked until u r a catgirl again

tepid olive
#

i realized the error of my ways

#

@faint lion wtf gir bot

undone nest
#

there is no error in the ways

#

it was the correct way

tepid olive
gloomy knoll
#

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.

tepid olive
#

[[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

gloomy knoll
#

That function would have to return type char
Right?

tepid olive
#

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

gloomy knoll
#

So it could be something like this:

NSString *model() {
[[UIDevice currentDevice] model]
return model;
}

misty cradle
#

but no

#

Either:

#
NSString *model() {
  NSString *model = [[UIDevice currentDevice] model];
  return model;
}```
#

or:

#
NSString *model() {
  return [[UIDevice currentDevice] model];
}```
misty cradle
tepid olive
#
}��
 ^``` fuck i fucked up my file encoding how
#

smh

gloomy knoll
#

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?

gaunt mesa
#
NSLog(@"%@", coolString);
gloomy knoll
#

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.

gaunt mesa
#

@gloomy knoll %@ is the format code that u use for stuff with pointers

#

like NSString *, NSDate *, etc

gloomy knoll
gaunt mesa
#

could u show me some of ur code, so that i can get a better understanding of what your trying to do?

gloomy knoll
#

Yeah sure

gloomy knoll
# gaunt mesa could u show me some of ur code, so that i can get a better understanding of wha...
//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

gaunt mesa
#

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

tepid olive
#

bruh

#

what is that code

#

do not import the same headers twice

#

and also thats a c function

#

NSString *model()

is a c function

gloomy knoll
tepid olive
#

No because you don’t have a class

#

Just use it as a c function

#

Call it with ()

#

model();

primal perch
tepid olive
#

#include loop ez

gloomy knoll
#

/s

tepid olive
#

it does not affect size at all

gloomy knoll
#

Yeah IKr

tepid olive
#

in 100% seriousness

#

if you are importing same thing it shouldnt fuck up its size

primal perch
#

#import <stdio.h> for the first 300 lines go ahead

#

@restive ether @narrow mason @lethal ice @twilit jungle

#

Gm

restive ether
#

true

primal perch
#

True

tepid olive
#

@faint lion @narrow mason @lethal ice @twilit jungle
@primal perch true

grim sparrow
tepid olive
#

programming language

cloud sundial
#

That code block up there is giving me anxiety

grim sparrow
primal perch
#

@restive ether @narrow mason @lethal ice @twilit jungle true

restive ether
#

true

manic forum
#

it's a terrible combination of C# and VisualBasic that is for kids

grim sparrow
#

Haha

manic forum
#

i absolutely hate it

grim sparrow
manic forum
grim sparrow
late ridge
#

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

misty cradle
#

@manic forum visualbasic needs to be deleted

manic forum
#

Never used visualbasic actually

primal perch
#

Balls

misty cradle
#

Nuts even

lament mica
#

@late ridge you mean that obj character?

late ridge
#

ya

lament mica
#

yeah that shows up when you use dictation on an iPhone

late ridge
#

i wonder why

lament mica
#

You know when you dictate, it shows that spinner thingy? i think it leaves a hidden character @late ridge

late ridge
#

oh, that's strange but whatever lol

lament mica
#

yeah

late ridge
#

I should just make a tweak to replace it with blank space on discord

grim sparrow
#

Bruh

surreal mountain
#



lethal kayak
#

happy bday @vivid dew

burnt niche
#

Happy bday @vivid dew

lethal ice
#

happy bday @vivid dew

#

how old

#

50?

late ridge
#

triangles do not associate with age

primal perch
#

They associate with 3 angles that are 180 degrees though

burnt niche
#

You can calculate the age if you use the pythagorean theorem

tepid olive
burnt niche
#

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

twilit jungle
misty cradle
burnt niche
tepid olive
#

#

wtf

#

how

#

lmao

#

#

burnt niche
#

@tepid olive its blank

late ridge
#

@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

tepid olive
#

_ _

late ridge
pearl sail
twilit jungle
#

n for real coal

primal perch
#

What’s that again

#

It sounds familiar

pearl sail
burnt niche
#
@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
twilit jungle
#

Your answer is in the public docs provided by Apple

burnt niche
#

Thank you

#

should i be hooking hittest or this method

twilit jungle
#

Either one, they both have benefits and flaws.

pearl sail
burnt niche
#
    
    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

twilit jungle
#

That is registering touch events.

burnt niche
#

yes but the gestures reconginizer is still not registering

twilit jungle
#

Then its time to learn about view hierarchy's part of the event handling.

burnt niche
#

in theory what i wrote should be working correct?

twilit jungle
#

close but not quite

burnt niche
#
    UIView *hitView = [super hitTest:point withEvent:event];
    if (hitView != self) return hitView;
    return [self superview];
}```
#

this is what i could use i think

twilit jungle
#

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.

burnt niche
#

never knew this could be so hard

twilit jungle
#

Its not as hard as you are making it

burnt niche
#

I wish i knew what you were talking about

twilit jungle
#

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.

late ridge
#

that's cool

#

that was a good Description ngl

burnt niche
#

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?

twilit jungle
#

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.

burnt niche
#

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

burnt niche
#

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

twilit jungle
burnt niche
#

so instead of if (arg1.y <= 0) i would use that?

twilit jungle
#

No, CGRectContainsPoint(view.bounds, point) is what it would use to check whether view contains the point or not.

burnt niche
#

right so i would use that in the pointinside method

twilit jungle
#

Thats what its already using

burnt niche
#

so i should return yes?

twilit jungle
burnt niche
#

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

gaunt mesa
#

hello

burnt niche
#

hi

tepid olive
lethal kayak
#

i thought that was a pill box for a second

primal perch
#

@tepid olive what'd you settle on

burnt niche
#
        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.
tepid olive
primal perch
#

nice

#

probably will do that for my next board but it was 20$ more at the time

tepid olive
#

yo hbd triangle 😳

primal perch
#

wtf

#

true

#

@vivid dew happy birthday anime man

tepid olive
#

I thought he was an admin for a second

primal perch
#

those clone hero hands too strong for mx brown kek

tepid olive
#

damn you dont have a guitar?

primal perch
#

real guitar or controller guitar

tepid olive
#

Controller

primal perch
#

oh, yeah i have an xplorer

tepid olive
#

and you still play keyboard? why?

primal perch
#

no im saying because i sweat so hard my fingers more stronk

tepid olive
#

oh lmao

burnt niche
pearl sail
#

mass1ve_error has a better site for headers

#

but I think it is offline for now

burnt niche
#

how the fuck do you register touches in reachability bruh

twilit jungle
#

Pretty sure thats the gesture thats in home bar to trigger reachability

twilit jungle
#

does it?

burnt niche
#

Someone give me a simple tweak idea to practice. I wont let you down

fair robin
#

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?

twilit jungle
#

Is the swift class being hooked?

fair robin
#

Yes, I properly hooked it, I gave it a custom name and initialized it in the ctor

twilit jungle
#

Okay let me rephrase that, is your hook being called?

fair robin
#

I’m not following

twilit jungle
#

Is the place that you are setting the background color being called?

fair robin
#

Yes

twilit jungle
#

If you read the background color value is it the one you set?

fair robin
#

No, it’s not a code error

#

Compiling error

twilit jungle
#

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.

burnt niche
#

When i get home ill hide the dock background.

tardy narwhal
#

@vivid dew happy birthday señor

#

time is relative, we can always celebrate

primal perch
#

true

tardy narwhal
primal perch
#

gm x64 king

tardy narwhal
#

gm good sir, how’s it going

primal perch
#

i am doing le calculus homework

tardy narwhal
#

ah nice, nothing spicier than calculus on a wednesday afternoon

primal perch
#

true

pearl sail
half walrus
#

hbd

tardy narwhal
# half walrus who thinks this tho

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

grim sparrow
#

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

tardy narwhal
#

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

lethal kayak
#

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

half walrus
#

see but his entire point he makes is completely negated by the fact they bought beats

tardy narwhal
#

😂

#

zero rights to complain if they own beats

lethal kayak
#

lmao

#

true

primal perch
#

They have a usbc to 3.5 adapter DAC that measures very well in SINAD

#

For 9$

tardy narwhal
half walrus
#

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

primal perch
#

Ye

surreal mountain
#

gm

primal perch
#

That adapter is better than most sound chips

surreal mountain
#

only reason i have airpods pro is for noise cancelling

#

sole reason

lethal kayak
#

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

half walrus
#

not top-end, but the best of the best of mid-range equipment

tardy narwhal
half walrus
#

which is apple in general

lethal kayak
#

tbf i haven't compared apple's side by side with something else

primal perch
#
#

@tardy narwhal

grim sparrow
#

Honestly I’m interested for reviews

tardy narwhal
#

godsend, thank you

half walrus
#

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

primal perch
#

Np I used to run one into my amp lol

#

Until I got a better one with a 2V output

tardy narwhal
grim sparrow
#

But they’re good

primal perch
#

Ye

tardy narwhal
#

you have to recommend me good audio gear man

grim sparrow
#

Pros are expensive but in my opinion worth it

half walrus
#

im a broke audiophile cat_cry

primal perch
#

I blame jules he got me into it

tardy narwhal
#

i have a budget of roughly 9-12k

half walrus
#

i can recommend u stuff for a $500 budget :(

primal perch
#

HD 650 and a topping e30/l30 stack in the eu

#

Pretty much endgame

lethal kayak
#

blame jules for everything

primal perch
#

You won’t need any more

tardy narwhal
#

do you have links for the products or brand name to google for?

primal perch
#

Well for headphones idk if you want actual speakers

tardy narwhal
#

More of a home theater

#

with good audio

primal perch
#

Ah then I don’t know much about that

#

I do headphones mostly

half walrus
#

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

lethal kayak
#

jules invited me to his home theater

tardy narwhal
#

was thinking if I can use the room as cinema and audio room

primal perch
#

I think r/audiophile has a wiki for go to builds

tardy narwhal
#

nah idc about pricetags as long as the experience is good

#

money is relative

lethal kayak
#

he said it was on his private island?

primal perch
#

get decent cables but don’t be the guy who buys 1000$ cables

half walrus
#

ah successful people

tardy narwhal
#

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

primal perch
#

My current setup is literally a 99$ amp a 65$ dac and a 150$ headphone so not that expensive

tardy narwhal
#

still same dumbass 22 years ago

half walrus
#

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

primal perch
grim sparrow
primal perch
#

Oh that’s says blind

#

Yea that’s offensive to blind people

#

Please remove

half walrus
#

jesus fuck that link

primal perch
#

Assuming you’re running it from your computer anyway what’s the advantage to that vs software

half walrus
#

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
primal perch
#

Preamp fixes the distortion tho

#

Or rather clipping

half walrus
#

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

primal perch
#

When pic lmao

half walrus
#

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

primal perch
half walrus
burnt niche
#

I know cAr audio

#

Thats a nice mixer

#

Why do you have that

half walrus
#

sub featuring the bookshelf and feet bc it’s a nice footrest

primal perch
#

True

half walrus
#

old af photo but it hasn’t moved

primal perch
#

Krit leg reveal wtf

burnt niche
#

Nice toes man

half walrus
#

thx

half walrus
burnt niche
#

No skinny jeans. Thats a good sign

half walrus
burnt niche
#

Do you audio engineering?

#

Do*

primal perch
#

true doggo

half walrus
#

top left is a new AT vinyl player

primal perch
#

and bird

half walrus
#

top right is an antique i’ve been restoring

#

tape/8 track/vinyl/fm/am/recorder/throughput but it sucks

burnt niche
#

Why do you have that. Are you like an audio engineer?

primal perch
burnt niche
#

I see a eq on the bottom

primal perch
burnt niche
#

Audio interface

half walrus
#

the EQ is the one i posted earlier

primal perch
burnt niche
#

Cool so your an audio engineer

#

Bruh cut out all the mids😂

half walrus
primal perch
#

then again i have a dt 770 so

#

idk why im talking

half walrus
#

midscoop literally anything that gives me an EQ option

burnt niche
#

I do audio mixing and mastering as well

half walrus
#

i used to do sound design and audio engineering / mastering for artists and a bit for myself

burnt niche
#

Cool what mic

#

I have an at4040

half walrus
#

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

burnt niche
#

Right. Thats hella cool bro

#

Alot of people that do this also do audio as well

#

Which is interesting

half walrus
#

awful photo but i think i got my whole desk audio setup in the shot

primal perch
#

csgo true

half walrus
#

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

pearl sail
primal perch
#

they do

#

well when you either eq 9khz or use paper towel mod

#

otherwise the sibilance shreds you

half walrus
#

last one i’ll ever buy

#

lord i forgot i used to do audio yall woke the nerd back up again good job cat_cry

primal perch
#

metal true

half walrus
#

used to be able to play the raining blood n tornado of souls riffs

primal perch
#

ah slayer

#

:intjcum:

#

and megadeth wtf true

half walrus
#

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

primal perch
burnt niche
#

I got coke on the low

#

Tap in

pearl sail
burnt niche
#

I used to sell carts

half walrus
#

alright just lemme buy shit off of u so u can feed ur coke addiction

burnt niche
#

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

half walrus
#

why does half of everyone here involved w drugs and audio equipment

#

like it’s not a common thing just a non-zero discrepancy

primal perch
#

i dont do any drugs

#

so im an exception here ig

half walrus
#

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

wicked summit
#

drugs are cringe

burnt niche
#

I dont do drugs

#

Only coke

wicked summit
pearl sail
#

I haven't done hard drugs in a long time, but weed and alcohol are my main jams

glacial matrix
#

yes

fair robin
#

Thanks 👍🏼

primal perch
#

false, true

half walrus
#

ain't that a mood tho

#

i keep thinking tri is an admin

lethal ice
gaunt mesa
#

krit alive today?

half walrus
#

well i slept from 11 last night to 5pm this evening so

gaunt mesa
#

damn

#

i got 4 hours of sleep

#

cuz i played cod till 5am and then i had school

burnt niche
#

Bruh

#

Me too

gaunt mesa
burnt niche
#

I been grinding out cod

gaunt mesa
#

cold war?

burnt niche
#

Nah mw

#

Cold war pepehands

#

Cold war is garbage

fierce urchin
#

ok

primal perch
primal perch
primal perch
burnt niche
burnt niche
burnt niche
primal perch
#

true

burnt niche
#

Major fax

primal perch
#

true

burnt niche
#

Holy fuck

half walrus
#

yall say true instead of the normal zoomer 'mood'

primal perch
#

true

tepid olive
#

true

pearl sail
#

true

twilit jungle
#

big fax

primal perch
#

📠

twilit jungle
#

:big:

primal perch
#

not enough spot healing

#

there

glacial matrix
#

“Boi”, as opposed to “boy”, is gender neutral

#

Why am I awake still?

half walrus
#

@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

late ridge
#

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

tepid olive
late ridge
#

no offense

#

but most ppl here are chill so it's ok

tepid olive
#

Cannot imagine being a jailbreak developer

primal perch
#

how about you go procure a gf

#

since you like procursus so much

lethal ice
#

true

#

i just went for a walk in the rain at midnight true

primal perch
#

true

tepid olive
primal perch
#

true

#

its still a good one

tepid olive
#

True

lethal ice
#

i left the soldering iron on 😳

tepid olive
lethal ice
#

pog

primal perch
#

throwback to me almost burning my house down

tepid olive
#

Immediate nerve death, didnt feel it

primal perch
#

jk i wish

#

:troll:

lethal ice
#

throwback to an hour ago when i almost electrocuted myself

primal perch
#

true

tepid olive
#

True

primal perch
#

mf needs to get his heart checked

lethal ice
#

120v thru my chest

#

pog

primal perch
#

after 120v

#

soon 420v

lethal ice
#

soon

primal perch
#

:weed:

lethal ice
primal perch
#

true

lethal ice
#

com.qiop1379.weed

primal perch
#

ye

lethal ice
#

weed.png

#

true

primal perch
#

weed.webp

#

that has two penises

#

and is therefore gay

#

please refrain from making homosexual cables or you will become one

burnt niche
#

More like 👊

late ridge
primal perch
#

true

late ridge
#

LOL

primal perch
#

carry on

#

thats a joke btw before any sjws cancel me

burnt niche
#

Shepgoba is canceled

nimble parcel
primal perch
tepid olive
#

🔫

#

Goodbye shepgoba

primal perch
#

F

tepid olive
#

yo guys

#

I need help

#

oh wait

lethal ice
#

i just smoked half a g of straight kief

#

in one bowl

burnt niche
#

Supercharge is going to be legendary

lethal ice
#

jk 2

burnt niche
#

Everyone is about to have the developer tag LMFAO

lethal ice
#

nah

#

fuck that

#

dev doesnt mean shit right now

burnt niche
#

No developer tag if you use supercharge

tepid olive
burnt niche
#

😂

lethal ice
#

holy shit im zooted i havent smoked in a couple days

primal perch
#

same

#

advanced means nothing too

lethal ice
#

true shep smoked weed

primal perch
#

wtf

tepid olive
#

Advanced just means u chillin

primal perch
#

it just means you waste even more time than the average orange name

burnt niche
#

Bruh... you made procursus😂

lethal ice
#

true

manic forum
lethal ice
#

true

#

theres proof

primal perch
#

and its not like backroom is worth having these days anyway

#

:troll1:

tepid olive
#

I have no idea what that is

lethal ice
#

bro

tepid olive
#

Sounds like a sickness

lethal ice
#

wtf are u saying

manic forum
#

there was a dev backroom right? What do they do there

primal perch
#

cum

lethal ice
#

shep doesnt like shmoo pictures

primal perch
#

wtf leak

#

not that

#

its when politic leak

lethal ice
#

f

primal perch
#

it should be shmoo pic only

lethal ice
#

yea

tepid olive
#

pls

lethal ice
#

cum

#

how did that already deep fry?

primal perch
#

compression

cedar star
#

discord

tepid olive
#

gyts

#

guys

#

cumpression

lethal ice
#

gn

tepid olive
#

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

lethal ice
#

true

primal perch
#

thats a control my guy

tepid olive
#

Why do you call orig lmao

primal perch
#

as in UIControl

tepid olive
#

Just return false its a boolean

#

U silly goose

primal perch
#

as in the UI which isnt the direct bool

tepid olive
#

U trued

#

I tried

#

it didnt work

primal perch
#

mobilegoose true

lethal ice
#

then you cant hook that header

primal perch
#

true

#

return tralse;

manic forum
#

true

tepid olive
#

Ill hook ur header

manic forum
#

The third value for a bit

tepid olive
#

😉

primal perch
#

yeah bro

#

012101

#

hoes forgot the 2

tepid olive
#

Mfs made binary 2

#

Trinary

primal perch
#

true

#

base 3 wtf

tepid olive
#

also when i make changes and save then make do, it says nothing to compile, is that supposed to happen

primal perch
#

log base 3 of deez nuts

tepid olive
#

0121112

lethal ice
#

base 3 wtf

tepid olive
lethal ice
#

gm

primal perch
#

fuck i dont know my powers of 3

#

gg

#

beyond like 81

tepid olive
#

4th dimension shit

#

...

lethal ice
#

3 9 27 81

#

uhh

primal perch
#

ye

#

F

lethal ice
#

too high to think of the rest

tepid olive
#

GUYS PLEASE HELP

lethal ice
#

and also too dumb

tepid olive
#

....

#

ok your all drunk then I am guessing?

lethal ice
#

no

late ridge
tepid olive
#

oh

tepid olive
#

oh alright

lethal ice
#

we literally do not know the answer to your question/dont want to answer it

manic forum
#

Does anyone here have experience with fixing memory leaks in nodejs

tepid olive
#

The answer is make clean lol

lethal ice
#

true

#

lmao

tepid olive
late ridge
primal perch
#

0121112
0 * 3^6 + 1 * 3^5 + 2*3^4 + 1*3^3 + 1*3^2 + 1*3^1 + 2 * 3^0

#

probably

manic forum
tepid olive
lethal ice
#

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

primal perch
#

oh true thats right

#

quick maths

manic forum
#

Big brain time

primal perch
#

2 + 2 = 4 - 1 = 3

#

smoke trees

manic forum
primal perch
#

everyday mans on the block

lethal ice
#

quick mafs

#

wtf

tepid olive
#

@vivid dew bro he went to general

#

Im laughing too hard

primal perch
#

lmao

manic forum
#

rotfl

lethal ice
#

hayden when next guitar video

tepid olive
primal perch
#

bro play wish you were here

#

ill play drums bro

#

rn

tepid olive
#

I have to gain 20lbs in 10 days

lethal ice
#

wtf

primal perch
#

take some of mine

tepid olive
#

Ive gained 7 in the last 6 days

burnt niche
#

I gained 100 pounds in 3 months

tepid olive
#

So i think im doing OK

burnt niche
#

Mcdonalds

primal perch
#

185 frcoal

lethal ice
#

are u just being a fatass

primal perch
#

yea

burnt niche
#

Im 250

tepid olive
lethal ice
#

i mean hayden

tepid olive
#

No lol

lethal ice
#

wtf im 135

primal perch
#

true but still

burnt niche
#

Nah they healrhy

tepid olive
#

Im dieting properly

burnt niche
#

All mcdouble gains

primal perch
#

mcrib*

tepid olive
#

And doing a ton of lifting

#

Im already seeing difference in 1 week

burnt niche
#

Mcrib ass

#

Nah im 145

#

Lmfao

tepid olive
lethal ice
#

true

tepid olive
#

True

tepid olive
#

Peeps who order diet drinks had me uhh before it was an emote

primal perch
#

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

tepid olive
#

Soda bad

lethal ice
#

i should probably do eyedrops so i dont look baked in class in 7.5 hours

tardy narwhal
#

bro have you tried water

#

it’s lit

primal perch
#

yea

#

i drink water most of the time

lethal ice
#

i love water

primal perch
#

soda like once a week tops

tepid olive
#

Are you

lethal ice
#

true

#

losing weight

primal perch
#

hydrohomies

#

formerly known as waterni

tepid olive
#

Water coals

primal perch
#

true

lethal ice
#

i do sweat yoga my true weight is when im dehydrated so i just dont drink water to stay skinny!

tardy narwhal
# tepid olive How

legends bro, i read it once when I was playing Pokemon platinum edition

primal perch
#

pokemon true

tepid olive
#

Perood

lethal ice
#

wtf

primal perch
#

havent played

#

first one i got was black 2 for christmas

#

shit was good tho

lethal ice
#

gen 3 was kinda cracked though

tardy narwhal
#

oh bruh black 2 was lit

tepid olive
#

Og white was my first

#

Black 2 was even better

primal perch
#

i mean theyre basically the same tho

tepid olive
#

Loved those games

primal perch
#

almost

tardy narwhal
#

Yellow Edition though

tepid olive
#

Driftveil city theme tho

tardy narwhal
#

gen 1 leggo

lethal ice
#

black was my first one ever then i got diamond and then just emulated the rest lol

primal perch
#

true pretty much all pokemon good

#

except sun

#

i didnt like sun / ultra much

lethal ice
#

yea new gens not fun

#

idk

primal perch
#

:cum:

tepid olive
#

Instead of the muscle macho beast

lethal ice
tardy narwhal
#

bro what are these new mechanisms though

lethal ice
tardy narwhal
#

fucking dynamax

lethal ice
#

yea wtf is that shit

primal perch
#

and X

#

x/y was pretty decent

lethal ice
#

new games are shit to me

tardy narwhal
#

my pokemon takes steroids for 4 rounds

tepid olive
#

I loved OR/AS

tardy narwhal
#

zero effectiveness

lethal ice
#

1-5 for me

burnt niche
#

I have never played pokemon go

lethal ice
#

@tepid olive those are gen 3 remakes tho

#

cracked

primal perch
#

sword shield i havent played much

primal perch
#

too bad it runs like liquid ass

#

just like cyberpunk

tepid olive
#

Sword shield i hear is like literally horrid

tardy narwhal
#

on citra?

lethal ice
#

yeah

tardy narwhal
#

rip

lethal ice
#

making pokemon open word is like the worst thing you can do to the game

tardy narwhal
#

THIS

primal perch
#

open world pokemon could be awesome

lethal ice
#

oh my

#

xp share intjcum

primal perch
#

not go of course

tepid olive
primal perch
#

but sword shield couldve been way better yea

lethal ice
#

the way they did it was shit

tardy narwhal
#

man you had to grind so hard back then to find that stupid professors aide to get xp-share

lethal ice
#

yea wtf

#

so many fuckers u gotta catch

tepid olive
#

Sword and shields problem is the promise of open world with the most linear story yet

primal perch
#

i rembmer getting gba4ios and beating fire red

lethal ice
#

true

primal perch
#

pog

lethal ice
#

gba4ios was the og

#

then 2

primal perch
#

fr

tepid olive
primal perch
#

real mf

tardy narwhal
#

telagba though

primal perch
#

coldplay pretty true

tepid olive
#

Reeee

lethal ice
#

ill listen

tepid olive
#

Song too good

tardy narwhal
lethal ice
#

true

primal perch
#

oh nice guess ill sell my 3070 for 850 on ebay

#

true

lethal ice
#

do it

primal perch
#

nah ive waited 8 years

lethal ice
#

wtf

#

im gonna do that then

#

lmao

primal perch
#

true

tardy narwhal
#

lmao, resell 3070 to buy ps5 then resell that for more

primal perch
#

its not a bad idea

tardy narwhal
#

omega stonks

primal perch
#

but i want the mf card to play le game

lethal ice
#

can u resell ps5 rn?

#

in usa

primal perch
#

yea

lethal ice
#

true

primal perch
#

shits literally 1K+ on ebay

eternal crater
#

glad I got one for my friend

#

retail

primal perch
#

fr

lethal ice
#

games coming out means everybody playing them but hardware coming out means easy resell intjcum

eternal crater
#

fight fire with fire lol

primal perch
#

i was blessed by the best buy gods

#

good song

lethal ice
#

how muchg should i pay for 3070

primal perch
#

msrp

lethal ice
#

499

#

@tepid olive this song good

#

true

#

always heard them on radio when i was young

primal perch
#

bro the minecraft parody of vida la vida

#

remember watching taht

lethal ice
primal perch
#

wtf

late ridge
#

viva*

#

lol

primal perch
#

ive heard it both ways

lethal ice
#

first one i watched was revenge lmao about when it came out uhh

#

maybe it was a year old

late ridge
#

so good

burnt niche
#

Who used to watch mianite

lethal ice
#

ive heard it both ways

primal perch
#

the right way and then yours

#

psych musical true

lethal ice
primal perch
#

true

burnt niche
#

Mianite was the best minecraft series of all time

lethal ice
#

bestbuy

burnt niche
#

No cap

primal perch
#

yea good fucking luck getting it tho

#

they always restock at 8:30 am MST

lethal ice
#

true

primal perch
#

depends on the day

#

usually like once a week

#

but check there at that time if you want maybe 5mins before

tardy narwhal
lethal ice
#

true

#

how fast do they sell out

primal perch
#

you got like 5 mins because they roll out stock slowly

lethal ice
#

bruh imagine how much fucking money nvidia making

primal perch
#

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

primal perch
#

but they gave me 24 hours to fix kekw

lethal ice
#

true

#

i would watch that but im listening to wish u were here and i cant pause that

pearl sail
#

Hayden got me remembering why Coldplay is good

primal perch
#

wish u were here
TRUE

lethal ice
#

rtx 3070 looks so clean

tepid olive
#

development discord guild channel

lethal ice
#

sexy graphics card

primal perch
#

true

#

it do be sex

lethal ice
primal perch
#

fr

#

temps are p good too

#

like 72c max

tepid olive
primal perch
#

true

#

true

tepid olive
#

Literal too good

primal perch
#

true

lethal ice
#

i think i missed a fee on ebay like 2 years ago and havent logged in since

#

is that gonna be a problem

tepid olive
#

Sparks make u go :(

lethal ice
primal perch
#

animals also really good

#

dogs :intjcum:

tepid olive
#

True

tardy narwhal
#

how many variants are there from that emote lmao

lethal ice
#

many

#

viel

#

es gibt viel, herr

primal perch
#

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

lethal ice
#

true

#

zu viel woeis

tardy narwhal
#

Wir benötigen derzeitig alle Varianten aufgelistet um eine bevorstehende Krise zu vermeiden. Bitte wenden Sie sich an das Sommerdreieck

primal perch
#

true

tepid olive
#

Christian girls on the instagram story really sayin “High on queso!”

lethal ice
#

i like how a lot of german words are spelled so different but pronounced close to english

tepid olive
#

Bro uve never been and never will be high

primal perch
#

soad literally my favorite band now @lethal ice frcoal

lethal ice
#

ich kann nicht das verstehen

tardy narwhal
lethal ice
#

@primal perch wtf

primal perch
#

bro

lethal ice
#

true tho

primal perch
#

true