#voice-chat-text-0

1 messages · Page 389 of 1

upper basin
#

He means the google collab.

#

The notebook.

#

No?

whole bear
#

@nocturne wasp

upper basin
#

Ah.

whole bear
#

wanna hear my voice

#

??

#

A collection of anxiety, neuroses, despair and dysfunction.

#

??

#

what is in the last

#

ohh okay

#

okay that makes somethin diff sense to me

#

my voice is like a child

#

I am a 16 yr old

#

want proof

upper basin
#

No.

#

Baby face hehe.

whole bear
#

okay stop

#

done

upper basin
#

Too late. The entire world now knows who you are.

whole bear
#

this is my first time

upper basin
#

One time is enough.

whole bear
#

okay?

#

well I have my own songs

#

that I did not sang at al

#

l

#

@somber heath gimme feedback

somber heath
#

Sir Anthony Robinson (born 15 August 1946) is an English actor, author, broadcaster, and political activist. He played Baldrick in the BBC television sitcom Blackadder and has presented many historical documentaries, including the Channel 4 series Time Team and The Worst Jobs in History. He has written 16 children's books.
As a member of the Lab...

whole bear
#

grandma?

#

🤣

#

🤣

#

how much do you know python

#

I gotta go

#

me back!

#

bruh

#

haha

#

window support channel

#

they should rename this to this

somber heath
#

@unreal magnet 👋

whole bear
#

@unreal magnet hello

stone oar
#

Java is used in big enterprise companies for larger scale web applications

#

Python is also used in big tech, i dont think there is other frameworks like Django that can handle everything you need and that fast

#

I love fastapi too, but when it comes to password auth i choose django

#

@tacit crane

torn yarrow
#

@lethal shell rant session lessgo

stone oar
marble mantle
#

scary

tacit crane
stone oar
#

I mean, what's the pros of choosing FastApi for a web app?

#

and writing own super custom auth system

marble mantle
#

Django is ASGI too

tacit crane
marble mantle
#

and so is Quart (async Flask)

stone oar
#

Django also supports async

And fastapi is mostly multithreaded, not async

tacit crane
marble mantle
#

FastAPI is async-first

stone oar
marble mantle
#

Django is the one that defaults to sync

tacit crane
#

FastAPI GIves you most controll

stone oar
#

you can use async, but should you?...

marble mantle
#

in FastAPI, yes

stone oar
#

for db ops mostly

marble mantle
#

unless it's SQLite

#

SQLite isn't async

tacit crane
stone oar
#

but django has async db functions too, so it's looks more like a preference

marble mantle
tacit crane
#

anyaway

marble mantle
#

that's not the normal way to use FastAPI

tacit crane
#

personal preferance

marble mantle
#

Django is too frameworky

#

too many things included

tacit crane
#
import asyncio
import discord
from fastapi import FastAPI
import uvicorn

from services.logging import logger
import traceback
import os

from settings.config import INFO
from modules.worker import StartWorking

app = FastAPI(title=INFO.NAME, version=INFO.VERSION, description=INFO.DESCRIPTION)

async def initialize_routes():
    # Add all routers here from ./routes folder
    for file in os.listdir("./routes"):
        if file.endswith(".py"):
            module = file[:-3]
            if module != "__init__":
                module_router = __import__(f"routes.{module}", fromlist=["router"])
                app.include_router(module_router.router)
                logger.info(f"Router {module} included ✅")

# on startup
@app.on_event("startup")
async def startup():
    logger.info("Bot is starting up")
    await StartWorking()
    

async def main():
    try:
        await initialize_routes()
        async def start_api():
            try:
                api_config = uvicorn.Config(
                    app,
                    host="0.0.0.0",
                    port=5005
                )
                server = uvicorn.Server(api_config)
                await server.serve()
            except Exception as e:
                logger.error(f"Error in file {__file__}: {traceback.format_exc()}")
        await start_api()
    except Exception as e:
        logger.error(f"Error in file {__file__}: {traceback.format_exc()}")

if __name__ == "__main__":
    asyncio.run(main())```
#

my initlization

#

its a small project anyaway

marble mantle
#

why is initialize_routes an async def?

tacit crane
#

What?

marble mantle
#

* an

stone oar
#

and not async files io

#

there is aiofiles for that

marble mantle
#

there is no async files io, it's a lie that libraries tell you

tacit crane
#

i know but its only 1 time initialization

stone oar
#

i heard that too, but it's very arguably

#

that you cant do async files

marble mantle
#

most async file operations are threadpooled under the hood

stone oar
#

theory says that every operation that you wait for can be done in async

tacit crane
#

what db you guys uses

marble mantle
#

Linux assumes all files to be readable

#

there is no simple way to integrate files into epoll

stone oar
tacit crane
#

My primary is postgres too

marble mantle
#

(aiosqlite is literally just an adapter to queue operations onto a thread)

tacit crane
#

i recently made a package for postgres asyncronous ORM

#

Check it out

#

Give me some sugesition for it

#

To improve

marble mantle
#

there is an epoll-ish syscall in Linux that can be used to do async file I/O

stone oar
marble mantle
#

aio_ is bad

stone oar
#

Waiting for asyncio book to be delivered

marble mantle
#

and io_uring is broken and unsafe

#

but you should learn it too

#

it'll be fixed in a few decades

tacit crane
#

Every thing has pros and cons

marble mantle
#

by then, O_NONBLOCK might also get implemented for regular files

tacit crane
#

Do you guys follow books

#

?

stone oar
#

Books on general things like Python can be easily replaced with Youtube. More specific topics like async is better to be read

tacit crane
#

Yah

marble mantle
#

100% of books I've read this year so far are fiction

tacit crane
#

i use YT, Google And GPT

marble mantle
#

read docs

tacit crane
#

Docs and Books are different things

stone oar
#

asyncio documentation is hell for me

marble mantle
#

for learning insides of async, you'll end up having to read through docs and blogs rather than books, unfortunately

#

oh, and also a lot of code

tacit crane
#

anyaway Just Leaning what i need is my kind of way to learn

stone oar
marble mantle
#

I started learning async with Python, but, yes, JS is simpler for that

#

C#, the origin of async, has a very weird notion of what it means

noble umbra
stone oar
#

I am planning to learn asyncio under the hood and write my own async wrapper. Maybe, just async GET requests

marble mantle
#

and in Rust, if you're a beginner, you're just going to have only pain when trying to async

marble mantle
#

async in Rust is the easiest for me to use, out of all those

#

less magic, more direct control

stone oar
#

did you try Golang ?

stone oar
marble mantle
#

go abstracts away async/await and just uses green threads

stone oar
#

are you more low-level developer ?

tacit crane
#

?

#

TRY C++

marble mantle
#

C++'s coroutines are bad

#

you should use them when you can, but they're bad anyway

tacit crane
marble mantle
stone oar
#

I wanted to become low-level security researcher, write malware in C

But then i saw salaries and decided to continue to master python

Maybe i'll start again in a future, like hobby

stone oar
tacit crane
#

C TO CSS

#

Both are 2 different thing

#

But Got it

marble mantle
#

that's the point

stone oar
#

That's the joke

stone oar
marble mantle
#

in Zig

stone oar
#

nah, asmX86

tacit crane
#

What renderer You guys use

#

?

stone oar
#

google chrome ...?

tacit crane
#

No for web renderer

#

code

stone oar
#

i dont really understand

tacit crane
#

web server html RENDERER

marble mantle
tacit crane
#

Example: Jinga2

marble mantle
#

templating?

tacit crane
#

Yes

stone oar
tacit crane
#

Hm

noble umbra
stone oar
# tacit crane Hm

For django, i use django templating, for fastapi i dont use anything, but i'd use jinja2 as it is only option we have

marble mantle
#

static site generator

stone oar
#

Is it like thing that generates DOM tree or something? I didnt really head of this

marble mantle
#

it just generates HTML and CSS

#

mostly HTML

stone oar
#

generates html from what

#

sorry i am not getting the point

marble mantle
#

Markdown, seems like

stone oar
#

fine, i'll just go interrogate gemini

marble mantle
stone oar
#

Looks i am starting to get it now

#

Some super perfomance thing

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @noble umbra until <t:1736088015:f> (10 minutes) (reason: attachments spam - sent 10 attachments).

The <@&831776746206265384> have been alerted for review.

vocal basin
#

!unmute 1200766495685345320

stone oar
#

poor guy

wise cargoBOT
#

:incoming_envelope: :ok_hand: pardoned infraction timeout for @noble umbra.

vocal basin
#

don't put that many attachments

stone oar
#

Somebody has headphones very close to mic

marble mantle
stone oar
#

java for big enterprise

marble mantle
#

@potent root look up job positions where you live and compare salaries for Java and Python

#

it does depend on the region

potent root
#

@marble mantle yh the thing is i like python but i searched on linkdin and there arent a lot of jobs for back end develoment

marble mantle
#

what do you consider backend?

stone oar
#

Python Backend salaries are not poor at all, actually

potent root
#

building scalable systems (server side)

stone oar
#

even for juniors

marble mantle
#

in the common sense, all Python development and most Java development is backend anyway

marble mantle
stone oar
#

java = money

#

next level is only COBOL

frail prairie
#

hi there. is there someone who could help me with expanding and editing my code??

marble mantle
#

!paste

wise cargoBOT
#
Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

marble mantle
stone oar
#

fintech was rewritten to other langs ?

marble mantle
#

that, and also COBOL got less bad + the supply of people who are okay with writing it just for money increased relative to demand

frail prairie
#

i have pasted it

marble mantle
#

people see money, people go learn a language, turns out it's not as bad, people get money

#

legacy Java isn't necessarily better than legacy COBOL at this point

stone oar
#

devs do sleep ?

stone oar
marble mantle
#

20

stone oar
#

2 years over me

analog elk
#

Deep but i understand it

#

btw guys i need some help with html anybody good with that typa stuff ?.

#

@noble umbra muted by the server sorry man

noble umbra
#

ohh, it's okay

analog elk
#

ahh damn

#

my problem is super basic but i have 0 expierence in html

#

how is me being muted mean 😦?

#

np

#

yeah

#

yeah spend time

#

i know html but the issue is i built a custom email footer, and now google wont display it in my signature

#

im more than happy to pay for someone to fix it

#

ahh alright

primal shadow
analog elk
#

yeah but who would wanna work for free

torn yarrow
primal shadow
#

I just take out the z's

torn yarrow
#

i see

stone oar
torn yarrow
#

im just gonna call you 'k; if thats fine

primal shadow
#

that works

analog elk
#

@primal shadow if its forbidden to offer to pay, how could people help you with your issue ?. wouldn't it be a nice gesture to reimburse people for there time spend helping you with an issue ?.

#

Ok thats nice

#

No point in that, if thats what people do here.

stone oar
#

bye guys

primal shadow
#

👋

primal shadow
stone oar
marble mantle
#

@torn yarrow VS or VSC?

#

@torn yarrow it gets activated when opening new terminal

#

also there's "select interpreter" command

marble mantle
#

e.g. if you're using uv

#

executionEnvironments in [tool.pyright] in pyproject.toml is useful

torn yarrow
#

I see

#

thanks

#

debugging here is tricky

marble mantle
#

@cinder vale OpenComputers?

#

or OpenComputers 2?

#

OC is Lua, OC2 is RISC-V

primal shadow
marble mantle
#

OC had some support for Python too I think

cinder vale
#

I am not familiar with the mod but if I think it allows me to code in minecraft then I will find it quite interesting.

#

My aim to download a mod but I dont know how.

#

I have tried to follow steps on youtube but it seems that I am not able to make the connection.

#

@marble mantle Can you help me_

#

?

gentle flint
cold fulcrum
#
          <div class="action-buttons">
            <button class="primary">Learn More</button>
            <button class="secondary">Linked In</button>
          </div>```
#
.action-buttons {
  display: flex;
  gap: 1rem;
}```
#
document.addEventListener("DOMContentLoaded", () => {
    const fadeSections = document.querySelectorAll(".card");

    const observer = new IntersectionObserver(
      (entries, observer) => {
        entries.forEach(entry => {
          if (entry.isIntersecting) {
            entry.target.classList.add("is-visible");
            observer.unobserve(entry.target); // Stop observing once it’s visible
          }
        });
      },
      {
        threshold: 0.1 // Trigger when 10% of the element is visible
      }
    );

    fadeSections.forEach(section => {
      observer.observe(section);
    });
  });

document.addEventListener("DOMContentLoaded", () => {
    const fadeSections = document.querySelectorAll(".xp-point");

    const observer = new IntersectionObserver(
      (entries, observer) => {
        entries.forEach(entry => {
          if (entry.isIntersecting) {
            entry.target.classList.add("is-visible");
            observer.unobserve(entry.target); // Stop observing once it’s visible
          }
        });
      },
      {
        threshold: 0.1 // Trigger when 10% of the element is visible
      }
    );

    fadeSections.forEach(section => {
      observer.observe(section);
    });
  });
potent root
#

function sum(sum1 : number, sum2: number) {
return sum1 + sum2
}

const result = sum(213,232)
console.log(result);

#

Without static typing, you might accidentally mix incompatible data types, causing confusion. For instance, if you try to add a number to a word, the computer might not know what to do. Static typing prevents such errors by not allowing incompatible actions.

Example in a language with static typing:
java
Copiar código
int x = 10;
String y = "hello";
int z = x + y; // Error: you can't add a number to text.

cold fulcrum
#
  • Static: Shared by everyone. You don’t need to make anything new to use it.
    Example: A school's name — it’s the same for all students.

  • Non-Static: Belongs to one specific thing. You need to make it first to use it.
    Example: A student’s name — each student has their own.

potent root
cold fulcrum
#
  • Dynamic: Can change while the program is running.
    Example: A balloon you can keep inflating or deflating.

  • Static: Stays the same once it's set.
    Example: A rock — it doesn't change shape or size.

potent root
#

int age = 25; // "age" can only store integers.
age = "twenty-five"; // Error: You can't store text in a number variable.

soft axle
#

an idea..... use "mypy". its a library that enforces type hinting

#

gives an error or warning if type hints aren't met

cold fulcrum
#

25 != "25"

cold fulcrum
#
class Form:
    def __init__(self, name, surname, age):
        self.name = name
        self.surname = surname
        self.age = age

    def say_hello(self):
        print("Hello " + self.name)

Me = Form("John", "Doe", 20)
You = Form("Max", "Elton", 14)
Me.say_hello

Output:
Hello John

cinder vale
#

object

#

Class is synonym for object

#

class car is a form

#

To make python understand that you written an object you write class

#

so the object is the car

#

to define object

#

to define object in python you need to write class and then in our case car

vocal basin
#

in python, it's a synonym to type

#

and object is a specific instance

cold fulcrum
#

Ye we are explaining it in VC already

soft axle
#

is this python or are you guys doing javascript?

cold fulcrum
potent root
vocal basin
#

js has a somewhat weird notion of classes and objects

potent root
#

oop in python but trying to explain classes in general

vocal basin
spark girder
#

Hey sorry! Got super busy right after sending that 😆

somber heath
spark girder
#

You able to hop in VC?

somber heath
#

Is that what you wanted to ask?

spark girder
#

I have a question that stems into other questions and it's easier to ask than type

somber heath
#

Ballpark it.

spark girder
#

Alright...

#

So I'll throw in the prerequisite to why I'm asking this/these question(s).

#

A friend came to me yesterday, not upset, but rather concerned as to your opinion and where it stems from on Cannibanoids in the US. Now, I know nothing about you, but from our few interactions and what I've heard it sounds as if you may not be a current resident of the US.

#

What makes you so sure that the US is trying to ban weed?

prime crag
#

hey

#

sorry I can't talk

somber heath
#

I'm not having this conversation.

#

!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.

spark girder
#

I'm just curious. I'm not asking to start an argument I'm just naturally curious

somber heath
#

Not interested.

spark girder
#

I want to know your view point so I can understand your opinion on it in a better and more meaningful way.

#

Alright.

#

Well thank you for atleast hearing me out.

prime crag
#

may you introduce yourself I wanna hear your accent

#

wow are you native speaker ?

#

omg

#

I'm sending you a friend request

lime fractal
#

Do all Windows leptops support windows sandbox

warm nebula
#

Hi guys I am new here

#

Who is active to chat just feeling lonely 😔

main comet
spark girder
lime fractal
#

ok

spark girder
#

I'm not 100% but I believe it also requires TPM??? Again, not completely sure on that!

lime fractal
#

but im trying oracle but not working or im dowing it wrong

spark girder
#

Wdym?

lime fractal
#

oracle virtual boxmanager

spark girder
#

That's not Windows Sandbox??

lime fractal
#

no because that wont work so i need something else right then

spark girder
#

Windows Sandbox was made for testing untrusted applications. Just install VMWare Workstation.

#

They made it free recently so you don't even need a key!

lime fractal
#

link pls leptop lags

#

updateing

spark girder
#
VMware Workstation Zealot

VMware Desktop Hypervisor products Fusion and Workstation are used by millions of people every day to run virtual machines on their Windows, Linux and Mac computers. They give users the ability to quickly and easily build “local virtual” environments to install other operating systems, learn about technology, build and test software, complex sys...

#

You'll have to make an account with broadcom

lime fractal
#

can i test mallware in there like bonzify

spark girder
#

Yes

covert goblet
#

@tacit crane @topaz temple I can't yet talk in Voice Chat. Just joined the server.

topaz temple
#

Welcome!

covert goblet
#

Thank you

tacit crane
#

War thunder

topaz temple
#

Anno 1800

obsidian dragon
#

My Minecraft server season 7 starting soon (all the Mods 10) , let me know if interested

cyan linden
#

.

tidal stream
whole bear
#

hey

#

me back

#

@noble umbra

#

what is the doing

topaz temple
#

meme I made today

whole bear
topaz temple
upper basin
#

Literally?

topaz temple
#

is just a meme 🙂 just for fun

tacit crane
upper basin
#

First off, coding in python is really preferred due to the high abstraction it has. Secondly, the compiler isn't slow. That abstraction which makes coding much faster requires multiple compilation until it gets to C bytecode. That's why it's slower than just coding in C. Thirdly, venv management is not hard. Just have a pyproject.toml or requirements.txt and create a venv from them.

upper basin
#

I mean the other day you were also going on about how python sucks, but it's misinformed.

#

If you're aiming to learn, then get the facts straight please.

topaz temple
#

I said: "Python is the worst language to code in. And the best one to learn for data science, ease of use and readability"

#

that was what I was saying. The humor of that was meant to come across in the sarcasm of the "worst" being tongue and cheek or facetious

whole bear
topaz temple
#

I am learning python because I like the ease of use and it being high level. Just making fun of some of the quirks of the language

whole bear
#

India

#

@tacit crane

whole bear
open moth
#

@whole bear alr lil bro

gentle flint
open moth
#

ik that

#

i'm jus too lazy

#

to do that

whole bear
#

hello, @jovial iris

jovial iris
tidal stream
#

hello, @jovial iris

jovial iris
young solstice
somber heath
#

@twilit hatch 👋

twilit hatch
gentle flint
somber heath
#

@inland knoll 👋

warm nebula
gentle flint
#

bright and less bright lamp

gentle flint
rugged root
#

COOL. So they're aware of the issue, and their dev team is actively working on it, but that's all we know

#

God. Damn. It

#

@somber heath That avatar is friggin' adorable

wind raptor
vocal basin
#

"be more space efficient"

karmic citrus
rugged root
#

So fucking salty about this

vocal basin
#

we made a whole two apps for new year party

#

at least one of them worked

#

@peak depot where I recognise the word from:

peak depot
#

is that a book?

vocal basin
gentle flint
peak depot
#

aaaa a Finnish band

vocal basin
gentle flint
#

very true

peak depot
left leaf
rugged root
#

You know what's weird? I don't know what to call myself in my internal monologues anymore

#

Like... it's bizarre feeling

#

Like who really am I?

left leaf
peak depot
gentle flint
left leaf
#

maybe they don't know how to fix it xpp

#

''Most talented engineers btw''

rugged root
#

PAYATFAWRY

left leaf
rugged root
#
with open('file.file') as file:
  ...
#

Style Errors: 🤮

#

It's good stuff

#

@faint raven Your mic is super quiet

#

I have you at 200% and it's still hard to hear you

turbid matrix
#

Hey there, @faint raven How's it going ?

rugged root
karmic citrus
marble mantle
#

http.cat/503

#

400 has the best image

#

204

#

403 is somewhere between 401 and 400 in its meaning

#

listen to grindcore, you won't recognise any words

#

VK Clips is the visually worst part of VK currently

#

(Russian tiktok within Russian facebook)

rugged root
#

Sounds..... fun?

marble mantle
#

they're visually unappealing

#

the "don't recommend me this" function doesn't work

#

there is no way to remove them from the recommendation feed

marble mantle
tacit crane
marble mantle
#

I've only now recognised the irony of a "chef" running the troll farm

#

both about food

#

@tacit crane S3 or alternative

#

if you concern is performance, obviously go with postgres not mongo

tacit crane
#

ok

marble mantle
#

@proven helm telegram is just more aggressive about caching messages locally

#

it's storing more than others in localstorage, but it doesn't store it there instead of the server

#

DynamoDB also exists, for KV

#

mongo's and postgres's JSON/BSON values may be stored in an indexed form instead of just text

#

if you want even worse performance in exchange for shiny docs, SurrealDB

#

blazingly slow

#

"for real db"?

#

(misheard)

proven helm
#

guys bye i go to grocery hamburgersss

dry jasper
tacit crane
#

@rugged root

marble mantle
#

binary format, unless you need indexing

#

for packing

#

depends on how often you need to query/extend it

tacit crane
#

every minute like 30-40 Requests

marble mantle
#

write requests or read requests?

#

(commands or queries)

tacit crane
#

Both

tacit crane
#

Posting and Geting

marble mantle
#

ratio is important

#

720 hours

rugged root
#

Amazing

marble mantle
#

* 740

#

1450 hours

rugged root
#

I just can't do that

marble mantle
#

who are we suing?

rugged root
#

My old man brain doesn't like having not rebooted my machine in that time

marble mantle
#

updates on windows don't work anymore

#

it died for who knows why

rugged root
#

!server

wise cargoBOT
#
Server Information

Created: <t:1483877013:R>
Roles: 151
Member status: status_online 52,801 status_offline 343,738

Members: 396,539

Helpers: 165
Moderation Team: 41
Admins: 12
Directors: 2
Contributors: 47
Leads: 11

Channels: 316

Category: 33
Forum: 4
News: 13
Staff: 118
Stage_Voice: 1
Text: 139
Voice: 8

gentle flint
#

the recipe claimed this was two servings lol

#

fortunately I anticipated

marble mantle
#

sports fan to radical military element pipeline is quite popular where I am

stuck furnace
#

hey

#

like, 1.25 servings

#

I'd eat that easily

marble mantle
#

which of the regexes

#

(dialect)

rugged root
#

Wait wait wait wait

#

There are different dialects?

marble mantle
#

POSIX, JS, Python, Perl, Rust all have different I think

#

not at all

#

POSIX, Rust, JS, Python, Perl
(I think this order would be more correct)

#

from least powerful to least sane

gentle flint
marble mantle
#

rust-lang/regex itself has multiple variants within

smoky delta
marble mantle
#

mostly about referring back to what you've already matched

#

at that point, just use a parser

smoky delta
stuck furnace
#

If you use re.VERBOSE you can include whitespace and comments

marble mantle
#

oh wait, it's not C

smoky delta
marble mantle
#

-- overly postfix decrement, with an extra space

smoky delta
#
function spawnPlateDrop()
{
    plateModel = util::spawn_model("iw9_plate_world", self GetTagOrigin("j_head"), (RandomInt(360), 0, 0));

     // launch the stud and wait until the moving is done
    const scale = 3;
    const height = 6;
    plateModel PhysicsLaunch( self.origin, VectorScale( AnglesToForward( self.angles ), scale ) + ( 0, 0, height ));
    plateModel util::waitTillNotMoving();
    plateModel SetPlayerCollision( 0 );
    plateModel clientfield::set( "model_enable_keyline", 1 );
    plateModel.origin = plateModel.origin + ( 0, 0, 15 );
    plateModel.angles = ( 0, 0, 0 );
    plateModel thread rotateAndBobItem();
    
    plateTrigger = Spawn("trigger_radius_use", plateModel.origin, 0, 40, 40);
    plateTrigger.targetname = "plateDrop";
    plateTrigger triggerIgnoreTeam();
    plateTrigger SetCursorHint("HINT_NOICON");
    plateTrigger UseTriggerRequireLookAt();

    PlaySoundAtPosition("mw2022_armor_plate_drop", plateModel.origin);

    plateTrigger thread platePickup(plateModel);
}```
marble mantle
#

!paste

wise cargoBOT
#
Pasting large amounts of code

If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

marble mantle
#

GitHub Gist

smoky delta
rugged root
#

@native notch Yo

marble mantle
#

regex101

rugged root
#

Beat me to it

marble mantle
rugged root
#

This is cool too

stuck furnace
#

He's cracked I think

rugged root
#

That's an understatement

marble mantle
#

which of the three simulations pithink

stuck furnace
#

Back in a bit

marble mantle
#

was it Dubai that fucked around and found out when trying to influence weather?

#

I looked up that fog thing

#

and it looks like

#

snow

#

snow in winter

#

US discovers winter tends to have snow

#

@dry jasper it might be switching to wrong output (selectable in top right corner when opening the VC)

dry jasper
rugged root
#

Possibly back later

short owl
#

corned beef ? @dry jasper

#

Katz's deli mustard

tulip dove
#

Hey @somber heath

topaz temple
#

Hey Opal 🙂

#

I've been using Conda

#

and I am about to pull my hair out with it.

#

It isn't my favorite thing right now

#

But I don't think it's terrible

#

just a learning curve

#

If you know a bit of Bash it's not terrible

#

because then you at least understand what your global/local variables are

torn yarrow
#

Can you guys move to voice chat pls

#

Can't join.

somber heath
#

@grizzled zenith

wise cargoBOT
#

A Toolkit for Computer-Aided Musical Analysis and Computational Musicology.

Released on <t:1730195353:D>.

topaz temple
#

I have no control over the python discord server

somber heath
#

@rapid iris

#

!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.

topaz temple
#

is you go to the #bot-commands channel and type !user it'll tell you exactly where you're at

rapid iris
#

hello

#

i cant speak

#

okay so basically my code is totally done

#

but

little rampart
#

Enjoy this completely free 19 hour course on developing an API in python using FastAPI. We will build a an api for a social media type app as well as learn to setup automatic tests and deploy the app and finally we'll also learn how to setup a CI/CD workflow using github actions.

Full Course Playlist:
https://youtube.com/playlist?list=PL8VzFQ8...

▶ Play video
tacit crane
#

Uvicorn

little rampart
#

no

#

uvicorn

#

ascii code bro

tacit crane
#
async def main():
    try:
        await initialize_routes()
        async def start_api():
            try:
                api_config = uvicorn.Config(
                    app,
                    host="0.0.0.0",
                    port=5005
                )
                server = uvicorn.Server(api_config)
                await server.serve()
            except Exception as e:
                logger.error(f"Error in file {__file__}: {traceback.format_exc()}")
        await start_api()
    except Exception as e:
        logger.error(f"Error in file {__file__}: {traceback.format_exc()}")

if __name__ == "__main__":
    asyncio.run(main())```
#

This is how i run my FasrtAPI

little rampart
#

try host with 255.255.255.255

#

BRODCAST YOU ARE NOT A CAT

#

THERE IS AN APP CALLED BRAWL STARS VERY GOOD FOR WAITING THE UVICORN SERVER TO BE UP AND RUNING

tacit crane
somber heath
#

@covert goblet 👋

covert goblet
#

Hello

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.

covert goblet
#

The computational power necessary for simulation theory is insane.

somber heath
#

@sharp pike 👋

#

You can type text here, @sharp pike. 🙂

sharp pike
#

Let's talk privately?

somber heath
#

No, I won't talk privately.

sharp pike
#

Are you a programmer?

somber heath
#

I prefer to talk here or in the public voice channels.

sharp pike
#

I don't understand English, I'm translating what you say

somber heath
#

I am a programmer.

#

Allegedly.

sharp pike
#

Could you teach me the basics of programming?

#

???

somber heath
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

sharp pike
#

what is that

somber heath
#

Perhaps you could seek help from someone with whom you share a language.

sharp pike
#

You can speak your language normally, I'll take the job of translating your lines

sharp pike
#

Do you know where I can find

somber heath
sharp pike
#

Speak in chat so I can translate

somber heath
#

You speak Portuguese, yes?

sharp pike
#

yes

#

sim

#

I'm translating what you're saying on Google Translate

somber heath
#

Python is known as an "Object-Oriented Programming" language. Everything that you interact with in Python, on some level, is an "object".

sharp pike
#

I'm dedicated to learning programming but I can't understand courses

somber heath
#

An object is a data structure. It has functionality attached to it that is for interacting with that data safely.

sharp pike
#

ok I wanted to create my first codes can we go to a private call for me to share my screen to guide me

somber heath
#

Every object has a "type", a "class" object which governs the creation of objects of its type. The class object is like a blueprint. The instances are the objects created from it.

somber heath
#

The class governs the data structure and what attached functionality exists in its instances.

#

I don't do private calls.

#

Sorry. 🙂

sharp pike
somber heath
#

I'm afraid that our time, for now, is concluded.

sharp pike
somber heath
#

I must attend to my duties.

#

I am often here.

#

Feel free to hang around.

sharp pike
#

@somber heath ?

somber heath
#

@whole bear 👋

proven helm
#

hello guys

somber heath
#

@lean jacinth👋

lean jacinth
#

hi

#

what it is about?

tawny elbow
#

Hey Python devs!

I recently built a drag-and-drop GUI tool for customTkinter to simplify designing interfaces. It lets you visually create UIs and export the code directly, which has been super helpful for my projects.

I’d love to hear your thoughts and feedback on it! You can check it out on GitHub: Buildfy Free on GitHub.

I’m particularly interested in:
• Usability: Is the drag-and-drop interface intuitive?
• Features: What could make it even better?

Feel free to give it a try and let me know what you think. Any feedback would be amazing!

Thanks!

lean jacinth
#

Github

tawny elbow
#

It is a tool for creating gui

lean jacinth
#

Nice

tawny elbow
#

You guys can try it and give me your reviews

somber heath
#

Snermerberl!

gentle flint
somber heath
#

I am here.

whole bear
#

hello guys

#

what happened

#

why are you on mute

#

@tacit crane @noble umbra why are you on mute

#

c'mon what happened

#

????

#

did someone do something wron

#

g

noble umbra
#

Sorry

#

I'm outside right now

#

And i left my laptop at home

#

@whole bear

whole bear
#

what

#

and waht happaned to @tacit crane

noble umbra
#

I think he is sleeping

#

🤣

whole bear
#

okay I think gg

normal dawn
#

hey

marble mantle
#

I am once again lost in choice of what game to play

#

(today is not work day, and neither is tomorrow, so need to do something else)

normal dawn
marble mantle
#

I don't even have it installed

normal dawn
marble mantle
normal dawn
#

so i am just wondering about what games you often play guys ?

tacit crane
normal dawn
marble mantle
#

most of what I recently played on steam were VNs

normal dawn
whole bear
normal dawn
marble mantle
#

Space Engineers' release of DLCs was received surprisingly positively by the community

tacit crane
marble mantle
#

userid

marble mantle
somber heath
#

uid

tacit crane
#

uuid

normal dawn
#

uuid4().hex

marble mantle
#

worst yet possibly existing option: user_Id

normal dawn
marble mantle
#

Space Engineers was the only game I enjoyed playing with a gamepad

#

they put a lot of effort into it

#

it's not just keybinds

normal dawn
#

nice

#

they only game i just enjoyed playing it was Little nightmares 2

whole bear
#

I give up man

#

@somber heath accept my friend requirest

#

request*

somber heath
#

No.

tacit crane
whole bear
marble mantle
#

@cinder vale non-compete clause?

#

or even worse?

#

whatever it is, it sounds too illegal for Europe

#

there are limitations to how much companies can enforce that

#

the type of clause that, afaik, is outlawed in some places:
"after you leave, you can't work in the same field and/or for our competitors"

#

I don't have a non-compete clause, only a relatively lax NDA

whole bear
#

hey

#

@noble umbra

rugged root
#

@cinder vale I work at an accounting firm as our in-house IT

#

I'm not a programmer by trade

cinder vale
#

have you had experience with recruiting companies lend you as an consultant

amber raptor
#

Yes, they suck

#

US is expanding our empire into noted Greenland....

peak depot
amber raptor
peak depot
#

Denmark is part of Nato and they dont like the Orange family

amber raptor
rugged root
#

@gilded rivet This'n

gilded rivet
#

^--Cook one

#

v--Cook two

#

@rugged root I just got a pellet smoker and i am smokin' the meats

upper basin
rugged root
upper basin
#

HEHEHE

#

Same brother.

#

Same.

#

I still have my baby whiskers.

gilded rivet
rugged root
#

Well it's not like I can smell or taste it

gilded rivet
#

ya, but you can seee it

rugged root
#

@hearty mural Yo

gilded rivet
#

so I am like

rugged root
gilded rivet
#

bruhhhhhh

rugged root
#

@sleek stirrup Yo as well

past lintel
#

wsp what yall workin on?

#

ohh nice

upper basin
#

Gonna go sleep. I'll see you guys tomorrow.

#

Hemlock, miss you...

past lintel
#

goodnight

upper basin
#

Before I go. Just. How?

#

How would they be able to cut the price in 3 without losing any performance?

#

They could have sold soooo many 4090s if that was 549.

#

Like the 3k pcs I see, half of it was the 4090 price.

#

So, you'd go from 3k, to 2k.

#

Insane.

#

This I'd definitely get if it's true and actually is stable if I can ever save money for it. Seems really worth the price.

#

So, almost double the 4090 performance and still only 2/3 the original price?

#

And the 5090 being more than 3x 4090?

#

I'd say 2k is a bit steep still, but I'd see people getting it for sure.

#

People be simulating small organisms HEHEHE.

#

Alright I'm done. Cheers.

#

Oh, here's the gotcha.

#

They cut the VRAM to reduce the price. That kind of sucks.

primal shadow
#

They cut the VRAM to upsell

somber heath
#

@lost tapir 👋

somber heath
#

🫤

wind raptor
#

yikes

somber heath
short owl
#

but... I thought you were a bird ??? @somber heath

covert goblet
#

HI @somber heath and @wind raptor I can't talk yet

#

Yes I have done the voice verification

#

I just need to wait until I have been on 3 days

#

Yes, its close

#

Check out this code I wrote in python:

import cowsay
import pyttsx3

engine = pyttsx3.init()
this = input("What's this? ")
cowsay.cow(this)
engine.say(this)
engine.runAndWait()
#

I have taken 2 classes in python. I am primarily a PHP dev

#

Yes text to speach

somber heath
#

@solid prairie 👋

covert goblet
#

Hello @solid prairie

solid prairie
#

Hi, Thanks, I dont have permission to talk

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.

covert goblet
#

Me neither yet @solid prairie

solid prairie
#

Okay, I understand, I will read that

#

Okay, okay

#

I am student of master degree in data science

covert goblet
#

My wife is calling me away from the computer

solid prairie
#

Could you repeat?

#

First year

#

I studied economics in college and now I'm studying data science.

wind raptor
tacit crane
somber heath
#

@stark orchid 👋

somber heath
#

@somber slate 👋

faint echo
#

I guess I have to start saying stuff to eventually be able to speak

somber heath
#

@grand plaza 👋

wise cargoBOT
#
Voice verification

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

faint echo
#

Basically I have a little bit of knowlege of python

grand plaza
#

A

#

Hello

somber slate
#

hello

faint echo
#

I took an introductory college course on it

#

for my data analytics minor

#

But I was kind of adhd in the class, I am a humanities person who is not used to practicing what I learned

#

I got a B in the class

#

But they went easy on me I'd say

somber slate
#

currently working on frontend but I actually made a backtesting framework on python recently for options and stock trading for with OHLC charts and personal trading strategies with FIb retracement and RSI. Any cool recommendation automation projects that I can get into? perhaps ai projects that i can get my hands on. Maybe something that correlates with frontend work too despite django and flask?

faint echo
#

If they wanted me to write stuff in python I would be lost

#

I used chat GPT a lot

#

But basically I am in the server because I will be using python for one of my classes this spring and I want to get better at it, I also just find computer science and programming cool

#

Might be a career path or something in the future

faint echo
somber slate
#

@somber heath ^^

faint echo
somber slate
#

just realized theres channels for everything lol. I just joined

faint echo
somber heath
#
class MyClass:
    def a(self):
        ...
    b = a```
#
class MyClass:
    def a(self, a, b, c, d=..., e=..., f=...):
        ...

    def b(self, *args, **kwargs):
       a(*args, **kwargs)```
#

@rugged dirge👋

rugged dirge
#

why i can't talk and chat

#

everything is banned or blocked here

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.

rugged dirge
#

ok

somber heath
#

I don't like the voice gate either. It presents a barrier to the legitimate participation of newcomers.

#

It's better to have the voice gate than to not.

#

Having one's ears screamed into every 15 minutes...not fun.

#

That's not hyperbole, by the way.

#

It was like that.

#

@fallen hearth 👋

#

@hidden sandal👋

hidden sandal
#

hi

peak depot
#

my discord is acting up

somber heath
#

Same.

upper basin
#

!pypi qiskit

wise cargoBOT
#

An open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives.

Released on <t:1734039172:D>.

upper basin
#

!pypi qickit

wise cargoBOT
#

Qickit is an agnostic gate-based circuit SDK, providing an integrated interface for using any supported quantum circuit framework seamlessly.

Released on <t:1735062806:D>.

somber heath
#

qickitchen

#

qiskitchen

#

Quicket.

#

qickitty

#

Qitchen.

#

Qispunt

#

Qiskitty

#

No.

#

Biscuity.

somber heath
#

@lavish phoenix👋

lavish phoenix
#

Hello

#

I cant use voice for some reason

#

:(

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.

lavish phoenix
#

Yup gotta wait 3 days i guess

#

Lmao

somber heath
#

Mhm.

#

Is there also a local and nonlocal/enclosing gamejam?

#

@whole bear👋

#

@winter pollen👋

winter pollen
#

hey

somber heath
#

Mm. I'm familiar with the concept.

winter pollen
#

ok

somber heath
#

Dack?

#

If there was a horror-themed mod of Terraria, would it be called Terroria?

#

The World Wide Fund for Nature (WWF) is a Swiss-based international non-governmental organization founded in 1961 that works in the field of wilderness preservation and the reduction of human impact on the environment. It was formerly named the World Wildlife Fund, which remains its official name in Canada and the United States. WWF is the world...

#

So...they had panda wrestling?

woeful salmon
dry jasper
upper basin
#

Nice guy.

somber heath
#

@pulsar pelican👋

#

The crested pigeon (Ocyphaps lophotes) is a bird found widely throughout mainland Australia except for the far northern tropical areas. Only two Australian pigeon species possess an erect crest, the crested pigeon and the spinifex pigeon. The crested pigeon is the larger of the two species. The crested pigeon is sometimes referred to as a topkno...

#

The common bronzewing (Phaps chalcoptera) is a species of medium-sized, heavily built pigeon. Native to Australia and one of the country's most common pigeons, the common bronzewing is able to live in almost any habitat, with the possible exception of very barren areas and dense rainforests. Its advertising call is an extraordinary mournful whoo...

#

@quartz beacon

#

First one: Evil pigeon.

#

Second one: My current, but mine is female.

quartz beacon
somber heath
#

The males have the cream patch.

quartz beacon
#

😂

somber heath
#

Cockatiel, yes.

#

@nocturne mantle👋

#

Apparently the cresteds are quite popular in the middle east.

nocturne mantle
#

salami alaikum

somber heath
#

I've never seen it spelled "salami".

#

I suppose it's peace with meat on its bones.

#

Wouldn't that be something...

#

Mergiger!

#

Very little.

#

Hello, Lame.

#

If you want to work out on your vacation, work out on your vacation.

#

Education fosters intellectual growth, but beyond that, a lack of education doesn't mean stupidity.

#

@hollow fiber👋

#

Well, not just a mask, you'd want a full on respirator.

#

But that would alarm people.

#

Or, you know, sensible emissions laws.

#

@twilit vigil👋

#

"That's some nice lack of dependence from us you have there. It'd be a shame if anything happened to it."

#

@upper basin You've got to assume that people would be looking at your code itself, not just looking at the documentation via popups and whatever else.

#

fstrings are a runtime thing

#

IDE stuff isn't

#

So, fstrings for documentation docstrings, I'm going to say no.

upper basin
#

I see. Copy that.

somber heath
#

Oh, yes. Rawstrings for regex pattern strings, for sure.

upper basin
#

boondocks

somber heath
#

@brave rain👋

brave rain
#

how do I talk here

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.

brave rain
#

denied

#

it said I had less than 50 messages here

#

so I can't talk

somber heath
#

Mhm. 🙂

brave rain
#

I just have a doubt

somber heath
#

What's up?

brave rain
#

you know ML?

somber heath
brave rain
#

I'm trying to implement GAN

brave rain
somber heath
#

Okiedoke.

brave rain
#

but I kinda need help asap

#

can you connect me with someone who knows

somber heath
#

👋 @vale rune

brave rain
somber heath
#

I'm contemplating.

brave rain
#

thanks for the thought

somber heath
#

Is your intended implementation of a GAN a Python one?

brave rain
#

yes

#

nothing heavy just applying gan on mnist

somber heath
#

Is your issue with the concept of a GAN or a Python-related issue with it?

brave rain
#

GAN related I presume

somber heath
#

Hm. Then the channel I referred you to is probably your best bet.

brave rain
#

alr thx

somber heath
#

@tacit crane Which array?

#

array as implemented by what?

#

tuple

#

vs truple

#

@tacit crane Do you mean this?

#

!d array

wise cargoBOT
#

This module defines an object type which can compactly represent an array of basic values: characters, integers, floating-point numbers. Arrays are sequence types and behave very much like lists, except that the type of objects stored in them is constrained. The type is specified at object creation time by using a type code, which is a single character. The following type codes are defined:

somber heath
#

The module?

#

Or do you mean numpy arrays?

#

!d numpy.array

wise cargoBOT
#

numpy.array(object, dtype=None, *, copy=True, order='K', subok=False, ndmin=0, like=None)```
Create an array.
somber heath
#

There is no builtin array class in Python, @tacit crane.

#

...what?

woeful salmon
#

!d array

wise cargoBOT
#

This module defines an object type which can compactly represent an array of basic values: characters, integers, floating-point numbers. Arrays are sequence types and behave very much like lists, except that the type of objects stored in them is constrained. The type is specified at object creation time by using a type code, which is a single character. The following type codes are defined:

brave rain
#

@woeful salmon do you know ml?

somber heath
#

stdlib, Noodle.

#

Not as a builtin.

brave rain
#

do you know anyone who can help out?

#

got it

somber heath
#

and when people talk about arrays, they either are talking about lists of lists of other objects, or they're referring to numpy arrays

#

Generally

tacit crane
#

Will be back in 10 min

woeful salmon
brave rain
#

alr thx

somber heath
#

I was unplugged. I thought it was quiet.

#

The Queen of Sheba, known as Bilqis in Yemeni and Islamic tradition and as Makeda in Ethiopian tradition, is a figure first mentioned in the Hebrew Bible. In the original story, she brings a caravan of valuable gifts for the Israelite King Solomon. This account has undergone extensive Jewish, Islamic, Yemenite and Ethiopian elaborations, and it ...

#

AKA Bilqis.

#

@woeful salmon Depending, a specialist recovery expert with the right setup would have a shot at recovering data.

#

Yes.

#

For us plebs, sure.

#

Like, if it was a case of taking it apart and replacing the irrecoverably damaged components...

#

Oh, for sure.

#

@surreal cradle👋

#

Did I see what?

#

Oh, I didn't notice.

#

Grey on grey.

#

@upper basin I'd like to get your reaction as to the above.

#

Bill kwiss

#

Just thinking of something with qis in it.

#

BILL GATES???

#

Bill

#

kwiss

upper basin
#

Belgheis is the pronounciation for it.

somber heath
#

Okay, fine, which whatever.

#

Gheiskit.

#

lel

#

An image recognition library?

#

Spot?

#

Probably already taken.

#

First thought off the top of the head.

#

Work in progress, work in progress.

#

ta ta

#

Fourieye.