#voice-chat-text-0

1 messages ยท Page 472 of 1

vocal basin
#

Tigerbeetle

#

Tigerbeetle is insane levels of engineering

#

you'll end up in C one way or another

#

everything audio and realtime and high performance leads there

#

@wind raptor what if WASM

#

so it's in the browser

#

completely

#

don't say it's electron

#

why is this thing the first in the search

wind raptor
vocal basin
#

bing, wtf

#

I wasn't actually search anything

#

just typed nwjs in the start menu

#

it's an alternative to Electron

#

the site is almost certainly AI-generated

wind raptor
#

!stream 221417491136512010

wise cargoBOT
#

โœ… @primal shadow can now stream until <t:1748705123:f>.

vocal basin
#

I've just noticed that cursor changes when moving the Discord stream popup around

rapid jungle
#

!stream

vocal basin
#

okay you've just sold me the game

rapid jungle
#

!stream 22

vocal basin
#

bought

wind raptor
#

!stream 1258548535108964363

wise cargoBOT
#

โœ… @rapid jungle can now stream until <t:1748705479:f>.

vocal basin
#

codeberg mentioned

#

GitHub but for lesbians
(quote from homepage from 1st of April last year)

#

fuck CLI utility but โœจAIโœจ?

#

hmm

#

@rapid jungle@magic zenith seems like it's not

#

it's closed source

#

allegedly

#

who knows what they actually use

#

Zig as a C compiler for Rust is great

#

most my software targeting musl is built with Zig

vocal basin
#

~10 years

#

so, yes, very new

#

twice younger than Rust

#

same age as Rust 1.0

#

what

vocal basin
#

@magic zenith the closest language to Zig is C

#

they interoperate directly

#

@magic zenith you're only looking at syntax

#

yeah, syntax is largely irrelevant

#

(in terms of how languages are related/what they are a "mix" of)

#

JavaScript, for example, looks like Java and is named like Java only for marketing purposes

#

in its core, it's Scheme

#

and Scheme is a variant of Lisp

#

the most exotic syntax out of somewhat common somewhat sane language is Erlang imo

#

in the "a lot of oddities" kind of exotic

#

/= for not-equal

#

declaration of argument counts after /

#

and other fun stuff

#

Erlang is a very important language to interact with at some point

magic zenith
#

ohh noice

vocal basin
#

@unique wyvern what does true/false mean in that context?

#

"merge succeeded"ness?

#

@unique wyvern if you already can test it upfront, maybe raise an exception instead?

#

!e

out = False
match True:
  case out if 1 == 2:
    pass
  case _:
    pass
print(out)
wise cargoBOT
vocal basin
#

ohno

#

!e

out = True
match False:
  case _ if 1 == 2:
    pass
  case out:
    pass
print(out)
wise cargoBOT
vocal basin
#

!e

out = True
match False:
  case _ if 1 == 1:
    pass
  case out:
    pass
print(out)
wise cargoBOT
vocal basin
#

what a horror have I created

#

@unique wyvern single-return abomination:

merged = True
match False:
    case _ if ...:
        ...
    case _ if ...:
        ...
    case merged:
        pass
return merged
#

just copy the entire document each time

#

persistent data structures are fun

wind raptor
vocal basin
#

woohoo new error

vocal basin
#

๐Ÿš€ compiler bug

#

(the message is correct, but contextually irrelevant)

upper basin
#

nbval

wise loom
#

spending billions to make millions

#

same as OpenAI who would fold if it didn't raise the next funding round

vocal basin
upper basin
#

"Run our tests locally. Do this locally. Do that locally."

Their slow-ass tester taking 5 mins for a single test case.

vocal basin
#

@upper basin I waited several months for a single-line-addition PR to get merged

#

to be fair, it was real software in my case

#

@sour imp "Claude, I promise to share this bounty with you"

sour imp
#

fr lol careful though if claude dont get paid they may call the police ๐Ÿคฃ

vocal basin
wise cargoBOT
#

emulator.cpp lines 15 to 17

//The path to the keyboard and mouse (should look something like /dev/input/eventX)
char KEYBOARD_PATH[] = "<YOUR-PATH>";
char MOUSE_PATH[] = "<YOUR-PATH>";```
upper basin
#

I would not volunteer for an event when I can't commit time for it. Just a waste of everyone's time that is.

vocal basin
#

I just don't participate in events

#

easy solution

upper basin
#

I technically should have about 700 bucks now.

vocal basin
#

for how many hours of work?

upper basin
#

All PRs that I'm alone on, and close the issue properly.

upper basin
vocal basin
#

8 hours?

upper basin
#

Two days waiting for a review.

vocal basin
upper basin
#

I would have closed all 6 on the first day and would have been able to move to new ones.

upper basin
#

This one is funny.

qindex mem_tryGetLocalRamCapacityInBytes() {

    /// @todo attempt to find total Ram

    // if we're unable to find total RAM, throw an exception
    // (which the caller should catch and gracefully continue)
    throw (mem::COULD_NOT_QUERY_RAM) false;
}
#

25 bucks.

#

hehe

#

He wants to print total RAM regardless of os or compiler.

vocal basin
#

I will blindly trust this number just because it happens to be roughly the same as 700/14

upper basin
#

"My grandma used to write cpp code for accessing RAM, I miss her, so..."

vocal basin
#

idk what they mean by average

#

maybe median

#

maybe mean

#

should be median

upper basin
#

Maybe mode. Edna mode.

vocal basin
#

oh I've just come up with such a cursed overengineered idea

#

maybe_wasm!(|argument| ...)

#

generates an object that contains both the original closure and lazily evaluated WASM, if the function needs to be sent over the network

jovial merlin
#

yo wsg

vocal basin
#

and whatever Rust thing on the (potential) other side would run it

#

cursed but possible

vocal basin
#

yes

#

but for different reasons currently

#

for now, only using WASM in the browser

vocal basin
#

better dynamic loading

#

and, more importantly, unloading

#

you cannot unload a C shared object safely

#

sending an arbitrary function (e.g. filter) over the network to another service

#

specifically so that I can use Rust

#

can't load Rust dynamically in any other way

#

in any other sane way

#

in a different process/on a different machine

#

potentially useful at work

#

it's not a new idea in any way

#

edge compute is quite normal

#

similar idea to this

#

I need to execute code near where data lives

#

without having to spawn processes

#

I can just send a static binary over, I don't need docker

#

isolation is not critical here

#

given how it's expected to be a pure function

vocal basin
#

that

#

to reduce resource usage

#

I can easily use Lua, and that's what I'm going to integrate anyway

#

those are separate goals

vocal basin
#

I will allow users to run arbitrary Lua code, because I can control it

#

going to use that thing

#

I don't really need it to "call" Rust

#

it can just yield what it needs to be called

#

so Lua code remains a pure function

vocal basin
wise loom
#

Gary Marcus is a cognitive scientist, author, and longtime AI skeptic.

Gary joins Big Technology to discuss why largeโ€‘languageโ€‘model scaling is running into a wall. Tune in to hear a frank debate on the limits of โ€œjust add GPUs,โ€ the promise of neuroโ€‘symbolic hybrids, and what that means for the next wave of AI.

We also cover dataโ€‘...

โ–ถ Play video
lavish rover
dire saddle
#

i couldnt talk yet mb

#

my mic and message are still suppressed

astral coral
#

it works now :3

obsidian dragon
#

@peak depot

somber heath
#

@plucky swan ๐Ÿ‘‹

plucky swan
#

i cant

#

talk

#

pls guys

#

help

somber heath
#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

plucky swan
#

pls can u help

#

!voice

#

i got big issue on raspberry pi

#

can someone help

astral coral
#

whats the problem?

plucky swan
#

idk how to make an ssh file

#

to put in the sd card

#

so i cant connect headlessly

somber heath
#

@thin wasp ๐Ÿ‘‹

astral coral
#

sorry was confused for a sexc

#

errrm did you use rpi imager

peak depot
#

Zak stop lurking and join vc

plucky swan
astral coral
#

maybe connection issue with pi?

#

like to your hub

somber heath
astral coral
twin zinc
#

What do I make for international hackathon?

astral coral
#

ยฌยฌ thats on you, not the song ยฌยฌ

plucky swan
#

sorry

twin zinc
obsidian dragon
twin zinc
#

Wadafak

#

I'm eating fruits rn

astral coral
#

ZEIT!!!!!

#

Python propaganda spam because my teeth hurt

#

there

#
sour willow
#

@astral coral waddup dude

astral coral
#

yo man

somber heath
#

@karmic rain ๐Ÿ‘‹

karmic rain
vocal basin
#

@astral coral leave it like that, instant game over

somber heath
#

@remote phoenix @lucid bear ๐Ÿ‘‹

lucid bear
lucid bear
somber heath
#

@faint cove ๐Ÿ‘‹

faint cove
vocal basin
#

@peak depot well, not as long; even before humans in case of orientation

#

@somber heath water animals mostly

#

what is that non-fish fish called

#

the colourful one

somber heath
#

@worldly magnet ๐Ÿ‘‹

vocal basin
#

AI
find a more original conversation topic maybe

#

anyway, if you want to use AI to write Python, you must learn Python

#

@worldly magnet are you using EC2?

#

you can't AWS security into your app itself easily

#

ghghghghh

#

you can't "upload the website to the internet"

#

you host it somewhere

#

@worldly magnet is that a static website?

#

@worldly magnet if you want a cloud-compatible solution, outsource auth

#

just don't do it yourself

#

@worthy timber please no

#

funny joke but please no

#

@worthy timber no it's not the most secure

#

web2 is done
okay you're just trolling at this point

#

eh

#

nvm neither of them is reading

#

@worthy timber well NOW you are actually trolling

#

@worldly magnet Angular is not better at all

vocal basin
#

@worldly magnet they are trolling if you haven't noticed yet

#

side note: you can run React server-side

#

@worldly magnet ASP.NET is the main C# web framework

#

ASP.NET is way more spaghetti code than FastAPI

#

@worthy timber you sure are managing to output a high-concentration bullshit

#

most of the banks use COBOL

#

@worldly magnet NEVER ORACLE

#

NEVER

#

absolutely no

#

@worldly magnet I only unmuted to stop the active misinformation

#

if you want a simple route, just Next.js or Remix

vocal basin
#

well it technically died when I allowed Discord access to mic

vocal basin
#

or any other corporate alternatives

#

browser does not "read" index.php, the server does

#

@worldly magnet if you are unsure about security and want to rely on a "template", then don't do anything that relies on security

#

either learn or don't

#

anyway, I'm done with this because it's going nowhere

bleak pine
#

Holy words

vocal basin
#

eh

upper basin
#

I have never seen someone say "You need to know machine code." For a general dev

jovial dirge
#

@versed heath Hey there I know the basics of python and also I know a basics of HTMLCSS and learning JS though I learned it before but practicing right now I also know the basics of C programming but the problem is I'm not understanding that which place it will drive me to I mean are there any different sectors in this computer science engineering . Currently 19 years old watching youtube projects but cant write code alone

#

I am watching tech with tim 9 hours python projects understanding logics but though improved a bit but some loops are devastating @versed heath

somber heath
#

@thorn wigeon ๐Ÿ‘‹

vocal basin
#

and sleep more

#

don't try to take in all the information at once

jovial dirge
#

@versed heath I will not gonna say i cant but in deep logics for loops it becomes tough but understanding the logics though and getting help from AI

#

yeah

#

stucked took help from AI

#

like some rock paper scissor games and made a portfolio using html css

#

nah rock paper was good but other mini python projects

vocal basin
#

every now and then instead of asking help from AI try to figure out the explanation yourself, derived from the documentation of whatever you're working with

jovial dirge
#

stack overflow?

vocal basin
#

if you don't know where the documentation is, you can ask AI just to point you there instead of asking for explanation

#

also avoid w3schools at all costs

somber heath
#

@wraith jetty ๐Ÿ‘‹

vocal basin
#

stack overflow at least has humans writing answers/comments

#

stackoverflow, stackexchange, serverfault, askubuntu

#

I don't remember which else are part of that company

upper basin
#

No. He means AF.

#

I haven't interacted with Mehrad.

vocal basin
#

I wonder if they're paying the trademark fee

#

how is this a serverfault question

#

Kotlin

upper basin
#

Iran mainly uses Android.

#

Not really a diverse ecosystem.

vocal basin
#

idk what the current US position is on "exporting" Android Studio

#

idk if you can download it directly

#

I'm in a place that US has export restrictions on too, but I think I can just download Android Studio as is

#

ah, wait, nvm, not anymore

#

correction: I could download it a few months ago

#

in Russia

#

oh, wait, it's back

#

had to sign in

#

womp womp

vocal basin
#

if Android Studio shows up, then try installing it

#

wait what Rider now has a Community-ish version

#

@worthy timber it's not Gradle that's blocking, it's the underlying specific Maven repositories

#

seems like

#

you need to locally download all the dependencies from some side channel

#

e.g. GitHub if you have access to that

#

a lot of mathematics I've learned in school and university ended up being useful for programming

#

set theory is great

#

make your own projects

#

it will speed up learning

#

@worthy timber important part of school is interaction with other students

#

I don't specialise in any specific software field either

#

but that seems to be a rare case for people who actually work

#

I'm content with however much I earn

#

I don't have that many reasons to spend

#

okay

coral drift
#

why is the logo colorful

somber heath
#

It's one of my favourite months of the year here. Also one of the somewhat more stressful, but eh.

#

Stressful in that we have to deal with people's garbage opinions.

#

Favourite in that we get to see the garbage taken out.

austere hornet
#

i saw that too

vocal basin
#

almost 500 lines for a single type

#

I have achieved true Enterprise Engineering

tidal wadi
#

@ mehrad hey

somber heath
#

Hi hi.

#

Naturally.

#

@hasty kindle๐Ÿ‘‹

#

@robust marsh๐Ÿ‘‹

robust marsh
somber heath
#

Reading what is politely referred to as a visual novel.

#

Hi hi.

#

I remember when it was all hissing and antipathy,

#

@wooden oracle๐Ÿ‘‹

wooden oracle
#

hi

somber heath
#

With annoyance and zoomies?

woeful blaze
#

?

somber heath
#

Cats.

#

Hey, Krys.

#

It's that month again. ๐Ÿ˜„

woeful blaze
#

hello

somber heath
#

There's already been a few.

#

Hey AF.

vocal basin
#

"another" being only second so far

somber heath
#

The one I'm reading at the moment is +99 Reinforced Wooden Stick.

#

I've laughed out loud on several occasions.

#

It also goes full Junji Ito.

#

It's amazing.

vocal basin
#

it has no key for that

somber heath
#

Emotional gut punch? Emotional gut punch.

vocal basin
#

so I bound it so that fn+' writes it

#

or rather shift+fn+'

#

just fn+' writes a `

somber heath
#

I saw someone mention today that they'd bound their escape key to caps lock...or something.

#

Sounded a bit weird to me.

vocal basin
#

caps lock being a second escape is not new to me

somber heath
#

@naive oasis๐Ÿ‘‹

vocal basin
#

I've hear that before

#

I have caps lock disabled on both keyboard

somber heath
#

Maybe it was that.

vocal basin
#

somewhat old piece of technology

somber heath
#

vim?

vocal basin
#

yes

#

vi/vim/neovim

primal shadow
#

OOps

#

wrong chat

#

hmm... I'm lost

somber heath
#

Wherever you are, you are there.

#

If you find yourself somewhere you are not, you may have encountered a problem.

vocal basin
somber heath
#

@golden crane๐Ÿ‘‹

golden crane
vocal basin
#

AI should only be used for alerts/analytics, never direct action, when comes to moderation

#

however unclear alerts are something that has potential toll

somber heath
#

Outside of select circumstances. There are cases where you can have autobans/mutes/message deletes. But as a general idea, yes, automoderation is not a good idea.

vocal basin
#

as to not have to look through entire message history of a user

granite shore
#

why there lgbtq ?

somber heath
#

Maybe not autobans, but automutes, certainly.

vocal basin
#

Discord itself has auto-bans but idk if they're visible to the server moderation

tawdry crow
#

Hello there!

somber heath
#

The same recipe that makes non-queer people makes queer people.

#

Like pancake batter.

#

Thrown against a wall.

#

Although if you find a pancake batter that actually sticks completely to the wall without it dripping off from it, you may have the recipe wrong, to be honest.

vocal basin
#

as for branding we can now say "because the Pope declared as such" given Stel is now a director

vocal basin
vocal basin
somber heath
#

Well, I'll probably have some form of RSI after scrolling so much.

#

Plus my bum is probably a little sore from being sat on so much.

vocal basin
#

there are no methods

#

just data

#

something like this, except way more complex

enum Command {
    Set {
        key: String,
        value: String,
    },
    Get {
        key: String,
    },
}
iron geyser
#

Hello oh I love the colors this Pride month. We in France have gaypride in different cities ๐Ÿฅฐ

vocal basin
#

does the bot recognise different words I wonder pithink

vocal basin
vocal basin
#

but we do have flag_lesbian

iron geyser
vocal basin
#

id how many fields

#

I can probably count

#

332 total

#

@astral coral reef?

cobalt vortex
#

hi ๐Ÿ‘‹

astral coral
cobalt vortex
#

hi @somber heath

#

remember me ? i am aarul

#

i just changed my name ๐Ÿ˜„

somber heath
#

So noted.

cobalt vortex
#

does pride month still exist

vocal basin
#

lmao the bot

cobalt vortex
#

just asking no offense

#

i thought that under trump it got removed from calender

vocal basin
#

Trump can't make a year be 335 days long

#

that's not how reality works

peak depot
#

How could he remove something that happens all around the world?

cobalt vortex
#

yeh i "heard" that it got removed from calender

peak depot
#

He still not control the whole worlds calendars

cobalt vortex
#

like google calender

peak depot
#

Google is not the whole world

cobalt vortex
#

i mean technically not the whole world

#

many south asian countries dont follow and dont even know what pride month is

#

i mean u could also say that the west is not the whole world

vocal basin
#

is Russia part of the "West"?

cobalt vortex
#

i did not meant that way but it is something tha is very unknown to many around the world

cobalt vortex
#

but i dont mean any offense

vocal basin
#

you mean the Russian government

cobalt vortex
#

nah i just dont want to be seen as a homophobe and be discriminated

cobalt vortex
vocal basin
#

pride month is a very existent thing inside Russia

cobalt vortex
#

i mean i see many people here support pride so i dont want the one to be against or with anything

#

what is the history of pride

candid spire
vocal basin
peak depot
#

Stonewall

cobalt vortex
#

so it all started from a gay bar ๐Ÿ˜ญ ๐Ÿ™

somber heath
#

We have snow themes in Australia at Christmas.

#

It doesn't seem weird.

cobalt vortex
somber heath
#

A little incongruous if you think about it, sure.

#

Plus the warm Santa hats and outfits.

candid spire
# cobalt vortex very true

You'd be surprised to know but India has the highest population of Trans and Gay people.
Because of the sheer size of India , estimates suggest 10% of Indian identity as LGBTQ+

candid spire
#

Unfortunately for him

cobalt vortex
#

nah bruh i live in india

#

it is sill known as a menal illness here

candid spire
candid spire
cobalt vortex
candid spire
cobalt vortex
vocal basin
#

<@&831776746206265384> VC

candid spire
#

He is definitely mentally ill?

cobalt vortex
#

wtf ๐Ÿ˜ญ

cobalt vortex
#

๐Ÿฟ

candid spire
#

Some topics are sensitive but it was rude to say such a thing to anyone

whole rover
#

what's up?

astral coral
#

its fine

vocal basin
somber heath
#

Honestly, I'm not exactly sure.

vocal basin
#

(Fisher was in VC towards the end, if you need to write down, ask him)

#

@astral coral "acting strong over being strong"

candid spire
#

Take your time

vocal basin
#

so by doing the exact opposite, yeah, it ends up even looking the opposite

candid spire
#

Politics is a sensitive topic.

#

For some it is religion

cobalt vortex
#

@candid spire just asking are u a studetn?

somber heath
#

@pastel summit ๐Ÿ‘‹

candid spire
cobalt vortex
candid spire
#

Never been to college

cobalt vortex
candid spire
cobalt vortex
#

damn

astral coral
cobalt vortex
#

how old are u

candid spire
somber heath
#

@jovial merlin ๐Ÿ‘‹

cobalt vortex
jovial merlin
somber heath
#

I too, see. Until I close my eyes. Then I do not see. Unless you count the noise.

whole bear
#

hello

jovial merlin
whole bear
jovial merlin
#

dark red most of the time

#

yh yh

cobalt vortex
#

@astral coral not me closing my eyes to check ๐Ÿ˜ญ

vocal basin
#

my brain thinks of it more like "no colour"

jovial merlin
#

if i try i can make it yellow its weird

#

then patches of blue aswell idk

cobalt vortex
#

@jovial merlin damn

vocal basin
#

I used to feel like it's black/dar red/red/white depending on circumstances

somber heath
jovial merlin
vocal basin
#

but now it's just that I don't even think of it as a colour

cobalt vortex
#

i see blck and red under light

jovial merlin
#

but yea if i dont do anything weird just dark red

cobalt vortex
#

@astral coral where are u getting these from ?

jovial merlin
#

the voice verification reqs are wild ngl

vocal basin
jovial merlin
#

@astral coral you good?

wild wing
#

I am not sure about his eyes but Every time he closes his mouthโ€ฆ I swear I can hear angels sing. Silence really is golden."

wild wing
#

You know that

cobalt vortex
#

๐Ÿฟ

somber heath
#

@obsidian jewel ๐Ÿ‘‹

obsidian jewel
vocal basin
#

"you know that when you look up mentions: ... in the search and the only thing that comes up is about inheritance, something is definitely off"

somber heath
#

@cloud root ๐Ÿ‘‹

astral coral
#

NYANNYANNYAN

primal shadow
cobalt vortex
#

i dont know why is just shared that ๐Ÿ˜ญ ๐Ÿ™

wild wing
#

In India, we donโ€™t argue โ€” we get served by your American servers daily. While you bark like dogs, weโ€™re busy running the world with desi swag.๐Ÿ˜Ž๐Ÿถ๐Ÿ’ป

jovial merlin
wild wing
#

And servent also

candid spire
#

Idk, why does he act like that?

cobalt vortex
#

WOAHHH

jovial merlin
#

@primal shadow werent you just mad at him for being controversial

#

also you just said ignore him and your the only one interacting with him and beefing

candid spire
#

I think this guy has no respect

#

Please kick him out

jovial merlin
#

no you just starting arguing, not getting clarity

cobalt vortex
jovial merlin
cobalt vortex
#

@primal shadow u didnt had to defame any country or leader

#

u just said it

jovial merlin
#

bro @primal shadow its ragebait, its not that deep bro

cobalt vortex
#

@peak depot now what

#

i guess that is just the policy now

#

and isnt that just being counted as racism @peak depot

jovial merlin
#

yea but like

#

its just that everyone has different views on it

candid spire
#

@primal shadow He is delusional, he was mocking you because of stereotypes he have about you and American and consider you no equal to him.

I am aware of his intentions, he is definitely trying to get in trouble and being sadist out of boredom or something has happened bad with him.

jovial merlin
#

thats why people dont bring it up i guess

cobalt vortex
#

bruh

jovial merlin
#

bro but @primal shadow why is this getting so political

#

i mean its not all you of course the other guy brought it up too

#

but its a python server

#

its because we just wanna chill and code

#

not get into a debate

#

nah im not free to bc reqs are loads to speak

vocal basin
jovial merlin
#

alr ig

wild wing
cobalt vortex
#

@primal shadow i am not here to talk any politics because all of them are piece of shits

wild wing
#

And you saying you chill and code

#

There Alawlwys you guys do shiit

somber heath
#

!voice

wise cargoBOT
#
Voice verification

Canโ€™t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

jovial merlin
#

@somber heath i know the criteria but like

#

i havent been here 3 days so thats what im doing

wild wing
#

When I ask sometimes relevant they fucked uppp

jovial merlin
#

alr ig @primal shadow

vocal basin
cobalt vortex
#

@primal shadow bringing politics will bring nothing but conflicts

wild wing
#

I am not afraid of it

jovial merlin
primal shadow
#

I like to discuss and educate ๐Ÿ™‚

wild wing
#

I must shit on yours mouth without hesitate

cobalt vortex
primal shadow
cobalt vortex
#

@somber heath what does it solve

primal shadow
#

Not to kink shame, but... you know

vocal basin
cobalt vortex
#

what does it make easier in day to day life

wild wing
#

They do politics first opalmist I came here to learn something

primal shadow
#

You left the voice chat and you're still going on

#

I dfon't get it

wild wing
#

But they do shit always

primal shadow
#

I thought it was over

cobalt vortex
#

dont continue

jovial merlin
#

fair enough im just not used to that in discord vcs ig

cobalt vortex
#

@somber heath ok so pride means opening of opinions right?

wild wing
astral coral
#

pride

hidden flower
#

!ban 1236572827251904533 Not civil

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @wild wing permanently.

astral coral
#

yay I got arainbow flag >:3

vocal basin
#

hi Vivek

hidden flower
#

I was typing an actual ban message but then they went from a 100 to 10000

somber heath
candid spire
somber heath
#

The parable of the Nazi bar applies.

cobalt vortex
cobalt vortex
#

@somber heath talking happens between two open mind

#

but politics is something mostly approached with closed minds and opinions

#

that is why it leads to nothing

somber heath
#

"If you open your mind too much, your brain will fall out."

somber heath
cobalt vortex
jovial merlin
#

wait so @primal shadow are you right wing or left wing i kinda fased out

astral coral
primal shadow
#

lol

somber heath
cobalt vortex
#

@somber heath i respect u a lot because u tought me many things but in terms of politics i dont agree

jovial merlin
#

idk

#

like half listening in

#

yk what i mean

vocal basin
jovial merlin
#

i see

#

so left wing

candid spire
cobalt vortex
#

discussing politics in a PYTHON server isnt going to save people live instead destroys people energy

primal shadow
vocal basin
cobalt vortex
vocal basin
cobalt vortex
candid spire
#

I do know politics is sensitive and for some it is religion.
But one should not misbehave and act inhuman, especially in off topic room

stuck furnace
#

Hey, muted people are people too ๐Ÿ˜”

somber heath
vocal basin
cobalt vortex
#

@primal shadow i get what u are saying regarding the other one

jovial merlin
cobalt vortex
#

@primal shadow its not ur fucking business whether i speak or not

vocal basin
cobalt vortex
#

there is a reason why there is a text channel for a vc

vocal basin
stuck furnace
astral coral
jovial merlin
astral coral
vocal basin
#

I have the most legitimate reason to keep myself muted:
unmuting breaks audio output

#

Firefox just how

stuck furnace
#

The actor who plays Dewey also left acting I think?

astral coral
#

yeee he did

vocal basin
#

```

astral coral
#

!e import random

wise cargoBOT
vocal basin
#

@wise loom the code analyser?

astral coral
#

!e import random python_discord = ["Zak", "Milien", "bigfootcancode", "_426", "LX", "OpalMist"] for i in python_discord: python_judged = random.choice(["Haram", "Halal"]) print(f"{i} is {python_judged} ")

wise cargoBOT
vocal basin
#

I've had to deal with infer before

stuck furnace
#

!stream 221417491136512010 30M

wise cargoBOT
#

โœ… @primal shadow can now stream until <t:1748798120:f>.

jovial merlin
#

can i have streaming perms lx?

stuck furnace
cobalt vortex
#

dam

sweet agate
#

Hey opal mist please pay me bro i fucked you mother bro

jovial merlin
sweet agate
#

Where are you

#

???

stuck furnace
#

!mute 1378773634554003569

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @sweet agate until <t:1748799958:f> (1 hour).

jovial merlin
#

im making pong :0

candid spire
astral coral
#

can I have streaming perms ๐Ÿฅน

candid spire
#

Insane

vocal basin
#

!e """print(f'{1 + 2 = }')"""
exec(doc)

wise cargoBOT
vocal basin
#

@somber heath @astral coral

astral coral
#

yeeeee?

jovial merlin
#

opalmist was timed out @vocal basin

stuck furnace
#

Sorry one sec dealing with something

#

Ohhh ok ๐Ÿ˜„

somber heath
peak depot
#

read the name, once more

cobalt vortex
#

wtf is that

jovial merlin
#

oh my bad

cobalt vortex
#

@somber heath do u know him?

jovial merlin
#

but yea lx can i have streaming perms?

candid spire
#

Got banned and made a new one

#

Just for this

somber heath
wise loom
#

@vocal basin snippet from my notes


Interesting static analyzers:
   * https://github.com/honeycombio/gritql
   * https://github.com/semgrep/semgrep
   * https://github.com/facebook/infer
   * https://github.com/qundao/mirror-mergiraf
cobalt vortex
#

feels like i am missing the plot

peak depot
cobalt vortex
candid spire
astral coral
jovial merlin
vocal basin
#

weekend

stuck furnace
stark oxide
#

it's a nor gate

#

and I have not and nand

vocal basin
#

nvm I realised that my question was wrong

#

it would make sense for NOR to NOT conversion

stuck furnace
#

Oh, would you still like streaming permissions?

#

Or is your issue resolved?

#

Ah ok

#

!stream 862284694497263636 30M

wise cargoBOT
#

โœ… @stark oxide can now stream until <t:1748799054:f>.

jovial merlin
#

if i can could i get some too?

astral coral
#

me too pwease

jovial merlin
#

im just wanting to stream what im coding idk

stuck furnace
#

That's a Zachtronics game right?

jovial merlin
#

oh alr, i guess i cant get stream perms then

cobalt vortex
jovial merlin
#

i do have all the reqs for talking appart from the 3 days thing

#

just waiting on that ig

cobalt vortex
primal shadow
jovial merlin
jovial merlin
cobalt vortex
#

what does swc mean

astral coral
stuck furnace
#

What logic gate are you trying to make?

stark oxide
#

NOR gate

stuck furnace
#

Yeah I'm blind, I looked at the bottom

#

Oh and the top lemon_sweat

stark oxide
#

np

shadow shale
#

what is the game called? :)

stuck furnace
#

I think DeMorgan's law could help here ๐Ÿค”

#

Back in a min

somber heath
#

@gray bough ๐Ÿ‘‹

gray bough
whole rover
#

!stream 1319370380078743584

wise cargoBOT
#

โœ… @jovial merlin can now stream until <t:1748798411:f>.

cobalt vortex
#

@jovial merlinnice

stuck furnace
#

Ah you've done it @stark oxide

whole rover
#

@stark oxide game name pls

stuck furnace
#

@stark oxide I find with these things, try to express it in plain language

#

Yeah, what fkorstyzz said

shadow shale
stuck furnace
#

So before, when you were tryin to implement NOR, you could have first implemented OR which is "not neither".

whole rover
#

awh i can't get it on this machine then

#

sadge

somber heath
#

@restive hemlock ๐Ÿ‘‹

stuck furnace
#

I xor this one before

somber heath
stark oxide
peak depot
#

Joe and LX, I know they dont pay you guys so here is some cats

primal shadow
stuck furnace
#

Did you guys ever use Karnaugh maps?

shadow shale
whole rover
stuck furnace
#

Oh, did you go down more of an EE route then?

#

Yeah ๐Ÿ˜„

#

Fair enough

jovial merlin
#

what is like a super basic app i could try making in qt

stuck furnace
#

It's not full stack unless you're using a soldering iron

stuck furnace
#

Kind of boring sorry ๐Ÿ˜„

jovial merlin
#

nah not boring

#

just a bit more complex than what im thinking yk

whole rover
#

test rig

jovial merlin
whole rover
#

19 relays to test insulation resistance in a 19 core socapex cable

stuck furnace
#

Cya @peak depot ๐Ÿ‘‹

#

Oh I hadn't even noticed it's June

stark oxide
#

it's the first day so not bad

jovial merlin
#

wait how did i find this discord then?

#

i forgot lol

#

i thought it was discovery lol

stark oxide
#

yeah

#

it's on there

stuck furnace
jovial merlin
#

isnt that discovery?

whole rover
jovial merlin
#

like the search for servers on discord

stark oxide
#

or if you want educational it's also there

jovial merlin
#

that like only servers that have over 1k can go on

stuck furnace
#

Covid was 2020 I think ๐Ÿค”

jovial merlin
jovial merlin
stuck furnace
jovial merlin
#

alr

#

brb

vocal basin
# whole rover

I do find it funny that there is 57 and 179 consecutively but that's way too much of an in-joke

#

#define PI 179/57

astral coral
#

I really wouldn't do well in a dark cave ยฌยฌ

jovial merlin
#

do i get voice perms toomorow or is it the day after?

#

like does the day i joined count as one of the days in the 3

astral coral
#

type !user in bot channel

wise cargoBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

astral coral
#

day after tomorrow

whole rover
#

it is 3 days exactly to the timestamp that you joined

jovial merlin
astral coral
#

yeah, soz bud

jovial merlin
#

@whole rover why is it so much reqs btw

#

was people like spam joining or smth

stuck furnace
jovial merlin
#

fair enough

stuck furnace
#

People joining and screaming and that sort of thing

jovial merlin
#

what the....

#

they might need to get checked up at the doctor ngl

astral coral
#

please don't pull the trigger @whole rover ; _ ;

jovial merlin
#

@primal shadow fr?

stuck furnace
#

And some servers do have specific rules that might trip you up

#

Like, spambot honeypot channels ๐Ÿ˜„

whole rover
#

i zoned out

#

why am i pulling the trigger

astral coral
#

fkorstyzz said "it's not like any mod has a gun to your head" (context the voice chat requirements being moaned about) I said you because it could be plausible since you also live in the UK

whole rover
#

ah lol

terse needle
#

I made it through my first year at uon @whole rover ๐Ÿ˜

astral coral
#

god I wanna drill this part of my brain

jovial merlin
#

crazy

whole rover
#

you are ECE right @terse needle ?

terse needle
whole rover
#

hahahaha i have a lot of friends in EE

terse needle
#

it was a hard choice but honestly it was right for me

terse needle
whole rover
#

my friend has just finished up second year of the MEng program

#

hmmm i do not

#

I know a great man called Isaac and a guy who graduated last year called Nick

terse needle
#

oh, I know quite a few of Second and Third years because I do a lot at Formula Student

whole rover
#

oh uhhh

#

i know a guy called Luke that does Formula Student

terse needle
#

is he a foundation year?

whole rover
#

very potentially let me see

stuck furnace
terse needle
#

I didn't know you were still at uon I thought you would have left by now

whole rover
#

very potentially yes

#

nah lol 4 years

#

took my 3rd year out but stayed around nottingham doing research

terse needle
#

oh ๐Ÿ˜‚ different guy

whole rover
#

so just finished my exams

terse needle
#

I like Jubilee so much but I confined to Coates all of the time

whole rover
#

my condolences

terse needle
#

bloody C25

whole rover
#

isn't there like

#

a gas leak over there right now

terse needle
#

yes

#

It's been quite annoying

#

I'm not quite done with exams

#

I have a viva tomorrow and a presentation on Friday

#

so kinda done

whole rover
#

oh yeah that's right my friend has his second year viva at some point or has had something recently

whole rover
terse needle
#

hallward supremacy

whole rover
#

i was big on hallward first year because I was in derby hall

#

but second year onwards i just realised that the computer science building is better in every way lol

#

performant PCs and guaranteed space

terse needle
#

I'm in Rutland so it's just a walk up a hill

whole rover
#

i thought the roof was falling off Rutland

#

then again that's most buildings on campus

terse needle
#

that was last year

whole rover
#

ahh right

#

honestly my favourite campus is becoming KMC

#

it's just so weird

terse needle
#

I've had all of my lectures the past two semesters in a "large seminar room"

alpine crater
#

๐Ÿ‘‹

terse needle
#

isn't that being sold

whole rover
#

yeah :^(

#

though the current rumour is warhammer is buying it and leasing some space back to the university lol

whole rover
terse needle
#

oh fair enough

#

I forgot warhammer was based in notts

#

although you see it on the tram

#

it's pretty cool

whole rover
#

yeah their whole complex is crazy

#

we got a tour of it and then got a tour of the power station in one day lol

#

weird day

terse needle
#

that really cool

#

Would love a tour around the power station

whole rover
#

is your degree programme one where you don't get any optionals until like year 3

terse needle
#

yes.

whole rover
#

hahahahaha

#

rip

vocal kite
#

@jovial merlin can i know what software/editor you are using to edit

terse needle
#

I've toyed with the idea of picking some CS modules in third year. I think I would enjoy it but not sure if it is worth it for my degree

#

vc1 @whole rover

jovial merlin
#

theres a windows build made by community but rn its only officialy on linux and mac

jovial merlin
vocal kite
jovial merlin
#

are you on windows, linux or mac?

#

@versed heath i wouldent learn programming at school tbh

stark oxide
#

@versed heath your internet IS realy BAD

stark oxide
#

I want to learn of a course and not school but can't find a good course or site to learn from?

#

@jovial merlin

jovial merlin
#

but my advice is just start coding tbh

#

if you dont know how to do something your wanting to do in whatever programming language just look it up

amber raptor
#

Don't spend money on learning coding, the entry level market bottom has dropped out

stark oxide
alpine crater
#

I got told off for using regex once on a test

#

idk what you are gonna ask, but rust /s

stark oxide
#

what programming langauge is the best for ethical hacker or micro services?

#

or is it user specific?

astral coral
#

hey @stuck furnace wanna see the crappy Python propaganda I made?

stark oxide
#

zak are you dutch?

astral coral
#

no, british

amber raptor
alpine crater
#

Mint

astral coral
#

@stark oxide

stark oxide
#

THAT'S A ME LUIGI

astral coral
#

โค๏ธ

stark oxide
#

Not mario that's my stupid little brother

astral coral
#

:L

vocal basin
astral coral
alpine crater
vocal basin
alpine crater
#

this is how I define my big enum ```rust
define_pseudo_class!(
active, autofill, checked, default, defined, disabled, empty, enabled, first, focus,
hover, indeterminate, invalid, link, modal, optional, required, root, scope, target,
valid, visited;

AnyLink => "any-link",
FirstChild => "first-child", FirstOfType => "first-of-type",
FocusVisible => "focus-visible", FocusWithin => "focus-within",
InRange => "in-range", OutOfRange => "out-of-range",
LastChild => "last-child", LastOfType => "last-of-type",
OnlyChild => "only-child", OnlyOfType => "only-of-type",
PlaceholderShown => "placeholder-shown", PopoverOpen => "popover-open",
ReadOnly => "read-only", ReadWrite => "read-write",
UserInvalid => "user-invalid", UserValid => "user-valid";

Dir(Direction): Dir(dir) => format!("dir({})", dir.short()), "dir";
Lang(&'static str): Lang(lang) => format!("lang({lang})"), "lang";
NthChild(NthArgument): NthChild(arg) => format!("nth-child({})", arg.into_css()), "nth-child";
NthLastChild(NthArgument): NthLastChild(arg) => format!("nth-last-child({})", arg.into_css()), "nth-last-child";
NthLastOfType(NthArgument): NthLastOfType(arg) => format!("nth-last-of-type({})", arg.into_css()), "nth-last-of-type";
NthOfType(NthArgument): NthOfType(arg) => format!("nth-of-type({})", arg.into_css()), "nth-of-type";

);

vocal basin
#

maybe later will go through macros

#

I kind of need to control how it gets serde'd

#

field by field

alpine crater
#

oh god, well good luck

vocal basin
#

small database project already grew to 30'000 lines

stuck furnace
#

@primal shadow I've got to go ๐Ÿ‘‹

#

Which means you may have to end your stream sorry

#

๐Ÿ‘€

#

Well, yeah ๐Ÿ˜„

#

If you ask Hemlock when he's around I'm sure he'll grant you the streaming role

#

Yeah fair enough

#

Anyway, cya ๐Ÿ‘‹

vocal basin
#

so for now I'm okay with quite a lot of duplicate code

alpine crater
vocal basin
#

I have some other project which has something like 12 derive macros

#

but those are relatively easy generally

alpine crater
#

AS1100K/pastey#14

alpine crater
#

really strange one as well, no clue why it happens

vocal basin
alpine crater
#

this project has a 364 line deerive macro

#

tho I think I can clean this up a bit

vocal basin
#

type system bugs as in rustc bugs

#

but I found workarounds

#

for example, Rust sometimes erroneously assumes that two types are same

#

so I just made a hacky Thing<T, const N: usize> wrapper to force it not to

#

it just increments N for each field

alpine crater
#

brb

vocal basin
#

I'm seriously considering using typetag more extensively

#

might be an actual sane idea

gusty oriole
#

Hello!

alpine crater
#

and back

vocal kite
tulip gyro
haughty pier
tulip gyro