#ot1-perplexing-regexing
1 messages · Page 137 of 1
Fine
Same
Whatever YOU wanna talk about
My laptop Is broken it breaks every 2 weeks my dad doesn't wanna buy a new one but I have to wait a few years for it to be repiarrd
Nah you chose
Alr let's get to know each other then if you don't mind that
Sure
You start
You can call me 256 in 1 byte
Alr
Nice to meet you 78 bytes
Ok this sounds so ai generated 😭 ✋

You can call me Nick man Nice to meet you
Nice to meet you
Idk if I should throw my real name
But people may bully me lmao
Lmao
Inventor technology
Damn
Actually I am thinking of starting a start up with my friend
I may call it that
Cool ass nickname
But the name isn't funny
Call it something goofy
In my language it sounds werid
It needs the word tech in it atleast
speak in your language and I'll guess it
What do I say
I love you
Ana bahabak
Arabic?
Ya hamar you made it easy by saying "language letter or English letter"
Also I memorized I love you in quite a few languages
Don't ask me why
You still don't know my country
No
This will be the hard part
Yes because there are so many dialects man
But you can get me with my accent
Yemen
You know
💀
Yasta the whole world knows
Even worse
Im not from this world
You are getting far
Far f
Jordan
Closest you got
Uh palestine
Closer
Idk middle eastern geography so you telling me I'm close doesn't help 😭
Uh saudi arabia
Even worse
👍
Ayyy
Took you a year
How are the pyramids bro
Fine
Who
Shushhhh 😭
I meant to say keep the pyramids polished
Ok anyway guess my country
You'll never get it
I won't give any hints
I did
Noi
🇺🇸
Nope
Non
:incoming_envelope: :ok_hand: applied timeout to @echo stag until <t:1736020113:f> (10 minutes) (reason: duplicates spam - sent 4 duplicate messages).
The <@&831776746206265384> have been alerted for review.
Lmao
Insane
Mods can you guys unmute him because it isn't spam
!unmute 748920957661347903
:incoming_envelope: :ok_hand: pardoned infraction timeout for @echo stag.
well, chill out with the no's lol
Sure 😭
I don't know how to say no in other languages so I js kept saying no lol
Thanks for lifting off the mute tho 🙏
Appreciate you for understanding 🫡
@warm plume
I am back
Hi Back nice to meet you I'm Nick
Let's talk about something else
Yes
Let's play chess
Where
Can I do it on phone
Shawarma is Syrian and egyptian shawarma is not a good style but their is Syrian shawarma here as well
Treat me with the best shawarma
Ok
What do I do
Do You know the rules of chess?
Idk
Idk
?
I'll send you an invite link to the game

OK Chatgpt, now make it watch for changes, and then make it show semantic diffing between what's in the latest commit and what's on the working tree
Does anybody here have Lethal Company? I want to play modded and need 2 more people to get scrap together with, I'll send the Thunderstore key if you want to play together
I had fun with HPC, but I guess it will depend a lot on the exact course setup
HPC?
high performance computing
Network security is fun and easy trust me
😛
Dr han my beloved
blehhhh
I mean, why not? I shouldn't I?
fren shaped
bruh
So in intelligent systems, there's a lot of use cases that aren't just the LLMs and image/video generation people like to talk about, is that correct? And I get the impression because it's making inferences and decisions from given information/input, there'll be some overlap with data science too so I expect it to be very Math heavy.
With Math not being something I'm particularly skilled at, is it even wise for me to even consider Intelligent Systems over Game Development as an option? Because at least with the latter I can still pick up the slack from being relatively weak in Math with the other skills that I have to learn (particularly multimedia related)
I'm comparing the two since it's either one of the two I'm supposed to specialize in by the 3rd year in uni, and while I know I'd enjoy the latter more since it's more closer to my interests I do feel a bit of peer pressure with the former so I'd wanna hear more about the former too
DS650 CS648 CS647
DS675
Is it?
the adjusted figure is somewhere around 98 cents last I checked, what I don't know is what countries the research comprised of (like, I imagine that in UAE women just receive a lower salaray just because)
1.20 dollars for every dollar (adjusted for inflation)
google did a secret audit and found they paid women more for the same work
yeah i should clarify, in the USA it doesnt exist
but like
its not shocking an LLM would pick up on that
its literally
public information
i think the fault was inferring a fuckin computer had some woke bias or something lmao
well, it's against the law, it doesn't mean it doesn't exist 🙄
to its credit, it even attributed the "bias" towards it being a common figure in discussions on this topic
wel no but statistically it can be explained
but accounting for all the factors its like -2c like you said earlier
(in the usa)
I was taking the accounting for all the factors into account already
also a 2c diff is still a 2c diff, that's a whole 2%
but i dont think thats enough to claim its on the basis of sexism
yeah, I suppose it could be a permissible statistical error
there are just far too many people and factors to calculate a pefectly accurate answer
because realistically there are companies paying woman more, and companies paying men more
but its not some national overseeing consciousness working against women to pay them less
idk, it could be Illuminati or Freemasons standing behind it all 👻
you called?

I would
Casually playing through hl2 with dev commentary gave me this jumpscare of a sentence
for me, security turned out to be as over engineerable as performance optimisation and ml model accuracy (but over engineering is always fun)
😨
is this real?
LMAO
@solid elbow Most of what I'm about to say are just my observations from staring at IDA and Cheat Engine, expect a lot of errors.
In C++, objects are just chunks of memory, with values stored next to each other (I think). But what about the methods? Each object has to store a pointer to the VF table or sth?
or am I mixing up terminologies again
are you familiar with how structs are laid out in C?
I asked about C, not about C++
....and C
well... if you know neither C nor C++, I can answer your question, but I'm not sure if you'll follow the answer. I'll give it a shot...
In C++, objects are just chunks of memory
yes
with values stored next to each other
yes, possibly with padding between them to account for alignment requirements of the data types. A class's inherited members appear before its own in that contiguous chunk of memory. And of course, the member might itself be a pointer to some other memory stored elsewhere.
so far so good....
But what about the methods?
C++ has two types of methods, virtual and non-virtual. The distinction is more or less that a virtual method can be overridden by a subclass and a non-virtual method can't. That's a simplification, but it's close enough to true.
Both virtual and non-virtual methods are compiled to instructions that live in the text section of the executable. For non-virtual methods, the compiler just inserts a call instruction to call that function. It can't be overridden by a subclass, so its address is known when the code is compiled and linked; it can't change at runtime, and it won't be different depending on the type of the object that the method was called on.
For virtual methods, there's an extra dispatch table. The contiguous chunk of memory that stores the member variables gets an extra member added to it, called a "v-table pointer". That v-table pointer points to a v-table, which maps each virtual method to the appropriate implementation for this instance, given this instance's type
so there's one v-table per type with virtual methods, and each instance of one of those types stores a pointer to the appropriate v-table, and that v-table is used for virtual dispatch (dispatch based on the runtime type of the object rather than its compile time type)
makes sense to me
sweet. Then I think that's a pretty complete answer to your question
this is actually pretty close to how dynamic dispatch in Python works, too!
each Python object holds a pointer to its type, and that type is used in the same way as a C++ object uses its v-table: when you call a method on a Python object, it looks up the appropriate implementation to call on its type object
and once it hits interpreter land, I'm a fish out of water
nice to see I'm understanding things mostly correct
well in uae schools female and male teachers receive the same salary
oh and the salary varies a lot depending on your nationality: if your filipino or southeast asian its going to be quite low, followed by arab nationality, followed by emiratis
yikes
So...does a Filipino female teacher make the same as a male Emirati teacher?
Or do they make the same amount?
So I suppose follow the one that aligns with my interests and talents more
I wouldn't mind going overseas if I have to
btw in rust there are sum types, and with those sum types you can basically do smth like dispatch, so instead of storing a vtable and a bunch of pointers, it is basically like a switch case, ie:
enum Something {
Foo(Foo), // stores a value of type Foo
Bar(Bar),
}
// both of those types implement a trait - interface
// so we can basically do like this:
impl Trait for Something {
fn do(&mut self) -> i32 {
match self {
Self::Foo(foo) => foo.do(),
Self::Bar(bar) => bar.do(),
}
}
}
is there anything similiar in c++?
btw a more classical dynamic dispatch would be:
// keyword dyn marks that it is an object
fn do(value: &mut dyn Trait) -> i32 {
value.do()
}
// and then you can just:
let foo = Foo::new();
let whatever = Box::new(foo) as Box<dyn Trait>; // convert into an object
let _ = whatever.do();
(we have to put it onto heap (via Box) because we cant know the size of dyn Trait)
is there anything similiar in c++?
std::variant and std::visit, but it is less common.
std::variant gives you a sum type, with visit() for dispatch
huh
how readable is that tho
not very, you usually don't model your objects in this way in C++
but C++ is also not really designed to produce readable programs
you don't happen to know anything about that, do you?
😈
i shared my website with some IT / security people at my internship and i forgot to change the example images, this is one from my browser
i dont know if its better or worse for them to think its a girl or a femboy
My Smart TV discontinued Netflix. Is Roku a decent solution to watch Netflix on my Smart TV?
how do you work with such high opacity on your background image
wait but how come that std::variant is sonce c++17 but visit c++26..?
that was a old rice and for some reason its always way harder to read on a screenshot than my monitor
this is easier to read than you think
"T / security people at my internship"? femboy, that way you may even get a boyfriend lol
std::visit is not std::variant<>::visit
I do not know what the latter is
so which is it
its astolfo
hell yeah
I hate smart TVs, too much coupling, it's basically a cheapo android tablet strapped to a giant expensive screen, imo just got with the roku or wtvr from the start
(I don't have any particular recommendations sorry
)
yes
or chromecast, though idk if that's still a thing really
as far as I can tell, no matter what you do, disconnect your smart TV from the internet
(sth sth, the FBI was very explicit about smart TVs)
did u know that 3 of the top 7 vpns are owned by the same dude who has dubious military ties
youtube on the TV? hell yeah
Is he also curiously israeli?
which 3 and that's not relevant to the point
For legal purposes that was a joke
aw hell naw why did you fucking name drop him

my schizo ramblings are meant to be an exercise to the reader
NordVPN is lithuanian supposedly but lithuania isnt nordic
Really gets those almonds activating
hmmm, I thought it kinda was if u were concerned abt privacy then this was worth a mention 
I need you to give me the guy's full government name thanks
John horseburger
(hence my inquiry about which 3 you were talking about, but it is not relevant because it doesn't address what I said about smart TVs, apparently smart TVs are more vulnerable to exploits or something, I can't find the actual FBI notice of this, but there are a bunch of news reports about it)
speaking of the FBI, there's an Innocent on their top ten wanted list
A la the pewdie pie printer hack years ago
allegedly which one
ah, the dude's last name
Nominative determinism when wanted criminal Innocent walks in
oh that's interesting phrase
yes
Apparently in African countries people name their kids after virtuous qualities they want the child to have
Thats why you see a lot of Perfects, Precious, Blessings, and such
Mr Innocent didnt get that memo
Also, I did DM you an article on this, won't post it here cuz controversial topic
I thought this was common every where 
It is?
vitel'homme innocent was born in haiti
it's kind of a grandma name but there are such names where I live
for example: jamal means beauty
the name is common with African Americans but it's arabic in origin and is popular ina lotta places
I dont think its that big in europe
well duh they probably name their kids "schön" or some shjt not jamal lol
😩
Mein schön sohn: shaun
yeah actually i figured that later
since C++26
Watch Well THAT was dumb and millions of other Lethal Company videos captured using Medal.
wheatly reference
@glossy niche @carmine apex @grave cove @foggy jungle + the rest of the squad
too scared of pinging more and getting yet another mute
what a little baby
weedly my beloved
I'm so happy right now
Life's full of beautiful mistakes. Be one of them, or learn from your own
I'm so happy happy happy I'm so happy happy happy I'm so happy happy happy I'm so happy happy happy I'm so happy happy happy
:incoming_envelope: :ok_hand: applied timeout to @rough sapphire until <t:1736258951:f> (10 minutes) (reason: duplicates spam - sent 4 duplicate messages).
The <@&831776746206265384> have been alerted for review.
Are there some AI that des video tracking on anything yet ?
Like I could type "red shirt" and it'd find and track all of them on a video
Tracking things in video is pretty common. Most security cameras these days can track different things. Ubiquiti cameras for example can track people and vehicles
some companies also use AI cameras to track productivity...
its concerning
Yup Amazon is known for tracking eye movement in their delivery trucks
"why does nobody want to work for us?"
speaking of Amazon
I saw that they're looking for a mid/senior level threat intelligence analyst
i almost just got charged 5k for my medication cause our plan resets every year 🥴
That’s how they get ya
The job sounds cool but I don’t know that I’d ever want to work for Amazon because of the culture
nah its actually very clear when your plan changes
¯_(ツ)_/¯
its actually not that bad
bruh
crohns meds?
if there is a med for it

i was born a mistake...xD
💀 ☠️ 
Humira
It claps my immune system
Because crohns basically makes my immune system go into overdrive and kill literally everything in my gi tract
It's pretty awesome
gws (if such a thing is possible)
yet you're not concerned about being on discord
yet you're (🔥🏠 ) not (🔥💣 ) conc(🔥🔥)erned about (💥🏚️ 💥 ) my power
i cringed so hard
my real name is kevin from the DIA
oh a new 3 letter to hate
i havent heard of them before
Our Mission
Provide intelligence on foreign militaries to prevent
and decisively win wars.
hahahah stop the cap
stop the cap
.uwu
my weaw nyame i-is kevin f-fwom the dia
no cap
that's exactly what someone from the dia would say
there's a reason you hadnt heard of me
big bruh is a well known user on a 300k server fym heard of you 💀 👎
im the real anon here
im a ghost
my steps light as the wind
everyone knows who cli is
one of the noisiest dudes on the server swtg
oh
lmfao
💀
destroyed by his own loud mouth
see krrt now you just replaced thuri in our drunk gun battle
you cant handle me
im just the doctor
i got a presidential marksmanship award
im comptia security+ certified cybersecurity expert and analyst
i'll one shot you dude
.uwu
im c-comptia secuwity+ cewtified cybewsecuwity expewt and a-anyawyst
lmfao

ngl that one was S tier
funny ahh
ty ty
but i dont take no disrespectl ike that
uh oh
.uwu
but i dont take nyo d-diswespectw i-ike t-that
always
you live cooked
ChatPGP
correct. thats the joke
notepad++ 🤤
I just solved a wierd bug: service cannot communicate with a service hosted on the same server because it's domain name points to a load balancer with a different ip than the load balancer does not allow traffic on by default and the server IP is not listed in the allow list of the load balancer
this isn't the first time I've dealt with this but it's always annoying to deal with this 
weird*
wired
Pretty dumb Russians btw
i'm curious but i don't want to make you relive the details @raw zephyr
… you executed random unknown from the internet?
ah yeah i do that too
i like to try testing out shady things because i usually know enough to do it without getting screwed
but i have also gotten screwed
curiosity killed the cat
I’m sorry, I laughed at that
i just learned a new joke
Learn from this, start taking backups
this is a reminder for me to take backups too tbh
i just hadn't heard it before btw, not planning to use it
but yeah, you don't need files to survive. learn, move on, and be in the moment
the backticks are the part there that's letting it execute commands
that's subtle, I didn't catch it at first
a wha?
It’s in style
Do you guys think RLHF is the best way to deal with hallucinations in AI models?
What’s your opinion
dying
the biggest problem is that it isn't scalable
RAG can be pretty useful, but it requires context
KGI is also good, but relies on the data being dactual
'ello people 
I am looking for a dataset or API which has every (or most) fictional characters and their pic in it like characters from
- anime (required)
- movies & novels (required)
- games (optional)
If you can find said dataset or API, then ping please. Thanks!
One option off the top of my head is fandom, most fandoms will have wiki pages for specific characters and often have images, might be a bit more work to process and might end up with a few false positives
I'll look into that too. Thanks.
There was some character database several years ago, where you could search by visual traits etc... Nowadays a niche of finding a pic of "male anime character with brown hair and blue eyes" is filled by ai-generated images, but years ago for sure there was a website for it...
https://www.animecharactersdatabase.com/index.php I found this for anime
Anime-Planet also has a list of anime+manga characters
For movies, technically imdb has role+actor list, but often there are no photos of the actual character...
That's quite a database lol
Claim an anime girl as your waifu.
from the embed tells me that a lot of boys have contributed to this project xD.
I will check this out too. Thanks Nikita :)
Btw there's a bot you can add to discord server that has characters from various media and you can claim waifu/husbando... In one discord server only one person can have that character claimed.
But I think there's a lot missing as they also couldn't find a central db
what would you do if you are going through to some heavy stuff
here is the deal the russians never treated us badly, we have a neutral relationship
but if Trump want to make taxes less a problem with my country
I know the person behind
and some intel people like me (fanboy of samsung) have the means and the motive to take that people out
that would be my salvation?
did you think because you reverse shell my computer once on windows you will be consider a demon?
are you my tough friend or just a lost cause like me?
I'm violating the 5. term
someone ban me
:incoming_envelope: :ok_hand: applied timeout to @keen trellis until <t:1736455712:f> (10 minutes) (reason: duplicates spam - sent 4 duplicate messages).
The <@&831776746206265384> have been alerted for review.
ok
i'right
Should I?
Yes
As in basically just two plugs only? Or 2cm between the plugs?
Uh I have one of both 
Working of course?
I would actually do with one of these
the hotspot in my flat backs right onto the back of my pc
my cable management solution is just stuff all the cables between the pc and the wall
i just ignore them
out of sight out of mind
(it causes me physical pain to see the state they are in right now)
Hm... I could use this cable between LTE modem and our main router...
when the usa said that the abrahams they send to Ukraine have the edge technology cut out I believe it
Abrahams
31 Abrams
is this an amish guy?
it is Abraham Lincoln
wrong
it’s the guy who said “don’t trust random quotes you see on the internet attributed to famous historical figures”
"i didnt say that shit" - sun tzu
although out of all the misquoted people hes not bad
its mf einstein who gets cooked
ah yes, i see you’ve read the art of war
i have actually
lol true
damn fr? thought it was js a meme
hey, that's the guy in the GIF above
daaaamn yous the thinker fr fr
nah
einstein simultaneously believes and doesn't believe in quantum physics
bruh
!resources grabbing for someone
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
oh
Are you sure you want to continue connecting?
Github: https://github.com/sakhezech/too-much-cider
Rendered in 15 FPS and sped up x2 to minimize desync
type shit
How do stock options which you aren't allowed to sell within X years work? Can't I just sign a contract that I'll give the stocks to a third party once they unlock, getting X money now? And then that contract can be traded as a sort of "stock future".
He's like me fr! /s
eivl, lend me some
Typically, with a lot of emphasis that this is a broad legal area, you cannot trade options in any way, shape, or form until they vest. Since vesting isn't a guarantee (you could lose your job), you'd be hard pressed to find someone to take a double risk and give you a hamburger today for a repayment next Tuesday.
bro my cached cheat engine results took up 200gb
just cleared my temp files and its all good
what made it even worse is that i was torrenting a large file to the wrong drive
well lucky for you I have a cable crimping set and a bunch of spare connectors and cable which you can play with when you're back 
Hm, IG yea, tech jobs are extremely unstable
Most jobs are, when you're trading on them.
It just emphasizes that stock options are, literally, "might pay you later" options. It's not money in the pocket, it's not liquid, and it's my least preferred way to be compensated.
Wow
ball is life.
chat does anyone know how tenor get their mp4s to.embed as looped gifs on discord?
if you download this it's an mp4 not a gif
but it embeds like a gif
how does tenor get that to work on shit cord
I'm pretty sure it's special support from Discord.
OK butttt can we abuse it
what if can put a special header on my embed responses
hmmm
I can definitely reverse engineer this
I checked — there are no special headers
I can have discord try to embed my site then log their get request then fire an identical request at tenor then see what that returns
oh
damn

thanksfor saving me the effort at least
Well, I didn't check as in depth as your plans
I just checked the network requests when loading their page to try to see if there was anything
hmmm,but the request for the embed is probably server side
I think i can use a web hook website for thjs 1 sec
It is. It's possible that tenor gives a different response by ip address but /shrug
I got the request one sec let me undox my self lol
those are the headers
FUCK YOU DISCORD MOBILE YOU PEICE OF SHIT
it has a special User agent
I think i got it
curl -X 'GET' 'https://tenor.com/view/cat-soda-shaking-explode-orange-cat-gif-16941493478810774062' -H 'user-agent: Mozilla/5.0 (compatible; Discordbot/2.0; +https://discordapp.com)'
put this virus in your bash
What even does this
2
then what
i'm using distrosea to checj
og website
@bright grove what
i do not have connections with kim jong un
damn i had no clue
i just looked it up rn
lol
God dammit, they gave me a pickup truck -_-
What's wrong with those?
Horrific gas mileage and emissions, the modern ones are bigger than they need to be, harder to park in tighter spaces
i was in a pickup truck uber and it was sooooo loud
my friend's dad bought an electric pickup truck
Those look cool
average day in texas
<@&831776746206265384> vc verif spam ^
which one?
I really like the rivian but they're more expensive than most
I wish Honda would do one like the Ridgeline
I dunno, the Ridgeline is basically the worst vehicle you could get if you want a pickup truck, or at least second worst right next to a new Corvette
people say that but then they love the maverick which is the same thing
I like the look of the Maverick but if it's a Honda Ridgeline underneath, it's garbage
But the maverick is all ford platform no?
I know it's a Ford transmission, and it sits lower, so I don't think it's the same thing
It's Ford C2 platform. So yeah
Not the same thing, not even remotely
It's a truck on an SUV frame
It's not a truck
It's the closest thing we get in America to a Ute
Granted, it's actually about the size that real pickup trucks used to be
And has some real towing capacity in the AWD model
They need a model with a manual transmission and two doors instead of 4
I would've been all over that
ford f150 lightning
makes sense
an affront to big gas guzzler trucks
I'm in Illinois in January. Snowy weather is practically a given and the car rental company did not have an ice scraper in the car 😒
time to sacrifice a credit card
I still have an ice scraper from when I lived in the snowy north
don't know what to do with it anymore
build sand castles
how does this contrast theme look? not enough or okay?
cybertruck
no way you also have that extension
fr
they are so unique their browser fingerprint is a fuckin home address 💀
💀
i cant imagine the RAM usage of that many extensions
same
my feet pics are GPL, you got scammed
yes:
Lmao
eh, 13 extensions isn't that much
far more distressing is the open w3s tab
every windows 7 user who was over 45 had a taskbar that looked like that
C++ no less
speakin of car videos
literally unhinged
i have 10 at the moment myself
Bruh
What are you associating my name with now?
How many do you have then?
firefox but yeah
You just give off that energy
lol
You just give off that energy
No Viv? 😦
no ex 😔
what is ex
I've heard it has a decent visual mode
Something an Emacs heretic would never know the wonders of
Can confirm 😔
I Emacs'ed too hard I stopped programming
Yeah this is why
I am yes
Nah uni is just taking it out of me and I don't actually do too much programming any more
Idk how it happened but I am now doing Electronic Engineering
At least the programming modules are easy enough
relatable
Hey at least that's interesting
I'm now doing Clojure
It's all @green pelican 's fault
@green pelican first function added, tests passing in CI
https://github.com/letsbuilda/imsosorrybutinparentheses
semicolon for comment is funky but so fire
t for true's a little crazy ngl
nil for false double crazy
what an interesting language fr
not just semicolon
semicolonsemicolon
Who would voluntarily use emacs???
All roads lead back to vscode
How do you eat an elephant
how big
✋. 🤚
Bigger the elephant, bigger the gun
that's tiny
🤏 this close to busting out yo momma jokes
I love clojure
I thought we were friends
If you use emacs CIDER is great
(Is that a Clojure thing?)
Yes
I had a much more fun time writing clojure than common lisp
I don't like how unorganised the language feels but with clojure the ecosystem and the tooling is all there
And Leiningen makes it super easy you different packages
I think the common lisp one is called Sly which I think is a fork of SLIME it all feels very old and archaic and confusing which requires a lot of user configuration to get it how you want it

Lein is amazing
Seems unnecessary
Lean reference?
💜💜💜
lien is the name of the CLI for "Leiningen", some.... IDK, something to do with Clojure
You sure talk a lot of talk
🔥 🏡

real

better no standard than yet another shitty one
also this is the 2nd or 3rd time ive seen someone call matrix a shitty standard - what's bad about it?
only thing that comes to mind is the fact Element is pretty much the only good client for it
i mean it seems counterintuitive for a "good standard" to have only 1 good client right?
idk
but
thats like if javascript was the standard but only worked on a single browser or something
my issue with this meme is that people call things that aren't standard "standards"
example: a config format that can be compiled to another like json
or a tool that acts as a front end to another like mise en place
I've had people tell me those were shitty standards but like, they aren't replacing shit
It’s taking me 8+ hours to troubleshoot software deployment issues
It be that way sometimes
_dems rookie numbers _
Ask @grave cove about SQLA
And trying to figure out which version was causing which issue
No way really?
Yeah
Like me learning how to use Kubernetes
Took me like a week to understand how to deploy things correctly
I spent weeks on this
Not straight but still
But that’s not troubleshooting
That's what learning is
Sheesh
And I still haven’t figured out what the problem is..

Python is truly a big slow language fr

I love Haskell and once you start really writing it, it just all falls into place and makes sense
People say IO is a bitch but once you understand how to work with monads (like binds and continues) it's really not too bad and makes a lot of sense. I mean state is a well written program should only be near the top level of the program anyway so there isn't too much messing about with types required
I would not say "only near the top level", but io should be separate from other things
Does anyone use Macbook Air (M1) with an external monitor? I am trying to find a nice HDMI to USB C hub / adapter which will support at least 60Hz on the external monitor
Yo, so VSCode question....
I noticed this:
https://marketplace.visualstudio.com/items?itemName=icrawl.discord-vscode
https://marketplace.visualstudio.com/items?itemName=LeonardSSH.vscord&ssr=false#qna
Which is better?
in your guys' experience, if any
I don't even understand why you would want this
just because
to flex
nah
I downloaded the first one because it had a bunch more downloads, but
doesn't always mean everything
Flex what? You want people to know the specific file you are editing?
nah, I'd configure this to not do that
Doesn't Discord already show when you are using VSC by default?
2c: i think discord rich presence makes sense if you're doing an activity where it's reasonable for someone you know on discord to join (multiplayer games, spotify listen along) but sharing your exact activities on vscode seems a bit much
That's why I filter it to a degree...
i think if you have desktop discord you can share the fact that you have vscode open but not the exact details
like people will know I'm using Python, but not the filename, workspace, etc..
it's not strictly a usb-c to HDMI but its a nice docking station for mouse, keyboard, headphones, network, and some extra USB ports
I use something similar with this cable https://www.amazon.com/gp/product/B075V5JK36?ie=UTF8&psc=1
Fully immerse yourself in 4K Ultra HD within your entertainment space. Just plug in and hit play. Extra durable & Extra freedom. Minimize interference. HDMI 2.0 Ultra High-Def Performance. 4K@60Hz High-resolution. Braided Nylon Cable, Advanced Aluminum Case. Recommended by a trusted testing websi...
Thanks a lot guys. @grave cove @robust zephyr It supports 60Hz on the external monitor right?
That's literally my only criteria
Says so right in the title
yes
The problem is I got a 4k@60Hz Anker Hub, but it supported only upto 30 Hz for 1080p. Weird lol, and it was a different hub than the one Robin posted, so I was just trying to be sure 😅
Interesting channel name
@grave cove declarative base wgat it is
@vale raven so my school has a GitHub enterprise thing that I need to join to view homework repos, but it looks like I need my school email. Will I be able to join the org just by having the email added as a secondary email in my GitHub or do I need a separate account?
Some.. “SAML SSO” thing I don’t really understand
on how the tenant is configured.
DM me details.
I wouldn’t know how it’s configured :/ they’re expecting most people to just make a new account but I really don’t want to do that
Understood. DM me what you're looking at and I can tell.
But assuming they're using the default configuration, then yeah, adding a secondary email should be just fine.
That's exactly what I do for work.
decided to just try it and it seems to work
Can I also join this guy's hw repo?
Depends, do you have an email from his school?
I could commit fraud

Yeah I just saw that
Membership is supposed to be private by default
You should be able to change it
on your feed? thats diabolical
no I think that's just you
what is a "GitHub Enterprise Cloud"
A GitHub org with extra fancy RBAC and regulatory compliance stuff
Actually, it's not "an" org, it's it's own entity, which can contain multiple orgs
oh i found a neat mkdocs page
we had ghec at my internship
Check out https://github.com/settings/enterprises and click on the entry
<university> Enterprise GitHub is connected to the <university> directory via Microsoft Azure Active Directory (Azure AD) for single-sign-on to enforce the use of NetID credentials and two-factor authentication to access resources in the organizations.
oh this is neat too
Hey mates
I would have a question out of curiosity:
Is it logical to become remote full stack developer?
I am asking because seems like there are too much full stack developers also AI tools are rising... and too much oversaturated what do you think about this?
Im confused too
Sure, but that’s more of a senior thing. It’s not really viable or common as a junior or intern
https://www.youtube.com/watch?v=DFWw_R4QAoI do you think this actually makes you stronger
A step-by-step guide showing how to perform a v-sit hold exercise. Check out https://www.urbacise.com/exercises/ where you'll find our exercise database, use it to help plan your workout programs. You can filter over 100 exercises.
If you need further help planning your exercise programs you can buy our book 'How to Write an Exercise Program' ...
eh
I have rediscovered an old meme
it’s not funny when I see the Reddit watermarks
Get over it
It’s already a screenshot of a Reddit post
that's a deepfried meme
That header kills me every time
@vale raven
tempting
why buy ssl certs when u can just get them for free 💀
Who’s buying certs?
ik this is a meme but this is kinda stupid

Bro you've been spamming this and crossposting it for days now
Go ask in a js discord goddamn
real
how to do this
pip uninstall pip
Saw someone else do it and I only forwarded the message.
I think it's a canary feature.
@lament cairn
efficient storage
can some random used thinkpad off of ebay run a linux rice without lag?
Is there a difference between an in-voice and a receipt when purchasing services from a business?
probably, my lenovo laptop with an i7 6500u + 8gb ram from 2016 runs a riced mint install just fine
Why would a rice be laggy
They aren't inherently laggy
I mean windows looks like shit and it's 100x more slow than any Linux rice
Hahaha
if i decide to run some heavy shit on that
Good one cli
that's wild
It’s just “invoice”, not “in-voice”.
An “invoice” is a breakdown of the costs of goods/services provided. It’s a “request” for you to pay them for what they’re giving you.
A “receipt” is what you get after you give them that money they requested. It’s the “proof of payment”. It will list the total cost and the transaction number from the credit card company, for example. Sometimes they’re itemized, but not always.
As always, some people have different definitions.
I used to have a vendor at work who would send receipts for automatic renewals labeled as “invoice”s.
And some vendors don’t really provide receipts.
Like there’s one that sends me an invoice to tell me what they’re going to charge me for, then charges my card, but doesn’t send me a receipt after that.
unity or UE 5 ???
UE5, epic games CEO is not incredibly disreputable.
So only mildly disreputable?
Thanks for the breakdown
Yea, the normal amount of Tech CEO disreputable
It depends. UE is AWFUL for 2d. Unity is very good at it. There's also Godot if you can stand their """scene""" system
okay thanks you guys
what would i need to make a automatic door opener
sticky pistons
Does it make sense to use the word “diplomatic” outside of a governmental context?
For example: “The wife and husband tried to reconcile their differences diplomatically”
Yes
sure, but it has an added nuance of professionalism for me
fancy ahh
Amicably would probably be more apt.
But outside government, yes. "Ask him if he took it, but be diplomatic about it."
"I seem to have misplaced my tool, have you happened to see it anywhere?"
I think diplomatic means "convince them to do something without beating the shit out of them"
imo that's the normal way
the diplomatic way is basically negotiating spelled differently
.wa short diplomacy
negotiation between nations
the art of dealing with people in a sensitive and tactful way.
The colloquial use of diplomatic makes the person its used for sound like an asshole
*deplorably
*deportability
the cowwoquiaw u-use o-of d-dipwomatic makes the pewson its used fow sound wike an asshowe
🤨
what?
wow, i didn't know you took up self portraits
Me (I'm bashing my head with a molcajete handle)
💀
hey, don't kink shame

that's my irl reaction
ily dude
rust general is crazy
crab
you look yellow, get that checked
KR²T free pydis, no way!
Is it related to Python?
Sorta
If you think it's related, then you can present your issue in #data-science-and-ml
@strange blade Would you mind if I asked you privately?
Otherwise, asking here is fine.
Unfortunately, it's not fine
How so?
@strange blade Because I need help with some private research
Do you mind if I explain privately?
Please explain here, so anyone who is available to help will be able to see if they can.
I really can't explain it here
Then I really can't help you, unfortunately.
It's a serious issue
If you can't even explain your issue in a short, barebones summary, then I'm afraid I can't do anything

@strange blade If this were an issue where someone had me at gunpoint, I'd be dead at this point
Fine.
I will find someone else.
Good luck 🙂
Lol?

they are talking as if a private message = NDA contract
I'm aware it's not, but never mind
Nobody here ever helps anyway
??
#python-discussion is having a lot of traffic today, I don't get what you mean.
If you have an issue, it's better to just state what you need help with.
Being secretive about it and asking for private help doesn't help others gauge your issue, and it's also quite suspicious.
I understand if you don't want others to take your work, but at least explain what you need help with.
yeah it's far more likely people respond to you if you actually ask your question
Listen, man. It's none of that, okay?
Just never mind
(and, for what it's worth, most people don't care enough to take your work either, if that's what your concerned about)
Even if it's the most barebones, simplest explanation, an explanation would be really helpful.
Ok, good luck with your search for help!
I'm also probably less than qualified to help anyone so I really need to just see if I can help or not.
But this back and forth has wasted more time than I would have liked.
it's the same logic as "don't ask to ask". The difference between "Is anyone experienced with web development?" and "I'm using Flask, and I get the following error while running my app: ..." is that with the latter, people who read your question immediately have a much better idea of what you're asking for help with, and are more likely to actually answer you.
That said, we won't force you.
No, no, no. It's none of that.