#voice-chat-text-0

1 messages · Page 288 of 1

wise cargoBOT
#

library/std/Cargo.toml lines 14 to 25

[dependencies]
alloc = { path = "../alloc", public = true }
cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
panic_unwind = { path = "../panic_unwind", optional = true }
panic_abort = { path = "../panic_abort" }
core = { path = "../core", public = true }
libc = { version = "0.2.153", default-features = false, features = ['rustc-dep-of-std'], public = true }
compiler_builtins = { version = "0.1.105" }
profiler_builtins = { path = "../profiler_builtins", optional = true }
unwind = { path = "../unwind" }
hashbrown = { version = "0.14", default-features = false, features = ['rustc-dep-of-std'] }
std_detect = { path = "../stdarch/crates/std_detect", default-features = false, features = ['rustc-dep-of-std'] }```
rugged root
#

I kind of prefer Manjaro, but that's a personal taste thing

#

That's an Arch based one

#

Manjaro was the only distro I used where all the hardware just worked out of the box

whole bear
#

dw i've already spent an evening vicariously distro hopping lol

rugged root
#

HA

#

Love it

#

Yeah that's the eternal struggle...

whole bear
#

i've done a decent bit of research and i see why people don't like snap, hense why id rather have mint

#

but yknow, have it be as stable as ubuntu

rugged root
#

Snap isn't mandatory on any of them

#

I think?

#

Now I'm doubting myself

whole bear
#

i think you can get others, but idk how easy that is

rugged root
#

In most cases, Debian/Ubuntu based systems will use apt

vocal basin
whole bear
#

or if it doesn't break anything

rugged root
#

Arch will use pacman

#

Not sure which one uses yum, but I know it's a thing

#

@swift valley Suuuup

swift valley
#

ocamling

rugged root
#

Enjoying it?

vocal basin
#

@upper basin example usage (including on, maybe, derived types), doesn't need to really test anything, just that it runs at all

swift valley
#

yep

vocal basin
#

doctests generally should look like examples

swift valley
#

the plan is to get employed for it

whole bear
#

i'm pretty sure the labs at the university i wanna go to dual boot with ubuntu, so i'd rather have as similar of an experience as possible outside of practicals

vocal basin
rugged root
rugged root
#

Ah yeah, that's what I was thinking

swift valley
#

OCaml is more French companies doing research

#

or Ahrefs

vocal basin
#

__init__ can have all the constructors listed

swift valley
#

or Jane Street and Bloomberg

rugged root
#

Big companies where you are but a number

swift valley
#

Ahrefs has < 120 employees apparently

#

They do some pretty cool stuff, so I applied there haha

rugged root
#

!e @fossil salmon

print("hello world")
wise cargoBOT
#

@rugged root :white_check_mark: Your 3.12 eval job has completed with return code 0.

hello world
rugged root
#

Yeah it's legit like you said

#

Nuitka

vocal basin
rugged root
#

What script are you trying to compile?

dull sluice
rugged root
#

Ah that's right, cheers

rugged root
vocal basin
#

there's way too much Haskell out there actually

rugged root
#

Like... is it really a good language for prod?

#

My brain only seems to label it as academic

whole bear
#

i wanna like haskell, im just not motivated to learn anymore

swift valley
rugged root
#

That doesn't surprise me

whole bear
#

of it,

#

because like what else am i gonna use it for

#

other than what i learn in class

vocal basin
swift valley
#

I gathered a preliminary list

vocal basin
#

IO handling in Haskell is a bit weird

rugged root
#

@fossil salmon Just.... enjoy gaming instead of cheating?

#

I never got the purpose of it in multiplayer

vocal basin
#

I don't remember there being a select

rugged root
#

Single player cheating, I get

rugged root
#

You can do neat things

whole bear
#

haskell is the only solely functional languge i know about

vocal basin
#

like you need to drop to C or write compiler extensions or something to do proper IO

#

afaik

rugged root
#

Yeah Haskell is the only one I can think of that's fully drank the functional only paradigm kool-aid

vocal basin
rugged root
#

@amber raptor Mutelock says hello

vocal basin
#

there are exceptions
there are calls into C

rugged root
#

I mean sure

amber raptor
rugged root
#

But its intent is to be purely functional

#

There's always exceptions

rugged root
#

@upper basin What's up

vocal basin
#

it just puts the mutability border very far

swift valley
#

basically

ivory flower
#

found a haskell web framework , not sure how performant / how many use that

swift valley
#

the runtime is what's mutable and impure

rugged root
#

Sorry, I got pulled away

#

I'm back now

vocal basin
#

I think it also provides some sort of Mutex/Cell analogue too

#

to encapsulate state

rugged root
#

range isn't technically a collection

#

It's more of a generator

swift valley
#

OCaml has interesting ideas with effect handling

vocal basin
#

!e

from collections.abc import Collection

print(isinstance(range(5), Collection))
wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.

True
rugged root
#

Can you show me the traceback again

#

Oh wait what?

#

Okay then everything I know is a lie

vocal basin
swift valley
rugged root
#

...

#

Yes

#

Yes I did

swift valley
#

It's a generalization over exceptions (as I understand it)

rugged root
#

Okay look, I've slept since then

swift valley
#

Rather than being stuck in monad-land

vocal basin
#

std::ops::Try

#

or whatever it's named

rugged root
#

It depends on how it's using it

upper basin
rugged root
#

!e

print(range(4))
wise cargoBOT
#

@rugged root :white_check_mark: Your 3.12 eval job has completed with return code 0.

range(0, 4)
rugged root
#

Thinking...

vocal basin
upper basin
#

!e

help(range)
wise cargoBOT
#

@upper basin :white_check_mark: Your 3.12 eval job has completed with return code 0.

001 | Help on class range in module builtins:
002 | 
003 | class range(object)
004 |  |  range(stop) -> range object
005 |  |  range(start, stop[, step]) -> range object
006 |  |
007 |  |  Return an object that produces a sequence of integers from start (inclusive)
008 |  |  to stop (exclusive) by step.  range(i, j) produces i, i+1, i+2, ..., j-1.
009 |  |  start defaults to 0, and stop is omitted!  range(4) produces 0, 1, 2, 3.
010 |  |  These are exactly the valid indices for a list of 4 elements.
011 |  |  When step is given, it specifies the increment (or decrement).
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/P7FXS6FPTD5IUZDDSK3MB76J5M

rugged root
#

It's really hard to know what's going on without the traceback in text in front of me

#

It's hard to keep up when it's being streamed back and forth

#

It's why I really don't like trying to debug via stream

vocal basin
rugged root
#

Code is text, make it text

vocal basin
#

std::ops::Try has a bit of an issue

#

which is ambiguous implementation

#

(for some cases)

rugged root
#

@molten pewter Whatcha doin'

#

That tracks

#

Wait did you finish your taxes?

vocal basin
#

not because it's wrong but because it exists and the alternative isn't wrong either

rugged root
molten pewter
stark river
#

is this hexadecimal?

rugged root
#

That's not base 8

vocal basin
rugged root
#

Just like a roller coaster with half the track missing

vocal basin
whole bear
#

i've experimented with bases recently, just made a harshad series generator thats works for bases 2-36

#

aka niven

rugged root
#

Even the weird ones like base 17?

whole bear
#

uhhhh

#

hold that thought

rugged root
#

HA

#

I mean don't do it

vocal basin
rugged root
#

It was more me just being evil

vocal basin
rugged root
#

But you can only have the fun within that given context

#

The moment you leave, all fun is gone

#

You carry only some of the fun out

#

Wait isn't I/O explicitly not purely functional?

stark river
#

i like my fun not from concentrate

vocal basin
rugged root
whole bear
rugged root
#

I....

#

Yeah that should work

vocal basin
whole bear
#

main thing is that it works in base 10

rugged root
#

God I'd hope so

sullen thistle
#

Hello

rugged root
#

Yo

#

@molten pewter You might know.... I feel like there was a counting system where to do addition or subtraction you just remove or add lines to the character

#

I've been trying to figure out what it is for quite a while

rugged root
#

@clever relic Hey how've you been?

#

@civic ivy Yo

clever relic
#

hello

sullen thistle
clever relic
#

why i muted?

#

someone took my mic 😦

rugged root
#

No need to apologize. I'm alright, just working.

sullen thistle
vocal basin
rugged root
#

@clever relic You have the voice perms, you should be able to unmute

rugged root
sullen thistle
clever relic
#

bruuhhh

#

my bad

rugged root
#

I have NO idea why

clever relic
#

this discord updates lol

rugged root
#

I haaaaate that change

clever relic
#

that change got me rn

#

ngl

sullen thistle
rugged root
#

@mild quartz Sup

mild quartz
#

hi

rugged root
sullen thistle
rugged root
#

@molten pewter I agree with you. You are the bestestest

clever relic
#

I am sorry for the off-topic question, but is there anyone that can help with table normalization?

clever relic
#

this is study case btw, not the database

rugged root
#

Are these mock names?

clever relic
#

ofc

rugged root
#

Just wanted to make sure

swift valley
clever relic
#

just an assignment, but the prof didn't really tried to explain normalization thing

rugged root
#

@upper basin Means that you're emotional, tend to put yourself out there, be open with people, but that can leave you more open to being hurt

rugged root
civic ivy
clever relic
stark river
clever relic
rugged root
#

Gotcha

clever relic
#

i did first

whole bear
#

we all remember out first time normalising

#

for worse. always for worse

rugged root
#

@civic ivy If you're calling us nerds, I think you need to do some self reflection

civic ivy
rugged root
#

I feel like most of the words you're saying don't actually have any meaning, incho

whole bear
#

didn't even know 4th or 5th nf was a thing

rugged root
#

"cool"

#

I think you would self peel if you did that

#

Kind of a one time trick

clever relic
vocal basin
#

test cost doesn't depend only on test type

swift valley
#

arguably

vocal basin
civic ivy
#

shawty

vocal basin
#

so the comment was about the total cost

#

which can be calculated

#

like a materialised view

clever relic
#

create another table with test desc and test cost

vocal basin
#

(test type id, test description)

#

that

clever relic
#

and then just connect test id with the patient case?

clever relic
vocal basin
#

id

clever relic
#

yep my bad

vocal basin
#

idk if description needs to be unique

clever relic
#

i don't think so

vocal basin
clever relic
rugged root
#

I hate intermittent tech issues

upper basin
#

!e

print(isinstance(range(4), range))
wise cargoBOT
#

@upper basin :white_check_mark: Your 3.12 eval job has completed with return code 0.

True
rugged root
#

So hard to pin down, so hard to fix

molten pewter
#

this also includes car issues

rugged root
#

That's amazing

ivory flower
rugged root
#

@civic ivy Those are rookie numbers

vocal basin
#

(some might be views)

rugged root
#

@molten pewter They're so expensive

vocal basin
#

so patients table and tests table

clever relic
vocal basin
rugged root
#

No but I've played Hello Pixel

#

Not Hi Pixel, though

vocal basin
rugged root
#

@civic ivy You should retire and dedicate your time to it

clever relic
vocal basin
#

sounds right

rugged root
#

5 tables?

clever relic
#

yep

#

but i can see 3 only

#

patients

#

centre

rugged root
#

Patients, test, centers/locations

#

Yeah

#

Test descriptions

vocal basin
#

4

rugged root
#

Ah right

#

Scratch the descriptions

vocal basin
#

there is one more partial dependency: cost sums

#

which sounds like a view

rugged root
#

That can just be - yeah

#

@civic ivy No

vocal basin
#

(case id, total cost)
I think

clever relic
#

brb

rugged root
#

Oh you're thinking test types, test results, patients, locations. Wait test and costs are different

#

There's 4 different prices for throat swabs

vocal basin
#

yes, that's why costs aren't in the tests table

rugged root
#

Wonder if that's tied to location

#

Ah right, sorry. I'm slow today

vocal basin
rugged root
#

Doesn't seem to be...

#

Yeah I don't see why the costs are different based on this

vocal basin
#

3368
5563

#

different in those two

rugged root
#

Yeah just saw that

mild quartz
#

based

rugged root
#

I can only think it'd have to do with insurance or some other column that just isn't there

vocal basin
#

doesn't it just increase over time

#

inflation

rugged root
#

4856 and 5563 were taken on the same day

#

Not based on result time either

#

Not based on patient city or address that I can tell...

#

Yeah there's a piece of information that just isn't there

vocal basin
rugged root
#

If that were the case then 8562 would be the cheapest throat swab

vocal basin
rugged root
#

HA

#

Well played

#

@civic ivy I'll start clipping your audio

vocal basin
rugged root
#

Just to call you out on your bullshit, yea

willow light
#

I'd say the healthcare problems don't stop there. My legal name is uncommon, and can sometimes sound an awful lot like a much more common name. The number of times CVS told me to my face that I do not exist...

rugged root
#

@molten pewter Mahjong is

#

Yep

#

It's a loophole

#

You win prizes

#

You then sell those prizes at a place next door

willow light
#

Teddy bear, ps5, same value lol

rugged root
#

I was wrong

#

Oh no wait wait

willow light
#

we do that here, you play games, you win an amazing prize: crippling debt

rugged root
#

Yeah, I was wrong Fury

willow light
#

well when have you heard of gold fissioning?

rugged root
#

Public sports, lottery, and toto (football pools) are held under special laws in order to increase the income of national and local governments as well as to offer a form of entertainment.
Those seem to be the only ones

clever relic
rugged root
#

"We found a gold vein that is weirdly in the shape of bars"

upper basin
#

Alisa, quick question, I know when you want to pass a class type, you just use:

Type[cls]

If you have a subclass of cls, do you also have to pass:

Type[subcls]

?

clever relic
#

idk why i replied, but nvm

willow light
#

you grab a scissors and add a column between them.

#

print it out first though

whole bear
clever relic
rugged root
#

Right click on the column of Patient Address and then insert column

willow light
#

Why are you using Excel when libreoffice....exists?

clever relic
#

me when im working with excel

rugged root
#

I work at an accounting firm, I know my way around Excel (well, decently enough anyway)

vocal basin
willow light
#

Cracking bitcoin wallets is so 2020, now we put vulnerabilities in OpenSSH dependencies.

upper basin
rugged root
#

@civic ivy I really hope you're at least impressing yourself because you're just sounding like a doofus

willow light
#

Oof

#

Worth it imo

#

If you wreck Elon's whatever number midlife crisis Twitter was....that should be rewarded.

clever relic
#

russian forums full of that kinda 0 days

willow light
clever relic
rugged root
#

@molten pewter Not just 3rd world.

willow light
vocal basin
#

@upper basin do you mutate Circuit of an existing Backend?

willow light
#

Then again, I keep anger for a while, since I'm still utterly furious about Google Reader.

clever relic
upper basin
vocal basin
#

maybe it's better to have it generic like Backend[SomeCircuit]

wind raptor
#

@civic ivy You could pull off this heist at the mining company: https://www.youtube.com/watch?v=ceijkZQI1HM

Show - Key and Peele
Episode - S01E04 “The Branding”
Air Date - 21st February 2012
Description - Sketches include a neighborhood's reaction to a creature; exploring the black college experience; President Obama uses an anger translator.

TM @ ComedyCentral / Key&Peele / CindyLou / MonkeyPaw Productions

*Copyright Disclaimer Under Section 107 of...

▶ Play video
upper basin
willow light
#

and no I'm not unmuting, I'm at a very busy cafe right now. california crepe is 50% off today.

rugged root
#

@lucid blade $8 and a Snickers bar

vocal basin
#

!e

class Circuit: ...

class Backend[T: Circuit]:
    _circuit: list[T]
#

ugh

rugged root
#

Forgot to import it?

wise cargoBOT
#

@vocal basin :warning: Your 3.12 eval job has completed with return code 0.

[No output]
rugged root
#

Oh right

willow light
#

So the crepe is only an arm but not also the leg.

clever relic
#

there are actually teams on forums who are making money from 0-day of binance

vocal basin
#

(I just want to check if it parses)

willow light
#

@civic ivy that happened last year, the government just bails them out.

vocal basin
#

whereas : (A, B) is constraint= or whatever it's called

#

!d typing.TypeVar

wise cargoBOT
#

class typing.TypeVar(name, *constraints, bound=None, covariant=False, contravariant=False, infer_variance=False)```
Type variable.

The preferred way to construct a type variable is via the dedicated syntax for [generic functions](https://docs.python.org/3/reference/compound_stmts.html#generic-functions), [generic classes](https://docs.python.org/3/reference/compound_stmts.html#generic-classes), and [generic type aliases](https://docs.python.org/3/reference/compound_stmts.html#generic-type-aliases):

```py
class Sequence[T]:  # T is a TypeVar
    ...
```  This syntax can also be used to create bound and constrained type variables...
vocal basin
#

**constraints

willow light
#

I'm just sitting here waiting impatiently for the housing market to collapse so I can finally afford a single bedroom condo.

vocal basin
#

covariant= and contravariant= are inferred I think

#

(as if with infer_variance=True?)

clever relic
rugged root
#

You can still barter with fiat currency

willow light
#

Bartering still works fine, I can trade two goats and a sheep for someone's daughter according to a book that a lot of Americans like to pretend to have read.

upper basin
rugged root
#

Bible

#

Yes

vocal basin
willow light
#

Old Testament is wild

upper basin
rugged root
#

@whole bear hawt

#

Do you have wood for sheep?

vocal basin
willow light
#

Remember the reason pork was seen as unclean is because we destroyed hogs' natural habitat so they had no choice but to wallow in the mud to stay cool.

#

The cloved hoof thing was retroactively applied, but that does mean that giraffe is kosher.

rugged root
#

@lucid blade I'll do it, but by holding the bitcoin, I expect you to hold your computer tower all day without putting it down

clever relic
#

topics are some random here

willow light
#

and don't forget that according to the pope, capybaras are fish, and therefore south americans can eat it during lent.

rugged root
#

Yeeeeee

whole bear
#

@rugged root LMAO

rugged root
#

General conversation, friends shooting the shit

#

That's PyDis VC in a nutshell

clever relic
#

how we came from 0-days to girrafe is kosher

willow light
#

We have a collective attention span of fifteen seconds.

rugged root
#

Sorry what were you saying?

vocal basin
#

yes

clever relic
#

exactly

rugged root
#

@civic ivy I'm sure you are

willow light
#

I do make it inconvenient for people to rob me. I had my mechanic deliberately fuck my car's appearance up to make it look like less of a tempting target.

#

No, break in and crease their sneakers.

#

Just one croc.

#

Joke's on you my microwave doesn't use a spinner.

#

Which is great for making tea in the microwave.

rugged root
#

@lucid blade So you'd be giving them money?

lucid blade
#

for the memes

rugged root
willow light
rugged root
#

It can't be that much cheaper

willow light
#

Air fryer and oven are the same lol

rugged root
#

Jacket potatoes?

willow light
#

I use my massive air fryer that came with my kitchen.

rugged root
#

The hell's a jacket potato

clever relic
#

buy rice cooker, fry some meat with vegies and mix it

willow light
#

I used it to air fry a chocolate cake once.

clever relic
#

easy food for a week

rugged root
#

I wouldn't have asked otherwise

#

Oh that makes sense

willow light
#

All you need is a slow cooker.

clever relic
#

that how we students still alive lol

rugged root
#

Cheers, Mindful

willow light
#

Just dump ingredients in at 7am, set it to low, and by the time you get home from work dinner is ready.

rugged root
#

Oh so just a baked potato

vocal basin
willow light
#

France, they use a latin-based language.

#

when you look at the law that legalized weed in germany, it isn't nearly as permissive as people think

willow light
#

I have a prescription for medical cannabis, which makes visiting europe really interesting.

willow light
clever relic
willow light
#

Loud pack is overrated, just get a dugout one hitter.

clever relic
#

i will prolly stream the eclipse

willow light
#

I'd rather use my HSA when possible.

clever relic
#

in my province it will be very visible

#

need to prepare all hardware bruhh

willow light
#

I'm in New Hampshire, and we're surrounded on all sides by legal states and provinces.

upper basin
#

!e

from typing import Type

class Data_template:
    def __init__(self):
        self.lele = 'lala'

class Data(Data_template):
    ...

typer = Type[Data_template]

data = Data()
print(isinstance(Data, typer))
willow light
#

MS13 also makes one hell of an horchata latte.

willow light
clever relic
wise cargoBOT
#

@upper basin :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 13, in <module>
003 |     print(isinstance(Data, typer))
004 |           ^^^^^^^^^^^^^^^^^^^^^^^
005 |   File "/lang/python/default/lib/python3.12/typing.py", line 1176, in __instancecheck__
006 |     return self.__subclasscheck__(type(obj))
007 |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
008 |   File "/lang/python/default/lib/python3.12/typing.py", line 1179, in __subclasscheck__
009 |     raise TypeError("Subscripted generics cannot be used with"
010 | TypeError: Subscripted generics cannot be used with class and instance checks
willow light
#

Chris Sununu and our state house of 400 80 year olds is blocking it every time.

vocal basin
#

isinstance is quite limited in what it can do

#

false positives, false negatives, runtime errors -- it can do all

upper basin
#

I'm sorry, I think I am a bit confused as to what I am asking as well.

willow light
#

We have the largest legislative body that isn't on the federal level in NH. 400 people, and most of them are over 70 years old and concealed carrying in the state house chamber.

#

Oh Fentanyl? The reason there are narcan dispensers on every street corner in my hometown? That Fentanyl?

rugged root
willow light
#

I remember growing up I'd be told that people would be offering me free drugs.

I'm still waiting for that to happen.

rugged root
#

@civic ivy Not all the dealers would know what they're selling

willow light
#

Weed is expensive, especially when you live in a medical-only state. $96 for an eighth. I can get that amount for $30 at a recreational disp in Massachusetts or Maine.

rugged root
#

@wind raptor When you put it like that it sounds really fun

rugged root
#

I miss doing geocaching

willow light
#

But then I have to bring it across state lines, and that involves breaking more than one law at a time, which strikes me as a bad idea.

willow light
#

I wouldn't last long in Russia because I'm not straight.

#

And because I am incapable of keeping my mouth shut.

vocal basin
#

wait what
Bout is no longer in jail???
wtf

willow light
#

I mean I've been stoned in airport security before. It saves money because I don't get overpriced mixed drinks as a result.

upper basin
rugged root
#

God. Fucking. Damn it. Guess what our MSP forgot to do on our firewall? Know how I've been trying to tackle all these issues with our phones?

upper basin
#

Like ruff and PyPi.

rugged root
#

They forgot to do best practice and have the phones on their own vlan

#

Kill me

willow light
#

you guys get transit where you live? lucky!

#

I've smuggled cuban cigars with intent to sell...

rugged root
#

@whole bear I don't smuggle, I snuggle

vocal basin
rugged root
#

Is there a github action for mypy?

vocal basin
#

(not sure though)

willow light
#

That's why you smuggle it across state lines by taking the back roads.

#

I've been to some especially shady places. Like New York.

#

Although no place creeped me out more than Minnesota.

#

People are nice to you. That's downright scary.

#

Where I live, if someone is being nice to you, it means they want something.

willow light
#

We're kind but not nice. We'll give you the shirt off our backs, but we'll do so while simultaneously questioning every decision you and your ancestors ever made.

#

And that's why I go on vacation to Maine.

#

where it is legal and cheap.

#

although literally everything else is more expensive in maine. especially gasoline.

#

$3.54/gallon are you serious?

#

it's $2.90/gallon in my hometown.

#

I also like to talk to people when I travel. For some reason that didn't fly in Switzerland and Italy.

upper basin
#

How can I line-break this without ruining the readability?

self.circuit.append(X(self.qr[target_indices[i]]).controlled_by(*[self.qr[control_indices[j]] for j in range(len(control_indices))]))
willow light
#

In America, I ask if I can pet your dog, they're like "sure! want to take a picture?"
In Zurich they called the police.

willow light
upper basin
#

But it doesn't fit when you have two windows open.

#

Isn't that bad practice?

upper basin
willow light
#

I cannot go to russia because I am related to someone one of the oligarchs wants dead.

rugged root
#

That is a mess...

#

Let me see if I can adjust that

upper basin
#

But trying to learn standard practice.

willow light
#

oh you didn't mean that kind of flat...

upper basin
#

I'm a blank canvas trying to paint onto myself the standard style.

upper basin
#

What were you talking about?

rugged root
#
self.circuit.append(
    X(self.qr[target_indices[i]]).controlled_by(
        *[self.qr[control_indices[j]] for j in range(len(control_indices))]
    )
)

That's a little cleaner

#

Still kind of a clusterfuck, though

upper basin
#

Thank you so so much Hemdad!

willow light
#

The CIA is a shining example of "If you aren't part of the solution, there's good money to be made prolonging the problem."

rugged root
#

@civic ivy Says the underage kid playing black jack

civic ivy
vocal basin
#

u

willow light
#

u

civic ivy
#

proof

willow light
#

we don't need proof, we have a narrative.

rugged root
#

@lucid blade Later old man

#

You heard me, geezer

upper basin
willow light
#

a cuppa? like a cuppaccino?

rugged root
#

Yes

willow light
#

1780?

rugged root
#

Yeah you're only 6 years older than me

willow light
#

So you're only 9 years older than me.

rugged root
#

80 AD

#

Cheers

willow light
#

Here's some wisdom: "Complexity impresses fools, simplicity impresses the wise."

rugged root
#

@lucid blade You know I do it with love

lucid blade
#

🥷 🫡 🤟

#

oc 🙂

#

❤️

rugged root
#

@clever relic Say again?

willow light
#

Totally not calling out literally every enterprise java dev ever or anything

rugged root
#

I was reading so I just didn't hear

willow light
#

you need a license. there's a long arduous exam.

rugged root
#

Just gotta ask and what you're wanting to stream

lucid blade
#

oh btw more ufo hearings soooooon

clever relic
#

oh

rugged root
#

We do it on a temporary basis at first, so as needed

#

Oh sure sure

#

!stream 498884475258667008

wise cargoBOT
#

✅ @clever relic can now stream until <t:1712163522:f>.

lucid blade
#

wonder who there calling for witnesses / testimony

willow light
#

I hear a yipee and immediately look around for lootbugs.

rugged root
#

Of course you would use that mod

willow light
#

Better than control company.

upper basin
#
mcswap = cirq.SWAP(self.qr[first_target_index], self.qr[second_target_index]).controlled_by(*[self.qr[control_indices[j]] for j in range(len(control_indices))])
willow light
#

I hate it when people are using that one on random lobbies.

clever relic
#

@vocal basin i got only 4

willow light
#

!d enumerate

wise cargoBOT
#

enumerate(iterable, start=0)```
Return an enumerate object. *iterable* must be a sequence, an [iterator](https://docs.python.org/3/glossary.html#term-iterator), or some other object which supports iteration. The [`__next__()`](https://docs.python.org/3/library/stdtypes.html#iterator.__next__) method of the iterator returned by [`enumerate()`](https://docs.python.org/3/library/functions.html#enumerate) returns a tuple containing a count (from *start* which defaults to 0) and the values obtained from iterating over *iterable*.

```py
>>> seasons = ['Spring', 'Summer', 'Fall', 'Winter']
>>> list(enumerate(seasons))
[(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')]
>>> list(enumerate(seasons, start=1))
[(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')]
```  Equivalent to...
willow light
#

it's better than range(len())

upper basin
rugged root
#

I mean....

#

Yeah

#

@whole bear It's the fear of the unknown

willow light
#

just do for each and just don't actually use the object being iterated. the loop will still work

rugged root
#
mcswap = cirq.SWAP(
    self.qr[first_target_index], self.qr[second_target_index]
).controlled_by(*[self.qr[control_indices[j]] for j in range(len(control_indices))])

That's what my formatter gave me but I don't know if I like that any better

#

pyright

#

Well I think pyright is the one that's doing the formatting on this...

#

Yeah I'm still thinking

#

I mean honestly, just break it down

#
mcswap = cirq.SWAP(self.qr[first_target_index], self.qr[second_target_index])
mcswap.controlled_by....
willow light
#
mcswap = cirq.SWAP(
  swlf.qr[first_target_index], self.qr[second_target_index]
).controlled_by(*[self.qr[
index] for index in control_indices)
``` is how I would do it
vocal basin
rugged root
#

Clari no

#

No plz

#

That last line ....

willow light
#

exactly

rugged root
willow light
#

we stay under 79 chars no problem

vocal basin
#

also missing

  • total cost
  • patiend id in cases
  • centre id in cases
  • test type id in cases
willow light
#

I could make it look much worse.

#

but my lsp crashed before I could

vocal basin
#

or not you

civic ivy
#

we bouta feast

vocal basin
#

whoever

willow light
#

we index because we don't glossary

rugged root
upper basin
#

@vocal basin what do you mean?

clever relic
willow light
#

People ask why index but I ask how index

clever relic
rugged root
#

@whole bear Because he sees that coding/help stuff is going on

civic ivy
vocal basin
#

*map(self.qr.__getitem__, control_indices)

rugged root
#

Make sure you mark it on the bingo card

civic ivy
#

this chocolate is mid

amber raptor
willow light
#

That's the free space

rugged root
civic ivy
willow light
#

Sewage from where? Miami or New York?

amber raptor
#

I'll start my own VC with Blackjack and Roulette

amber raptor
upper basin
civic ivy
amber raptor
#

No, but I'm not watching Homework either

willow light
#

@gentle flint we aren't getting rain here, we're getting 13 inches of snow this afternoon though

rugged root
#

@gentle flint At least you're not out in it

vocal basin
#

!e

qr = [0, 2, 4, 8]
control_indices = [1, 3]
print(*map(qr.__getitem__, control_indices))
willow light
#

Avoid Excessive Moderation

wise cargoBOT
#

@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.

2 8
upper basin
vocal basin
#

no list constructed

willow light
#

wait we use map()? but that makes sense which means it is against enterprise software development best practices.

civic ivy
upper basin
#

Lemme update the code then and try. Thank you so much!

willow light
# civic ivy

warn me next time I was drinking coffee and now my mouse mat is coffee scented

#

@gentle flint what kind of mushroom sauce? shiitake, button, chicken of the wood, magic?

rugged root
# civic ivy

Let's ease up on the memes. We're not a meme dump

civic ivy
#

my shitpost urges are strong

rugged root
#

Curb them

willow light
#

No curb, only protected bike lane.

civic ivy
#

born to shitpost forced to post shit

willow light
#

I used to be a shitposter like you, but then I took an arrow to the knee.

rugged root
#

@verbal zenith Sup

verbal zenith
#

Wadupppp

#

What are you up to?

rugged root
#

Just work stuff. Trying to beat the phones into working properly

#

Okay, this bugs me

willow light
#

Oh cool the rain started, which means when the cold front arrives the roads are going to be covered with ice.

rugged root
#

Why can I select the audio codec that the physical phone uses but not the desktop application

civic ivy
willow light
civic ivy
#

until they lose control

#

and hit a tree

willow light
#

Better a tree than a moose.

civic ivy
#

Imagine living in canada

#

L

willow light
#

Meesuses exist outside of Canada lol

civic ivy
#

huh?

willow light
#

did I stutter?

civic ivy
#

Messuses

#

ur a freak

willow light
#

Yes, the plural of moose is meesuses

civic ivy
#

Where do you live then

#

if not canada

willow light
willow light
rugged root
#

@urban abyss Sup dude

willow light
#

See the difference is I know when to stop. I only post one.

#

Don't annoy the Hemlock

civic ivy
#

Ratio

#

get ratioed bozo

willow light
#

you do know I can see when you heart your own messages...

willow light
#

I'll have you know I always have a 2:1 ratio on the bittorrent trackers.

#

LEGAL ONES MIND YOU

urban abyss
#

how's it goin @rugged root

civic ivy
rugged root
#

It's going. Phone bullshit still

willow light
#

Please the FBI won't go after me, the CIA already called dibs.

rugged root
#

Still working on learning Rust

willow light
#

Also I'm already a known quantity for the federal government, due to a combination of Global Entry and spending my summers on the same island as a member of the SCOTUS. I have had zero expectation of privacy since I was six.

urban abyss
rugged root
#

@gentle flint I've been smacking my head against the desk with phone bs

rugged root
#

All the phones in the office

rugged root
#

Says you

#

Just a smidge

willow light
#

If I was a threat, the federal marshalls would've already taken me out a long time ago. And I know they watch me because they know my name upon seeing me for the first time despite me having never met them in my life.

rugged root
#

Look, sometimes violence IS the solution when it comes to computers and tech

willow light
civic ivy
#

i was denied access to america because i was simply too cool

rugged root
#

I love that that's the technical term

willow light
#

I cannot be denied access to America because I was born here.

rugged root
#

Percussive Maintenance. Such gold

willow light
#

although I can always renounce it of my own free will.

#

Hey Europe are you interested in a new citizen?

rugged root
#

Practical and efficient. And keeps folks who don't know any better from know that you're just going to smack it until it works

willow light
#

No but I can keep morale up in an agile team.

rugged root
#

Sounds more professional and less like violent tendencies

willow light
#

I can make a lot of money in Europe and then send it back to America, does that count?

#

Screw this I'm staying in New Hampshire. Income tax is 0%.

#

So is sales tax.

#

Property tax, however.....wicked high. Also the state owns all the liquor.

rugged root
#

How does anything get funded there

#

That doesn't feel like it'd be enough

civic ivy
rugged root
willow light
#

We put our largest state-owned and run liquor stores on the borders with Maine, Massachusetts, Vermont, and Canada.

#

There are toll booths on the entrances and exits for the parking lot, and you can only get to them from the interstate.

willow light
#

Our neighbors also have massive liquor taxes, so lots of people cross the border to buy cheap state liquor and then bring it back home. People have been known to drive up from Rhode Island, crossing Massachusetts, through Boston, to get here for liquor.

#

Also we don't take care of our infrastructure.

#

Or our schools.

#

That's in Baltimore.

upper basin
#

@vocal basin how can I test this?

from typing import Type

circ = Type[Circuit]

isinstance(QiskitCircuit, circ)

Here as mentioned Circuit is the ABC class, and QiskitCircuit is the subclass of Circuit.

willow light
#

Oh that's just an average Tuesday.

civic ivy
#

Did the baltimore bridge get 9/11ed

upper basin
#

I expected this to return True, kind of thought it as this is what an instance is to a class.

willow light
#

Far fewer deaths, and didn't result in a wild goose chase in the middle east.

#

So far.

civic ivy
#

theres always time for it

willow light
#

I don't think we'd be invading our most useful supply of cheap tech support and phone reps.

rugged root
#

Preemptive Democracy Strike

willow light
#

We're not Britain. We're not that evil.

#

Yet.

#

You haven't mentioned any of our current colonies.

upper basin
#

"Shut it down, he called our bluff!"

willow light
#

Puerto Rico, Guam, USVI, etc.

rugged root
#

@gentle flint It's a state

willow light
#

We never gave it back to England you mean?

vocal basin
willow light
#

yup we did

rugged root
#

From the natives

willow light
#

No we stole hawaii from pele

rugged root
#

The football player?

willow light
#

Well, more correctly pele-honua-mea

#

No, the goddess of fire and volcanoes in Hawaii

mental hare
#

Hey, I want some advice.
Aim : To generate dummy data from database schema.

I have Excel file in which I have table names, column name, type (Int, varchar, Boolean)
Also one more table in which information given as table name, it's information also glossary.
I have to create database and each table have atleast 1000 rows.
Also using llm
I have not use llm and don't know much how to do this.
If you know how to do it or resources where I can learn it. It would be helpful.
Thanks

willow light
#

For the record, we haven't tried to turn halema'uma'u into a golf course, that''ll surely piss her off.

rugged root
#

@peak depot Told you

willow light
#

Hello Milien, we have normal people here. Totally.

civic ivy
#

im normal lemon_yawn

willow light
#

Normal is boring. Embrace the weird.

#

Can you try again in freedumb units?

#

okay I'm actually going to do the calculation, what is the actual rain rate where you are @gentle flint ?

#

you keep a and a separate?

willow light
gentle flint
willow light
#

I've never seen that outside of a tropical cyclone.

vocal basin
#

@upper basin yeah it means it's correct

#

likely

willow light
#

I treat garlic the same way my parents treated me growing up: It's never enough.

upper basin
gentle flint
rugged root
#

@urban abyss Quick rinse then it's fine

gentle flint
#

street was flooded afterwards

rugged root
#

Pasto

willow light
#

Ok I have seen that rate in a supercell before

willow light
willow light
#

I'm muted because I'm in a cafe right now.

#

@gentle flint I always take the Italian grandmother approach: make all of it and give the extras to your neighbors.

#

Wait you don't make your pasta from scratch?

vocal basin
#

@verbal zenith have you seen the more recent version of that minesweeper thing I've shown some months ago?

verbal zenith
#

No I haven't

willow light
#

Losing?

#

Present tense?

#

Last day of work was this past friday.

#

Now I'm focusing on submitting job applications.

#

And tomato sauce.

vocal basin
willow light
#

And my eggplant parmesan recipe.

#

and yes this is my specialty recipe

#

I'll be visiting my cat this weekend, and then head up to northern maine and/or canada for the eclipse.

stark river
#

i love aubergines
feels like this would be legit delicious

gentle flint
willow light
#

I like to spend time with my cat.

willow light
fast saffron
#

Can't talk but can type

willow light
#

I mean you have to fry on both sides.

vocal basin
willow light
#

I am working on finding a way to cook it in a wok or a cast iron.

rugged root
fast saffron
#

Who's making pasta

gentle flint
scarlet halo
#

dude the nvidia 353 driver is much better than 550

willow light
#

This mouthwatering recipe has been a hit with our dinner guests for years, and it was lovingly passed down to us by our dear friend, Josephine Schininá Lissandrello. My husband Howard and our granddogs Pupcake and Pom Pom are featured in today's video!

Ingredients:
Non-stick spray for the pans
2-3 eggplants, sliced
Coarse salt (as needed)
Veget...

▶ Play video
#

It will fall apart if you spatula it.

#

I've tried.

fast saffron
gentle flint
willow light
#

I use the frittata pan because I got it at Costco for cheap.

gentle flint
#

with mushroom sauce

scarlet halo
#

@rugged root can i stream?

fast saffron
#

Good good

stark river
#

i'm traumatized reading up on the xz-utils vulnerability
i need to bone up on my bash

fast saffron
#

Are you guys staying in call for much longer?

rugged root
#

What are you going to stream?

willow light
#

I do need to make a new batch of chicken bone broth later today.

fast saffron
#

11pm?

scarlet halo
rugged root
#

Not the scraping thing again, right?

scarlet halo
#

no

#

never again

willow light
#

I have a lot of chicken wings to boil.

scarlet halo
#

unless i forget

rugged root
fast saffron
stark river
#

we need a refactor of bash.. with readability as the primary goal

willow light
#

Just scrape your windshield instead.

willow light
rugged root
#

@upper basin Da fuq?

#

I showed you like... one or two nesting things

willow light
scarlet halo
fast saffron
#

Well then I might be here to actually speak by 9-10pm so within 2h15min

rugged root
#

You're the one abusing it

clever relic
#

some bots here

rugged root
#

@scarlet halo Give me a bit, I need to figure something out

willow light
#

Milien, you're in an area where it is cold enough that you can wear pajamas. I overheat every time.

verbal zenith
#

was I playing with you @vocal basin

stark river
#

problem is nobody is writing their install scripts / test scripts in anything other than bash

scarlet halo
vocal basin
#

I'm the only one there with >1300 elo, since not much people are playing yet

verbal zenith
willow light
urban abyss
#

@upper basin why don't you use black formatter? it styles parantheses content like this

rugged root
#

@rugged tundra Peppermint candies, tea with honey....

clever relic
#

is case id will be pk and all other keys will be foreign keys?

verbal zenith
#

I'm quite rusty at minesweeper lol

urban abyss
#

😆

rugged tundra
upper basin
#

I know, I've used it, not for me.

willow light
fast saffron
#

I also just wanna say that I recovered from my soar throat

#

Unrelated truth

willow light
#

@peak depot I have fermented ghost peppers if you want some.

vocal basin
#

there was, like, two days of unusually high traffic but now it stopped
(someone was too enthusiastic about the game so they invited everyone they could)

willow light
#

We don't get wolves here. Bears on the other hand....

rugged root
#

I have to see if I can get the office manager to do the run today

#

I have a long vendor call in my future

urban abyss
#

vendor? i hardly know her

verbal zenith
#

making a pun btw HAHAHA

willow light
vocal basin
#

java away

#

not happening either

fast saffron
#

I dont feel like goin to the gym today but I skipped yesterday's and the day before that one too, i can use some advice

rugged root
#

@scarlet halo Honestly I'm still a bit hesitant to grant it for now

scarlet halo
#

i understand

willow light
mental hare
rugged root
#

Ask me after the 15th of this month

fast saffron
scarlet halo
#

aw man

#

alr

willow light
#

When I was a kid my neighbor hated me enough that he trained his dog to attack me.

rugged root
rugged root
#

That's the only reason I'm saying that particular date

willow light
#

"Lawyer's kids don't get to live" actual quote from the guy when he was being arrested.

#

Pasta is quite illegal. Espeically the way nordic people cook it. My grandmother would break spaghetti, causing my other grandmother to throw a fiip flop at her from across the room.

willow light
civic ivy
#

im a professional hater

willow light
#

I've heard that one before.

civic ivy
#

get paid 20/h to hate

random copper
civic ivy
#

its a tough gig

#

but i get it done

willow light
#

you contradicted yourself, first you said that lawyers are animals and then you said no lawyers are animals. which one is it?

rugged root
rugged root
#

@upper basin No no, I showed you proper use

#

You did this to you

rugged root
#

@peak depot Yeah please rein it in

willow light
#

@gentle flint that's only because I'm not on voice.

rugged root
#

Let me look at it

#

That's not too bad

peak depot
upper basin
#
        # Apply the MCRY gate to the circuit at the control and target qubits
        for i in range(len(target_indices)):
            self.circuit.append(
                qml.ControlledQubitUnitary(
                    qml.RY(angle, wires=0).matrix(),
                    control_wires=control_indices,
                    wires=target_indices[i]
                )
            )
civic ivy
#

the most lyrically beautiful song, how did they come up with these amazing deep lyrics

clever relic
#

the guy got the best mentors all in vc

mental hare
willow light
#

cat pictures you say?

rugged root
#

It was the nested list comprehensions within function arguments that chained that bugged me

willow light
civic ivy
willow light
rugged root
#

I mean just anywhere that you're using list comps as arguments without assigning them to their own variable first

urban abyss
willow light
#

I can keep going, until Hemmies tells me to stop

rugged root
#

It makes it really really noisy and hard to read

#

Okay guys, seriously stop with the constant pictures

#

It makes it really really hard to actually help and talk to people in here

peak depot
rugged root
#

God damn it Milien

civic ivy
#

lmfao

stark river
#

you want dynamic pictures?

rugged root
#

I JUST DID

willow light
#

I had two cute kitties but one died of blood cancer this past summer.

rugged root
#

Literally before you sent the picture

willow light
rugged root
#

Clari, seriously

willow light
#

I did stop

rugged root
#

(although well played with the joke)

willow light
#

I'm sending them to Miliens DMs instead now

upper basin
#
# Ensure control_indices is always treated as a list
control_indices = [control_indices] if isinstance(control_indices, int) else control_indices
rugged root
#

I'm fine with questions

#

No no, that's fine

#

Ternaries are fine

#

One sec, office manager just got back

#

Or not

civic ivy
#

fr

#

fight ur office manager

#

and take his spot

#

as manager

verbal zenith
rugged root
#

Her

civic ivy
#

her spot

stark river
#

so this is a ternary in python.. i don't like it

civic ivy
#

my fault

rugged root
#

And I'd rather not be the office manager.

civic ivy
#

why is that

rugged root
#

I like being IT

upper basin
#
# Apply the MCX gate to the circuit at the control and target qubits
for i in range(len(target_indices)):
    self.circuit.append(mcx, control_indices[:] + [target_indices[i]])
rugged root
#

No that's fine

civic ivy
rugged root
#

@peak depot Hmm?

#

It's just the constant sending of them

#

That was the issue

peak depot
rugged root
#

Cats are liquid

stark river
#

you can send them in O(1)?

rugged root
#

Back later

scarlet halo
#

dude

#

whats the difference between ' ' and " " in C++?

stark river
#

" " is slower

scarlet halo
#

huh

#

how?

stark river
#

i forget the details.. it had to do with the compiler parsing

#

' ' is for single chars iirc

scarlet halo
#

well if its a string/multiple chars then " " is the way to go right?

random copper
#

sorry i just hate lawyers & police, state lizards 😄 Had me going for a minute

scarlet halo
#

is this impressive for waybar?

#

well

#

not impressive

random copper
scarlet halo
random copper
scarlet halo
#

works by using a really weird font spacing style

stark river
#

i prefer numbers percentages instead of bars

#

but that is just a personal preference

scarlet halo
#

yeah

stark river
#

i think numbers are a better indicator

scarlet halo
#

well if you hover it it shows the exact percentage

stark river
#

ok

scarlet halo
#

brb

fast saffron
#

I'm back

#

But still mute

#

And deaf

#

But I'll be back soon

#

Like in less than 2h

#

And I shall be unmute

craggy quarry
#

how im i aloud to speak in the voice chat?>

fast saffron
#

You must ask for a voice verification

#

But you have to have some requirements that are mentioned in the voice-verification channel i believe

willow light
fast saffron
stark river
#

.latex
$\infty \times 0 = -1$

viscid lagoonBOT
willow light
#

so they lied about it being fully remote on the job board. nice.

#

Like why would you advertise as fully remote, and also list the site as Portland ME, when it was actually going to be in the middle of nowhere?

stark river
#

i was once invited to an interview and the footnote in the email said something like please follow covid guidelines and wear a mask .. when i got there nobody was wearing a mask, not even the HR who sent the email... they had that footnote in their emails since forever and never bothered to check ...
turns out people who pick HR as a career are those who are failures at every thing else.. can't even get details right ...

urban abyss
#

sup

scarlet halo
#

.latex
$\infty \times 0 = -1$

viscid lagoonBOT
scarlet halo
#

damn thats interesting

#

hey

urban abyss
#

yo

deep cloak
#

yo

red cairn
#

yo

red cairn
deep cloak
#

opal how i your day buddy

#

is*

#

I can see sharp also

#

sarcasticbamboozles

#

tell him to use openai

deep cloak
#

okay do the project for him then

somber heath
#

@willow light BAD AUDIO

#

MUTE

deep cloak
#

ban that guys headset frm discord

willow light
#

well that was rude

deep cloak
#

clari you deserve no mercy