#ot1-perplexing-regexing
1 messages · Page 57 of 1

those
you can script them
why would you use Windows server for games 
only time i ever saw anyone use it was either for an ancient .ASPNET server
to play yourself, why else?
i took a devops course that one time and the instructor wanted to show us how to get 1 year of free CS 1.6 hosting
and he just used an AWS EC2
and booted windows on it
bruh
and just ran cs 1.6 there
good excercise
thats the devops i signed upfor
the boot camp was free and the food was good
👍
float x{};
char y{};
int z{};
std::tuple<float&, char&&, int> tpl(x, std::move(y), z);
const auto& [a, b, c] = tpl;
what about htis
im starting ot understand why the C++ parseris 70k LOC lol

I'm pretty sure they aren't in version control
p sure ours arent either
🤮
BANISH THIS VOMIT REACTER
😔
my manager wants me to rewrite everything
and I just go "yeah sure I can take a look at them"
psv when are we joining a startup with modern tech
join? let's start one
you won't get any equity
you can have my share
the kind that requires EMS to be on constant alert?
🤺 🚗
you wanna see a super ugly emoji?
Yes
🪞
🤨
beautiful for me though
discord showing it's opinion about ugly emojis
that would be fuzzy for ugly duckling, presumably
yes but shhhh
the dumb part is the services are the workers in a typical task distribution setup. I guess 20 years ago that's just what you did 😔
maybe I should spin my internship as working on distributed computing
psvm you should join my rooftop startup
you won't get paid but you'll have my gratification
and well, what else do you really need
I'll just live at work since I won't be able to afford a house
just live in aboo's walls like the rest of us
better than legacy infra
hmmmmmm
much cooler than what I currently have it as
plus it's closer to what I actually want and not web dev
Do wep dev
no
I want to do cool things
Just do them
"Hey my frontend friends" guy dies inside eveetime he makes a new front end video
That's cool the users and the ML
it is not a very good model
you probably want high correlation here or some fancy metric
welkl
mine looks like the toilet after popeyes
bad take: everything becomes web dev in the end. otherwise, tell me why im building a react frontend for this poc

pos* lmaoooo
accurate
Can i work with it before it dies pls and i have to go back to jquery
90% of my time is spent wrangling state management to make sure that useEffect does not end up in a mutually recursive call with useState DDoSing my entire server
dotnet is great
which i did do before lmao
This is denial talking
just throw up some HTML and you're done
fetch + useeffect + usestate = dead network in teh entire clIents building
i really wanna try solid js but i need an execuse to use it
What are you using react for
skill issue
work
stay mad
state management is fun
Based
Usecontext
if i had my way, itd be streamlit bc who cares.
HOCs
i use that, but once you have multiple contexts for things, it starts to get convoluted
One big ass context
it just feels like im doing react API gymnastics whenever that happens
but people are allergic to standing EC2s
Using free hosting options like repl.it or Heroku for continuous 24/7 bot hosting is strongly discouraged.
Instead, opt for a virtual private server (VPS) or use your own spare hardware if you'd rather not pay for hosting.
See our Discord Bot Hosting Guide on our website that compares many hosting providers, both free and paid.
You may also use #965291480992321536 to discuss different discord bot hosting options.
@young shoal is there a way i can make ec2 serverless? fargate?
Performance is for poors
you dont even need credit card fraud for it
but why. I've never heard of fargate
Upgrade your pc peasant
also ask someone qualified
streamlit is not lambda-compatible
ugh
oop
i thought you were devops
i have a r5 5600 and some sites pin a core in my PC to 100%
I'm like, barely devops
where are your boxing gloves 
I'm dev and some ops
They're yoinking your cpu for bitcoins
75/25 or
ask moyen
i dont care
like 90-5
i hope those crypto dumbasses lose money
moyen will tell me to not do what im doing
last 5 is naptime
bruh
How they lose money from getting free money from your cpu
theres a 5 missing
naptime
trade it for monkeys
fungible ones
though recently all I've been doing is learn kubernetes and helm so
i see
Ooh ooh monke
last month is like all ops
i just remembered one of the merch shirts from the mlops podcast says 'k8s is a gateway drug'

yw for that
Idk wut I've been doin for the last month 
bc we need a new name for everything
apparently
so true
also instead of fighting devs, youre fighting DS. so theres that

devsecrevmlops
i was considering learning rust thanks to the rust types here, but then i learned that it, like C, doesn't have exceptions. so i shan't
maybe that's better; they're less technical 
its worse
trust me
it's better that way
my mlops friend says its awful
accurate
how so
did you make this one

the lack of exceptions is one of the three biggest things i dislike about C
Why is k8s a gateway drug
the other 2 are the lack of a +, and the lack of another +
Whats beyond k8s
yeah but rust forces you to handle errors
youve never worked with nontechnical stakeholders?
k9s
nope. I honestly don't know what a stakeholder is
oh sweet summer child
Have you worked with non technical software devs
not this
KuberNEETes
my team is all DBAs, they don't code
How
They're just terrible at their job
the other two are having to think about memory wrt pointers and such, and having to DIY nearly everything because the standard library is so absolutely tiny
bonus other third: null terminators/strings, and the pain that comes with calling functions that take them
maybe next internship you will understand
That's good for me
No its not cause sometimes you gotta work with them and its an absolute nightmare
Better than if everyone was good at their job
Better with stakeholders cause you can somewhat pull rank
As long as you get the money point across
all of the stuff you mentioned are things i like... except for null terminators
my boss wants k8s on a project that has a total user count of
i've printed out essentially my whole ram content on occasion
The null terminator, sounds like an Arnold Schwarzenegger movie
Think of the scale
Hasta la Vista baby segfaults
including the DIY? you enjoy having to, e.g., do modular exponentiation yourself instead of just getting it from math like python does?
though of another thing, btw: the way #include works
yes
math.pow doesn't have modular exponentiation
you're asking the wrong person, i like doing the math myself
that's my entire job
love this guy
Omg
python's does, and i love it for that
!d math.pow
math.pow(x, y)```
Return `x` raised to the power `y`. Exceptional cases follow the IEEE 754 standard as far as possible. In particular, `pow(1.0, x)` and `pow(x, 0.0)` always return `1.0`, even when `x` is a zero or a NaN. If both `x` and `y` are finite, `x` is negative, and `y` is not an integer then `pow(x, y)` is undefined, and raises [`ValueError`](https://docs.python.org/3/library/exceptions.html#ValueError).
Unlike the built-in `**` operator, [`math.pow()`](https://docs.python.org/3/library/math.html#math.pow) converts both its arguments to type [`float`](https://docs.python.org/3/library/functions.html#float). Use `**` or the built-in [`pow()`](https://docs.python.org/3/library/functions.html#pow) function for computing exact integer powers.
Changed in version 3.11: The special cases `pow(0.0, -inf)` and `pow(-0.0, -inf)` were changed to return `inf` instead of raising [`ValueError`](https://docs.python.org/3/library/exceptions.html#ValueError), for consistency with IEEE 754.
i could've sworn there's a three-argument version of this
Someone posted "I need more Boolets" guy 💀
I avoid making such jokes because they're sophomoric low hanging fruit

it is objectively funny
it took me like a solid minute to get it

aha! regular pow, not math pow!
!d pow
pow(base, exp, mod=None)```
Return *base* to the power *exp*; if *mod* is present, return *base* to the power *exp*, modulo *mod* (computed more efficiently than `pow(base, exp) % mod`). The two-argument form `pow(base, exp)` is equivalent to using the power operator: `base**exp`.
there we go
pow poww.
What's objective funnyness?
the better version
i've done that by hand and also in several langs from scratch
no floating point mess here
its a handy algorithm
It's a quote lol
esp in programming contests
keezyposting are we
objectively oriented programming
never been in contests, but i did take some courses at the intersection of (basic) number theory and encryption
contests love to milk num theory
but people hate when that happens cause it ends up with a lot of ad hoc problems
"either you know it or you dont" type problems
i dont mind them cause num theory is my strong suite in contest >:3
well, it was, i suck now
oh yeah? name all elliptic curves
25519
whats a curve
Bob and Alice. </thread>
blob and alex
ur moms curves and such other lines
me
I used a sharepoint stack at some point
i used google sites to host things beforei learned how to apache lol
Ci/cd was me and my trusty pwsh script
didnt PaaS was a thing
I made an 8 year career out of this. 
Based fellow sharepoint enjoyer
Originally authored to make my life easier, it somehow spread like an STI a wildfire throughout the business' environment lol
this man old as fuck wow
sorry i couldnt resist
i need to resort to ageism to cope with the fact taht kids know rust and i dont
A certain governmental logistics component is now largely propped up by my shoddy VBA/Sharepoint/Pwsh skills.
no more environment headaches. share dependencies and deploy instantly via dropbox. click here to learn how.
Arent all gov agencies like this
Pretty much.
One person comes in, knows enough about automation to be dangerous, creates something incredibly fragile that somehow works, then disappears.
Leaving the entire org holding the bag when they migrate.
It's a vicious cycle.
Hah
QUIT PITHINKING MEEEEEE
But my stuff wasnt incredibly fragile
:pi-
Can't relate.
It had types and docstrings and worked and made sense
add more emotes if you dont want me to
🕯️
And even a user manual i wrote
I still get text messages from a workplace I was at 5 years ago asking for help.
sounds like a lotta orgs
coworkers are family, after all
my jenkins pipelines are super solid
Do you help? (for cash ofc)
if you look at him wrong, he gets prostate inflammination
lol wut
I help for free. 🤡
contractor work.
other than his urinary pipeline, the CI ones work
brooo. they def have capex money
CAPEX means something different in this context lmao.
i suppose i shouldn't mention the helper salary then?
well they should pay you
job security fr
Its not his job anymore just a terrible hobby
pithink
If you google 'capex' and my previous employer @hexed sierra the context will make sense lol.
Dont' wanna dox myself too hard :p
just say something like 'hey, im spending a decent amount of time on this. surely you have some money in the budget to cover my time'
i'm just trolling. not only am i not pithinking, i'm not thinking at all
me everyday
I do not pithink therefor I do not are am.
One does not simply not pithink
i pithink
you piam
obligatory link #ot0-psvm’s-eternal-disapproval message

i might have to commission a tikz pithink
though that sounds like something an llm might be able to do
Pithink stickers would be banger, are those on the pydis store?
maybe a licensing issue though
in the meantime i can only offer you this
Just don't get caught. 
.latex \begin{tikzpicture}
\draw (0,1) to[bend left=10] (0,6);
\draw (0,1) to[bend right=5] (0,0);
\draw (0,0) to[bend right=10] (2,0);
\draw (2,0) to[bend right=5] (2.25,2);
\draw (2.25,2) to[bend right=10] (3,2);
\draw (1.75,2.125) to[bend right=8] (2.25,2);
\draw (3,2) to[bend right=5] (3,-0.25);
\draw (3,-0.25) to[bend right=10] (5,-0.25);
\draw (5,-0.25) to[bend right=5] (5.25,7.25);
\draw (5.25,7.25) to[bend right=30] (3,10);
\draw (3,10) to[bend right=15] (2,10);
\draw (2,10) to[bend right=30] (0.5,8.28);
\draw (5.25,7.25) to[bend left=5] (6.25,7.15);
\draw (6.25,7.15) to[bend left=5] (6.25,2.5);
\draw (6.25,2.5) to[bend left=20] (5.25,2.25);
\draw (-1,7.08) to[bend right=90] (3.25,7.08);
\draw (-1,7.08) to[bend left=90] (3.25,7.08);
\end{tikzpicture}
sus
draw a pithink now
no.
Draw a ducky_sphere
ok, time for bed. i leave you all with this beautiful fresco of a japanese sunset. best enjoyed if you tilt your head 90° clockwise
thanks. i hate it

Seems like people are disinterested in psychology smh
I'm taking AP Psych in school 👀
it's a rather full class too
Look up The Shadow by Carl Jung. It’s interesting
Im in public, laughing at this bright black over white image that is visible from 6m around me
Thanks 🥹
hey guys im not english native, i dont even know english, but lately ive been seeing so much the words "w" and "rizz" what does that mean?
LMAO
What is your first language?
Depending on context, "w" is probably short for "win" or "with", and "rizz" is just slang for "charisma", so if someone "has rizz", then they're "charismatic".
thanks fella, spanish is my main, nice to meet you btw
i think it depends also in the context right?
because for some people rizz is something like
i dont know like, style, or tryna be sexy
idk, i think ill never learn eng
Slang is always evolving
@reef geyser you still haven't told me about Pipp
@rough sapphire The OT channels are a thing. If you're that curious about me, you can always ask here 
I'm doing well though, thank you for asking.
Pipp is a programming language I'm developing for 6502/6510 processors. (They're the ones used in Commodore 64s)
you are a sweetheart
It's inspired by ALGOL 60 and Fortran predominantly, and may/may not borrow elements from C.
Thanks?
Why a commodore 64?
A friend of mine is doing some computer engineering and is using that specific CPU.
I see.
The only reason why I'm developing it and not giving him a C compiler is for... "lore" reasons
Can it run Crysis?
It probably cannot
Sounds like you need to cluster those CPUs
what came first? the preocts or the postocts
!otn a what came first? the preocts or the postocts
:ok_hand: Added what-came-first?-the-preocts-or-the-postocts to the names list.
how is that not too long 🤔
wonder if Preocts is a Preact enjoyer
sleepy sunday vibes
I just saw Indian rock vibes 👀
Oh wait wrong channel huh 😂
is this what rizz is?
what is this language that people are using nowadays
Thats after someone overdosing on drugz
💀
W rizz
rizz is charisma iirc
like "how attractive are you", etc
it's weird explaining slang as a gen z
it's like putting slang in a formal context
which is probably what's being done but yeah
kek
“Make your masters appear more brilliant than they are and you will attain the heights of power
When it comes to power, outshining the master is perhaps the worst mistake of all.”
Source: https://www.nateliason.com/notes/48-laws-power-robert-greene
“All of this sounds like you're kissing ass, but I promise you that you’re setting yourself up to move faster than others who do not use advice like this. Bosses do not like ass-kissers, nor do they like defiance. “
So your two options are kissing ass or defiance?
Who do you work for keezy holy shit
What has this man achieved in his life besides writing these books
Where has he used his own advice
No clue
huh. you don't research the authors?
Why would you listen to this guy
I research the material written by authors
He's only famous for having these opinions, not applying them
well, yeah, but how do you know they're credible
You don’t. You read the information and apply what you think is good and not apply what you think is bad
isn't the point of reading the books to learn something you don't understand? there's an inherent level of trust if you want to apply their ideas
FYI, a good author will provide references and sources on last pages of their book.
My man keezy, is this advice scientific?
Is it reproducible
Can people verify this
No
Is there something you disagree with about Law 1?
Has it at least been used before by the person offering the advice?
Nah. More like axiomatic.
Its not axiomatic, stop using words you dont understand
what is law 1
You’re right
Refer to the links I posted
maybe later
If i say "the best way to make money is to dump savings into nfts" but I myself dont do this, would you think its good advice?
Prior to becoming an author, Greene estimates that he worked about 50 jobs, including as a construction worker, translator, magazine editor, and Hollywood movie writer.
50 jobs at 36 years of age does not sound like someone who knows how to navigate hierarchy structures
Greene is a W
robert greene is the author, right?
huh somehow i remmeber it
authors like him piss me off in a way i cant put into words
i remmeber reading his advice in like 2016 and i still cant figure out why it pisses me off
something about it being abstract yet not well defined
Its cause its shit cult-like advice
i agree but isnt that the point of abstract concepts lol
its something other than that, idk how to express it in words
the author is confidently stating something a "law", without rigorously expressing how it may translate to the real world, or backing it up with a proof of some sort
its kind of like rhetoric
so i've spent a few days reprogramming my habit of curling my left thumb inward while typing that causes some pain, and it's actually improving
how did I even develop the habit anyway, is it the leftover from the rhythm game days?
it'll probably take a few months for it to be completely autopilot
and i actually rather type a bit better, win win
@glossy niche do you like finding nemo?
you mean like pushing shift with your thumb?
ta da
no like
my left thumb doesn't see much use when typing, i tap space with my right thumb. so it just floats there.
i guess over the years, it just found itself with nothing better to do than, doing something that annoys me.
looking forward to see the speed and accuracy improvement in monkeytype a few months from now
Grandma typing?
stickie keys
i'm 100wpm on monkeytype 120 seconds so not as slow as grandma typing
sheesh
i use only like 3-4 fingers to type
you use caps lock?
ok wait this might not be accurate
how does your thumb reach
i just did a random test to check it and beat my pb
how does your thumb reach caps lock
it goes under my hand
i move my hands a lot when typing
wtf
ik it's suboptimal
is that a boccher
that is a boccher
you gotta get that fixed
just tested trying to type with my thumb
im not switching typing styles
i am surprised it can do that well
do you not use the shift key
nope
bro
does anyone know a tool for resizing a PDF? i need it to be private 
Have you played video games like that?
well if i need keyboard shortcuts i do use other fingers
but for typing it's only those 3
i play minecraft like that yeah
that's why i type like this
because i learnt typing from playing minecraft
wh
that would boost your wpm by like 20
left pinky would be easier yeah
at least
but muscle memory 
I learned to type on this and played cool math games on it 
ik my typing style is terrible ok
you can get rid of that habit if you practice enough
wait so you hit caps lock, type a key, then hit caps lock again?
yeah
My bad typing habit is typing a wrong character and having to backspace
yeah, but i don't care enough to get rid of it
Backspacing like five times who can relate
how long
just do short
Heuristic: I'm not really using my left thumb at all
that's for my right thumb
on the keyboard
I mean right thumb wow lmao
it's for stabilization
Pinky is hitting backspace for me
ring finger on both hands
I hit O with ring finger
Do you agree with Law 1: Never outshine your master?
right middle to press O
enough to have a few caps
On left hand I'm hitting WS with ring finger and inverse on right, LO
Vertical two keys
that sounds like standard home row
I have basic typing style 
i learned from like
just trying to type my password fast so that peeps around me in the computer cafe won't know my passwords
I agree with Law 1
Sure but that doesnt make the law right
And due to the misfortunes I had with superiors, it makes sense to me and this is something I’ve been working on in myself
You probably wouldnt have had misfortunes with superiors if you didnt view them as enemies and life as a battle
🗿
Life is a battle
Its not and that thinking of yours is whats causing you problems
You don’t know what battles everyone is going theough
Youre a canadian software dev man, who are you trying to fool
Save it for someone who cares
What does my profession have to do with anything?
no
LOL
The pupil always surpasses the master
I worked my fucking ass off to get here
man i haven't seen that word used in ages
So many applications, so many resume revisions. You don’t know what you’re talking about.
pdf is the worst thing to ever exist
🗿
Back to the point of Law 1. I need to learn how to yield more when I interact with superiors.
it's great as a destination format
no one uses it like that unfortunately
they think it's microsoft word
This is almost breaking rule 6 imo
Whats next, a discount link to buy the book?
yet to do that rn
Stop salivating over some guy's cringe opinions
Not outshining the master is about respect , you wouldn't make the person who built you up look bad
Lol you’re reaching
keezy I think the issue ppl have with you is that you keep believing in things that are unsubstantiated or unfalsifiable
well if the person built you up well then you should be able to outshine them
for example, "never outshine the master" can be twisted in a million ways to mean anything
so it doesn't really say anything useful
I wouldn't call a random manager, like in this example, a master in that context that they require some innate respect
You can surpass your master sure but show respect
Well I don’t present my beliefs as facts. They are simply my opinion based on my personal experiences
It’s why I resonate with never outshining your superiors
what led you to this opinion
Bad interactions with superiors
you tried to outshine them?
He tried to outgangster the gangster roleplayers
Metaphorically yes
so was this in real life?
Yes and virtually as well
let's focus on the real life one. what happened?
Having arguments with the supervisor and getting sent home by the manager for the day
The manager will always side with the supervisor
were you sent home for shining, or for arguing unreasonably
What was the argument about
well, yeah, that's their job. you can bring up concerns in private
ohhh, that makes more sense now, i think that you should be more clear when talking, because i personally misunderstood what you said initially 
beleiev e what you want t o bleibe as lsaong as you dont overstep into someone elses life
The earth is actually the shape of a stream of piss
FYI, virtual environments like roleplaying servers and Discord servers are a perfect simulations of hierarchal structures so I wouldn’t want to disregard them
Same with World of Warcraft raids
A roleplaying server is not as vital as your ability to feed, house and clothe yourself through your salary
That’s not the point
Thats why the focus is on the real life interaction
What were you sent home for anyway
Looks a bit like Mars over therr
I got gale crater, mount sharp, ingenuity and Mars on the brain
I got a chocolate caramel candy bar on my brain
Milk duds are one of my go to candies
What a coincidence. Thats exactly what i call....
But both virtual and reality have hierarchies and you need navigate in both effectively if you don’t want to get penalized by the authorities in the upper ranks of the hierarchy.
i feel like this view of the world is rather reductive 
what about the things other than hierarchies
e.g. exchange
Lets focus on the one that allows you to pay your bills
or just plain old liking someone just cause
What argument were you sent home for
There’s also matrix structures so you’re right
Don’t worry about it
See that leads me to believe you were just being obnoxious and thats why you were sent home
I argued with a superior, you don’t argue with a superior.
You don’t need to know the details
What did you argue about
Work related
Like what
Why does it matter? What difference does it make?
Because if it was "improving x process" its a different issue than if it was "i dont want black people around me at work"
Why dont you want to share
Are you ashamed?
Anybody who’s a superior would agree with me that you don’t argue with a superior. I don’t see why you knowing the specifics will change anything
You not wanting to share for no reason only weakens your argument
I was being defiant
Yes we got that, why
Did you start a fight for no reason
Or did you randomly decide not to do your duties
It's not such a simple blanket statement. My supervisor wants me to provide feedback and pushback when I think something is not right. But there's a correct way to approach it.
When I'm leading I team I do want candid feedback from my team, but in the correct channels so that conversations can still be productive
Its X now
I imagine keezy bringing up the power rules book up every day at work and when he was told to stop thats what got him sent home
Imagine what you want
That’s completely fine
I don't think any good superior would do that. Like kat mentioned it's nuanced
So does that mean you'll stop bringing it up here too, since superiors would "send you home?"
Bring what up?
What rules?
If the superiors order me to stop, I will have to stop
The 48 laws or whatever the fuck
Oh I see what you’re doing.
Wow 9 in the morning is really early for edge
Law 11: Learn to keep people dependent on you
Is this not straight up abuse
It is definitely straight up abuse
I'd block this kid if it weren't so fascinating how he's somehow not banned from here yet
Im enjoying this topic tho i wish we made some progress beyond law 1
Theres so much more interesting laws to talk about
Law 14: Pose as a friend, work as a spy
The law of gravity
LMAO
I guess i was wrong earlier
This guy DID use one of his laws
Law 27: Play on people’s need to believe to create a cult like following
Keezy is literally being played
Is this book not the most read by prisoners
Excuse me? It appears that you have a problem with me. Why would I be banned?
as i said before, you do sound like a troll 
I wholeheartedly believe in Law 1
No 🧢
im not talking about this, im talking about the pattern of the topics you discuss
I tried to switch it up yesterday by talking about psychology
It lacked interest
before it, there were those topics:
- JBP, a man who parrots fascist talking points 24/7
- 48 laws of power, a book popular amongst black pill or whatever ppl and criminals
- censorship for for having offended someone, common talking point for trolls

well, info dump on us then so were on the same page i guess :PITH
;Pith
juist imagine the mote in you r jhead
Everyone should look into the shadow in psychology
recommended reading for todays keezy class has been announced
I opened up the wiki page on this and it just reads like mumbo jumbo
What do you understand about the shadow keezy
jung is the least weird of the 20th dcentury psycologists
The shadow is the unconscious part of your mind composed of strengths, weaknesses, ideas and desires.
Say you know a Ju-Jitsu fighter that’s the nicest guy ever; he wouldn’t hurt a fly but when you see him having a ju-jitsu match, his demeanour changes, his eyes and face changes and he looks like he wants to destroy someone. That’s him integrating his shadow.
I’ve been learning to integrate my shadow
the tone the past week or two of backhanded comments making fun of others is tiresome and we're all over it. i suggest you block one another and move on rather than make us endure the "conversation" for your satisfaction.
I dont think thats what a shadow is
oh, sorry if ive been annoying, ill avoid being insulting :/
thanks
Sorry. Who are you referring to?
I friggin love eggs
there's this new experimental discord mobile UI thing
you can actually set one of your own i think 
ye but it's still not common to see
some of my friends servers have custom animated emojis for channels 
Your can turn that off right?
Wow
Makes the channel names basically unreadable for me
I don't know why but text preceded by an emoji gets really blurry when I look it
not a huge fan of it
Like my eyes only focus on the image and not the text
they removed the quick switcher which SUCKSSSS
That's a really busy screen
its my most used feature
why does discord gotta change things everyone's used to 😭😭
which is welcome
look at howwasteful this is
Size it down
with what
I use a better discord plugin on PC that collapses different elements based on window size and other rules (CollapsibleUI)
i cant put anything in there without running 2 apps on one screen
your mouse
which doesnt work for me cause i alt-tab
doesnt support it
:/
wait, actually, yt does have a decent responsive UI for thin screens
maybe i can use 2/3 discord 1/3 yt
wtf how thin is your screen

btw this was compact mode
its a 24" 1920x1080
this is what it looks like by default
something that is nice that I wish was there from the start is you can tell when ppl are typing in channels you aren't currently in
o_O
also this which is kinda nice sometimes
this is far too general to be useful. some arguments should be private, some should not happen, and some should be encouraged
For example, a person might believe that to be assertive is to be selfish; so he goes through life being pushed around by others and deep down seething with resentment, which in turn makes him feel guilty.
An example of the shadow being projected or whatever
Honestly this all sounds like pseudoscience
Probably. It’s a term coined by Carl Jung.
Well thats probably why people didnt engage
It sounds like it was made hard to follow on purpose
That leads to the question if psychology is even science in the first place
first you need to define science
Study of studying facts of reality
lol its more like
having an assumption then experimenting or whatever
and seeing results
i forgot :(
Well that's what "study" mean
Actually it's a popular idea in philosophy
Put that colon on the otherside of that c
You can't just say you know something and act smart about it then be like oh I forgot
🤣
ew no
https://youtu.be/dTod5CohoBQ?si=ZmuIaE86UQgeFwvI
From my one of favourite philosophy youtubers
Patreon: https://www.patreon.com/user?u=3261155
Main Source: "Jung: A Very Short Guide" by Anthony Stevens
it is
I FORGOT
all science is based on assumptions
Psychology is not a science
Well. I found the cure to cancer
its not a natural science
FOR REAL???
but a science nonetheless
Philosophy lol, psychology is science
Yes. But I forgot what it was
:(

the googs confirm what i said
Google will confirm almost anything
wait nvm i read your bio wrong
I'm a cat enthusiast tho
psychology, scientific discipline that studies mental states and processes and behaviour in humans and other animals.
send a pic of your cat
Which one
.catify @uneven pine
🐈 @uneven pine
AOTA
why not 
Because i said so
Android Open Thorth Project?
all of the above
Oh
local send a pic of a black cat
Okay hold up
understandable. However, my opinion takes priority
I used to have three cats
Why is that
aboo bans mar for having a different opinion
Normal keezy imagination
woah
cat
oooo thats a cute void
Which color next
is that a
Cat
nice tv remote
lavender !
aww
Imagine your own color
:D
0XFFFFFF
goddam
Why lol
's bright
why he mad
She wasn't mad
nice eyes
ears say otherwise
Orange cats are not mean
We have two
lmaooo
orange car behaviour
@glossy niche ur meme is misspelt
kitty
thanks for informing me, i will be sure to report this to the authorities
lil white socks
that's awesome
is he short
demand lots of attention and stuff
Then there's this one
(She was sleeping and I woke her up going into the room)
And bonus round
He drags the bed into the hallway
why the sunflower seed oil?
???
nvm thats soap
I am now out of cats in our house to show
scrumptious
i just joined this server and these cat pictures made my day
I know a doggo enthusiast with 2 doggos and 6 puppos
"doggo" "puppo" 🤮
You're 🤮
no you 🤮
I'm telling Mom
I shall fight you with all the dog power of this discord 🔥
i want one of those silly goobers
i do need a mother figure in my life
unfourtunately they dont make good pets
guys... please
how many times has that been posted
sorry
I'd say I need a father figure but I'm a decade past that mattering
you should eat grass
Touch glass eat grass code fast
He is try to find some homo sapien female organism
is it against rules? 😭
on the topic of eggs
no i swear i woke up to it being spammed though
I can tell it's a Japanese cat
i only sent like 3 times in total
It's against etiquette to post irrelevant memes tho
Is the clue the tv
this is discord
Yes I agree cats are liquid
social interactions followthe same rules everywhere mate
wtf
I'm about to snap
Actually cats are plasma
¯_(ツ)_/¯
Nah then they will fly away into atmosphere 😕
And Sun is made of cat
Cause it's a human brain 👍
So I have over 80 hours in starfield
And leaving a major city I just got the intro cut scene with an npc
70 of those hours is fast travelingg
LOL WTF
what is going on
Is there a tool for grouping applications together in MacOS?
like i have one test flight and 4 android studio visual devices how can i stick 5 windows together
so if i drag one around other 4 will follow
or if i alt tab other 4 will also alt tab
i dont have second monitor please help me
“Shadow integration is a process of bringing the hidden parts of the Self into consciousness. “
feels like psuedoscience
I’ve been trying to become a stronger version of myself by continuously integrating my shadow
https://apple.stackexchange.com/questions/50124/group-windows-in-mac-os-x seems like this doesn't exist in base macos
So like CI/CD?
I mean you bring up a great point. It’s hard to prove theories in psychology
deploy the shadow™
To try everything Brilliant has to offer—free—for a full 30 days, visit http://brilliant.org/Sisyphus55/. The first 200 of you will get 20% off Brilliant’s annual premium subscription.
This video was sponsored by Brilliant
Songs used are from Housecat:
https://youtu.be/aEI4l-cX_QM
NEW MERCH: https://sisyphus-55.creator-spring.com/?
PATREON: ...
I honestly don’t know how the shadow can be scientifically proven
lmfao
This will give proper explanation of shadow
nah. psychology is a whole field of science in and of itself
Why do you say it feels like pseudoscience then?
I’m typically an introvert and quiet person but whenever I approach, I feel that I become this confident and ballsy person that’s a slick talker and I think that comes from integrating my shadow
If that’s not shadow integration, idk what that is
Well well, this video will explain it to you





