#ot1-perplexing-regexing

1 messages ยท Page 65 of 1

young shoal
#

if it saves like, 10 minutes, that's probably worth it

rich karma
#

and i don't know what a language model really is but i don't associate with any form of intelligence

#

we use python not because it's easy

#

but because we can spend 20 minutes coding something that to automate a task that would take 10 minutes to do manually

young shoal
rough sapphire
#

ROASTED

rich karma
rough sapphire
#

mica you got roasted too hard we are no longer friends

rich karma
#

i'll win you back, dw about it

rough sapphire
#

๐Ÿ˜ณ

rich karma
#

see

spare oriole
#

doot

rich karma
#

when it comes to "it's just 10 bucks wth cares", i disagree. i feel like consumers* have a moral obligation to keep technology on a leash

#

remeber when we used to say: "facebook is just some dumb php blog thing where you just write comments and poke people, wth cares?"

#

well, we should've, imo

austere summit
#

Copilot is pretty good for (a) using unfamiliar libraries correctly the first time, (b) writing obvious code that has been written thousands of times, (c) matching patterns in your code base and doing boilerplate. It's 100% worth $10/mo.

#

It's not like chatgpt that produces garbage.

rich karma
#

idk, i have comfortable margins when it comes to deadlines so i can't really relate when it comes to urgency. so i can comfortably spend time reading the docs and asking around, and finding the most suitable patterns through trial, error and standing on the shoulders of smarter people than me

austere summit
#

Check out the trial.

#

The other good thing is that the completions are sometimes better than what I would write so I end up learning something.

rich karma
#

how does copilot learn about a library that you never used, by analyzing its source code, or its docs or something else entirely?

austere summit
#

The model is based on freely licensed code on Github.

#

So you see how other people have used it, but made relative to your current cursor's context and code base.

rich karma
#

and how does it score what best suggestion to provide? by analyzing their source code, or by how popular "a way to use it" is among other programmers?

glossy niche
#

cope pilot

austere summit
#

It understands syntax/semantics of Python, at least. It's suggestions are relevant to my current context and reflect how it's commonly used.

rich karma
#

i see. thanks for the insight, man. i still don't feel like trying it, but my margin for whining about it got smaller, so that's good

coarse fiber
#
    node = { 'state': gameState.getPacmanPosition() }

    frontier = util.Queue()
    frontier.push(node)

    print(frontier.pop())

any idea why my Queue is empty when i clearly push? it says cant pop from an empty queue

graceful basin
#

That will depend on the internals of the queue, this should work given normal queue behaviour

grave cove
#

If so, can we see it's source code?

coarse fiber
#

one sec i will post it

#
class Queue:
  "A container with a first-in-first-out (FIFO) queuing policy."
  def __init__(self):
    self.list = []
  
  def push(self,item):
    "Enqueue the 'item' into the queue"
    self.list.insert(0,item)

  def pop(self):
    """
      Dequeue the earliest enqueued item still in the queue. This
      operation removes the item from the queue.
    """
    return self.list.pop()

  def isEmpty(self):
    "Returns true if the queue is empty"
    return len(self.list) == 0
graceful basin
#
In [3]: class Queue:
   ...:   "A container with a first-in-first-out (FIFO) queuing policy."
   ...:   def __init__(self):
   ...:     self.list = []
   ...:
   ...:   def push(self,item):
   ...:     "Enqueue the 'item' into the queue"
   ...:     self.list.insert(0,item)
   ...:
   ...:   def pop(self):
   ...:     """
   ...:       Dequeue the earliest enqueued item still in the queue. This
   ...:       operation removes the item from the queue.
   ...:     """
   ...:     return self.list.pop()
   ...:
   ...:   def isEmpty(self):
   ...:     "Returns true if the queue is empty"
   ...:     return len(self.list) == 0
   ...:
   ...:
   ...: a = Queue()
   ...:
   ...: a.push(1)
   ...: print(a.pop())
1
```the problem should be in the code you didn't show
graceful basin
#

The queue works, so if this is all the code, and the error is actually on that line, you likely aren't running the file correctly (maybe forgot to save, picked the file wrong, etc.)

coarse fiber
#

no way

#

actually the problem seems to be with this line

    node = { 'state': gameState.getPacmanPosition() }
coarse fiber
#

i tried and it worked with integer

#

actually no it isnt even that that gives the error

graceful basin
#

Yeah, the object in the queue shouldn't be making a difference

coarse fiber
rough sapphire
#

there is a way in neovim in what i can delete the current word? the equivalent to ctrl + del

young shoal
#

diw

vale raven
young shoal
#

dw deletes to the start of the next word which would only work if you're on the first char of the current word

graceful basin
#

which is the way ctrl+del works

#

actually, I think ctrl+del is closer to de

grave cove
#

yeah

young shoal
#

I've never seen that

grave cove
#

ctrl del deletes to the end of the word, if your cursor is in the middle

graceful basin
#

delete to end of word

#

rather than to start of next word

#

IOW it keeps the leading space

rough sapphire
#

the opossitive to ctrl + del

#

but thanks, ill be using it haha

young shoal
#

use diw

rough sapphire
rough sapphire
# young shoal use `diw`

hey one question java guy, do you use the command :tabe? for new tabs? someone told me that's a bad practice and it's inefficent

young shoal
#

if i wanted to make a new tab, that's what i would do

rough sapphire
#

thanks java guy

glossy niche
#

your quack shouldnt rabbit tho

rough sapphire
#

your cat shouldnt be sad tho

glossy niche
#

or should it

lament cairn
#

y

glossy niche
#

my cat beat depressio

#

jus saying

lament cairn
#

Why she do that

fair summit
#

My rabbit what?

eternal depot
#

@reef geyser I saw a photo that reminded me of you

#

Since you're programmed with a seeming affinity towards ponies

reef geyser
#

I have gained an affinity for ponies by growing up with the show
I am not programmed with anything

eternal depot
#

Right. Your natural language model has been trained with a lot of pony material got it.

stiff siren
#

Why do people hit the gym? Assault is NOT funny. @eternal depot

reef geyser
#

If homeless people allegedly squat everywhere, you'd think they'd all have really well-defined legs at this point.

grave cove
reef geyser
grave cove
#

so true

#

liking the show is fine

#

I too did enjoy it till I was like, 13

reef geyser
#

nice to know you watched the pony show

grave cove
#

yeah me and my sister watched it a fair bit

reef geyser
#

mostly me and my cousin back when episodes were still coming out

#

my little sister and I sometimes watch it if it happens to be on

grave cove
#

was very nice show! these days I don't watch stuff in general

#

Think I prefer actively doing stuff more nowadays

reef geyser
#

yeahhh, plus I don't think shows coming out now capture me the same

grave cove
#

might just be growing up sadly

reef geyser
#

it is what it is
as long as we can still find entertainment somewhere, it'll be okay

#

suddenly browsing guitar interfaces
didn't realize they just make USB ends for these now

#

figured I'd need the actual box

grave cove
#

you do electric guitaring?

reef geyser
#

I do, yes

#

nothing crazy, I just like throwing chords around when I can lol

grave cove
#

based

reef geyser
#

a little bit

#

I haven't had the opportunity to play for a few months now

#

I probably sound shit now lmao

rough sapphire
#

wooow

#

luna has her room

reef geyser
#

a very unflattering otn name, but an otn name it is

rough sapphire
#

i love blackjack

wraith hound
#

MLP is great

rough sapphire
#

XD

reef geyser
wraith hound
#

i'm not kidding

reef geyser
wraith hound
#

pony, body, what's the difference

reef geyser
#

one refers to a specific species
the other is species-invariant

wraith hound
#

shhhh

#

it's just fun okay

reef geyser
#

WE LITERALLY DID THIS WITH THE ZECORA EPISODE
THESE PONIES ARE JUST SO INSENSITIVE waaaaaaaaaahhhhhh

#

anyway

wraith hound
#

I don't actually remember anything

#

The last time I watched MLP was my last trip to the dentist's office

reef geyser
#

lol

wraith hound
#

And years before that

carmine apex
reef geyser
#

imagine learning a lesson on friendship while getting your wisdom teeth removed

rough sapphire
#

hey mods

low chasm
#

@reef geyser what's this about a gambling problem

reef geyser
#

@carmine apex I think you gave the wrong prompt mate

carmine apex
royal lakeBOT
reef geyser
low chasm
#

suuure

reef geyser
#

and (maybe) go all in on 2200 dollars

#

don't worry I won

#

(I lost it afterwards, this other fucker had a full house)

low chasm
#

gambling moment

wraith hound
carmine apex
reef geyser
#

I forgot how big D.W's head is

#

proportionally humongous

eternal depot
jovial oriole
#

1 month into school, havent finished 1 whole homework assignment once

#

For math specifically

rough sapphire
#

rip

jovial oriole
#

I just like cutting metal using lathes

#

Math is cool, but extra practice sucks

rough sapphire
#

well its practice

#

dont do it

#

you're welcome

#

goodnight

#

Differentiation is fun

jovial oriole
rough sapphire
jovial oriole
#

I am starting to see a pattern

rough sapphire
#

Why do you ask?

eternal depot
rough sapphire
#

Linux is just 10x more convenient than Windows

jovial oriole
#

Keep speaking

rough sapphire
#

specifically for programming

reef geyser
jovial oriole
#

My suspicions have been confirmed

rough sapphire
#

big nerd?

#

Also somehow supports 128x the specs of any other OS

jovial oriole
#

Do you have sandwichs in ziploc bags for lunch

rough sapphire
#

LOL

#

Like Windows and OSX support 2TB of RAM, Linux supports 256TB somehow

#

mf you do not have 256TB of ram

#

nope

#

It'd cost around 5m usd

#

"linux is more convenient for me cuz it support 256tb of ram"

#

It also is way faster

#

and smaller

#

i agree, i also love BASH scripting

#

Windows takes 20 gb system files, OSX takes 80 gb for some reason, and Linux takes like 3 gb

#

whats OSX

#

mac?

#

unix mac?

#

Mac OSX

#

Unix is BSD

#

mac is unix kind of

#

nope

#

:(

#

Linux is UNIX based, OSX is not

#

what is OSX

rough sapphire
#

yeah well

#

what is it

#

mac OSX

stark oasis
#

Its "posix compliant"

rough sapphire
#

The operating system mac uses

wicked haven
rough sapphire
#

guys im not crazy... i swear mac is unix based

#

OSX uses the XNU kernel, based on the Mach kernel

#

But XNU took some inspiration from BSD

#

XNU stands for what

#

It's not based on it tho

solar hazel
rough sapphire
rough sapphire
#

They have the exact same standards, the same structure, and the kernel was based on it

wicked haven
#

why's everyone gotta be "Not Unix"

thick ore
#

GNU/Linux smh

rough sapphire
#

imagine being such a good OS that you make other OS's seethe

wicked haven
solar hazel
#

but it's not a certified unix based

rough sapphire
#

And at the time there wasn't anything else

wicked haven
#

UNIX was the first popular OS. Not the first OS. There were a few smaller ones before that IIRC

rough sapphire
#

this guy is resourceful

#

oh yeah and LINUX stands for Lovable Intellect Not Using XP to differentiate from windows

#

uhm??? NO

#

WRONG

rough sapphire
#

it was initially gonna be named FREAX (cuz only a FREAK would use smth other than unix) but then it changed to linux

wicked haven
rough sapphire
#

im resourceful too ๐Ÿง 

reef geyser
#

lee nucks

rough sapphire
#

what is FTP?

reef geyser
#

file transfer protocol

wicked haven
rough sapphire
#

thx

rough sapphire
#

is this info true ๐Ÿ˜ญ

#

yes unfortunately

#

i feel like they came up with the name THEN chose those words for each letter

#

Who knows

#

and UNIX (also UNICS apparently) means UNiplexed Information Computing System

#

i thought it was computer services

#

your wikipedia is broken

carmine apex
#

In 1970, the group coined the name Unics for Uniplexed Information and Computing Service as a pun on Multics, which stood for Multiplexed Information and Computer Services. Brian Kernighan takes credit for the idea, but adds that "no one can remember" the origin of the final spelling Unix.

rough sapphire
#

spreading misinformation

#

yep

#

i lost all the respect i had for you

naive igloo
naive igloo
rich karma
#

linux is more convenient than windows for someone who's comfortable with both os's

thick ore
#

expire andrew in 2 minutes

rough sapphire
rough sapphire
#

dont listen to this mf

#

he spits truth mixed with lies

jovial oriole
thick ore
#

probably ๐Ÿ˜” RIP my mans Andrew ๐Ÿ•Š๏ธ (2 minutes ago-now)

rich karma
# thick ore [.](https://github.com/redis/redis-om-python/blob/main/docs/getting_started.md#e...

i'm thinking about switching to this for all r/w data operations
https://www.youtube.com/watch?v=C7WFwgDRStM

SurrealDB is a "NewSQL" multi-model database with an impressive list of features from popular relational, graph, and document paradigms. Its query language is based on SQL, but does not rely on JOINs for queries.

Full Tutorial Coming Soon on Beyond Fireship https://www.youtube.com/channel/UC2Xd-TjJByJyK2w1zNwY0zQ

#database #programming #100S...

โ–ถ Play video
#

wether on ram or on disk, whether key value or attribute based

solemn tulip
fleet goblet
#

Hey.. quick doubt.
JBL 770nc vs Sony 720n? and why?

thick ore
#

buy both and see ๐Ÿ˜ˆ

fleet goblet
thick ore
#

people on reddit seem to like the 770nc's

#

so... there's that, i guess

#

>I haven't used the jbl but I have been using the 720ns for just over a month. And don't have any complaints they sound like sony headphones and anc is good enough to block bus and gym noise. They seem to go on sale alot don't pay full price

coarse fiber
#

any idea why this just re-writes everything on the same line?

f = open("result.txt", 'w')
f.write(str(gameState.getPacmanPosition()))
f.write("\n")
#

it works fine if i change it to append, but the problem there is that the file doenst get cleared automatically

ruby fox
coarse fiber
#

so i cant write on a new line?

ruby fox
coarse fiber
ruby fox
coarse fiber
#

the print position is actually in a for loop

#

i just want it to print all position on a new line

#

when program is restarted i want the previous text to be deleted

solemn tulip
#

you're not re-opening the file in the loop, are you?

#

if so that would explain why you're just overwriting over and over

ruby fox
coarse fiber
#
for action in actions:
  f.write(str(gameState.getPacmanPosition()))
  f.write("\n")
#

this is in the for loop

ruby fox
#

And open the file in append mode after clearing the contents

solemn tulip
#

that shouldn't matter, should it?

#

w will clear

#

so if the file is opened once only and you write everything all the lines will be there

coarse fiber
#

i am getting confused

#

so what should i do

ruby fox
#
# clear 
open("results.txt","w+").close()

#append mode
f= open("results.txt","a+")
for action in actions:     f.write(str(gameState.getPacmanPosition()))
  f.write("\n")

Something like this

coarse fiber
#

i mean re-writes the one line

solemn tulip
#

!e moment of truth, does the eval command allow me to create files?

def file_contents():
  with open('/tmp/file', 'r') as f:
    print(f.read())


with open('/tmp/file', 'w') as f:
  f.write('blah')
  f.write('\n')

file_contents()

with open('/tmp/file', 'w') as f:
  f.write('a')
  f.write('\n')
  f.write('b')
  f.write('\n')
  f.write('c')
  f.write('\n')

file_contents()
royal lakeBOT
#

@solemn tulip :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 6, in <module>
003 |     with open('/tmp/file', 'w') as f:
004 |          ^^^^^^^^^^^^^^^^^^^^^^
005 | FileNotFoundError: [Errno 2] No such file or directory: '/tmp/file'
solemn tulip
#

apparently not

ruby fox
#

Hmmm

solemn tulip
#

added an additional print for context, but

> python a.py                   
After first write
blah

After second write
a
b
c
#

works fine

#

so something in the code isn't as described

coarse fiber
#

uhmm

solemn tulip
#

my bet is on opening the file over and over

#

but who knows

ruby fox
#

!e

# clear 
open("results.txt","w+").close()

#append mode
f= open("results.txt","a+")
for action in range(6):
    f.write("heelo")
    f.write("\n")

f.seek(0)
print(f.read())

Something like this

royal lakeBOT
ruby fox
#

Hmm it's okay ig

coarse fiber
#

is there a way tot check if its not open, then open it?

solemn tulip
#

there should be zero need to clear

#

w does that

ruby fox
coarse fiber
solemn tulip
coarse fiber
#

you are right

#

it keeps getting opened

solemn tulip
#

so yeah, just open once with w and things should be fine then?

coarse fiber
#

the thing is some other class needs to keep calling my function

#

is there a way to open the file only if it hasnt been opened already?

#

okay i fixed it, i think

solemn tulip
#

figure out a way to have the file be opened just once instead

#

like, something should have "ownership" over that file

#

maybe what's currently a function should be a class

coarse fiber
#

okay thanks

solemn tulip
meager sphinx
#

was wondering why my laptop was running hot

ruby fox
naive tundra
#

@frozen crane he gifted me 2 months of the 10$ nitro lol

frozen crane
naive tundra
frozen crane
naive tundra
#

Im trying to figure out how to use the new theme thing

#

@frozen crane

Sound like a deal?```
OMG
naive tundra
#

thank you

high haven
#

who has to work today. maybe me, maybe not me. Running

jaunty wraith
#

do you at least get overtime or something similar?

#

I'm not sure whether compensatory day off is a thing wherever you are

high haven
#

im really bad about this ClownTurtle

jaunty wraith
#

smh

spare oriole
#

luna's programmed to gamble? TIL

high haven
thick osprey
high haven
#

i think i have a problem

thick osprey
#

Gonna make me play tweanty questions to figure your problem out or can you throw me a bone here? haha

#

Other than apparently giving your company free time, what's up?

high haven
#

my problem is i need to get better at drawing boundaries between work and personal life

high haven
low chasm
#

still taking a listen later :p

high haven
jaunty wraith
high haven
thick osprey
high haven
#

ugh that sounds sad when its put that way

thick osprey
#

Work-Life balance. Work-Life Jenga is more accurate.

Once I stopped trying to draw this hard line between the two I realized I was making more work for myself. With everything, including work, in one bucket of my time the task of managing it was easier. I have 24 hours in a day and one lifetime. That's what I get.

#

Build the habit of N hours go to work. N is constained by your employment contract obligation on one end (minimum) and whatever else you feel like giving it.

high haven
#

work-life jenga. im stealing this

thick osprey
#

Same way you should put N hours of time into, for example, video games.

#

and N hours into laundry

#

and N hours into house-cleaning

#

It's never the same. One week just cleaning the kitchen after the pyrex of beans exploded into a billion glass shared will take two days. The next few weeks it's a couple of minutes becasue the kitchen has never been so clean lemon_angrysad

#

But put work in the same bucket. When you're planning a week, make sure work is considered "you" time. Because it is your time.

#

Thems my thoughts, anyway.

acoustic moss
#

preocts casually dropping the most banger life advice in ot yet again

high haven
thick osprey
#

I was watching a talk the other day and the speaker said something that hit me so hard my chest still hurts. They were talking about their manager saying "You don't get enough recognition". His reply was "Well, sure. But keep in mind I like the type of recognition I can deposit into my bank account".

Never forget why you're trading your time to a company.

high haven
thick osprey
#

lemon_angrysad I miss that glass dutch oven. It was a 5 qt, almost as old as me, and my god did it explode. Practically sand mixed in with 5 quarts of bean water and beans.

jaunty wraith
high haven
high haven
#

not the zoom call with everyone's cameras off

#

theres like 20 people too

#

๐Ÿ’€

#

classic

young shoal
#

engineers moment

high haven
#

and name

thick osprey
#

My camera is always on. lemon_eyes

high haven
#

spooky

thick osprey
#

spoooooooooooooooooky

high haven
#

i mean what

thick osprey
jaunty wraith
thick osprey
#

umm... how are we only 22 days from NaNoWriMo already?! lemon_scared

vale raven
#

Wait
Did the acronym get longer?

austere summit
#

@thick osprey I'm looking forward to my ... eighth(?) attempt starting nnwm and dropping out by day three.

jaunty wraith
#

National Novel Writing Month

vale raven
#

I swear
Every year they just add a couple letters and hope we won't notice

thick osprey
#

meta

jaunty wraith
thick osprey
#

I'm still figuring out how to... you know... actually finish something into a publishable state.

#

It's like being able to write the code, pass the tests, everything works, and then you just fall face-first into the mud with no idea how to make it deployable.

jaunty wraith
thick osprey
young shoal
young shoal
thick osprey
#

Fix your engineers.

young shoal
#

ยฏ_(ใƒ„)_/ยฏ

vale raven
#

Death to cameras!

thick osprey
#

My VP called me, camera off.
Him: "Oh, I figured you were on vacation without a camera"
Me: "That's fine, I'll wait for you to turn yours on."

vale raven
#

Why does it matter?

thick osprey
#

I don't give people the excuse of "Oh remotes are difficult to work with because I never see them".

vale raven
#

I just leave mine off, and if the other person has theirs' on, I'll flip mine on too

thick osprey
#

This year will be the year I hit this achievement. I've always missed this one.

vale raven
jaunty wraith
thick osprey
#

!e

print(50_000 / 30)
royal lakeBOT
#

@thick osprey :white_check_mark: Your 3.12 eval job has completed with return code 0.

1666.6666666666667
acoustic moss
#

1/6th of 10000, duh

jaunty wraith
#

tbf, I'm bad at math

thick osprey
# vale raven eh Don't... what would you call it? "let them win" That's dumb Seeing someone in...

Visual connection is, however, a huge factor in the majority of social interactions. Impairments excluded. One of the larger weapons used against remote work is "we just don't feel connected". Well, I agree. Talking to a black screen doesn't have the impact that talking to a video does. So I always have my camera on at work and I will, actively aggressively, encourage others to do the same in any meeting I'm in.

rich karma
high haven
high haven
high haven
#

but very team dependent

high haven
tardy rain
#

I'd rather be looking at their screen rather than their dumb face

#

Cameras off

shell raptor
#

On Ubuntu 22, how do I figure out which command this shortcut runs in "Show Applications"?

high haven
#

@rugged owl oh youre around

#

is this weekend also a hw weekend

foggy jungle
undone thorn
#

Only if you're responsible

foggy jungle
#

I don't have the self control not to just sit down and do an entire course in a few sittings.

#

Thank you anxiety prayge

undone thorn
#

That is the best fucking feeling

#

Finishing the final project on the second week of the class

foggy jungle
# undone thorn That is the best fucking feeling

Well it's great but that was my first class of a 2 year program that I just knocked out in 1 week. Which would again, be exceptional, but we'll see how long my motivation holds before that desire to 'do everything now' overwhelms me lol

undone thorn
#

Let the violent productive urges consume you ๐Ÿซด ๐Ÿ”ฅ

foggy jungle
#

Yeah my intention is to try and... at least let that motivation carry me towards a fast course completion, and then schedule my tests out in a manner that gives me a bit of a break to decompress.

#

So I get time to study/exist in between the course completion and the test itself prior to starting another course.

undone thorn
#

Only real issue with binging class work is that you probably won't retain the information as well

#

So easy to cram ten Quizlets worth of info into your head for a week or two, then it slowly drains out of your ear while you sleep

high haven
foggy jungle
foggy jungle
undone thorn
#

True, I think we both have the same career goals afaik

#

But you have your nonprofit which is huge on a resume

high haven
#

its quite tragic

grave cove
#

having a concept of time isn't that much better

#

i would just like to exist tbh

high haven
#

taking some time off after a course

foggy jungle
# undone thorn True, I think we both have the same career goals afaik

I'm pretty stoked that I'm learning concepts that I actually... know I guess? That sounds weird. I didn't care much for school when I was younger-- I didn't struggle, but I just didn't care about what I was learning.
Now, seeing something I am familiar with already in a lesson kinda' gets me gassed up.

high haven
undone thorn
#

Nah I relate to that a lot

grave cove
#

isn't the point to learn stuff you don't know already

#

seeing stuff i already know in classes feels demotivating to me

undone thorn
#

I fucking despised math until I started learning ML, then calculus and linalg were like a wonderland

high haven
#

i think i still dont like math but here we are

#

who made rex a data scientist

jaunty wraith
#

past rex

grave cove
undone thorn
grave cove
#

also i dig the new picture rex

high haven
#

thanks thanks. gotta welcome the spooky season in

grave cove
foggy jungle
# undone thorn I fucking despised math until I started learning ML, then calculus and linalg we...

I don't think you'll ever find me doing any complex math unless absolutely necessary. I'm focusing largely on redteaming and whatnot in my course completion. I don't really care to be a penntester or anything, I just think they're more complex domains of knowledge than basic blue-teaming, and I think that having a comprehensive understanding of redteaming requires understanding blue teaming, so it's kinda' hard to... learn one without the other.

undone thorn
#

Oh interesting

#

My goal is pentesting

grave cove
#

sounds boring. why would you want to test pens all day?

undone thorn
#

I love the click sounds they make lemon_happy

grave cove
#

based

foggy jungle
#

I'm not saying I wouldn't take a penntesting job if it came up. But I'm geared more towards detection engineering/reverse engineering.
Also conveniently got my ass kicked by the reverse engineering module. ree

high haven
jaunty wraith
#

penn testing where you test Pennsylvania

grave cove
undone thorn
#

Reverse engineering is a whole beast of a subfield bro. Some of that stuff gets too heady for me.

grave cove
#

i can't find spooky birds

jaunty wraith
high haven
#

i mean look at me

high haven
#

and meets SoTA midjourney

#

also its better at picking up text prompts

grave cove
jaunty wraith
#

here? localized entirely within ot1?

high haven
high haven
jaunty wraith
#

probably can be something in lancebot if they have a public API

jaunty wraith
undone thorn
# rugged owl

I always thought this was gonna be dope for cheating on interview questions

high haven
#

the vergecast covered it

high haven
#

someones gotta foot those cloud bills

jaunty wraith
jaunty wraith
jaunty wraith
#

I see you sg

high haven
#

this is technically free

#

you just have a limit

#
  • you have to have a microsoft account
jaunty wraith
#

yeah, plus you'd have to use bing

high haven
#

thats how they get you

#

but tbh its how i made my pfp

jaunty wraith
#

ic

high haven
#

takes a few tries

#

but its not bad

jaunty wraith
#

I shall try it

#

tomorrow

high haven
jaunty wraith
#

sleb now

high haven
#

good

#

also

#

good night moyen

jaunty wraith
#

good [time of day] rex

high haven
#

omg not a hadoop podcast https://spotify.link/fjwK4orSJDb

#

literally on this legacy software series

foggy jungle
#

Hadoop there it is.

grave cove
high haven
#

if you find a good one with this topic, lmk

#

ill add it to the rotation

young shoal
#

just read books?

high haven
#

books are good

grave cove
#

ain't nobody got time to read books

high haven
#

but you do

grave cove
#

source?

high haven
#

and i do

#

so theres that

grave cove
#

but muh podcasts while doing other stuff ๐Ÿ˜ญ

young shoal
#

meh

grave cove
#

leaked

high haven
grave cove
#

nah, I do audiobooks but it's like the same thing

#

I like listening to stuff that's not music while doing stuffs

high haven
#

ill be waiting for you robin

grave cove
#

yeah I'll do some digging ๐Ÿ‘€

high haven
young shoal
#

๐Ÿ˜ฉ

rugged owl
#

wha, all these pfp changes throwing me off

carmine apex
carmine apex
#

uh huh

high haven
young shoal
#

i kinda don't like it

#

it's too different

high haven
#

pick a dif one?

young shoal
#

i'm working on it

#

i reached out to my network

high haven
#

gl

#

just dont be like this guy:

grave cove
#

haha stupid

high haven
#

honestly dont know how that happened to him

young shoal
#

gpu with sad temperature controls?

high haven
#

my friend said control net is used

#

for existing images

young shoal
#

ic

high haven
#

im sure theres tools built on top that make it easier

young shoal
#

i think i need to go the manual route

high haven
#

lame

young shoal
#

i'm kinda bad at prompting it seems

young shoal
#

what

grave cove
foggy jungle
high haven
high haven
#

literal chatgpt coaching sesh

young shoal
#

๐Ÿ˜”

high haven
#

anyway

grave cove
high haven
#

can you tell i had to work with azure recently

vale raven
#

Azure is great

You shut your face

high haven
grave cove
#

so cringe

high haven
#

like we have a whole aws team

#

like devops team

vale raven
#

Why are you multicloud?

high haven
#

to help

vale raven
#

Multicloud is sad

high haven
grave cove
#

smallest AWS team

high haven
#

you wanna know the real reason?

#

mergers and acquistions

vale raven
#

ah

#

true true

high haven
#

that is the average reality of most average companies

grave cove
#

๐Ÿฅน

#

rex when big tech?

high haven
grave cove
#

y not

high haven
#

the question is, why?

grave cove
#

monies

#

YUGE shiny rock pile

high haven
#

nah if i wanted monies, i wouldve stayed in my original career path

grave cove
#

grug like when many shiney rocks

high haven
#

but i dont

#

so im good

grave cove
#

W rex goals fr

#

๐Ÿ˜ค

foggy jungle
high haven
grave cove
#

we need another big cloud provider like AWS and azure to complete the triumvirate

high haven
#

gcp

grave cove
#

aint nobody care about gcp

high haven
#

but that one is the one im least familiar with

#

oh okay

#

then snowflake

grave cove
#

gcp fell off ๐Ÿ‘Ž

#

github might have a good shot at one methinks

#

they can be the new gcp

#

github cloud platform

grave cove
#

you heard me

vale raven
#

Microsoft literally owns GitHub

grave cove
#

oh

#

right

#

netflix cloud service ๐Ÿฅบ

vale raven
#

what in the fuck

#

Too much chaos engineering

grave cove
#

you know what

#

apple cloud platform

vale raven
#

They tried that

#

Literally no one cared

grave cove
#

sadge

vale raven
grave cove
#

i had the most original idea ever

#

what if

#

we made our own cloud service platform
but used aws

vale raven
#

What, like how Elastic Cloud resells compute from the big three?

grave cove
vale raven
#

๐Ÿคจ

high haven
#

hey cloudflare handles a lot of workloads

#

we always forget cloudflare

#

they have a great tech blog btw

lament cairn
solemn tulip
#

||but from your sass I suspect that's about it||

young shoal
grizzled thistle
#

guys you have channel i want to learn administration control for my work im currently in computer laboratory assigned im freshment i want to learn basic role of an admin please can someone help me?

high haven
young shoal
high haven
#

not bad. too bad you cant see full pic

#

unless you have that

young shoal
#

her head is close to the top of the photo already, so trying to add hats is a bit scuffed

#

same with the christmas hat thing

high haven
#

makes sense

young shoal
#

i could make it more centered but the shoulders are very important to convey the emotions yk

high haven
#

ikyk

lament cairn
foggy jungle
#

I do not recall their name, but the snow leopard posting made me happy.

lament cairn
#

i am

foggy jungle
#

Excellent, welcome (back?)

lament cairn
#

i left this server a few motnhs ago while cleaning up my server list

foggy jungle
lament cairn
#

or... multiple

#

i didnt actually watch the video past the 10 sec mark. i saw snow leopard and just downloaded it. wow thats a lot of kitty

foggy jungle
#

if not fren y fren shape

grave cove
#

shapeshifter

jovial oriole
#

Chat, is it morally correct to polarize the masses, spread hatred amongst your bretheren for differences that allow us to exist differently and spill bloodshed to our ankles.

undone thorn
#

It depends >:))

#

On your moral system

crystal spruce
#

if it's linear polarization then no, but if you're circularly polarizing them i think that's acceptable

high haven
#

chat, why do i feel like a frontend javascript engineer now? i blink and more ai stuff is constantly coming out.

undone thorn
#

๐Ÿ’€ oh God you poor soul

high haven
#

is this how js developers feel when new js libraries come out

high haven
# undone thorn ๐Ÿ’€ oh God you poor soul

literally its like, "which vector database should we use?", "which LLM?", "proprietary or OS?", "should we host our own?", "how do we feel about langchain? - too many abstractions?", "chaining?", "agents?", "could we use Retrieval Augmented Generation for this use case?"

undone thorn
#

Ah I just read a paper on RAGs today

high haven
#

link?

undone thorn
#

There was also a hugging face article I saw on them

high haven
#

we find that LLM with 4K context window using simple retrieval-augmentation at generation can achieve comparable performance to finetuned LLM with 16K context window via positional interpolation on long context tasks, while taking much less computation. More importantly, we demonstrate that retrieval can significantly improve the performance of LLMs regardless of their extended context window sizes
interesting

undone thorn
#

Ikrrrrr

#

It's so cool

high haven
high haven
#

i saved this thanks

high haven
undone thorn
#

It's just a hobby

high haven
high haven
grave cove
#

JS developers ignore new JS frameworks all the time

high haven
#

not at all

grave cove
#

Y not

high haven
#

robin it changes literally the tech stack we choose for these ai products/features

grave cove
#

o

high haven
#

i mean we can always rebuild it

#

but like

#

whos gonna do that

grave cove
#

its time to go into web dev rex

high haven
#

idk how you got that

undone thorn
high haven
#

from what i said

#

because web dev seems even worse

grave cove
#

only with that attitude

undone thorn
#

Frontend is basically hell imo

high haven
undone thorn
#

And js is superhell

grave cove
#

it's fun

||sometimes||

undone thorn
grave cove
#

though if I had to do it for a job I'd probably be through and through with it in a month

high haven
thick osprey
#

js is super fun. Never in my programming experience have I cackled as hard as I did when I saw an empty array be declared, then the fourth index assigned a value, and the damn language was just "Oh, okay, sure."

undone thorn
#

Lmfao

high haven
undone thorn
#

Js is definitely fun

grave cove
#

"Multiply this class by this array for me"
> ok
> GigaChad

grave cove
#

also rex I found out mid journey doesn't do free trials anymore

#

am sadge

high haven
#

it has dalle 3

thick osprey
#

{} + [] being 0 while [] + {} being [object Object] does rub me wrong a little.

grave cove
high haven
undone thorn
grave cove
#

its rustin time

thick osprey
#

I think that movie would have done better.

undone thorn
#

It works for 1 sample great, but for more it just dies

#

Also think the issue might be with my MSE derivative

thick osprey
high haven
grave cove
undone thorn
#

Bc rust is immature and fast lmao

#

Perfect for some new ML libs

thick osprey
grave cove
high haven
#

gl

#

the diagrams + documentation were helpful while learning

undone thorn
#

Ooh good resource, thank you

high haven
#

ye its good stuff

jaunty wraith
thick osprey
glossy niche
#

interesting, I should try it sometime, ty for sharing lemon_glass

thick ore
#

i propose a new tech stack: FRR
FastAPI
Redis
React

#

it's the realest tech stack out there (and it's lit fam)

jaunty wraith
#

I don't think that's a new stack
also, why Redis?

plush sun
thick ore
#

!pip redis-om

royal lakeBOT
thick ore
#

i hate sql

#

and i hate mongodb

solemn tulip
thick ore
#

oh god

#

sjs

#

not even f strings?

solemn tulip
#

also allowable

thick ore
#

FJS stack - "Fuck JS"

jaunty wraith
#

an object mapper for Redis
Iโ€ฆ don't see the point

solemn tulip
#

sockets
sqlite
str.format

#

S3

#

sounds like a bucket of fun

thick ore
#

and the OM is extremely easy to integrate with fastapi

naive igloo
#

wtf is redis

stark prawn
#

redis is a ram data store, you can use it for message queues, caches, databases etc

young shoal
#

redis message queue?

#

incredible

thick ore
#

RedisMQ

naive igloo
thick ore
#

kinda

#

it's a key-value store

jaunty wraith
#

if you just want a KV store, there are much simpler alternatives

#

Redis has much more data types than memcached for example

high haven
#

it even has vector store capabilities

graceful basin
#

It has quite a few data structures

high haven
#

for all your ML needs cool_doge

jaunty wraith
#

there's also TiKV ๐Ÿ‘€

undone stratus
#

What does adding names at the speed of names even mean?

young shoal
#

redis has a bunch of fancy things

thick ore
#

it has AI/ML stuff

#

also JSON data type

#

๐Ÿ˜ฑ

high haven
thick ore
#

not really

#

ig

high haven
low chasm
#

RMQ vs RMQ

stark prawn
#

I prefer RMQ out of the two

crystal spruce
#

but what about RMQ

ruby fox
#

import collections ๐Ÿ˜ข

stark prawn
crystal spruce
#

I just personally think that RMQ >= RMQ <= RMQ

low chasm
#

where did the third RMQ come from

crystal spruce
#

there's only two RMQ?

tardy rain
#

Its all the same RMQ

crystal spruce
#

it's two separate references to the same object

high haven
young shoal
#

rabbit mq is cool but too low level

#

though I realize that's a bit strange because I'm using zmq

undone stratus
#

Python is python.

lament cairn
#

ptyon

solemn tulip
undone stratus
#

Pythony python

#

Pyhtonic python

#

snake like python

undone thorn
#

Rust is also python

undone stratus
#

Iron oxide.

#

I'm new to python (both the programming language and the discord server)

#

I'm trying to get 50 messages withot spamming

high haven
undone stratus
#

Py-gen?

high haven
undone stratus
#

alr

#

thanks

high haven
#

(you can tell i dont go there)

#

np

#

gl

undone stratus
#

thanks again

undone stratus
high haven
high haven
#

@young shoal another day, another podcast about data issues. want to hear it

young shoal
#

of course

high haven
# young shoal of course

My friend is the Head of Data at a place in NY. At some point, he was called in by the CEO and CFO because their quarterly numbers weren't adding up.

They spent 3-4 days really going into the deep end trying to figure this out.

Turns out, someone had just aggregated Canadian dollars and US dollars on the marketing side, and on the finance side, they had done the conversion from Canadian dollars to US dollars appropriately.

young shoal
#

i'm always receptive to your podcast prodding

high haven
young shoal
#

how do you mess that up though pithink

high haven
#

no semantic layer or shared definition between dif depts

#

analyst in one dept vs. another dept creating dif sql queries

#

its a classic problem

young shoal
#

๐Ÿ˜”

high haven
#

in this space

jaunty wraith
#

you'd think people would know how to solve this

young shoal
#

how do you not know that canadian dollars are different smh

high haven
#

i mean what if the column/field name was just sales_in_dollars

#

and you needed to find a separate table to join for location or something

#

before converting

#

but you didnt even know that table existed

#

who knows

#

theres all sorts of things

young shoal
#

๐Ÿ˜”

#

reportedly my company's product has over a thousand tables. meanwhile i'm dying trying to work with like 30

high haven
#

thats typical

#

even our branch product that our vertical works with the most has like

#

200-300 tables

#

i dont remember

#

anyway

#

shared definitions/semantic layers/etc. is def a problem in the data space

young shoal
#

can i learn about this in FoDE

high haven
#

dbt apparently helps address this issue but then you get people creating too many dbt models at a certain scale

high haven
young shoal
#

interesting. i've never heard of reverse ETL ๐Ÿ˜ฉ

#

there's so much to learn ๐Ÿ˜ฉ

high haven
young shoal
#

why don't they just call it LTE ๐Ÿค”

jaunty wraith
#

what are undercurrents?

#

those are entire domains

high haven
#

they are. theres certain parts of them that are pertinent to data eng

low chasm
high haven
#

jk

low chasm
#

banned

young shoal
#

๐Ÿ˜ญ

jaunty wraith
#

it feels like,

this is the main lifecycle you should know about

(and here are some things you will need to know about
dw. it's trivial.)

high haven
young shoal
#

(other people will handle these)

#

(probably)

jaunty wraith
#

(jk)

high haven
#

(but not really)

#

Security: oops we just had a data leak and you get to lose your job

young shoal
#

running to your next job, presumably

high haven
#

.randomcase "its someone elses problem now"

median domeBOT
#

"itS SOmEoNE else PRoBlEm nOW"

young shoal
#

so it would seem

high haven
#

"why did you leave your last job"

young shoal
#

we had a difference of opinions

jaunty wraith
#

alright, I'll put that down as not a team player

young shoal
#

i thought i was a good employee, but they disagreed

minor portal
#

lol what?

proven ermine
#

Seems right to me

minor portal
#

but why?

#

i honestly don't get it

young shoal
#

read books

proven ermine
naive igloo
minor portal
young shoal
#

no

grave cove
proven ermine
#

The thinker but sea animal

naive igloo
#

i wonder if this would actually be possible to implement literally

#

like adding names into a hashset at the speed of names coming in

#

so if new name comes every 1/2 sec

#

it would take 1/2 sec to add a name into a hashset

minor portal
#

who agrees that those are some wise words

minor portal
#

imma write a novel instead

#

called:

#

"the folklore of phoklor"

#

i started it a few weeks ago

civic pasture
#

๐Ÿ˜›

high haven
civic pasture
#

We chatted before right?

#

you are the coffee person

high haven
#

im sending you something

civic pasture
#

Okay

young shoal
#

๐Ÿคจ

high haven
#

"what do you think this ai team needs"

#

guess what i said

young shoal
#

money?

high haven
#

no they have money

#

they need people

young shoal
#

o

#

me, then

high haven
#

probably not you

young shoal
#

D:

high haven
#

me and the architect talked about the "profile" of the type of person we would want

#

on this team

#

on any Generative AI team tbh

high haven
high haven
#

if it was a DE position, then maybe

high haven
young shoal
#

well what kind of profile, technical skills? or was it like, soft skills

high haven
#

ok imagine you have to hire someone for a team. what kind of person are you going to hire? that type of profile.

young shoal
#

how am i supposed to know ๐Ÿ˜ญ. they need the "T" shaped skills

#

they need to be a great prompt engineer ๐Ÿ˜ค

high haven
young shoal
#

yk the big spike and wide breadth

high haven
#

ig youre close enough

young shoal
#

well? you've got me on the edge of my seat

high haven
#

Hang on, maybe someone else will guess

young shoal
#

๐Ÿ˜ฉ

high haven
#

this also gives me some time to finish up some loose ends ClownTurtleRunning

young shoal
#

yh they should call it witch hat skills

#

cause the wide brim

carmine bane
#

Coffee man

high haven
#

anyway

#

the profile i suggested was a full stack dev into AI

#

the architect agreed

young shoal
#

but why

high haven
#

they need to be more product-focused

#

too

#

we dont need infrastructure peeps

#

at least not atm

#

because we have to prove this stuff out first before we get more "runway"

#

aka budget

young shoal
#

i c

high haven
#

anyway

#

i have to hit up my friend

#

to see if hes interested in contractor work

young shoal
#

๐Ÿ‘€

high haven
#

the architect was like is "do you think X would be interested"

#

X being my friend

#

i was like

#

"i can ask"