#ot1-perplexing-regexing
1 messages · Page 20 of 1
I posted it in #databases but I don't think there's really a solution.
unless you do something like a star schema
Literally just trying to pull null counts
and have fact and dimension tables
welp I think I'm done with that whole shindig
read-optimized analytical systems could probably do it under 10 minutes, maybe even 5
depending on the way the data is modeled
maybe even 1
I'm an end user. Things just need to work duh
I'll need to refactor so I'm just doing 2 queries, not 1 + # of columns.
I have hive & presto
And I'm accessing via ODBC driver or HUE GUI
w/e the hell that means 
Robin complains when I nullify malicious webhooks before he gets a chance to look at them but is always busy playing Minecraft when I find them.

W/e, I'm on vacation next week so
does anyone known how to create a nitro token generator? i keep seeing these nitro boosting bots? or a video where i can watch and learn??
Had to look up aboo
pretty sure thats against discord tos
oh
but
its for uhhh
educational purposes
anyone know tho?

So is spamming that across multiple channels.
no
its a bot/tokens that boosts a discord server

Stop it.
Most of my time is spent killing malware from these stupid token generators.
And it's definitely against terms of service, and this Discord's rules.
oh
2. Follow the Discord Community Guidelines and Terms Of Service.
!rule 5
5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.
mb
oh man i have to get renters insurance
for this new place
hmm anyone heard of this one
Whenever I hear: "Forget everything you know about X", I walk the other way. 
Just bundle it with the car insurance
"Forget everything."
Ok


Speaking of insurance, I realized the other day I've been trying to get a car since October.
oof
One dealer gave a quote that added 2k of extra BS.
bruh wtf
computers arent covered?
thats like the only thing i want covered

what am i freakin paying for
i dont got "jewelry and furs"
man insurance broken
Computers are probably a different category?
oh wait youre right
i just cant read

lol
Reminds me I probably should back up my data from my server.
Car prices rn are absurd. This is for a XSE camry at my nearest toyota dealership.
At this point, I'm waiting till 2024 
Not getting a camry though, looking at the Lexus (although still part of lexus/toyota). Still, production issues left and right.
My moostang has probably appreciated in value 
This was the quote I got.
i passed a phone screen
If you report market adjustments to Toyota they'll yoink the dealer's stock next cycle.
And this.
mendatory
tf is Nitro Air
mendatory
dammit
it's nitrogen filled tires
maybe they should mend their spelling
Hi @foggy jungle
what's the point of that
How are you enjoying my OTN?
AND, they signed off the email with: "Have a blessed day!"
Less sensitive to pressure changes due to temperature
are you in a place where that matters 🤔. also, how does having nitrogen rather than air do anything
It's selling you air at a premium
Patiently waiting for my weaponized-list-comp to come around
It's kind of a big scam because the truth is it really doen't matter.
that's dumb as fuck

I wonder if as devops I can hijack the ordering
get out of here
700 dollar doc fee
The pressure variance does change with a nitrogen/oxygen mix for tire filling, but it's not... anything remarkable.
how?
Resistall & Apex protection are like paint protection & leather protection for 3 years
But only covers regular wear
Yea, it's more or less free money for the dealership
Nitrogen effuses less rapidly and doesn't produce water vapor is the tl;dr of it.
i see
Buying a car right now sucks. Majority of interiors are giant touch screens. I feel like a boomer.
I like my car's interior.
Plenty of knobs and shit to fiddle with, nothing locked behind a touch screen that's inconvenient.
microsoft teams is malware, on god
Yea, too bad Lexus went to the giant tablet route in 2023.
Military surplus humvee?
And modern toyotas feel they are built cheap af.
How's that 10 MPG?
ferrari???
I got 26mpg on a 20 hour trip from NM to... where I am now.

What're you putting in the syrup?
Mom the dog's drunk again.
leaked
the logo is right there lol
(Is that not Ferrari? That's embarassing
)
Mustang?
Those are 2 different cars though?
bruh?
I sold the ST for the Mustang.
I don't like the new flat logo on cars now
That ST made like 450 hp when the new owner dyno'd it
Basically rebuilt everything in that dumb engine bay

I debadge my cars as much as possible
I'd prefer it if they were flat so I can scrape it off.
Reminds me, I need to email another dealer for a quote.
cars sound so stressful ngl
Well, it's mainly covid ffffed up everything. Before, it was buyers market. Now it's seller's market.
gonna walk everywhere

the interviewer last week said it'd take up to 2 weeks for a response but they responded in only 3 days lol
Small company? Or slow week.
Hmm, large enough. Guess you are exceptional 
definitely putting the "thank you for the quick response!"
i wasn't expecting anything for another week and a half lol

hmm. this other company said they wanted to send offers by april, which is pretty soon..
i ended up doing this btw. thanks for the tip

hmm if everything works out
guess im moving this weekend
oh?
ill still have the same job
bc its remote
||but if i need to look for a new one...||

theres also a lot of conferences/meetups down there
hoping to go to some more
honestly robin should just go to another state for college. can always come back later imo
you can't just move the college lmao
It's very nice for mental health to work with your hands on something productive. Similar mindset to coding.
When I had just moved and didn't really know anyone, tinkering with my car was my outlet.
Car has always been: "Wtf is going to break next" for me.
It's nice to be able to fix shit yourself too
Oh, just get the null counts for these tables.
ME WHO HAS BEEN TRYING FOR THE PAST 3 HOURS TO AUTOMATE THIS SO I DON"T HAVE TO TYPE OUT 10000 COLUMN NAMES.

that doesn't sound that hard
Idk if this 150 line query is even going to run
does whatever youre using not have a scheduler
honestly just ask chatgpt to optimize your query lol
wtf
There's no way to optimize it
did you ever end up fetching the columns of each table?
SQL doesn't have something like df.info() that just aggregates stuff
those are pretty common I think I’ve seen some well over 500 lines
having that should make it faster regardless of whatever sql engine its using
my coworker's sql queries

but tbf our data systems are a hot mess
theres like 14 linked databases or something
i dont remember
It's literally:
SELECT
sum(case when table.column1 is null then 1 else 0 end) column1_null_count,
count(table.column1) as not_nulls,
Repeat for 100 columns
FROM db.table
and like 3-5 are unlinked
I honestly wonder if it's faster just to pull the entire table
bruh?
SQL sucks, I hate SQL
that would almost certainly be slower. the database is smarter than you
do not underestimate the power of the sql engine

wait what are you trying to count? this looks overly complicated
is there not a count null function
"Oh yea, why don't I join a large company to work with SQL so I can get more experience. " - Me 1.6 years ago.
NO THERE IS NOT
there's IS NULL
IS NULL is a filter
well yeah, then you use COUNT
man what is this thing youre using lol
I need that on multipel columns
SELECT count(column1)
WHERE column1 IS NULL
FROM db.table
Would require a query for each column
Hmmm, this db has 4mill rows
do you just need to find how many nulls there are for all columns for all rows?
Well, that's the start lol
then what 😔
Well, this is EDA. So probably like top 5 common values of interesting columns, etc.
MY QUERY WORKED

😤
congrats
Well, better get this done before this "Your computer is about to restart in X remaining time" resets me to the stone age.
what is that, google chrome?
No, company IT bs.
lmao
We automatically added/removed software, now we need to restart
Thank you for the quick response!
I'm available for an interview on: 23 May from 9:00am to 10:00am and 1:00pm to 5:00pm, 24 May from 2:30pm to 4:30pm, 28 May from 9:00am to 10:30am, and 29 May from 9:00am to 10:30am.
If these times do not work, I would be happy to provide more times when I am available.
Sincerely,
what do we think about this one 😬
school schedule leaked 😳
I normally bullet point the times for easier reading
no like 3 emails ago
yeah bullet points wouldve been nice
Yea, don't sweat it.
but its casual
well i have bullets now
ayy
definitely not my first choice for a summer internship, but it's something
i think its fine
youre still a freshman
once you already have an internship on your resume, itll be much easier to get more
Me as a freshman: 
since youve proven to companies, you can show up at least lol
that's what the fast food job is for 😤
well, show up in a corporate setting
corporate schmorporate
what


potatoes aren't all the same color lol
i swear, getting emails absolutely kills my productivity. i need to bikeshed for like 30 minutes on how to respond
i haven't worked in like an hour from just 2 emails
Because if you screw up you're ending up on twitter or something
idfk? my email soft skills are not on point
isnt twitter dead now
or something

also like, how do people usually set up grafana. i know pydis has theirs private, but how do they access it?
hmm i think as long as youre not rude then youre usually okay
like, i currently just have it running in a container in the same network as the rest of my stuff
What's grafana
it's for monitoring things
are you making your own monitoring dashboard
for your site
lmk. i am also wanting to learn how to be a devops

well grafana basically lets you make dashboards. you link it with data sources and you can display the things
different or similar to datadog?
Grafana makes good dashboards.

Datadog is an entire monitoring solution. Grafana needs a database and aggregator behind it to work.
oh yeah? are they one of the best?
ah i see
makes sense
datadog can charge for that storage and whatnot
A common stack, I think, would be a telegraph agent recording metrics sent to a influxDB for storage/agg and displayed on a Grafana instance.
Though OpenTelemetry is the way to go if you can.
i'm currently using prometheus
yeah, it's the grafana people's thing
just trying to figure out a good place to put grafana. i don't really want to ssh into my vps every time i want to see yk. i could put it as a subdomain for my site? but then i'd need authentication
Grafana should handle login/auth.
yeah. but it looks annoying
Well, no debate there. haha
maybe i just use their github oauth thing they have 🤔

I'm slacking on setting up a RunDeck instance because I don't want to deal with authentication. haha
what's rundeck
https://www.rundeck.com/ Run book automation.
An event listener than kicks off scripted actions.
huh
I'm using it as an excuse to learn some more things I don't understand such as authentication. But it's an amazing tool for incident management, deployment, testing, and all sorts of things.
so it's sort of like aws lambdas?
Sort of, if you think of the scripts as an ephemeral runner.
oh hey this kinda made it click for me

More like... what is the AWS service... ummm....flow? box? one moment
they're like uh... callbacks
ah step functions
my friend is working with a team
thats using that as a sort of data orchestration tool
i think
honestly theres already so many of those lol
There are a lot of the same solutions because it's a good solution.
Script out what is done in a repeatable, low-code solution that can be kicked off automatically or by someone who doesn't code but does support.
I'll slow down... I just reached for my incident management soapbox
lmao
The old joke is "turn it off and back on again". The truth is this actually fixes a good majority of technology incidents. Restart the service, or kick the box, or cycle the clusters, and so on.
script that shit so we don't need to wait on an incident call for 20 minutes just to have Jake log in and push a few console buttons.
Instead of having a call run for 20 minutes until we find the person with the keys to the box... automation goes
- I see a problem
- Attempting a service restart
- that fixed the problem
- alerting on-call with low urgency for awareness
- goodbye
does kubernetes deal with secrets
Like environment secrets? Absolutely.
i think thats a good process for most things
That said: for clarity are you talking about run-time secrets or just environment setup secrets?
it shocks me how hard it is to sell this idea to the company I work with.
wdym
setup. i need to have a client token for auth. honestly 🤔. i can just throw that in a .env and use them in the docker compose for the grafana container
like they just dont think thats a good idea or
They have all the objections and more to why it "just won't work for all cases". haha
lmao
Yeah, you'd feed it into the helm (?) at deployment.
that's called "on call" 😩
Until your on call mutes the alerts because they are burned out and fatigued. :(
doesn't half the cases, even, save time/money for the company?
alert fatigue 
just fire them, duh. get another one. human capital is replaceable yk
I have an entire power point with $$ values on how much we'd save. Loose example: We had an incident three months ago that lasted 40 minutes. It cost us, roughly, $16,000 in payroll and an estimated $1.4 million in revenue.
It was solved by restarting the service boxes in a staggered sequence. Automation could have done that in the first 5 minutes.
Rundeck (the solution I'm pushing for) would have been paid for at an enterprise license cost in one incident.
rofl

what the
theres a "but" here
people are against this??
It's not that people are against it. It's getting people to support it. There is a subtle and devilish difference.
16k is what, like 20 devs for a few hours?
I forget the count but it was a critical service that failed and we had several dozen on the call.
ah. fun.
🥴
I've been on Sev 0 calls with 200+ team members on the call all listening as we take servers out of rotation and put new one in at the F5 layer. 
#WhatCost
My favorite incidents are the ones I jump on that are low severity but sound bad. I join and get told "Yeah, the entire us-east-2 cluster is down. Don't worry, the routes automatically failed over to us-west-2, we're rebuilding, and validating tests should be done in an hour. Business felt maybe a minute of impact."
Teams doing it right
brings a tear to my eye.
So... Grafana 👀
@young shoal why not just use Grafana Cloud? Practice?
doesn't that cost money
it happened to me, it can happen to you 
aww i cant use the us-east-1 joke
If you are going to throw more than 10k metrics at them.
You can use Grafana Cloud to avoid installing, maintaining, and scaling your own instance of Grafana. Create a free account to get started, which includes free forever access to 10k metrics, 50GB logs, 50GB traces, 500VUh k6 testing & more.
oh
Oh that's right, Grafana does traces now. Neat!
hey then you can put it on your resume 
Figured. haha
definitely knew i could use grafana cloud 👍
hahahaha pygen: "sqlite3 isn't for scale"
Grafana supports the following databases:
SQLite 3
MySQL 5.7+
PostgreSQL 10+
well, more like sqlite isn't for apps where you need to do lots of concurrent writing
to be fair:
Note: SQLite works well if your environment is small, but is not recommended when your environment starts growing.
It is limited in how much it can grow.
well idk if you'd be putting logs in sqlite
i suppose you could
Having dev logs with metrics is so good. But you need tight control on those logs and the logging pattern. Devs will log the wildest things.
oh yeah?
i currently only have metrics for how many people are visiting the site
For sure. I've seen info level logs that just include the entire trace stack. Just all of it.
1.2 meg log line? Yeah, I've seen that too.
😩
client ppi and pifi in logs? Sure, why not right? 
my brain broke a bit imagining the storage of all this
oh... oh ....

hey that's cool. grafana censors secrets when logging
But have you ever seen production logs that only log "Request received" and "Response sent"?
lol
Welcome to my sprint
so helpful
mariosis outsource your job to me. i'll work for 15/hr
not even http status codes
I think someone mentioned 1-2Tb of data storage. I've seen the ingest rates of the security logs collected where I work. One server (of five) does that in an hour or less.
I tried to add logging and force push to skip code review and shit like that, it wasnt built
Turns out last successful build was 3 years ago
bruh. and let me guess it isnt cold storage either...
Welcome to my sprint
I don't know where it goes. I know the cost of the splunk contract we have though. Makes things I want the company to buy an easy purchase, honestly.
I make 23
2023-03-06 15:34:27.32866 - INFO - Here :)
Dont ask sad questions
tbh i'd do dev work for min wage
I would tell you the cost of a dozen eggs but i havent seen eggs in ages
booo. Don't cheapen the craft.
youre about to get an internship lmao
well if it was livable, i mean. it's less than half what i make at chipotle, lol

well, you jinxed it
did i though
indeed
Having jumped from retail making a whooping 10.45 an hour to an internship in technology at a staggering 15.00 an hour... I feel you there.
retail sounds so bad. i know it's like the fast food calling the retail black but, it really does sound terrible

10.45 an hour, six year team member/trainer/leader btw. 
They've started leaving me messages in their packages 
My fallback if technology ever fails me is a barista at Starbucks if that tells you anything about my opinion of working in a retail store again.
hey at least i know how to fold a burrito
I know someone else in this server that was a barista at one point, I wonder if they have similar plans.
stelercus
i talked to him lol
Y'all in food services and retail will and are able to work freaking circles around technology teams. You will literally scare them if you bring your average day work mentality from service jobs with you.
They will be frightened at your drive and inability to just stop.
you use any canary tokens for your email? just curious
💀
Retail depends. Walmart would absolutely suck.
😔 just gotta focus on the current bowl. then the next. then the next 😔. eventually the people go away 😔
25 year retail professional here. I know my view is jaded. I've held more than 22 jobs and seen the behind-the-scenes of more than a hundred retail stores. Retail sucks.
Ouf.
I have utmost respect for fast food/retail workers, I did 2 weeks at Burger King and quit, couldn't do it.
Would rather do another 8 year enlistment.
psvm when you use emojis like this. it always reminds me of bing chat ngl 
I meant more of comparing retail to like, grocery store cashier or starbucks etc.
tf
😔
I'm not being silly when I say that line. You put someone who did work in retail (not just showing up but a worker) into a technology world and you literally cause discomfort because you work.
sorry. you havent seen bing chat have you?
no lol
Bing chat is better 
i think chipotle is supposed to be like, slightly higher quality than fast food
it definitely costs way more
I worked a year ish in retail during my university days. Def learned some lessons there.
100%. The common tune is "unskilled jobs" but heck that noise! You learn a lot and it takes a lot to do it.
eh. a monkey could do my job
Strangely though.... I don't see them training monkeys to do it.
Funny.
would be animal abuse
More like, don't say anything to the manager. And how much they drag their feet on a 50 cent raise.

why is it so zoomed in
I forget why I made these...
huh
Finally relevant
😔
damn Ben got destroyed
is rex ben
you havent seen this either? oh man you missed the good stuff
not as good as the "You have not been a good user. I have been a good Bing." one
Honestly though. A monkey would have a difficult time dealing with all of the things you handle in a shift that are easy to overlook. Task management, time management, communication, adaptation, improvisation, just to name a few.
you forgot the emoji

Yea but, you don't have to pay a monkey. 
how much sleep deprivation does it take to make a human equivalent to a monkey at that? 🥴
they give them a cracked coconut per bunch of coconuts, iirc
since they can't crack coconuts themselves
probably only like, 30ish hours
well yeah. i wasn't actually being literal
this is why microsoft shut this down
How do I get out of full screen mode in vs code, wtf
A significant amount, staring around the pre-K schooling period and slowly ramped up into the post-high school period. Combined with social pressures of success defined by material possessions with a market of late stage capitalism powering it all.
you still working huh?
oops... bit much there.
nvim
no, I hit like f11 or some bs button
now I"m stuck with this stupid yellow line too
I think it's the debugger thing. urgh
ctrl-k then z ?
Are you in zen mode?
great ui design grafana
I used it all the time until I finally just switched to vim. haha
I think it' sjust full screen mode

Wild
wait, it might be zen mode? f11?
i would show you the first half but its even more inappropriate i think lol
ctrl k then z did nothing
preeeooocts. how do i disable username and password auth in grafana. i only want github oauth to be possible
try all the buttons lol
💀💀
BRUH
Someone said Grafana? What oops is going on here?
my blog
Oh, i'm back to where I was
woo
no like, the problem before I got stuck even further...
here's the full version, also paging @grave cove
oh yeah i have that one
https://www.youtube.com/watch?v=E6mfJZWRVIo this to the rescue. Jesus this is cancer.
How to toggle full screen mode in vscode.
that was caused by a question about avatar 2 btw
bing has an identity crisis:
i think i just caused a mutual recursion between my nginx and grafana. lol
they redirected to each other for some reason
haha yeah the verge released some great ones too in an article they did
hm. now someone is spamming my vps with requests for /.env
i wouldn't have read that
i dont usually read articles like that either but i listen to the vergecast
and ofc they covered when bing was imploding lol
blog-blog-1 | [2023-03-21T22:53:41Z ERROR _] No matching routes for GET /.env.
blog-nginx-1 | 169.150.236.163 - - [21/Mar/2023:22:53:41 +0000] "GET /.env HTTP/1.1" 404 383 "-" "python-requests/2.28.2"
```😔
Oh no, the request is coming from inside the house! Dun dun DUNNNNN!!
ddos that IP (in minecraft)
bruh what are they doing
i assume this actually works. i guess people have a file server that just mounts the project root or something, including .envs
oh and there was also this one 😈
were you aware lettuce is a member of the sunflower family
i think theres a name for that type of attack too. we covered it in my cybersec class but ive already forgotten
syru would probably know
@foggy jungle 🥞 🥺
jk
K, my query is now running. It'll be tomorrow's problem

I don't think there's a name for directory enumeration tbh. The attack would be based on what you actually do in the terminal.
You can do something like XSS (Cross-site Scripting) but that's more remote access if it's trying to manipulate or spawn a Python terminal.
what was the site that allowed one to look at a pypi package without downloading it?
ah, I remembered "explorer", thanks
I live on that website now lol
oh interesting
If you find some fishy code, send it to me 
lol, for a completely innoculous package, https://pypi.org/project/tasksio/ almost couldn't be more suspicious
i got oath working it seems
@vale raven can i disable the admin account in grafana. or change the password
oh i found it
nevermind~
Oh good because I don't actually have any idea
lol
https://grafana.com/docs/grafana/latest/setup-grafana/configure-grafana/#security it's like the second field
oof
gpt-4 before RLHF is actually really, really well calibrated. Its estimate of how likely a certain answer is closely matches how accurate it actually is.
Until RLHF is done at it, at which point it becomes tainted by human examiners' intuitive (and really bad) understanding of probability, and gets that plateau.
this plateau mostly results in it being too confident (below diagonal line) in answers it is actually pretty unsure about
something something, spotify random isn't actually random because people suck at noticing actual randomness.
Someone from some team emailed me to check tables to make sure the model scores are the same...
it can wait
Idk why tf my name ended up being the main point of contact.
wdym you are the human data dictionary now
It can wait until the next version of the model is in production.

SAP
declined
I interviewed at SAP for their STAR program
bc you know if they have SAP theyll want you to ETL data out of it so its actually useful
what's etl
Me who's no idea SAP even is
they're business analytics
EXTRACT, TRANSFORM, Loooooooooad 
data term. what sky said with less emotion lol
Sucks Ass, Probably
I heard salesforce is worse
bro dont even start with SF
Imagine garbage 
they have a whole division trying to wrangle stuff from SF
its called "metering" on that side of the business
are you overcharged? probably
are you undercharged? also probably
thats the reality


Lol i must be in a rich part of town
There is such a thing as a salesforce dev
But also a dev at Salesforce, wonder which one is worse
At SF you could get to work on slack, so thats a plus i imagine
oops. Well.... alert triggers work.
Neat 
oh one of my friends was one of those "salesforce devs"
he said it was god awful
they have a platform on SF and you "can build apps" on there
Yea can imagine
What about the other kind
We dont use slack at qork
Work
Everyone's singing praises about it
qork
I like Slack 🤷♂️
Frankly any real time communication service is decently useful so long as it doesn't become a task distribution center.
I'd rather pop open Teams and hit someone with a question than call them. That way they can get to it when they need to.
People tend to respond faster if you respect their time too.
but i hate teams though
slack is better
but i feel you
teams is dog shit
I mean Teams as a software is awful, but Teams as a concept of just live communication is fine.
yeah you just gotta respects peoples time
I had most of my workflow automated through Teams/Sharepoint
I just won't answer my phone if I'm working on something.
I'm used to having my own office, where a closed door meant literally do not walk in this office or I will end you.

That's what I dig about remote work. I can walk away from my desk and not be immediately shoulder tapped into a side hustle.
I dream of remote work someday.
I don't think the reflection is correct. And the saturation is too high on the picture.
Like the distance?
the lines you see here aren't just from the bottom holes.
Actually those are part of the original image
The picture occludes some of those holes.
So those are authentic
Oh
I misunderstood sorry
I don't speak a second language unless you count stupid.
I'm fluent in stupid, don't worry.
Actually it doesn't, that just the backboard being screwed/camera glitch
I don't... think we're on the same page here. The reflection from those lines is actually a result of the light passing through the holes on the back of the toolbox.
Some of those lines would disappear if you placed an actual picture there.
Buhh. Is that your actual toolbox?
Not atm
Going to buy a triple bank soon
Was thinking of this one though
But it was too small
Modeling reflections is really hard without something directly in front of you to experiment with in my experience.
Just liked the colors lol
Well I suppose I could probably get rid of all the lines right
And make it seem like there's a light shining directly at it
No, because they don't project directly linearly either.
So the light wouldn't be as visible from the back and it could get overlooked
Right
Well this is certainly a pleasant learning experience either way
Always wanted to learn a bit of photoshop
Excuse my shitty paint skills. I'd start about there and dump out the lines, then reduce the saturation of the reflection, get rid of the hard line at the 'top' of the reflection.
And then maybe reduce the brightness of the actual picture itself as well as the saturation
Actually that's an older one
Already tinkered with that
Mb
Did a gradient overlay
So it gets darker further from the shop light
(line in the middle)
Still looks a little uncanny, but without manipulating it myself, I'm not sure I'd have any good suggestions. (And I don't have Photoshop installed at the moment.)
I'll get rid of that hard line
Maybe use the smudge tool?
Stretch it out in some spots?
Also thanks for the help
Another thing I would do before doing any of that is add some noise to your picture.
why are dimes smaller than nickles?
That's actually interesting
eh disagree, kind of disappointed that there isn't silver in my money anymore
the doggo.
And reflection
your goal being to simulate the noise artifacting from jpg compression on the actual dog photo too
err from the camera itself even
Ignore the fact I had to take an actual picture
Reset PC of programs the other day
Because audacity sucks
Apparently it doesn't open files in ram
That makes it very hard to determine. And I should clarify I'm not a designer, there's probably communities that have better advice than I'm able to give.
It slowly opens on your drive
More advice than I had, your doing great
I should note I was only opening a 4+ gig audio file
I think I found a bit of a solution
@foggy jungle
that seems to look pretty good
ignore the background change
Turn down the saturation a bit on the noise filter for the doggo picture and I agree, it looks better
this is a little funky
this looks good. Is the final image meant to be absolutely, 100% perfect? otherwise you might be overdetailing
Over detailing definitely but it's good to learn this
👍
how about that
turned down the saturation more on the reflection
given it is "reflecting" off metal
Definitely need to blur/blend the bottom of the reflection
It's sticking out like a sore thumb
better
turn the saturation down more?
there we go
did a bit of smothing
Smoothing
I don't know why I'm excreting this much energy into this
But apparently I'm all for it
Looks decent, now switch the picture to a nice otter.
Hmmm
Am I sending a request
If so
Idk anymore
If you want the project file
You can have it
I'm good, I was memeing.
Lol
My brains fried man
So is my heart(random stress)
Just gotta buy another toolbox to alleviate the stress
Math is so cool
Math is cool
math is very cool indeed
i dont like numbers
Math is always cool
Just keep taking math classes, the numbers go away after some time
unless you do number theory
(I don't have super advanced math, I've got a mech engineering degree)
Calc 3 and diff eq were enough
The numbers also go away after a decade or two post classes.
Lol
i want to learn more higher math because it seems to come up so often in type theory but i don't want to go through all the effort of learning all the foundations of discrete math 
i should uh. figure out what i actually need to learn about.
i have no idea what's generally learned after what i have taken in school (what's apparently the equivalent of calc 2)
I'm just some kid that likes doing math
discrete math... I owe my name to it!
do you guys prefer pure math or applied math tho
wait what how
what do people learn after calc 2 usually, actually?
I'm biased to applied math
There was a book on my desk the day I changed my name. "Discrete Mathematic Projects". I read once that really good names come from typing the first word you see.
I saw Projects and slapped the keyboard.
Preocts
Statistics, linear algebra, differential equations, multivariable calculus (calc 3)
After that I have no idea
i've been told that calc 3 has a great focus on proofs as well
TIL, very cool
i'm doing stats next year.. perhaps i shall look into linalg
ooh? proofs? i like the sound of that.
The visualization of the problems is more fun
proofs are fun, but i haven't done much in the way of formal proofs
"what is the global max Z value for this surface" type of stuff
Proof it 
(Joking)
At least the book provided me something. I never used it. haha That was the year I decided school just wasn't my thing.
discrete does proofs as well, being logic and graph theory mostly
linalg is my current favourite since it has a good balance between cool concepts and rigorous proofs
because linalg has a lot of proofs
Well it's my bedtime, catch yall later
origin story
Why don't you tell us your origin story dear hsp
haha stinky poop was the description on a michael reeves twitch stream
ew math
math 😎 👍
uh huh sure
was it actually?
yeah lol
lies and deception
i watched a clip of him describing his lack of knowledge in adulting
god i love michael reeves
pretty cool guy
Analysis on Manifolds, ODEs (existence of solutions, systems of linear odes, continueability), Introductory Abstract Algebra, Numerical Analysis, Measure Theory 
manifolds my beloved
Woah math 
https://github.com/typst/typst
looks interesting 👀
How do inte how
🤙🤙
proof of concept
o
if youre trying to convince others, you usually start with a poc
at least thats what ive been told
seems reasonable enough
mvp/poc
Theres a poc being deved, im not allowed near it
because…?
oof
Ok now that you know im gonna need an address pls 🥺 @jaunty wraith
wait what
what
^
oh
but you didn't tell me
you can't just say you have to kill them if you told them and then tell them
I dont see the problem here
counter point: I can't read, so I can never know
Sad but i'll accept it as extenuating circumstances

time to make your own poc

guys
?
When it hasn't been a day, and you get an email that starts with: "Gentle reminder on the request below". inhale
Also, did everyone somehow hear I"m leaving next week on vacation? Where tf all these random sheot requests come from? 
lul
insert meme about business stakeholders
"i would like this done yesterday"
no u
says the DS
do dev
oh?
less dealing with bs from the business
well jk
i know devs still deal with it
but they usually have a filter person lol
do something cool
i mean ideally it would be MLE but i dont think i have the skills for it
😔
bro i was going to ask you to teach me web dev

😔
All i know rn is Array.map and npm create vite@latest
why me
I'm not really a web dev per se
more than me
I gotchu
rofl
lmao "NO REMOTE"
lmao theres all these obscure bioinformatics tools no ones ever heard
of
in that world, theres a lot of bespoke tooling
Aww sweetie, you'll get there some day
I wonder why bard and not some edgy acronym




















