#voice-chat-text-0

1 messages · Page 270 of 1

whole bear
#

yp

#

?

rugged root
#

English only server, folks

eager spruce
#

.

whole bear
haughty sonnet
whole bear
#

ya

haughty sonnet
#

i got offended (personal opinion)

rugged root
#

Sorry to hear that. But it is rule 4 of the server.

#

!rule 4

wise cargoBOT
#

4. Use English to the best of your ability. Be polite if someone speaks English imperfectly.

whole bear
#

xd

eager spruce
#

xd

whole bear
#

chienes >

haughty sonnet
#

saudi >

eager spruce
whole bear
#

bro stop

#

come privet call

#

i want to show u somthing

gentle flint
#
#

@upper basin

frozen owl
#

ooh scratch programming :D

#

so nostalgic

whole bear
#

thats extremely vague

stuck furnace
#

There's also a programming langauge called "Scratch"

frozen owl
#

i like that

stuck furnace
#

It's an educational language

whole bear
#

im writing a compiler for that

frozen owl
#

block programming was my life back then

stuck furnace
#

You drag blocks around

frozen owl
frozen owl
#

im young af

#

grew up programming in scratch block programming

#

dragging stuff around :D

whole bear
#

same

frozen owl
stuck furnace
#

There's the official tutorial

#

I just like the animal drawings

#

Not to be that guy, but does anyone have experience dealing with HID devices on Windows? 😄

#

I need to send a "feature report" to my keyboard to disable something (a slightly delay on the caps-lock key).

#

I have no idea how this guy figured this out, but I have to send the feature report 0x09 0x00 0x00 0x00 to the keyboard.

#

I managed it on Linux, but Windows seems to be having issues.

#
#include <stdio.h>
#include <stdint.h>
#include <wchar.h>
#include "hidapi.h"

int main(int argc, char *argv[]) {
    int res;
    res = hid_init();
    if (res != 0) {
        fprintf(stderr, "Failed to init hidapi library: %ls\n", hid_error(NULL));
        return 1;
    }

    hid_device *handle = hid_open(0x05AC, 0x0250, NULL);
    if (!handle) {
        fprintf(stderr, "Unable to open device: %ls\n", hid_error(NULL));
        hid_exit();
        return 2;
    }

    uint8_t buf[4] = {0x09, 0x00, 0x00, 0x00};
    res = hid_send_feature_report(handle, buf, 4);
    if (res != 4) {
        fprintf(stderr, "Expected res=4, but got res=%d: %ls\n", res, hid_error(handle));
        hid_close(handle);
        hid_exit();
        return 3;
    }

    fprintf(stdout, "Success!\n");

    hid_close(handle);
    hid_exit();
    return 0;
}
#
Expected res=4, but got res=-1: HidD_SetFeature: (0x00000001) Incorrect function.
``` :C
#

I've literally been trying to get this to work for like three hours 🥲

upper basin
#

Bye Alex! Thank you so much for the book!

stuck furnace
#

Cya @upper basin 👋

stuck furnace
#

As in, you have to hold it down for more than a certain amount of time for the keypress to register.

stark river
#

clearly you don't write sql

#

autohotkey?

stuck furnace
#

I think I'm going to give up on it, maybe get a new keyboard, before I go crazy lol

#

What's everyone up to?

stuck furnace
stark river
stuck furnace
#

Errr, in Vim you switch between normal mode (keys perform commands) and insert mode (keys type characters). To get back to normal mode you hit escape. You probably press escape like once every 5 seconds on average.

stark river
#

i bind jj to escape

pure crane
#

ctrl+[

#

::

#

::

#

:w

stuck furnace
#

Hmm, I might try that thanks!

pure crane
#

ctrl+[

#

:wq

stark river
#

there's also <C-c>

stuck furnace
#

Right

pure crane
#

:exec!

#

:

stuck furnace
#

ic

stark river
#

most people bind jj / jk to esc

stuck furnace
#

Oh right

#

Right yeah. I don't actually use Vim anymore.

#

But I still use the keybindings in vscode/pycharm/online.

#

And vimium in the browser.

#

Which is actually great if you haven't tried it! 😄

stark river
#

i use tridactyl

stuck furnace
#

Yeah essentially

#

It's an add-on for chrome/firefox

#

It's nice. E.g. you press f then type a two-digit sequence to follow any link on the page.

#

You're a bit glitchy @cerulean ridge

cerulean ridge
#

makeup

stuck furnace
#

Errrm, I'll find a screenshot

cerulean ridge
#

Sephora is a French multinational retailer of personal care and beauty products with nearly 340 brands, along with its own private label, Sephora Collection, and includes beauty products such as cosmetics, skincare, fragrance, nail color, beauty tools, body lotions, and haircare.
The company was founded in Limoges in 1969 and is currently based ...

pure crane
#

zathura

cerulean ridge
#

ooh

pure crane
#

zathura-mupdf

stuck furnace
#

So that's an example. It looks like it would be clunky to use but it's actually alright.

#

The yellow squares with the letters show up when you press f.

#

I don't understand sorry

#

Right yeah

#

Yeah, so the default commands are things like closing a tab, opening a new tab, switching tabs, scrolling, etc.

#

t is new tab, x closes the tab, X re-opens a closed tab...

#

T I think searches through your tabs.

#

/ to search the current page

#

No worries 😄

#

I think someone here recommended it to me

#

Errm, me and complex configuration do not go together lemon_sweat

stark river
#

or use qutebrowser.. with builtin vim like bindings

stuck furnace
#

I switched to Kakoune for a bit, then Helix, and now I just use vscode.

stuck furnace
#

I might check it out

#

I've got to go actually, might be back later 👋

plucky crane
#

Hello y`all

#

I am lv 0 super new to all this ( coding)

#

and i got a question , if i am afraid of running a code , for whatever reasons

#

how can i run it in a safe environment ?

#

aka i do not know what would be the outcome from the script

#

supposed to be a " Scraping-and-Dashboard-App "

stark river
# plucky crane how can i run it in a safe environment ?
freeCodeCamp.org

When developing software with Python, a basic approach is to install Python on your machine, install all your required libraries via the terminal, write all your code in a single .py file or notebook, and run your Python program in the terminal. This is a common approach for a lot

plucky crane
#

wow , thank you !

whole bear
#

yep

#

its not just memory safety

#

for example, the data structures

#

if you have a enum

#

and a match, you can be explicit and have to match all variants

#

so if you later add a variant, the compiler will scream

#

it wont even let you do out of bound access for stuff like vectors

stuck furnace
#

They're just for avoiding dependency clashes.

whole bear
#

scratch mit edu

#

i didnt make turbowarp

#

i have it

#

i just dont comfortable

#

speaking

#

yea so im making a compiler for scratch

#

rewriting from python to rust

#

no

#

scratch is a block based prog lang

#

my compiler turns text code into scratch projects

#

that too can be done

stark river
whole bear
#

i have done it for the python version

#

but its buggy

stuck furnace
#

For distribution, yes.

dusty jasper
#

yo whats up guys?

frosty garnet
#

@dusty jasper haha just rambling

dusty jasper
#

@frosty garnet im back.
just tryna learn Python

#

im in vc btw

#

i dont know anything and rn im learning IF and Else's

frosty garnet
#

@dusty jasper nice!!

dusty jasper
#

@frosty garnet how do these if and else things work?
I can hear you btw.

#

i dm'd you @frosty garnet

#

@frosty garnet a bit slower please 🙂

frosty garnet
#

.strip().lower()

#

if input("Do you run?").strip().lower() == "yes" :

dusty jasper
#

strip does'n exist in Visual studio?

#

@frosty garnet

#

you can call me alex

dusty jasper
#

see ya @whole bear

#

me @frosty garnet

#

unfortunately not @frosty garnet

sudden lance
#

No

#

🙂

willow light
somber heath
#

@slow drum 👋

somber heath
#

!e ```py
def outer():
def inner():
nonlocal v
v = 1
v = 0
inner()
print(v) #local to outer, nonlocal/enclosing to inner

outer()```

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.

1
shrewd ibex
#

wsg @lavish rover

somber heath
#

@frosty spoke 👋

shrewd ibex
#

nice talking with you @lavish rover

sweet sorrel
whole bear
#

I’m now stuck on a call.
At the EOD asking questions, verifying information, and repeating is only going to help bridge the gap from lack of understanding to proficiency. Just to support @somber heath point earlier. Using Ai as a research tool can be useful however I wish it provided me with the information that made it come up with the conclusions. 🤔

peak depot
somber heath
#

@plain raptor 👋

austere linden
#

Hello guys?

austere linden
#

Hello @peak depot, @upper basin and @somber heath 👋🏾 🙂

plain raptor
#

Hi Guys

warped raft
#

hello @somber heath and @upper basin

#

also hello @peak depot and @austere linden

peak depot
#

Hi

somber heath
upper basin
#
WHAT
Your accomplishments (The scholarly past that brings you to the current moment (classes, studies, majors, ideas, research, jobs, internships, publications, etc.)

Your goals (scholarly, professional, and humanistic), both for your time in grad school and afterward. 

What your research questions are. What issues, challenges, or problems do you hope to solve (or at least contribute to solving)?    DONE

What’s driving you? What are your stakes? Who or what else stands to benefit from your work?

WHY
Your motivations: The “why” of it all. (Why this? Why now?)

Why this program and why these professors? (The more precise, the better)

HOW
How do you plan on going about finding answers to your questions?

How will you spend your time in graduate school?

How will you take advantage of what this program and university offer (professors, classes, institutes, training, colloquia, conferences, labs, etc.)?
peak depot
#

I need to rest..

somber heath
#

@amber ether 👋

hallow warren
#

My student made https://applyTo.jobs to help people customize their resume for each job application

snow summit
#

btw if u use name you have a blue text

coarse remnant
#

hello guys @upper basin @cerulean ridge @hallow warren @azure fiber

#

damn 1 minute naps is crazy

#

So what are you guys doing

hallow warren
coarse remnant
#

lol chatgpt is too good for it to exist

#

hello @willow ruin

hallow warren
coarse remnant
#

well nice @hallow warren thoug you should try to take a nap

#

hello @grave moat

#

hello @tidal kelp

tidal kelp
coarse remnant
#

how are you doing what are you up to

upper basin
#

Metal Gear Solid V : Phantom Pain

coarse remnant
#

oh wow nice

tidal kelp
#

wbu?

whole bear
#

hey ace

coarse remnant
#

learning to code

#

in python

whole bear
#

do you play srb2

coarse remnant
#

i play last epoch

#

@upper basin i play all of metal gear solid all the way to the psp one bro

tidal kelp
#

mgr revengence had great music

whole bear
#

im afraid i cant do that

coarse remnant
#

why @whole bear

whole bear
#

space oddessy reference

coarse remnant
#

lolo

tidal kelp
#

never heard about space oddessy, i totally liked the dune discussion earlier...

#

the idea of paul as a messianic figure seemed cool

coarse remnant
#

@hallow warren try taking a nap lol this man was suppose to fall asleep lol ace don't keep him up lol

hallow warren
whole bear
#

@muted ruin if there is a free version and paid version, which one would you prefer to use?

#

@upper basin oops pinged the wrong guy

whole bear
upper basin
#

It's about using what fits your needs.

whole bear
#

would you pay for linux?

#

or vscode

upper basin
#

If I had to, I would.

whole bear
#

you said, someone could sell your open-source software and make a profit

upper basin
#

Yes, that happens all the time.

whole bear
#

no one buys their shit though

upper basin
#

Hence, why licensing your work is important.

whole bear
#

nope

upper basin
#

Well that's your opinion mate.

#

It's not the fact.

whole bear
#

they won't be able to make a profit unless they are giving something more than just re-distributing your software

upper basin
#

If that's the case, it wouldn't be because the service is "shit", it would be because there is a free counterpart.

whole bear
#

this isn't even a real issue with open-source software

upper basin
#

I am not going to argue.

whole bear
#

if you really want, just use GPL3

#

GPL3 prevents people from making closed-sourced versions

upper basin
#

No open-source license truly protects your IP.

whole bear
#

licenses don't protect IP

upper basin
#

All software can be reproduced. Only a patent can provide a meaningful protection.

whole bear
#

copyright does

upper basin
#

oh my god.

whole bear
#

you can't patent software

upper basin
#

Ok, I'm not gonna argue hehe.

whole bear
#

because you can't.

upper basin
#

You can, and people do it all the time.

whole bear
#

only in the US

#

also i dont think anything should be patented

#

it only harms the people

upper basin
#

We live in a capitalist world. People make capital by providing unique services, to maintain, and grow the service.

whole bear
#

lets say you have a patent for a product
thus no other company can manufacture that product
which means you can price it whatever the f you want and people have no choice

upper basin
#

You're talking about a different ideology, not a fact of how the world functions.

#

It's like saying, "we shouldn't pay for water, gas, and electricity. It harms the people."

whole bear
#

using open-source licenses has nothing to do with protecting IP

#

its activism

whole bear
upper basin
#

Services cost money to make and maintain. Services compete with each other, and those with original and effective ideas win. You need to protect those ideas to ensure the survival of your business.

whole bear
#

anyone can start selling gas for cheaper if they could

#

if gas was patented, only one company would be allowed to extract gas

upper basin
whole bear
#

ok and i dont want to argue with stupid

upper basin
#

Watch it.

whole bear
#

water, gas, electricity arent patented

coarse remnant
#

finally i hit 50 word AMEN

pulsar tundra
#

hi guys

rugged root
#

Damn it, have to do shred

stark river
pulsar tundra
#

yes

#

i am here but i can't speak

rugged root
cerulean ridge
rugged root
#

As soon as I can

peak depot
rugged root
#

!stream 5

wise cargoBOT
#

✅ @stone dagger can now stream until <t:1709738584:f>.

rugged root
#

!stream 425552190283972608

wise cargoBOT
#

✅ @peak depot can now stream until <t:1709738587:f>.

rugged root
#

Dude

peak depot
#

I can stream?

rugged root
#

I mean

#

I granted the perm

peak depot
#

Moment

cerulean ridge
#

this movie Låt den rätte komma in
about a grandma who looks like underage girl

rugged root
#

!stream 255420410588430337

wise cargoBOT
#

✅ @coarse remnant can now stream until <t:1709739828:f>.

stark river
#

someone suggest a lightweight minifier/bundler

rugged root
#

!stream 311739984094953472

wise cargoBOT
#

✅ @cerulean ridge can now stream until <t:1709740467:f>.

rugged root
#

@long phoenix I have some experence with Selinum. What are you wanting to know or do?

long phoenix
#

is there anyway to use selenium to access browsers opened manuallyu @rugged root

rugged root
#

That's a good question. I think in most cases it has to be done via the driver so it has to open its own browser. What're you trying to do?

whole bear
rugged root
#

Through, Though, Tough

cerulean ridge
rugged root
#

@formal plume Yo

cerulean ridge
stark river
#

i made my own keyboard layout

#

a variant of colemak

rugged root
stark river
#

it is what colemak would have been if it didn't aim to put zxcv and punctuation in the original spots

rugged root
#

God damn it, I'm doing it again

#

Co-worker is here, so Hemlock is now typing only

#

Yep, accountants can make bank

#

@cerulean ridge Wat?

#

"Your honor"

#

Jeeeeeeeesus

#

@whole bear

#

I'm only mad because I can't make a counter joke

#

Because I'm stuck typing

#

I'm so salty right now

#

@amber raptor Yo

#

@whole bear Successful business

#

That's the key

#

Just pray you have good insurance

#

True

#

Pray HEAVILY

#

Yep

#

Depends on the region

#

Low income areas

#

"Someone broke in and stole all the dryers"

#

"Fuckers took the fabric softener...."

#

Yeah yeah

#

Destruction of property

#

Or have lots of units so that you're not suffering from downtime

#

Quarters are heavy

cerulean ridge
stark river
rugged root
#

@stuck furnace Hey bud

stuck furnace
rugged root
#

@coarse remnant Heavy, take up a lot of room, annoying to process

#

Ideal situation would be to make tokens

#

But people haaaaate that

#

Yep

#

@peak depot Welcome back

peak depot
#

Can I show my way back?

rugged root
#

There's an active convo so not right now

#

"He always seemed like a calm peaceful guy"

#

@coarse remnant You are SUPER quiet now

coarse remnant
#

thanks

rugged root
#

Jesus that's scary

upper basin
#

and someone said me talking about a ps2 emulator is sketchy...

rugged root
#

Yeah I retract that. Only sketch if we're talking about acquiring the bios file or iso files

stuck furnace
#

Back in a bit 😄

peak depot
#

@rugged root now it's dark and foggy

upper basin
#

Besides, even the iso files, they're like 20 years old. It's not like those companies even sell those games anymore for you to legitimately buy/acquire.

rugged root
#

They are

#

Some of them have been re-released on modern consoles

upper basin
#

Ok no, not modern remasters.

#

No, just a game from my childhood.

#

Yeah, MGSV is great.

rugged root
#

Modern remasters mean that the games still are a grey area

upper basin
#

I stand by that proudly.

rugged root
#

@coarse remnant They re-released the Metal Gear Solid games recently

upper basin
rugged root
#

Yep

#

Yep

upper basin
#

On PS2?

rugged root
#

No no

#

Hold on

#

I'll find it

#

@upper basin Even if they're the old versions, it still counts as being sold elsewhere

#

So it's still not kosher

upper basin
upper basin
rugged root
#

Online, local retro game stores, remasters or re-releases on various consoles or even Steam

#

Like they are out there

upper basin
#

The games I play were never remastered.

rugged root
#

I'm just saying, discussing how and where to get the iso's is a grey area we don't want to touch

#

I don't think that's unreasonable

upper basin
#

Well, still, I wasn't even talking about isos.

rugged root
#

Right, and I apologize if I got on you for it

#

I'm correcting myself

upper basin
#

I was just talking about me being able to play ps2 games on my pc.

upper basin
rugged root
#

But it's what I do best

upper basin
#

What you do best is also what you do effortlessly.

rugged root
#

Pretty much yeah

upper basin
#

That's being a giga chad (in case you don't like the other term HEHEHEH).

rugged root
#

Been a while since we've had one

#

!vmute 515544701806313482 Joining voice chat just to play loud and obnoxious music is unacceptable.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice mute to @hollow sundial permanently.

rugged root
#

Yeah it really has been like... maybe a couple years since we've had a troll bother to get past the verification

#

That kind of troll anyway

hollow sundial
#

sorry i had plugged in the wrong mic

rugged root
#

If you want to appeal the mute, please send a message to the @rapid crown bot

#

Peace

#

I watched the like.... 1 hour beginning cinematic

#

You're fine

#

When you actually get to play the game?

#

Because it's like that long- @vernal bridge yo- where you don't actually get to play the game

#

There's just so many cinematics they should have just made it a video

stark river
rugged root
#

Currently futzing around with different GUI choices

#

Wanting to find a good one that's easy to install for non-programmers and cross platform

stuck furnace
#

Ello 👋

rugged root
#

Co-worker is back here and I don't want to bother them

#

Which?

#

Or self-fulfilling prophecy

#

Fair

stark river
#

man really jonesing a 🚬 rn

#

time to caffeine up

rugged root
#

@stark river You trying to quit?

stark river
rugged root
#

Better than pounding a couple packs a day

#

I don't know how people can even afford to do that

#

Later ACE

#

@vernal bridge What're you up to

#

Ooooo

#

Yeah yeah

peak depot
#

It is the season

rugged root
#

When all food tastes of cathair

#

!pypi blinker

wise cargoBOT
#

Fast, simple object-to-object and broadcast signaling

Released on <t:1698876361:D>.

rugged root
#

@uncut meteor Sup

#

Fair

#

Death by cathair would suck

peak depot
rugged root
#

Oh huh, didn't know about this one

#

!pypi requests-toolbelt

wise cargoBOT
rugged root
#

Started looking through the dependencies that pdm has

#

Facebook Meta

#

Meat-ah

vernal bridge
#

Matter

#

Meta

rugged root
#

Gotcha

#

Eh, doesn't really meta

#

I love going through project dependencies like this

stark river
rugged root
#

There are just so many that you wouldn't encounter normally

#

!pypi unearth

wise cargoBOT
#

A utility to fetch and download python packages

Released on <t:1705310224:D>.

rugged root
#

Oh for sure

#

I'm in agreement

stuck furnace
#

Hi Griff 👀

rugged root
#

!pypi shellingham

wise cargoBOT
rugged root
#

They build too big with Python

#

It'll be interesting to see how Python's backend improves

#

True

#

You can eject that OpenAPI spec to another

#

Export, not eject

#

The fuck Hemlock

#

Wait what

#

!pypi findpython

wise cargoBOT
#

A utility to find python versions on your system

Released on <t:1701923976:D>.

rugged root
#

I.... what?

#

I guess that makes sense

#

Feels weird, though

#

Necessary

#

Oh huh, that last one is also made by the PDM dev

#

So there must be a good reason for it

stuck furnace
rugged root
#

Oooooooooooooooooooooooooooooooooooooooooooo

stuck furnace
#

To make the registry changes it needs to be found by py

#

Have you used Inno Setup before? 👀

rugged root
#

No the "Ooooooo" was because I was interested in what Alex was saying

#

Oh no, English sucking is just fact

#

100%

#

And no, I haven't encountered Inno before

stuck furnace
#

Ah right

rugged root
#

Jesus, all of these websites look like they haven't changed since the mid 90's

stuck furnace
#

Probably haven't 😄

#

But it does work with Windows 11 ¯_(ツ)_/¯

rugged root
#

@vernal bridge A bastardized German language base at that

#

They were just like fuck it

#

Throw all the languages from Western Europe in the pot

#

Seems handy

#

We don't talk about French

#

Computers are female I think when it comes to languages

#

It is in Spanish at least

#

Wait

#

It's male in Spanish?

#

Computadora, I thought

#

Oh that's Spain Spanish

#

Maybe it's different in Mexican Spanish

#

Right right

#

I just didn't realize there was a difference for that word

#

@gentle flint Sup

#

!pypi filelock

wise cargoBOT
stuck furnace
#

Ah 😬

rugged root
#

Dude I always fear for you like all the time

#

You actually throwing a punch

#

Secret Jewish martial arts. Jewdo and Jewjitsu

whole bear
#

Yo

rugged root
#

Sup

whole bear
#

Pyweek

rugged root
#

Indeed

whole bear
#

Add me

#

I’m recruiting

#

@rugged root

rugged root
#

I don't have time to do it

#

It's the busiest time of the year for me

stark river
#

damn.. dark reader extension messing with my colors! i thought i was going bonkers

stuck furnace
#

Germ? pithink

rugged root
#

Jam

stuck furnace
#

Oh lol 😄

rugged root
#

(I think)

#

I mean there is wheat germ

#

And corn smut

#

Corn smut is a plant disease caused by the pathogenic fungus Ustilago maydis. One of several cereal crop pathogens called smut, the fungus forms galls on all above-ground parts of corn species such as maize and teosinte. The infected corn is edible; in Mexico, it is considered a delicacy called huitlacoche, often eaten as a filling in quesadilla...

#

Apparently people eat it

#

But like

#

Ick

stuck furnace
#

Is it just me or does this look like Quagmire from family guy?

peak depot
#

Giggidy?

rugged root
#

HA

#

It does a bit

stuck furnace
#

It compiles into an installer exe with inno

rugged root
#

I'm here

stuck furnace
#

Does anyone want to run a random .exe I send them? 😄 /jk

rugged root
#

I've had worse ideas

gentle flint
stuck furnace
#

It might corrupt your Windows registry, but just a little bit

rugged root
#

All

#

Ah yeah nah

#

Co-worker is back here

#

RIGHT?

#

I HATE that they got rid of it

#

It makes no sense

stuck furnace
#

What sorry I didn't hear?

#

Oh right, that's weird 🤔

rugged root
#

You have to tap the screen

gentle flint
rugged root
#

It's so fucking stupid

stuck furnace
#

Oh right. How many times have they re-designed the mobile app now?

#

They're like me with programming projects

rugged root
#

The latest one had so many great things

#

And then they're like "Let's now progressively make it worse again"

stuck furnace
#

Yeah anytime you re-design/re-write something from scratch you're going to get regressions

#

Cya plome 👋

rugged root
#

No no, I mean like they had a great thing with the latest one

#

Like the being able to see when people are muted or deafened.

#

And they just decided to remove that later

#

For no good reason

stuck furnace
#

¯_(ツ)_/¯

rugged root
#

It is the dumb

#

@upper basin Welcome back

upper basin
#

I would like to cry a bit if that's ok HEHEHE

upper basin
rugged root
#

It's done and gone

#

I didn't doubt you

#

That sucks

#

Yeah that is a slap in the face

#

I'm sorry bud

stuck furnace
#

Do they know it was plagiarised?

gentle flint
#

i am returned, the destroyer of waffles

rugged root
#

Did you release it on a repo?

#

With a permissive license?

#

Again, it's done and gone

#

Not sure what the next steps are there

#

Other than a lawyer?

#

But like

#

I hear ya

#

Maybe it was out of spite

#

Okay, but are you going to do more about it

#

Is there a prize or something for the jam?

#

I'm more saying, because there is a prize, it makes more sense to pursue it

#

Whether you get money for it or not

#

They don't deserve it

#

Neat

#

I'm just thinking, be the arm of Karma

stuck furnace
#

Karma without an arm is just ka

rugged root
#

HA

#

"Dear Dipshit Judges,"

stuck furnace
rugged root
#

Oooooooooooooooooooooooooo

#

Hell yeah

stuck furnace
rugged root
#

True

#

What'd I do?

#

I'll vibrate in rage for you

#

Vibrantly

stark river
#

stop being a vibrator

gentle flint
#

hemlock satisfier pro deluxe

stuck furnace
#

Getting the shaking just right was a real art 😄

rugged root
#

Oh right, you were the one that did that part

#

I remember Chris was the one who originally took the screenie

#

@upper basin Plagiarism

#

@gentle flint Actually say "theft"

#

I think "plagiarism" is more accurate

#

Plagiarized

#

It is

#

But it's more specific

#

I would just use the word plagiarize in this case rather than theft, is all I'm sayin'

stuck furnace
#

Go all in: "I was ransacked, violated, and left bereft"

rugged root
#

Hmm?

#

@peak depot What?

rugged root
peak depot
#

I came to the chat and first thing i heard was Plome yelling: shut up 😅

rugged root
#

"And I'm very hurt about this"

#

Bonk is such a good word

#

The shutup and the egg

#

Oh nice nice

#

Ovulation

#

Oh wrong egg time

#

Not very generous

#

Dude

#

The hell

#

Pick a theme

rugged root
#

They're all for the wxPython framework

#

@peak depot Nah, I don't have any involvement with the art stuff

#

I'm shit at art

upper basin
stark river
#

🤣

rugged root
#

We have theming for the seasonal stuff

stuck furnace
upper basin
#

Hemlock is like a modest Picasso.

#

Like "Agh, I suck", and then would throw out a masterpiece.

rugged root
#

EXACTLY

stuck furnace
#

Doesn't bode well if it's a GUI library 😄

upper basin
#

HAH

rugged root
#

Thankfully it's all about using native elements

warm gyro
#

yo guys i wanna share screen

#

but i cant

rugged root
#

What're you working on Georgino?

stuck furnace
warm gyro
#

python

#

a project

#

calculator

#

im a begginer

rugged root
#

I can't at the moment, I'm up and down at the office right now

warm gyro
#

no proplem

#

thanks!

stuck furnace
#

I would but I'm off to cook dinner in a minute so can't supervise

rugged root
#

We appreciate you being understanding about it

warm gyro
#

no proplem

stuck furnace
#

This sounds a bit like Total Recall 🤔

rugged root
#

I need to watch Total Recall again...

#

I need to go on an old movie binge again

#

100%, CYA = Cover Your Ass

stuck furnace
#

I was playing L.A. Noire, and now I want to watch a load of old neo noir films

rugged root
#

Ooooo

#

I picked Dying Light 2 up again

upper basin
rugged root
#

Rather than when you're hot with rage

#

You're cold and calculated

upper basin
#

OHHH

#

I see

#

Thank you very much sir

warm gyro
#

guys im making a advanced image recognition bots using python

upper basin
#

Cool!

#

You using real bots?

rugged root
#

Damn, from calculator to advanced image recognition

#

You're moving fast

upper basin
#

Like ROSbots?

upper basin
warm gyro
#

i was looking in it

stuck furnace
#

Gotta go 👋

rugged root
#

Later Alex

#

I'll be back later as well. I have to get some things ready for a delivery run

warm gyro
#

what game should i do in it 🤔

warm gyro
#

advanced image recognition bots using python

#

i cant find a game

#

piano tiles?

#

yeah

#

like?

#

im not making ai !

#

oh yeah

#

hmmm

#

maybe

upper basin
#

Try Super Mario

#

It has a small enough control system that allows the AI to learn easier.

peak depot
#

Piski

warm gyro
#

@peak depot u seem tired as hell

upper basin
# warm gyro thanks!

My pleasure! Basically, your input would be the image at every FPS, then your image recognition algorithm would output a control (left, right, up, down, jump), and that's the output sent to the controller.

#

For games like Mario, I think you can start with 30 FPS.

warm gyro
upper basin
#

You'd also have a better experience with reinforcement learning, to have it evolve a bit.

#

Your choice little bro, Mario is just a classic hehe. Piano tiles may be too easy, but that means you'll have an easier time learning as well.

warm gyro
#

ok i gtg

#

thanks for help

upper basin
#

Babye!

warm gyro
#

seeya

upper basin
#

You took these Milien?

gentle flint
#

In November 2022, the Labour-run Westminster City Council committed to replace BAME with "global majority." However, Conservative MP John Hayes remarked that the change was "deeply sinister and must be resisted at every turn."

peak depot
upper basin
#

So peaceful.

peak depot
#

If u have money 😂

upper basin
#

I would like to be a lumberjack.

peak depot
#

It's expensive here

upper basin
#

I'll make money for us.

#

Lumberjack by day, John Wick by night.

stark river
#

i live in a desert by the sea
every day is a sauna

upper basin
#

plome, your pizza ready?

gentle flint
#

just done

upper basin
#

picture please?

gentle flint
#

hang on

#

it's actually not done

upper basin
#

squeals excitedly

#

ohh

gentle flint
#

37 seconds left

upper basin
#

squeals patiently

gentle flint
#

it has too little cheese so it looks meh

#

but it smells good

peak depot
crystal fox
upper basin
#

I wish I could send you some cheese, I bought some today hehe.

gentle flint
#

thx

crystal fox
upper basin
#

plome if you like a thick pizza, you should try the persian version.

gentle flint
#

It is characterized by its thick bread and large amounts of cheese.

#

what a good idea

upper basin
#

It basically has a few layers of cold cut, beef, or chicken on the buttom above the sauce, and then it's covered by the cheese, and then you spread the mushroom, olives, corn, and bell peppers on top.

upper basin
#

That cheese pull cures depression.

gentle flint
#

fr

peak depot
upper basin
#

.
پیتزا مانو، اصفهان. خیلی پیتزاهای خوشمزه و باحالی دارن 😋 دفعه دومه داریم میایم، و دقیقا مثل سری پیش هستن 😁 همه پیتزاها تنوری و هیزمی میشن، و قیمت هاشون هم به نسبت سایز و کیفیت، خوب و ارزون بود (مخصوصا نسبت به تهران 😅) خمیرشم عالی و درجه یک و ترد و بیسکوییتی 😋 کاملا سلیقه ای هست پیتزاها، پس نمیگم از کدوم بگیرید، انتخاب با خودتون 😁 پنیرشونم خیلی...

Likes

5643

#

Plome, these are like the thin ones hehe

gentle flint
#

i require one

sweet sorrel
#

any networkers in here

upper basin
peak depot
gentle flint
#

the pizza is going fast

peak depot
gentle flint
#

Subscribe and 🔔 to Eurovision 👉 https://www.youtube.com/user/eurovision?sub_confirmation=1

Joost Klein will represent the Netherlands at the Eurovision Song Contest in Malmö with his song Europapa.

Find out more about Joost Klein: https://eurovision.tv/participant/joost-klein-2024

Joost:
https://www.tiktok.com/@joostklein
https://www.instag...

▶ Play video
peak depot
#

Machinae supremacy

upper basin
#

Muscles burn alot of calories, you should have made two HEHEHE.

gentle flint
#

I have a second

upper basin
gentle flint
#

as a roll of dough

upper basin
#

Or whatever her name is, my apologies.

gentle flint
#

might make it

#

not sure

upper basin
#

YESS

#

YESSSS

#

Make it a calzone PLEASEEE

gentle flint
#

I have no mushrooms

#

or salami

peak depot
#

Kate*

upper basin
#

bro, the guy messaged this to me "Unfortunately, the review of a project is not exclusively due to the performance of the review. Other factors are taken into account and go through several reviewers. Here are more details".

#

We literally had a scientific paper accompanied with the code.

#

It's so stupid (sorry for cursing), but how can you say performance isn't the main factor in an optimization problem?

crystal fox
upper basin
#

We literally made the state-of-the-art, I think it merits more than calling the package's prebuilt function from 2004.

peak depot
#

Machinae Supremacy is a Swedish/Finnish band that combines modern heavy metal, power metal and alternative rock with chiptunes. Self-defined as "SID metal", many of their songs use a SidStation that features the SID chip of the Commodore 64. They have released 32 original recordings for free download on their site, with approximately 100,000 dow...

crystal fox
#

Check out our new 2014 video here: http://youtu.be/ndXiBZCGUPE featuring the Hippy and one of the Gabbers..

http://www.facebook.com/thepartyanimals I Wanna Be A Hippy (this version produced by Dutch/American dj/producers duo Flamman & Abraxas) was a #1 single in 1995 in many countries and the kick-off for two offsprings: The Party Animals, whos...

▶ Play video
upper basin
#

voices of angels

upper basin
#

no no, please keep singing

#

it's comforting

#

thank you, it was lovely

peak depot
upper basin
#

plome, you ol' tease.

#

Cut the cheese (pun unintended).

crystal fox
peak depot
gentle flint
vivid cloak
#

This is my hyperbolic space ball bouncing simulator, but it doesn’t work properly. You can see that they move one way, and then back the other indefinitely, but this is not the correct behavior. It should move one way, and then approach a stopping point where it just approaches its gravity geodesic.

#

I know it’s incorrect because it always oscillates around the origin, even though there is nothing that should be unique about the origin. Even if I start it to the right, for example, and make its velocity toward the right as well, it always just oscillates around the origin

vivid cloak
warped raft
#

@upper basin hello

upper basin
#

greetings!

warped raft
#

@undone inlet hello

#

how's its going everybody

#

wrking on something

#

some project

#

nice

#

@coarse wadi👋

#

bye also

#

do anyone has any knowledge about the approach we should take towards freelancing

warped raft
#

no worries

warped raft
undone inlet
warped raft
#

@acoustic stirrup 👋

acoustic stirrup
#

@warped raft 👋

warped raft
#

how's its going to buddy

whole bear
#

koi mac user h ? coder*

somber heath
#

@timber crystal @ionic maple 👋

timber crystal
#

Hello I can't talk in the channel yet. I probably have nothing to say, though 😂

somber heath
timber crystal
#

thank you very much

#

It's about being more in the channel (3 10 mins blocks)

#

Yeah, agree

#

I'm just a newbie, so it's ok for me to listen only

#

Got it! don't worry

#

agrree

#

I would like to improve my skills with Blender Python. I'll be able to join some discussion or getting close to someone else interested in the same subject here in the server?

#

Yeah, I'm messing around with it

#

self taught, though

#

it's a 3d software

somber heath
timber crystal
#

thank you so much

karmic obsidian
#

hey @somber heath you have any experience django ?

somber heath
karmic obsidian
#

thanks I didn't know that it existed

timber crystal
#

Thank you for making it clear to me. .I'll probably can expand a bit my coding knowledge by listening to you guys

somber heath
karmic obsidian
#

hey Opal
I had some questions

timber crystal
#

👍

karmic obsidian
#

I have been coding in python for like a year now
I am in Uni
I only write scraping scripts
I use python in NLP
and some data related tasks
but again I don't feel confident OOP in python

#

even tho I know concepts of OOP

somber heath
#

Kivy.

karmic obsidian
#

I always see this "Python wrapper around the C programming language"

#

btw what are you working on Opal ?

#

oh ye I heard that you were unwell

#

what's the problem exactlyy?

#

I feel like...
the right diagnosis is very important

#

Idk if this extension works

#

yeah it works for linkedin and Indeed

#

an extension which is open source would work I guess

#

coz 100$ a month

#

is not worth...

karmic obsidian
#

hey @somber heath thanks for giving your time
and explaining me about Oops...

#

gtg

peak depot
somber heath
#

@gentle plank 👋

gentle plank
#

hello

#

I can't talk...just enterd the server

somber heath
gentle plank
# somber heath <#764802555427029012>

I'm getting this: You are not currently eligible to use voice inside Python Discord for the following reasons:

You have been on the server for less than 3 days.
You have sent less than 50 messages.
You have been active for fewer than 3 ten-minute blocks

#

Not at all...

somber heath
#

@jagged holly 👋

gentle plank
#

hello

somber heath
#

@gilded yew 👋

somber heath
#

@full ingot 👋

warped raft
#

@stark river hello

#

@lucid jolt hello

#

how;s its going

#

@hot drum hello

karmic obsidian
#

hi everyone here

hot drum
#

@warped raft hi sorry i didn't see you

stark river
#

👋

upper basin
#

Greetings dev

#

Hope you are well sir.

#

show-off.

earnest crow
#

this is what the code does

peak depot
#

@gentle flint my health is getting worse again..

upper basin
#

hello hello

rugged root
#

I am back, but cannot speaky

upper basin
#

all good sir

rugged root
#

How's it going ace?

upper basin
#

I'm I think bordering anger and depression?

earnest crow
#

Damn

upper basin
#

So some progress hehe

rugged root
#

@gentle flint Don't die

rugged root
upper basin
#

I am still left bereft.

#

I do feel violated.

rugged root
#

Ransacked as in the the plagarism?

earnest crow
#

And you have all rights to feel so

rugged root
#

Or were you like mugged as well

upper basin
#

Yes

#

Oh no, I wish someone would try to mug me

rugged root
#

Although I do feel obligated to send this

upper basin
#

I'd beat the hell out of them, it'd be actually therapeutic.

rugged root
upper basin
#

YES

earnest crow
#

I dont understand how you didnt accidentally injure some people

rugged root
#

The first time I saw that in PyGame I was cry laughing

upper basin
#

It's in a game? Noice.

rugged root
#

Oh no no

#

It's in the library

upper basin
#

It should be in a game.

#

Just a code that nukes the server.

rugged root
#

It's for getting the rectangle or general area of a sprite or object

upper basin
#

Ahh I see.

rugged root
#

It is a really cool window

#

These are windows

rugged root
#

Just stumble over my own feet

#

Is React Native just for making phone apps?

wind raptor
#

Yeah, pretty much

rugged root
#

Dang

wind raptor
#

You'd use plain old react for web apps

rugged root
#

Has Electron improved?

#

I'm looking at desktop apps

wind raptor
#

I don't know if it's valence has increased

rugged root
#

Well played

#

Not to be a negative Nancy, but...

upper basin
#

Plome reminds me of Nanami from JJK

#

"Use moderate effort where moderate effort suffices."

#

Damn, he also sounds like him, and looks like him. HEHEHE

earnest crow
#

Hemlock i tried to run your profile picture thru my edge detection and well turns out its not happy with small images

rugged root
#

Makes sense

earnest crow
upper basin
upper basin
#

EHEHEHEHEHEEE

rugged root
#

Looks like the anon mask

peak depot
upper basin
#

I'd like to put forward a petition for sketchy hemshake.

wind raptor
upper basin
#

Anokhi taught me about those with ABC class.

wind raptor
#

Nice

earnest crow
upper basin
#

Noice

#

Do this one please.

earnest crow
#

My bad

upper basin
#

shitpost?

wind raptor
#

Oh, I missed the one above it

upper basin
#

Ohh, post about, ehemm, got it.

rugged root
#

Formula 1 baby formula

upper basin
wind raptor
upper basin
#

Watch the years fly by with Formula 1.

earnest crow
#

Appareantly its not workin anyways

wind raptor
#

Carry on

upper basin
wind raptor
upper basin
earnest crow
#

Its scetchy when the contrast is low but we'll see

wind raptor
#

like a Picasso

rugged root
#

Anti-Hem

upper basin
#

I call dibs!

wind raptor
#

Download the NFT

earnest crow
#

Its not that bad

wind raptor
#

That turned out really cool

upper basin
#

I shall ownth the oil painting.

upper basin
#

Basically, you'd want to control how much information you can extract.

#

For most cases, this would suffice, but depending on the data, you may want more features (lines).

#

Certain cases don't require color, so this is useful.

earnest crow
# upper basin I shall ownth the oil painting.

Verily, I do declare that I shall rightfully acquire ownership of the oil painting, as it befits my noble standing and esteemed lineage, with a touch of British accent to grace the proclamation.

upper basin
rugged root
#

@wind raptor Yeah the sugar free ones

#

They use sugar alcohol

#

They will FLUSH you out

gentle flint
earnest crow
# upper basin Gasp! I shall not! I challengeth thou to a gentleman duel.

|| class Nobleman:
` def init(self, name):
self.name = name

def issue_challenge(self, opponent):
    print(f"Gasp! I shall not! I challengeth thou, {opponent.name}, to a gentleman duel.")

def accept_duel(self, opponent):
    print(f"Ah, a challenge is issued! Very well, I accept your duel, good {opponent.name}. Let us settle this matter with honor and grace, as befits gentlemen of our stature.")

Creating nobleman instances

nobleman1 = Nobleman("A.C.E07")
nobleman2 = Nobleman("Rodentus_01_")

Issuing and accepting the challenge

nobleman1.issue_challenge(nobleman2)
nobleman2.accept_duel(nobleman1)`
||

#

damn its formating

upper basin
#

Use

wind raptor
#

!code

wise cargoBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

earnest crow
#

yep better

#

i forgot python does that

#

*discord

peak depot
#

Tuhatyhdeksänsataaviisikymmentäkaksi

#

1952

rugged root
#

I was expecting more umlauts

#

@brazen gazelle Sup

brazen gazelle
#

sup babes

rugged root
#

Long time no talk

brazen gazelle
#

yeah I've been busy with school

peak depot
#

Well u still cant talk hemi😂

brazen gazelle
#

I am no longer a complete failure

#

now I am on the verge

rugged root
#

Nice

brazen gazelle
#

yeah we vibes

earnest crow
brazen gazelle
#

I've got another 18 exams from now to June