#voice-chat-text-0

1 messages Β· Page 233 of 1

vocal basin
#

and C# (which I started using a week before Python)

warped raft
wind raptor
#

Awesome job!

drifting folio
#

Hi

#

I want to watch unlisted videos uesing code can someone help me @wind raptor

#

Yeah

#

I don’t have

#

I have two links

wind raptor
#

!rule 5

wise cargoBOT
#

5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.

drifting folio
#

But I want the rest of video

vocal basin
drifting folio
#

I did

wind patio
#

Hello guys

drifting folio
brisk bridge
#

hi

#

btw guys what would be its alternative in python?

class Store<T> {
    appData: string;
    settings: T;

    constructor(appData: string) {
        this.appData = appData;
        this.settings = this.getSettings();
    }

    set<K extends keyof T>(key: K, value: T[K]) {
        try {
            this.settings[key] = value;
            if (!fs.existsSync(this.appData)) {
                fs.mkdirSync(this.appData, { recursive: true });
            }
            fs.writeFileSync(
                path.join(this.appData, 'settings.json'),
                JSON.stringify(this.settings, null, 4),
            );
        } catch (err) {
            Logger.error(err);
        }
    }
#

i mean for only Generics T and K

#

but in python we can't access dict values directly

#

i mean

d = { "a": 1, "b": 2 }
d.a
wind raptor
#

d["a"]

brisk bridge
#

i don't get intellicense for dict keys in vscode

wind raptor
#

or d.get("a")

pine depot
#

d['a']

brisk bridge
#

dot syntax doesn't suits python tbh for dicts

#

hmm it doesn't work, i doing wierd things lol

class a[T]:
    b: T

    def get[K](self: a[K]) -> K:
        return self.b
obsidian dragon
#

e!

class a[T]:
    b: T

    def get[K](self: a[K]) -> K:
        return self.b```
#

!e

class a[T]:
    b: T

    def get[K](self: a[K]) -> K:
        return self.b
wise cargoBOT
#

@obsidian dragon :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     class a[T]:
004 |   File "/home/main.py", line 1, in <generic parameters of a>
005 |     class a[T]:
006 |   File "/home/main.py", line 4, in a
007 |     def get[K](self: a[K]) -> K:
008 |   File "/home/main.py", line 4, in <generic parameters of get>
009 |     def get[K](self: a[K]) -> K:
010 |                      ^
011 | NameError: name 'a' is not defined
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/3OJYW2II5ONZ5ZDH3PLOWY52TA

brisk bridge
#

oops i forgot i typing self lol

#

imma ask ai about it , maybe llama

rapid chasm
brisk bridge
#

i gtg bye

crystal fox
#

.

rugged root
#

@crystal fox It's like $15 or so

lucid blade
crystal fox
uncut meteor
#

thanks

crystal fox
rugged root
#

@lucid blade ^ dis

#

@echo garden Your holidays going okay? Able to stay safe and warm?

echo garden
#

@rugged rootthanks for the caring, and im over my loved ones house this season, but ill be back out soon enough just greatful to entertain some of my other hobbies in the mean time.

#

@rugged root just sucks not to have a damn vehicle, and btw, i found my key.. not in the condtioned hoped but found 😦

#

yes yes, (reffering to the barking ass dog) sing me the songs of your people

rugged root
#

I take it the key didn't work though, right?

thin lodge
#

Hello!, I can't talk but I'll be watching for a while

rugged root
#

Always happy to have more folks

echo garden
#

the key was plastic

#

it sadly was melted

rugged root
#

And if we're in VC, we'll typically be watching the chat here so no one gets left out of the convo

echo garden
#

but i knew for sure that it was definately the key.. without a doubt.

#

@rugged root you work here is done.

stark river
#

someone suggest a project. i want to build something over the holidays

echo garden
#

a snowman

lucid blade
#

LOL

echo garden
#

@stark river i have one most don't understand.

#

if know anything of tensors

stark river
#

that gives me an idea i've been wanting to try out

echo garden
#

well, my work here is done

stark river
#

but ml training i do in python 😦
i was hoping for a web side proj
still... ai voice gen proj is one i've been wanting to try out

echo garden
#

Youtube has saddened me, their attack against ad blockers are relentless lately

#

now they have a 3 video deal stating (bish if you keep it up we turn off the player)

stark river
#

odysee

echo garden
#

and surprisingly it works

#

@stark river yah so a project, you work with tensors?

stark river
#

i haven't worked with tensors in 1.5 years

rugged root
echo garden
#

@stark river indeed... well i have an idea of attaching a tensor that should work out the box with chatgpt

#

a tensor of tensors, that are geometric based, using shapes to maintain data structure and adhereing X Y Z values to availble device data.

#

@stark river so, since shapes can be mathematically created, they can be made within the original tensor and maintain dimenstional data, that within its core can be referenced using words like, trinangle, square, box... all basic gemetric shapes stored as a tensor vaule for reference.

stark river
echo garden
#

eh, more of a 3d environment of data strcuture that has a maintained learned world

#

i have ..... well possibly have an example.

#

in python

#

i do understand im working 0 and 1s here,

crystal fox
#

@rugged root

echo garden
#

what the heck?

#

this what the AI kicked out?

obsidian dragon
#

stable diffusion "orange"

rugged root
#

@slender sierra Yo

stark river
#

run jack

#

better hide jack

thin lodge
#

anyone see the new version of midjourney?

rugged root
#

I haven't, no

thin lodge
#

or played with it

rugged root
#

Honestly kind of forgot about midjourney

frozen owl
#

my dockerfile so far

#
# Stage 1: Install Python dependencies
FROM ubuntu:latest AS python-dependencies

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get install -y \
    python3 \
    python3-pip \
    python3-dev \
    python3-venv \
    build-essential \
    curl \
    && apt-get clean

RUN python3 -m venv /app/tz_env

WORKDIR /app

COPY requirements.txt /app/requirements.txt

RUN /app/tz_env/bin/pip install -r requirements.txt

# Stage 2: Build the main container
FROM ubuntu:latest

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y

ENV PATH="/root/.cargo/bin:${PATH}"

RUN apt-get update && apt-get install -y \
    libglib2.0-0 \
    libgl1 \
    protobuf-compiler \
    pkg-config \
    libssl-dev \
    libclang-dev \
    clang \
    && apt-get clean

COPY --from=python-dependencies /app /app


WORKDIR /app

COPY . /app

ENV LIBTORCH_USE_PYTORCH=1
ENV LIBTORCH_BYPASS_VERSION_CHECK=1 

RUN /app/tz_env/bin/python3 -c "import torch; print(torch.__file__)" > /tmp/pytorch_path.txt

# Set the environment variables
ENV PYTORCH_PATH=$PYTORCH_PATH
ENV LD_LIBRARY_PATH="$PYTORCH_PATH/lib:$LD_LIBRARY_PATH"

RUN cargo build --release

CMD ["bash"]
thin lodge
#

It's a generative image AI

#

no, you can access to discord channel and use

obsidian dragon
stark river
#

turned off google voice detection πŸ’ͺ

echo garden
#

@stark river honestly try not to use it whenever i can, but its so damn useful as of late im just finding myself violating myself..... which i normally do anyhow but this... feels.. dirty.

thin lodge
#

hahaha

#

yeah, It's useful and I know it is a big mistake use and google photos, but the services it's so good u.u

echo garden
#

but the one thing i can't stand is the hold they have on you... imagine LOSING that number your need to recive the text that your account holds so much money over and if you lose its over with

#

this has happened to me 3 times

thin lodge
#

wow

#

what did you do?

echo garden
#

scream, whine, beg, threaten, sulk, wondered, tried, cried, and here i am ..

#

i have like 300 on my hotmail account for xbox and the only way i can get get access to something on it is to have my google that has ALL of my RANDOM ass passwords they recommended, but not only that if you have it you need the number to recieve it

#

i was willing to pay 600+ to sprint for my phone number but they said it had expired, imagine, how much they would have made if they held before collections, about 6 months what to keep the serivce open but not in use is what, 4 to 6 dollars a month? they saved a customer and the customers entire digital life, is worth that 600+

thin lodge
#

random passwords? can you enable that functionality?

echo garden
#

now i have ghost accounts online

#

which i NEVER watned to have

#

facebook and some other services i have no access too anymore ALL because i lost a number

#

if i had access ... funny thing i call the number once in a while

#

last i check it thinks its available

#

but the owner was a kid of the payer and it seemed weird i kept calli9ng for a code

thin lodge
#

damn man

#

that's sucks

modern yacht
#

Any bash guru over here mind helping out

rugged root
#

I'm a guru at bashing things

#

But not using bash

echo garden
#

Painting "Tweakers at a Motel 6"

frozen owl
#

Earl of Sandwich is a noble title in the Peerage of England, held since its creation by the House of Montagu. It is nominally associated with Sandwich, Kent. It was created in 1660 for the prominent naval commander Admiral Sir Edward Montagu. He was made Baron Montagu of St Neots, of St Neots in the County of Huntingdon, and Viscount Hinchingbro...

modern yacht
#

How can i get the count of matching occurrence in this awk code

awk -F" " 'match($1&&$9, $1&&$9) { print $1 " " $9 }' < apache-access.log | sort -r 
lavish rover
#

@rugged root could we get an aoc voice channel pls? Wanted to stream solving some problems later tonight

thin lodge
#

see you next time guys, take care

echo garden
rugged root
#

@left leaf Sorry, we get hung up on weird stuff

gentle flint
#

such as?

echo garden
willow light
#

Nothing says "recently got a new email address" quite like getting a 429

#

when changing email address in various services

gentle flint
willow light
pine depot
willow light
pine depot
gentle flint
vernal bridge
willow light
gentle flint
vernal bridge
pine depot
#

Hope this was the best minute of your life! #shorts

MERCH: https://manitowocminute.com/collections

Follow me at these places:
Twitter: @CharlieBerens
Instagram: @CharlieBerens
Facebook: www.facebook.com/charlieberensTV

For more Manitowoc Minute click here: https://www.youtube.com/playlist?list=PLRY-eAwoPfKBdGfuDu081r-bSMapeg0GB

β–Ά Play video
gentle flint
willow light
gentle flint
#

@willow light

hot drum
#

what all of this

gentle flint
#

it happens here as well

willow light
#

That almost looks like Nashua, just replace the bricks with pavement, empty vapes, and used needles.

gentle flint
#

it's Utrecht

hot drum
#

i can't speak

gentle flint
#

I am aware

wise cargoBOT
#
Voice verification

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

willow light
#

well that's cool, looking from the east

#

I live in the large long building along the river.

hot drum
#

should someone tell him?

willow light
#

The train station is gone, it was replaced with the first fast food restaurant in the state. Which is now a very low quality diner.

gentle flint
#

o

willow light
#

The lake near the upper left corner no longer exits, they filled it in with asbestos and built a shopping center with a massive parking lot on top.

#

speaking of paper factories

frozen owl
gentle flint
#

@willow light someone next door was playing this recently
https://youtube.com/watch?v=Qz9gmiLBVFA

SebastiΓ‘n Yatra – Tacones Rojos (Official Video)

β€œTacones Rojos” OUT NOW: https://sebastianyatra.lnk.to/TaconesRojos!YTD

Pre-save β€œDharma” here: https://presave.umusic.com/dharmapresave

YouTube Top Hits here: https://youtube.com/playlist?list=PL7jpaz44D1qabCDRlLxq4nO0owpL_l-B8

My Spotify Complete Collection here: https://open.spotify.com/pl...

β–Ά Play video
whole bear
#

@sturdy panther !voice verify

willow light
#

https://www.youtube.com/watch?v=hc7Bn9u5uQ0 @gentle flint the parking lot outside my window is one of the battlegrounds in this conflict

From the dance floors of weddings and bar mitzvahs to the Billboard Hot 100, chances are, you've enjoyed some merengue music – think about the 1998 Puerto Rican hit 'Suavemente,' which topped charts across the globe. But did you know that merengue's path to global fame started in the Dominican Republic, before it made its way to Puerto Rico? In ...

β–Ά Play video
whole bear
#

!voice verify

wise cargoBOT
#
Voice verification

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

willow light
#

This wonderful piece by GyΓΆrgy Ligeti is part of the famous "Musica ricercata" suite for solo piano. This seventh movement has a very interesting feature: the supporting ostinato and the melodic lines are totally decorrelated. I would like to propose here an interpretation which leverages this very aspect, involving two sides of electronic music...

β–Ά Play video
stark river
#

undefined

frozen owl
#

imagine having a lottery system for car driving licenses

willow light
#

that would be wonderful

stark river
#

i once created an investment strategy that guaranteed a lottery win every time 😦 (in my country only)

frozen owl
#

@peak depot are you a cs student

vocal basin
#

meanwhile my internet doing a funny

frozen owl
#

:(

#

the docker build was a fail

#

i mean it works but

#

cargo wasnt properly configed

vocal basin
frozen owl
#

hmmmmmm

#

and you call your internet slow?

#

damn

#

and because of my shit wifi it takes hours to just build and push to dockerhub

#

fuck

vocal basin
echo garden
#

im getting 500+ mb

vocal basin
#

my network card might be somewhat bad too

#

(cable connection would be better anyway)

frozen owl
#

i want ethernet wifi connection 🫠

vocal basin
frozen owl
#

wtf

#

600 mbps

#

insce

#

insane

#

what isp

vocal basin
#

MGTS

#

actually it used to hit 800 mbps when I tested it at other home

vocal basin
#

yes, the less poor part of it

#

North and East have very costly internet

#

I don't remember about Far East, that might have okay prices too

rapid chasm
stark river
#

it's funny how the country that wrote the book on civil disobedience forgot how to do it

vocal basin
runic drum
#

heyho

#

what is the topic?

#

she knows about your screentime

peak depot
#

Belly

gentle flint
modern yacht
#

Hey @vocal basin mind helping out with bash

vocal basin
#

@willow light @gentle flint
"there's a more radical solution to YouTube ads: moving to Russia"

somber heath
#

A St. Louis Metropolitan Police Department SUV crashed into the front door of a south St. Louis bar early Monday morning, and one of the bar's owners is now facing charges after a confrontation with police.

The owners of Bar:PM at the intersection of Blow Street and South Broadway were asleep above the bar at about 12:30 a.m. when they heard ...

β–Ά Play video
vocal basin
modern yacht
somber heath
#

The attorney for the owners of a bar that a St. Louis police SUV slammed into early Monday morning released video that shows a police SUV running a red light shortly before the crash. The video was taken from a building at the intersection of South Broadway and Nagel Avenue, about 225 feet away from Bar:PM.

=====
FULL STORY: https://www.ksdk.co...

β–Ά Play video
scarlet halo
#

hey

willow gate
#

Alisa chess?

vocal basin
willow gate
gentle flint
willow gate
#

@vocal basin hi

peak depot
gentle flint
#

lol

stark river
# peak depot

why not make your own pockets if the makers don't give them?

peak depot
stark river
#

i get bespoke clothes made so everything made to spec

peak depot
#

this is tykkylumi

stark river
#

@spring eagle happy nuuttipuukki

peak depot
spring eagle
#

@stark river thaanks

peak depot
spring eagle
#

Are you guys not programming ?

stark river
spring eagle
#

That's cool, can I help?

peak depot
stark river
spring eagle
#

Ok

stark river
peak depot
short owl
#

is that the honeycomb hide out ?

peak depot
short owl
#

i have 2 apple trees , they rot on ground then the deer ( usually only one ) will eat all of them - is that alcohol kinda ?

#

is this someplace exoitic ?

#

where is this ?

peak depot
#

finland

short owl
#

ahhh ok

obsidian dragon
#

hourzes

runic drum
#

IMAGE RECOGNITION ACTIVATED

#

CENTAURE WOMEN IDENTIFIED

runic drum
#

Clipped voice message: "You ever watched a 12 year old"

#

Since I still can't speak I can only play "bot" xD

#

man those 50 messages take like 10 billion years if you dont spam

peak depot
short owl
#

the world can stop , and Finland will continue , knowlege of how to live in cold

runic drum
#

but it will be drowned first?

peak depot
short owl
#

what kind of fish ?

runic drum
#

thought it is one of the first countries to go and it is not really preventable as I understood

peak depot
rugged root
#

Phenix you have the message count

runic drum
#

sorrryy xD

peak depot
short owl
#

you need a Arctic winter suit - one piece

peak depot
short owl
#

orange mouser for the barn

#

once bed is warm then the cats come to keep you awake all night

thin lodge
peak depot
#

Finland

thin lodge
#

city?

somber heath
#

!e py my_dict = {float('nan'): i for i in range(3)} print(my_dict)

wise cargoBOT
#

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

{nan: 0, nan: 1, nan: 2}
peak depot
#

I won't dox it

thin lodge
#

what?

obsidian dragon
obsidian dragon
verbal zenith
#

!e

print(float('nan') == float('nan'))
wise cargoBOT
#

@verbal zenith :white_check_mark: Your 3.12 eval job has completed with return code 0.

False
verbal zenith
#

!e

print(float('1') == float('1'))
wise cargoBOT
#

@verbal zenith :white_check_mark: Your 3.12 eval job has completed with return code 0.

True
thin lodge
somber heath
#

!e py my_dict = {float('inf'): i for i in range(3)} print(my_dict)

wise cargoBOT
#

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

{inf: 2}
thin lodge
#

but Rome isn't in Italy?

#

o.O

verbal zenith
#

!e

print(float('inf') == float('inf'))
wise cargoBOT
#

@verbal zenith :white_check_mark: Your 3.12 eval job has completed with return code 0.

True
obsidian dragon
verbal zenith
#

!e

print(float('nan').__ceil__())
wise cargoBOT
#

@verbal zenith :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     print(float('nan').__ceil__())
004 |           ^^^^^^^^^^^^^^^^^^^^^^^
005 | ValueError: cannot convert float NaN to integer
obsidian dragon
#

!e

import Math
print(root(-1))
wise cargoBOT
#

@obsidian dragon :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     print(root(-1))
004 |           ^^^^
005 | NameError: name 'root' is not defined
obsidian dragon
#

!e

import Math
print(root(-1))
wise cargoBOT
#

@obsidian dragon :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     import Math
004 | ModuleNotFoundError: No module named 'Math'
verbal zenith
#

!e

from math import sqrt
print(sqrt(4))
wise cargoBOT
#

@verbal zenith :white_check_mark: Your 3.12 eval job has completed with return code 0.

2.0
obsidian dragon
#

!e


from math import sqrt
print(sqrt(-1))
wise cargoBOT
#

@obsidian dragon :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 2, in <module>
003 |     print(sqrt(-1))
004 |           ^^^^^^^^
005 | ValueError: math domain error
somber heath
#

!e py a = float('inf') b = float('inf') print(id(a), id(b))

wise cargoBOT
#

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

140152189061104 140152189063152
#

@verbal zenith :white_check_mark: Your 3.12 eval job has completed with return code 0.

nan
rugged root
#

#bot-commands

verbal zenith
#

!e

print(float('nan').real == float('nan').real)
wise cargoBOT
#

@verbal zenith :white_check_mark: Your 3.12 eval job has completed with return code 0.

False
obsidian dragon
#

The cmath module also includes a couple of constants like pi, tau, Positive infinity, and some more constants used in the calculations.

#

!e

import numpy as np

arr = np.array([8 + 5j, 10 + 2j, 4 + 3j])
print(arr)
wise cargoBOT
#

@obsidian dragon :white_check_mark: Your 3.12 eval job has completed with return code 0.

[ 8.+5.j 10.+2.j  4.+3.j]
peak depot
somber heath
#

@rugged galleon πŸ‘‹

rugged root
runic drum
molten pewter
molten pewter
rapid chasm
#

@eager thorn Hey BlindWave

eager thorn
rapid chasm
eager thorn
rapid chasm
eager thorn
twin imp
#

I think its more likely that santa traverses the mycelial network than it is via sleigh, rooftop and chimney

mystic lily
echo garden
#

dentist

somber heath
#

After Theresa May says Britain should leave the European convention on human rights, Patrick Stewart, Adrian Scarborough and Sarah Solemani expose the problems in the Conservative plan for a UK bill of rights.
Subscribe to The Guardian on YouTube β–Ί http://bit.ly/subscribegdn

This satirical take on the classic Monty Python sketch asks β€˜what has ...

β–Ά Play video
rapid chasm
#

Hi @whole bear

#

League of Legends

#

He has a point

#

Just saying

#

No worries agreeGe

#

2017 maybe?

somber heath
#

@brave condor πŸ‘‹

brave condor
#

Hii

#

Don't have permission to speak

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 condor
#

Hi again

#

@somber heath I just got started learning python

#

Thought maybe if I hang around with people who share the same interest it can get easier and more engaging

#

U sound like rick sanchez

#

Helllooo

#

He was talking about people with similar wavelengths and all

#

@somber heath what got u here?

#

@somber heath as in to this discord

#

πŸ˜‚nah as in what made u join this server

#

Does it get busier later on in the day

#

I seee

#

πŸ˜‚

#

Hey chriss

#

Yes sirrr new to python

#

It’s my first programming language

#

I have been at it for 3 days

#

I have been working on it on my laptop

#

Well there is this guy named mosh on youtube. I am trying to learn from him

#

Narp

somber heath
#

Corey Schafer, YouTuber, playlists.

#

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

brave condor
#

The guy from uncharted 2?

#

Karl schafer

#

I seee corey πŸ˜‚

#

I do. They usually giveβ€˜homework’ so..

somber heath
#

@tranquil lion πŸ‘‹

brave condor
#

What do you guys use python for anyways?

#

Love huskeys

#

U guys know any other languages?

#

Hi @wind raptor

#

Oh opps hi @whole bear

#

Oops*

#

I have been on discord for a bit buttt usually just switch to snap chat to talk to people

somber heath
#

!e py arr = [1, 5, 2, 7, 3, 9, 4] for i, v in enumerate(arr): if v > 5: arr[i] -= 1 print(arr)

wise cargoBOT
#

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

[1, 5, 2, 6, 3, 8, 4]
somber heath
#

!e py import numpy as np arr = np.array([1, 5, 2, 7, 3, 9, 4]) arr[arr > 5] -= 1 print(arr)

wise cargoBOT
#

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

[1 5 2 6 3 8 4]
brave condor
#

I am gonna head to work. U guys have fun

somber heath
#

@fathom glen πŸ‘‹

sage grove
#

i'd like to think a stupid question is one that wastes time

#

a multidimensional graph of course

#

let me take a few hours to draw it for you

#

last boid project i did

random copper
#

For Python today i found out my Microsoft discord bot wasnt functioning correct πŸ˜„

#

Where is the API!!

#

Have a Plan. ...
Have a Script. ...
Speak Slowly and Clearly. ...
Be Prepared to Have a Conversation. ...
Be Prepared to be Told β€œNo” or β€œNo, Thank you” ...
Handling the Gatekeeper. ...
Always Take Action on Your Calls

slender sierra
rapid chasm
#

That is sexism

warped raft
#

@left leaf and @stark river hello

#

@neon perch hello

neon perch
#

hey

left leaf
#

`

#

p

#

`

shy parrot
#
print("hello World")
neon perch
#

'py
print("hello world")
'

shy parrot
neon perch
#

'''py
print("deez")
'''

#
print("hello world")
shy parrot
wise cargoBOT
#
Missing required argument

code

neon perch
#

!eval

wise cargoBOT
#
Missing required argument

code

#
Command Help

!eval [python_version] <code, ...>
Can also use: e

Run Python code and get the results.

This command supports multiple lines of code, including formatted code blocks. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.

The starting working directory /home, is a writeable temporary file system. Files created, excluding names with leading underscores, will be uploaded in the response.

If multiple codeblocks are in a message, all of them will be joined and evaluated, ignoring the text outside them.

Currently only 3.12 version is supported.

We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!

shy parrot
#

!eval

print("Hello World")
neon perch
#
list_of_airports_in_destination_metro = [destination_iata]

                # Check if it's a round trip and the destination IATA is in the metropolitan codes
        if return_date != '' and destination_iata in metro_codes_airports_file.iloc[:, 0].tolist():
            # Find the row where the first column matches the destination_iata
            row_of_destination_iata = metro_codes_airports_file[metro_codes_airports_file.iloc[:, 0] == destination_iata]
            # Hopefully this resets the list of airports in the destination metro whenever we search for a new destination?
            list_of_airports_in_destination_metro = []
            # Extract the row as a list (assuming there is only one matching row)
            list_of_airports_in_destination_metro = row_of_destination_iata.iloc[0].tolist()
            # drop all nan
            list_of_airports_in_destination_metro = [x for x in list_of_airports_in_destination_metro if str(x) != 'nan']
            print(f"\n\n\n{list_of_airports_in_destination_metro}\n\n\n")
            session['list_of_airports_in_destination_metro'] = list_of_airports_in_destination_metro
#
    # Retrieve the metro airports list from the session
    metro_airports = session.get('list_of_airports_in_destination_metro', [])
    print("Type before passing to template:", type(metro_airports))
    print("Content before passing to template:", metro_airports)
    print("Metro Airports in Session:", metro_airports)

    return render_template('flight_results.html', flights=processed_flights, airlines=dictionaries.get('carriers', {}), metro_airports=metro_airports)

stark river
#

where is the error

neon perch
#

Type after setting in session: <class 'list'>
Content after setting in session: ['PAR', 'CDG', 'ORY', 'LBG']
Traceback (most recent call last):
File "C:\Users\brita\Desktop\ticket_website\venv\Lib\site-packages\flask\app.py", line 1478, in call
return self.wsgi_app(environ, start_response)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\brita\Desktop\ticket_website\venv\Lib\site-packages\flask\app.py", line 1458, in wsgi_app
response = self.handle_exception(e)
^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\brita\Desktop\ticket_website\venv\Lib\site-packages\flask\app.py", line 1455, in wsgi_app
response = self.full_dispatch_request()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\brita\Desktop\ticket_website\venv\Lib\site-packages\flask\app.py", line 870, in full_dispatch_request
return self.finalize_request(rv)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\brita\Desktop\ticket_website\venv\Lib\site-packages\flask\app.py", line 889, in finalize_request
response = self.make_response(rv)
^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\brita\Desktop\ticket_website\venv\Lib\site-packages\flask\app.py", line 1215, in make_response
rv.headers.update(headers) # type: ignore[arg-type]
File "C:\Users\brita\Desktop\ticket_website\venv\Lib\site-packages\werkzeug\datastructures\headers.py", line 414, in update
for key, value in mapping:
^^^^^^^^^^^^^^^^^^^^^^
ValueError: too many values to unpack (expected 2)

stark river
#

mapping has > 2 values.. not key, value not 2

whole bear
#

Hello

#

I am not sure why I am not able to speak

#

Makes sense

stark river
#

there are 4 values in the session list and the flask lib is only unpacking 2

#

it seems like mapping is expecting an object and you are passing an array
it is looking for a key value pair like a dict

left leaf
#

item()

left leaf
neon perch
#

brb

warped raft
#

@somber heath hello how are you doing

somber heath
#

Dipped my toe back into my previous frogpond.

#

A bit disenchanted.

warped raft
#

have a bath

willow gate
#

@somber heath hello

neon perch
left leaf
rugged root
somber heath
#

Went searching for gif to react with.

#

Found this instead.

pine depot
#

god opalmist

#

thats disturbing

somber heath
#

This is me not even trying.

neon perch
#

Provided to YouTube by Warner Records

Love the Stuff / Ain't No Mountain High Enough (Live in New York) Β· Stuff

The Right Stuff

β„— 1980 Warner Records Inc.

Drums: Chris Parker
Guitar: Cornell Dupree
Guitar: Eric Gale
Bass, Producer: Gordon Edwards
Keyboards: Richard Tee
Drums: Steve Gadd
Performed by: Stuff
Writer: Nickolas Ashford
Writer: St...

β–Ά Play video
rugged root
left leaf
peak depot
left leaf
rugged root
#

@tired lance Yo

tired lance
#

Can I speak

rugged root
tired lance
#

Please , don't kid me, It was just one time, okey, I got it.

#

I got it

#

No, I don't want

high token
#

nope

rugged root
#

How's it going

high token
#

well pretty good

#

how about u

rugged root
#

Doing decent enough

#

Just work

high token
#

decent enough is decent enough for me

peak depot
vocal basin
#

abolish BIOS

#

OS itself

vocal basin
peak depot
#

he is gone...

left leaf
#

β€œDriver picks the music. Shotgun shuts his cakehole”

vocal basin
#

I've finally bought a switch

#

getting proper network setup, two years later than I was originally planning to

vocal basin
#

they're particularly aiming at data centre servers

rugged root
#

That makes some sense

vocal basin
#

GPUs also sometimes have power issues

rugged root
#

850 watts should be sufficient

vocal basin
vocal basin
rugged root
#

PSU

#

They're rated for their output

vocal basin
#

PSUs are marketed by input, iirc

#

?

#

eh

rugged root
#

Wait what was that program... fuzz mark?

#

The one that had the hairy donut

vocal basin
rugged root
#

They're usually rated for 80% at consistent load

#

!stream 645603124836433930

wise cargoBOT
#

βœ… @waxen barn can now stream until <t:1703260542:f>.

rugged root
#

!stream 645603124836433930 30M

wise cargoBOT
#

βœ… @waxen barn can now stream until <t:1703262704:f>.

echo garden
#

oh hoooo streaming rights

#

OMG A TOE

rugged root
vocal basin
#

javascript mmo

#

they (screeps) used to have an official dedicated server

#

but it relied on python 2

#

they also made a non-mmo version

#

screeps arena

#

but that one has closed-source servers, iirc

rugged root
#

Got distracted with work stuff, didn't get a chance to actually get it done yesterday

#

Better late than never, I guess

random copper
#

Show me

#

what you trying to sell?

rugged root
#

Kidneys

#

I mean what?

neon perch
#

Flight tickets

random copper
#

You need phone script?

What you need?

amber raptor
rugged root
#

!stream 1051563652270006323

wise cargoBOT
#

βœ… @neon perch can now stream until <t:1703263517:f>.

amber raptor
#

Employees are the rungs on the ladder of success. Don't hesitate to step on them. Rule 211

echo garden
#

Are you able to track flights live?

amber raptor
#

There is no crying in business.

random copper
#

So what was the need? πŸ˜„

Website looks great, can i have the code?

I can do the hosting if you want..

Salesscript?

I mean flight companies..

You going call director of large companies..

#

How much is hosting a month?

I guess hosting is just opening a FTP &/ SSH port for you..

#

My stragedy i be working closely with customer..

I will make you rich...

amber raptor
#

Your boss is only worth what he pays you. This is soo true

random copper
#

If you need a Partner in Business mate, i help you..

neon perch
#

Where are you from?

random copper
#

Im working on a basic template to sell but targetted websites like flight companies, is good too, but calling director of a flight company...

random copper
neon perch
#

US

#

But I am of Danish decent which is rad

random copper
neon perch
#

I wish lol

#

I know "hallo" and "ya tak"

random copper
#

I am Sixth Gen Italian πŸ˜„

#

Ja tak,...

#

How did you make that website?

Local host & software?

#

I am root...

neon perch
#

It was a local host and some html files ran with a python backend using flask

random copper
#

So you want a DNS for it or you trying to sell it to a flight company?

Can i have the code?

#

Good evening

rugged root
#

@vestal forge Yo

random copper
#

What he should do to come to the next level!

#

Dont make him annoyed about it, but say shit like: "I eat like S dude, 2 days in a row spaghetti and ketchup"

"Im going out this weekend i cant even buy her a F drink"

Then when he is on a good day, you ask him "So can i get more pay??"

Wrap it as you want

#

Thats what i say, complain, kindly and ask on a good day

#

And do it casually you can mention 3 times in a day but it cannot be annoy and direct, good time you ask him..

#

Complain but not about the company, but about your private life

scarlet halo
whole bear
#

Yo

fast saffron
#

cant really speak but hi

#

btw how do I know once I reached 50 messages in here so I can finally talk too?

sturdy panther
#

It doesn't work yet?

hot drum
#

so hi @fast saffron

#

and to know if you can talk or no there is this chanal

#

called voice-verification

#

i think you should send :

idle vector
#

hi

hot drum
#

!voiceverify on it

#

and you will get a private message

#

@idle vector hi

idle vector
#

hows it going folks

hot drum
#

not very well and not bad like it could be worst

#

so i'm fine i think

#

how about you @idle vector

#

how are you

idle vector
#

same XD

#

the horrors persist but so do I

hot drum
#

Hahahaha

#

, that's the spirit!

#

Keep on pushing through!

idle vector
#

yessirrrr

rugged root
#

@whole bear @bleak sleet Yo

whole bear
bleak sleet
rugged root
#

How goes it

bleak sleet
whole bear
#

popipipopopipo

bleak sleet
whole bear
#

do your work

#

Don't interfere

bleak sleet
#

ok

#

im sorry

whole bear
#

@bleak sleet what did an ant said to ugly elephant?

bleak sleet
whole bear
#

and the joke would have landed only if you said "what?"

bleak sleet
# whole bear and the joke would have landed only if you said "what?"

but do you actually think that you would tag me in server like this and then tell me a joke and expect me to understand it.
for once i was confused that what even on this earth you are asking someordinary

I can talk with you but just normally or if you need any help otherwise im sorry

also now can you just do the joke already

whole bear
#

what you keep yapping about?

bleak sleet
whole bear
rugged root
#

@ember meadow Yo

rugged root
#

And thanks

bronze haven
#

Hi

ember meadow
rugged root
#

How goes it

#

Oh and for the folks wondering why you couldn't speak in voice chat, check out the #voice-verification channel. That'll tell you what you need to know about the voice gate

bleak sleet
rugged root
#

Ah yes, good ol' Hem shake

#

It's even better, since it shakes when I talk

#

That alone is worth me having Nitro

flint hill
#

Hi

somber heath
#

@foggy prairie πŸ‘‹

foggy prairie
#

Awww sorry guys, my DC got triggered in to voice lol

foggy prairie
somber heath
#

@round quarry πŸ‘‹

round quarry
#

hey

#

how are you

#

i can ehar you

#

hear

#

what are you doing

#

nice

#

you code in python

#

you ever read the appentice handbook

#

its a good reAD

#

read

#

im on chapter 4

#

varibles

#

im trying to code a cash register

#

to count change

#

yes

#

x = 1

#

var1 = 10

#

python does what

#

change = starting_amount - item_amount
dollar_change = int(change / dollar_value)
var1 = change - dollar_change

#

3 Write code that classifies a given amount of money (which you store in a
variable named amount), specified in cents, as greater monetary units. Your code lists the
monetary equivalent in dollars (100 ct), quarters (25 ct), dimes (10 ct), nickels (5 ct), and
pennies (1 ct). Your program should report the maximum number of dollars that fit in the
amount, then the maximum number of quarters that fit in the remainder after you subtract
the dollars, then the maximum number of dimes that fit in the remainder after you subtract
the dollars and quarters, and so on for nickels and pennies. The result is that you express
the amount as the minimum number of coins needed.

#

trying to have a decimal

#

dollar_change = (change / int(dollar_value))

#

cents

somber heath
#

// floor division

#

% modulus

round quarry
#

modl

somber heath
#

!d divmod

wise cargoBOT
#

divmod(a, b)```
Take two (non-complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using integer division. With mixed operand types, the rules for binary arithmetic operators apply. For integers, the result is the same as `(a // b, a % b)`. For floating point numbers the result is `(q, a % b)`, where *q* is usually `math.floor(a / b)` but may be 1 less than that. In any case `q * b + a % b` is very close to *a*, if `a % b` is non-zero it has the same sign as *b*, and `0 <= abs(a % b) < abs(b)`.
round quarry
#

dollar_change = change % dollar_value

#

thank you

somber heath
#

!e py a, b = (1, 2) print(a) print(b)

wise cargoBOT
#

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

001 | 1
002 | 2
somber heath
#

Unpacking.

#

!e py print(divmod(10, 8))

wise cargoBOT
#

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

(1, 2)
round quarry
#

what is the 1 for

#

ok

#

i understand

somber heath
#

!e py print((10 // 8, 10 % 8))

wise cargoBOT
#

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

(1, 2)
round quarry
#

Title

Purpose

author

date

#data

dollar_change = 0
quater_change = 0
dimes_change = 0
nickle_change = 0
pennies_change = 0
dollar_value = 1
quater_value = .25
dimes_value = .10
nickles_value = .05
pennies_value = .01
change = 0
var1 = 0

#input
starting_amount = float(input("starting amount = "))
item_amount = float(input("item amount = "))

#process
change = starting_amount - item_amount
dollar_change = change % dollar_value

#output
if change < 0:
print("sorry, not enough cash")
else:
print("your change is", dollar_change)
print (dollar_change)
if dollar_change > 2:
print(int(dollar_change), "dollars")
if 2 > dollar_change >= dollar_value:
print("1 dollar")
if quater_change >= quater_value:
print( quater_change, "quaters")
if dimes_change >= dimes_value :
print( dimes_change, "dimes")
if nickle_change >= nickles_value:
print(nickle_change, "nickles")
if pennies_change >= pennies_value:
print(pennies_change), "pennies"

#

thats what i got so far

#

i starrted this 2 days ago

somber heath
#

!f-string

wise cargoBOT
#
Format-strings

Creating a Python string with your variables using the + operator can be difficult to write and read. F-strings (format-strings) make it easy to insert values into a string. If you put an f in front of the first quote, you can then put Python expressions between curly braces in the string.

>>> snake = "pythons"
>>> number = 21
>>> f"There are {number * 2} {snake} on the plane."
"There are 42 pythons on the plane."

Note that even when you include an expression that isn't a string, like number * 2, Python will convert it to a string for you.

somber heath
#

!e py name = 'Sally' age = 21 print('Hello, ' + name + '. You are ' + str(age) + ' years old.') print(f'Hello, {name}. You are {age} years old.')

wise cargoBOT
#

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

001 | Hello, Sally. You are 21 years old.
002 | Hello, Sally. You are 21 years old.
round quarry
#

2

#

print(f' hello, {name}. You are {age} years old !')

#

print(f' hello, {name}. You are {age} years old !')

hot drum
#

print('Hello world! I am {}, the first chatbot ever created in the {}s!'.format('ELIZA', 1960))

round quarry
#

age = 99

#

sorry

somber heath
#

!e ```py
print('Hello, world.')
print('Goodbye.')```

round quarry
#

!e"'py

#

how do i write to lines

#

thank you

#

!epy print('hello, world.') print('GoodBye.')

wise cargoBOT
#

@round quarry :white_check_mark: Your 3.12 eval job has completed with return code 0.

001 | hello, world.
002 | GoodBye.
round quarry
#

Thank you

willow gate
#

@wind raptor hello, Good

#

how are you

#

yep

#

nope now just exams finish

#

Going to start soon

#

finding some good ideas

#

yes

#

sem 6 will start from jan

#

you are in college?

wind raptor
#

yes

wind raptor
willow gate
wind raptor
#

Are you asking which courses?

willow gate
#

yep

wind raptor
willow gate
#

btech or bsc

wind raptor
#

Software Engineering

willow gate
wind raptor
#

How did you like it?

#

I think we have to do it using Eclipse

willow gate
willow gate
wind raptor
#

lol

willow gate
#

its quite boring subject

wind raptor
#

yeah, I would guess so

lucid blade
#

^ non playable demo 😦

willow gate
wind raptor
#

Nice

#

I like Selenium

willow gate
willow gate
#

Alisa chess?

vocal basin
lucid blade
#

Transport Tycoon is a city-based pixel video game designed and programmed by Chris Sawyer, and published by MicroProse on 15 November 1994 for DOS. It is a business simulation game, presented in an isometric view in 2D with graphics by Simon Foster, in which the player acts as an entrepreneur in control of a transport company, and can compete ag...

willow gate
vocal basin
willow gate
#

@whole bear hello

#

good

vocal basin
#

wasn't lambda used as a symbol because circumflex (caret diacritic) was too hard to typeset?

lucid blade
#

Lambda calculus (also written as Ξ»-calculus) is a formal system in mathematical logic for expressing computation based on function abstraction and application using variable binding and substitution. It is a universal model of computation that can be used to simulate any Turing machine. It was introduced by the mathematician Alonzo Church in the...

somber heath
#

@ocean galleon πŸ‘‹

ocean galleon
#

hi

#

i cannot unmute

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.

ocean galleon
#

!voice

#

idk how many messages i've sent

#

:((

#

interesting

willow gate
#

@vocal basin

whole bear
#

β™ͺ

willow gate
#

joining?

vocal basin
#

I'm ordering stuff rn (will go outside soon to take it from the store)

somber heath
#

@stuck snow πŸ‘‹

stuck snow
#

i do not have permission to speak, how to fix that

whole bear
#

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

stuck snow
#

so i need to send 50 messages?

whole bear
#

Unfortunatly

wind raptor
stuck snow
#

so help me please with it, i send the message - you answer me, and i send it again

#

i think it will not count as a spam

somber heath
#

@west fern πŸ‘‹

stuck snow
west fern
west fern
stuck snow
#

so lets do that together, we can simulate a discussion

west fern
#

okay

west fern
stuck snow
#

so how long have you been learning python

somber heath
#

Approximately six to seven years.

wind raptor
west fern
#

and you

stuck snow
#

only 4 months :))

west fern
#

working on any project?

west fern
stuck snow
#

i am just switching my career to IT

stuck snow
west fern
west fern
stuck snow
stuck snow
stuck snow
#

do you work as back-end developer?

west fern
#

i like creating apis

stuck snow
#

nice, we share same interest

west fern
#

i'm currently working on a project , you can check it out on my bio

stuck snow
#

sure, i will check it now

west fern
#

wait...

#

there's a problem

stuck snow
#

nice project! i like it. so is it like music platform?

west fern
#

i think the send 50 message only works in general chat

stuck snow
#

are you sure

west fern
stuck snow
west fern
#

Have 50 messages in the server

Deleted messages don't count
Messages in 

⁠bot-commands and ⁠sir-lancebot-playground don't count

#

so it's count i guess

stuck snow
#

yes, i think so

west fern
stuck snow
west fern
stuck snow
#

i hope you will get through

west fern
#

i know it's not the right way

willow gate
west fern
#

but now it's for my personal use oly

willow gate
whole bear
#

I'm sorry for interrupting while you were talking

stuck snow
#

so do you work for some company? or just studying by doing pet projects?

stuck snow
west fern
# willow gate did you Download it then play?

my plan is to write the code in a way that we can play the first about 30sec without using youtube embbed apis , after it might get ads , so i download it on that time and save it to a temporary file and after the it deletes , i'm sorry i know it's the worst alogrithm

#

don't have any other solution'

west fern
#

we do love to hear

west fern
# willow gate are you using api?

did't tested the youtube api , but working on the api to download , actually i completed it , but intregrating it to a server is quite complex , cuz using webautomation is hard in free servers

west fern
#

it works on my local machine

stuck snow
west fern
stuck snow
#

yes

stuck snow
west fern
#

well , there is a large number of songs here, and contains all remixes , thats all , i did't check other yet

#

and we can scrap video data easily using keywords , don't think other platforms have

minor sage
#

CMP, SHL, SHR, JMP, CALL and INC

west fern
#

β“˜ User is suspected to be a part of an online python organization. Please report any suspicious activity to Discord staff.

#

woahh

#

Thought it's a disclamer

west fern
#

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

west fern
#

woo , i got permission

stuck snow
#

i still didn't ((

west fern
#

can you come to VC 1 , check my voice clarity?

stuck snow
#

yes, i know it that's why i am sending messages to count 50

#

your voice is not clear

#

i hear noise when you talk

#

i am not understanding any word you said

west fern
#

we can chat

stuck snow
#

ok

west fern
#

okay , what were we chatting?

stuck snow
#

by the way I asked you what service did you use to deploy your project

#

like Heroku, etc..

west fern
#

i using glitch

stuck snow
#

nice, so is it free?

west fern
#

yeah , kinda , i think it has limited bandwith or something

stuck snow
#

@minor sage we are the same age!

west fern
#

you'r 23?

stuck snow
stuck snow
#

what about you

west fern
#

i'm 18

west fern
#

it's a demerit right?

stuck snow
west fern
stuck snow
stuck snow
dense sleet
#

heyy guys maybe you can help me with few python tasks?

west fern
#

but

#

you got permisson?

stuck snow
#

yes, thank you a lot @west fern

#

i will never forget you 🀝

west fern
#

yes , you're welcome

woeful salmon
#

my standard experience with chatgpt:
me: create a lcm function
chatgpt: here's a function named lcm which imports math and uses math.lcm
me: no create your own
chatgpt: here's a function to compute the lcm that imports math and uses math.gcd
me: **** this in thismuch time i could've implemented it myself twice

austere linden
whole bear
#

I am not even in the call

obsidian dragon
woeful salmon
#
pascals_triangle = pascals_triangle(5)
max_width = len(' '.join(map(str, pascals_triangle[-1])))

for row in pascals_triangle:
    row_str = ' '.join(map(str, row))
    print(row_str.center(max_width))

if you need the [] around it then you can instead of str use your own function which convers to string and adds []

# get each row of a pascals triangle like [1, 2, 1] in lists of integers
pascals_triangle = pascals_triangle(5)

# get the length of the longest line after formatting each integer element as a string and joining them with spaces
max_width = len(' '.join(map(lambda x: f"[{x}]", pascals_triangle[-1]))) 

# formatting is done by first using map to apply a function to each item in the list which in this case returns a string version of each item in the row we give it with [] around it

# you can also do it like this #
def format_item(num):
    return f"[{num}]"
" ".join(map(format_item, row))
# or 
" ".join([format_item(num) for num in row])
# or
formatted_row = []
for num in row:
  formatted_row.append(format_item(num))
" ".join(formatted_row)
# ^ this is all example code #


for row in pascals_triangle:
    row_str = ' '.join(map(lambda x: f"[{x}]", row))
    # we can then format each row the same way and add padding around it to make it the same length as our longest row while keeping the actual row string in the center
    print(row_str.center(max_width)) 
dense sleet
#

maybe somebody could give me code of 4 and 5 task?

elfin roost
#

pythondan anlΔ±yan dm

willow gate
#

@vocal basin what sup

vocal basin
willow gate
vocal basin
kindred marsh
#

is it possible to test my website direct in my main browser instead of selenium.?

kindred marsh
whole bear
#

@solid perch How's your christmas?

solid perch
#

It's still the 23rd

whole bear
#

.help

viscid lagoonBOT
#
Command Help

Anagram
.anagram
Given shuffled letters, rearrange them into anagrams.

AprilFoolVideos
.fool
Get a random April Fools' video from Youtube.

AvatarModify
.avatar_modify 8bitify
Pixelates your avatar and changes the palette to an 8bit one.
.avatar_modify
Groups all of the pfp modifying commands to allow a single concurrency limit.
.avatar_modify avatareasterify [colours...]
Easterify the user's avatar.
.avatar_modify mosaic [squares=16]
Splits your avatar into x squares, randomizes them and stitches them back into a new image!
.avatar_modify prideavatar [option=lgbt] [pixels=64]
Surround an avatar with a border of a specified LGBT flag.
.avatar_modify reverse <text>
Reverses the sent text.

whole bear
vocal basin
#

on frontend there are service workers

#

if you need threads not just async

#

allegedly has events and stuff

gentle flint
west fern
round horizon
#

Hello everyone

dry jasper
wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @whole bear until <t:1703418197:f> (10 minutes) (reason: duplicates spam - sent 4 duplicate messages).

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

gentle flint
#

he hecked once too often

wind patio
#

share us the flowchat @whole bear

foggy schooner
#

@runic drum you're a consultant, right?

#

just interesting take on payment, wouldve expected hourly to be the norm

#

chat is poppin' pithink

wet scroll
#

hallo people of the python server

foggy schooner
#

you can say that he's a "clean criminal"

wet scroll
#

i recently made a clock

#

with my soldering skills

#

it has alarm

foggy schooner
#

I got the cheapest of soldering irons. temp? no. 1-10? yes.

wet scroll
#

what did you make with it chester

foggy schooner
#

so far just setting threads in 3d printed parts. have been working on and off on making the voron 2.4 printer

wet scroll
#

:0

#

is the printer fast

foggy schooner
#

that one is. though, its more known for its printing stability at slower speeds(still faster than most entry printers)

wet scroll
#

dang ok

#

how long have you been using solder

#

to make stuff

vocal basin
#

"mentor" sounds like typical MLM term

foggy schooner
#

had it for like a year, only done that with it

#

my mentors mentor other new mentors

wet scroll
#

i started using soldering like yesterday

runic drum
wet scroll
#

first time in my life

#

i think i sucked at it

runic drum
#

brb

foggy schooner
#

thats alright

#

yaaay, json module time

#

πŸ₯Ή

runic drum
#

back

foggy schooner
#

dictionaries looking exactly like json. the only diff ive found is dictionaries are a primitive data type and json is used to transfer data

vocal basin
foggy schooner
#

gonna keep investigating.

#

ngl i blame boomers in the US

#

ender 3 moment

somber heath
#

@neat bramble πŸ‘‹

neat bramble
#

Hi πŸ˜„ Sorry can't talk yet! @somber heath

somber heath
#

@storm furnace πŸ‘‹

somber heath
wise cargoBOT
#
Voice verification

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

storm furnace
#

Hey

vocal basin
#

I misread this as "you will be banned from everything" lol

wind raptor
#

Spamming will make it much longer

storm furnace
#

I se

#

Sorry

neat bramble
#

Merry Christmas!

frozen owl
somber heath
#

@uneven brook πŸ‘‹

uneven brook
#

hello

wet scroll
frozen owl
vocal basin
#

poison means panic

#

yeah

#

you just need to extract the value

#

poison error can be ignored

neat bramble
#

@frozen owl Can you just save the training values as you go and pickle them in case of error to continue frmoo where it finished?

vocal basin
#

probably bettter to use async/parallel runtimes instead of manual thread management

neat bramble
#

You can have maybe another python signal or service to monitor and maybe if the training file didn't get updated for like 5 mins, it send a siganl to it?

vocal basin
#

and mutexes are unlikely to be performant

#

if it's for processing events, async definitely

#

including tokio among alternatives

#

I use smol for async

wet scroll
#

what are you guys talking about rn

frozen owl
#

like if it fails, dont just stop

#

ignore and pretend nothing happened

#

πŸ˜ƒ

#

this is fine

#

πŸ˜ƒ

neat bramble
#

You know I had a similar thing going when creating a multi-threading app running to crawl and keeps sending emails while reciving ones and pushing to a blackhole mail server. Sometimes the code just completely frooze without even crashiing. Did you try to look at pdb debugger while working the code?

vocal basin
wise cargoBOT
#

src/bin/server.rs lines 83 to 84

let mut stats = stats_counters.lock().unwrap();
let mut start_time = start_time.lock().unwrap();```
somber heath
#

Tokyo Drift, but with narcolepsy. Tokyo Drifting Off.

vocal basin
#

poison error is to prevent logical errors

#

(Rust assumes that value inside the lock might have logical invariants broken after a panic)

somber heath
#

@violet relic πŸ‘‹

vocal basin
#

paid to do async Rust

#

since recently

wet scroll
#

im starting to lose my mind

vocal basin
#

alpha zero was trained in 4 hours or something like that