#voice-chat-text-0

1 messages ยท Page 562 of 1

livid niche
#

@wind raptor memorizing hexadecimal is doable tho thankfully

vague bison
#

@wind raptor

vague bison
#

Did you by chance say anything about my voice chat thing??

#

yeah, i wasn't

#

sorry about taht

#

*that

timid quartz
inland cosmos
#

My first time on github was same lol

livid niche
#

@wind raptor nvm i realized what i was doing was actually gonna make each number happen more frequently

timid quartz
#

C:\Users\kb\Desktop\projects

vague bison
#

sorry Chris for not being here when you told me stuff about my voice chat.

#

I have to go.

#

bye, @wind raptor !

#

oh, sorry

#

anyways, i gotta go

#

bye

brisk lynx
#

oh my bad

#

by active do you mean just be in the voice chat or

livid niche
#

@wind raptor trying to fix some code of mine rn

brisk lynx
#

ok

#

i am 17 and i'm really eager to learn a programming language..

#

yes everybody recommends python, idk why though

#

ohh

dapper musk
#

oh , wow didnt notice that i cant speak lol

brisk lynx
#

do you know anything about arduino programming language?

dapper musk
#

nah , i need to be active , im new to python ( and this server )

brisk lynx
#

so if i want to learn c
should i start with python and then jump to c
or maybe i should learn a bit more languages in between to fill the gap
cuz i've heard that c or c++ are the hardest languages

dapper musk
brisk lynx
#

or is it something like an arduino

dapper musk
brisk lynx
#

ohh

#

ok thanks for clearing the doubt

dapper musk
#

ye@wind raptor , not sure but i think you need some external things to use python for arduino , not like Raspberry PI , ( if im not wrong )

#

So , what are you trying to make with arduino ?@brisk lynx

dapper musk
brisk lynx
#

haha nothing right now
and haven't decided either cuz i got like 4-5 months
so basically i wanted to a project to put in the CV for applying to university

brisk lynx
#

how about you

wind raptor
brisk lynx
#

arduino with python was a THING!??!!?

#

WOW thanks for this bro!!

dapper musk
wind raptor
dapper musk
brisk lynx
dapper musk
brisk lynx
#

what is networking?

livid niche
#

@wind raptor what do you think of this code

print("Welcome to the band name generator")


CityName = input("Which city did you grow up in?\n"
                "City Name:\t")
PetName = input("What is your pet's name?\n"
                "Pet Name:\t")


CityName=CityName.lower()
PetName=PetName.lower()

#subscripting []
CnFirstLetter=CityName[0].upper()
PnFirstLetter=PetName[0].upper()

idx=0
CityName=CityName[:idx] + CnFirstLetter + CityName[idx+1:]
PetName=PetName[:idx] + PnFirstLetter + PetName[idx+1:]


print("Your band name could be " + "\"" + CityName + " " + PetName + "\"")
#

i fixed it its now presumably bug free

warm jackal
#

Can someone help me interpret this bashism?

foo --bar baz <(CMD)

Specifically curious what the intention of <(CMD) is, I imagine that if getting the output of the CMD command is the goal, $(CMD) would`ve done the trick

brisk lynx
dapper musk
#

IT Networking , CCNA
Simply , its connecting too many computers with each other

brisk lynx
#

ohhh that sounds interesting

dapper musk
brisk lynx
dapper musk
brisk lynx
#

@wind raptor
Chris are you here everyday or just sometimes?

brisk lynx
#

do you get paid to help people here, Chris?

wind raptor
livid niche
#

if you set it to 1 then it wont replace the right letter

dapper musk
#

anyways , i just joined to check on you guys , hope you doing good , good luck with life , have fun

brisk lynx
livid niche
#

!e

print("Welcome to the band name generator")


CityName = input("Which city did you grow up in?\n"
                "City Name:\t")
PetName = input("What is your pet's name?\n"
                "Pet Name:\t")


CityName=CityName.lower()
PetName=PetName.lower()

#subscripting []
CnFirstLetter=CityName[0].upper()
PnFirstLetter=PetName[0].upper()

#idx=0
CityName=CityName[:idx] + CnFirstLetter + CityName[idx+1:]
PetName=PetName[:idx] + PnFirstLetter + PetName[idx+1:]


print("Your band name could be " + "\"" + CityName + " " + PetName + "\"")
wise cargoBOT
# livid niche !e ```py print("Welcome to the band name generator") CityName = input("Which c...

:x: Your 3.14 eval job has completed with return code 1.

001 | Welcome to the band name generator
002 | Which city did you grow up in?
003 | City Name:	Traceback (most recent call last):
004 |   File "/home/main.py", line 4, in <module>
005 |     CityName = input("Which city did you grow up in?\n"
006 |                     "City Name:\t")
007 | EOFError: EOF when reading a line
livid niche
#

wont likely work

#

yep

livid niche
#

cuz that threw an error

#

i mean the code when you set it to 0 still provides desired output, is there something else you meant by "remove it"?

brisk lynx
#

๐Ÿ˜ตโ€๐Ÿ’ซ

livid niche
#

oh wrong image

high elbow
#

o/

livid niche
livid niche
#

cuz when i set it to 0 it behaves well

warm jackal
brisk lynx
# livid niche

hey my band name is Annatar Annatar, i live in Annatar city and my pet's name is Annatar ๐Ÿ˜Š

livid niche
#

in a previous version of this program ANNATAR ANNATAR would be printed as AnnAtAr AnnAtAr

brisk lynx
#

ooooooh

#

yeah i just made a dad joke

#

cuz i don't know anything about coding

#

i guess i should leave and stop disturbing

#

BYEEEEEEEEE @wind raptor
thanks for being so kind!!

#

and everyone

livid niche
#

i also chose the word annatar because that dude is evil and all bugs are evil brainmon

wind raptor
warm jackal
#
# pseudo code
for sub_dir:
     print (in order) the first (lexicgraphically sorted)
     - N paths
     - sorted by nested folder depth
     - in addition to printing their number of "nestedness"
wind raptor
# livid niche what did you mean by remove it

!e

print("Welcome to the band name generator")

# use snake_case for variables and functions
city_name = "CITY"  # hardcoded for example
pet_name = "PET"

city_name = city_name[0].upper() + city_name[1:].lower()  # we can combine these since they aren't too long
pet_name = pet_name[0].upper() + pet_name[1:].lower()

print(f'Your band name could be "{city_name} {pet_name}"')  # f-string here with ' look a bit cleaner and no escapes (\)
wise cargoBOT
gentle flint
somber heath
#

@jovial wigeon ๐Ÿ‘‹

vague bison
#

@wind raptor

#

Hey Chris

#

How are you

#

Hey, @wind raptor

#

I hope you don't mind me pinging you.

#

sry

craggy vale
#

@wise loom

paper wolf
#

looks like a slop

craggy vale
teal crystal
#

Hi guys what is going on?

#

It's Ubuntu and customised ui

paper wolf
#

its a custom disro

teal crystal
#

@craggy vale
Can you show your ps customised os

#

Yep

#

Is it in dual boot or just completely replaced PlayStation OS?

craggy vale
teal crystal
#

How PlayStation running the debian?

#

I mean, how it's running? Is it smooth or lagging?

craggy vale
teal crystal
#

PS4?

craggy vale
paper wolf
#

32 fps ._. is that java without optimizer mods

teal crystal
#

Imagine the performance of Linux in PS5

paper wolf
#

sp5 sounds to have good hardware ._.

teal crystal
#

Why normal ps, can't able to run Linux? And what that ps apu is?

wise iron
teal crystal
wise iron
#

*there's a note. it says, "THERE IS NO PR. SELO!"

paper wolf
wind raptor
teal crystal
#

Rip English+Grammar

wise iron
#

*the body ran out of energy. the smorg escapes!

paper wolf
#

still no understanding

teal crystal
#

14 old kid : playing with Linux & llms
Me : just started learning Rust
๐Ÿฅฒ

craggy vale
teal crystal
#

Meanwhile I have gt 1030 2gb graphics card in my pc
Llm sucks even in running anything ๐Ÿ˜

tribal sparrow
#

Like seriously dude. WTF was I doing when I was 14?

teal crystal
#

@craggy vale

In which field, you gonna go ? CS? System programming?

#

Or hacker to jailbreak ๐Ÿ˜

#

Bro can you just stop doing announcement in vc? ๐Ÿ˜

#

Which subject?

#

Anyone rocket league player?

#

You can try hp mouse good one
@wise loom

craggy vale
teal crystal
#

I bought this after my Logitech wireless mouse keys got sucks, I think they got carbon in them

craggy vale
teal crystal
#

All the best

tribal sparrow
#

Okay guys, I'm signing off. Good talking to you all.

#

Learned a lot

paper wolf
teal crystal
# craggy vale

Their are some open source game engine, but they are in rust, you can try if you want

paper wolf
#

where is the technoblade reference

craggy vale
craggy vale
#

no thanks

paper wolf
#

making your own game engine is better

teal crystal
#

Can I see?

craggy vale
#

using for my own AAA game

paper wolf
#

i would love to peek into it to

teal crystal
craggy vale
teal crystal
#

Or is their any way to make game engine without coding?

craggy vale
#

in C++

paper wolf
teal crystal
wise loom
wise loom
#

https://www.youtube.com/watch?v=tLY8fquGgXE#t=1m21s

he laid two eggs ๐Ÿฅš in a week (the boyfriend)

Sky News host Rita Panahi reacts to actress Kate Beckinsaleโ€™s wild story about her daughterโ€™s boyfriend during an interview with late-night TV host Jimmy Kimmel.

According to Ms Beckinsale, Lily Mo Sheenโ€™s partner recently laid two eggs.

โ€œIโ€™m watching this thinking, โ€˜ok, whereโ€™s the punchline? Whereโ€™s the joke?โ€™,โ€ Ms Panahi...

โ–ถ Play video
craggy vale
somber heath
#

Lo.

#

Tis.

paper merlin
#

yo

craggy vale
#

wsp

paper merlin
#

good what about you

craggy vale
paper merlin
#

๐Ÿ‘

somber heath
#

Pinky pancake.

#

There's a gun in a game, and at first I thought it was a spelling error, but no. Anti-materiel gun.

#

Haaaa

#

I Python punned, before.

#
import math as elephant
elephant.trunc```
#

@buoyant mica ๐Ÿ‘‹

buoyant mica
somber heath
#

@earnest sierra Break a leg.

peak depot
somber heath
#

"So, do I have the job?"
"No."
*breaking leg noises*
"Arrrrgh!"
"So do I have the job, now?"
"Yes! Yes! Oh, God, yes! Please stop!"

spice nebula
#

what is that conversation about

#

I like that potato pic

#

yo hus?

#

nice

#

"as the children say it"

#

how old are you maam?

#

Nah i was just curios

somber heath
#

Debarshi, everyone is the age they are.

spice nebula
#

also what is Non-binary?

#

I'm Egyptian i never heared of these things

#

america is going wild now days

#

Wdym transphobic?

#

BRO, I was just about to say that

#

yall are sensitive

#

that is true

#

I wasn't being rude

#

i was being curios

craggy vale
#

btw how I'm looks in my pfp

spice nebula
#

yall just fired at me out of no where

craggy vale
#

๐Ÿ˜

somber heath
#

You have to understand that people who are queer cop a lot of flak from a lot of people and it can be fucking exhausting.

spice nebula
#

YEA, THAT IS A CURSE, I was using an adjective.

#

Alright, take care

somber heath
#

What can happen is the development of what's called a siege mentality as a result.

somber heath
#

I am.

somber heath
#

So while I don't think you were meaning anything by it, calling it "wild", it does to be aware that could be considered a little bit flippant.

spice nebula
#

Idk what flippant means, but yea maybe you thought i was mocking>

somber heath
#

"not showing a serious or respectful attitude"

spice nebula
#

Either way, I'm still not allinging with these "pronounce" things the west came up with to brainwash people and grow a weak generation. That's my opinion, I take responsibility for it.

random copper
#

Respect is given not earned

spice nebula
somber heath
#

What something?

peak depot
peak depot
somber heath
#

Fine grade wool can be better.

#

I've got some wool tshirts and they are very comfortable even on bare skin.

somber heath
#

Here's a llama, there's a llama and another little llama...

somber heath
paper merlin
#

theres nothing to talk about for me anyway

craggy vale
craggy vale
paper merlin
#

bye

peak depot
# craggy vale me tooo

This is a voice chat (use to be named: off-topic voice chat). There is over 30 txt channel where you can interact with topic that interest you.

craggy vale
whole bear
#

Hello ๐Ÿ‘‹ Humans

craggy vale
#

rate my pfp plss

paper merlin
#

10/7 good

craggy vale
whole bear
craggy vale
#

niceeee

craggy vale
whole bear
#

OpenAI IPO will be going to launch soon

somber heath
#

Lunch or launch?

#

Ah.

whole bear
#

I'm excited to buy it on the first day because it would be cheapest on the first day

#

And within a few years I would have 10x returns

craggy vale
#

is that a device ?

paper merlin
#

imma go outside bye everyone

paper merlin
whole bear
#

Planning to save 70k usd for OpenAI IPO

paper merlin
#

just familiar not same

craggy vale
#

what is that OpenAI IPO

#

?

livid niche
whole bear
#

How old are you?

paper merlin
whole bear
#

If you aren't 18+, this info is mostly like not gonna be useful

livid niche
#

Isn't turkey a multi ethnic country cuz of it being a part of an empire at one point

paper merlin
#

Marmara, Black Sea, Central Anatolia and Aegean regions, generally Turkish

#

and very similiar with other turkic countries

#

A small part of the eastern Black Sea region is Laz, the upper parts of eastern Anatolia are Turkish, the lower parts of eastern Anatolia and southeastern Anatolia are Kurdish in majority.

#

Gypsies have their own neighborhoods in the Aegean and Marmara regions.

#

so not mixed

#

anyways bye everyone

somber heath
#

Hi ho.

#

*hi

#

Magey, you are not a ho.

#

You are a Magey.

#

How depressing.

whole bear
#

Ho?

chilly wolf
#

'twas a typo

somber heath
#

A mildly derogatory name for a woman.

#

But yes. Typo.

whole bear
#

Santa is sexist

#

I think ๐Ÿ’ฌ๐Ÿค”

#

It's not appropriate to use

somber heath
#

I also think, on occasion. I don't recommend it.

whole bear
#

Okay ๐Ÿ‘Œ๐Ÿ‘

somber heath
whole bear
#

Hmm

chilly wolf
#

Maybe if you, for some ungodly reason, wanted to be rude to someone, that's when you'd use it. But in all honesty I don't recommend being rude to anyone.

whole bear
#

I mean one should not use it.

#

Nvm, how was your day @chilly wolf ?

chilly wolf
#

So far so good. I had two hours of sleep, but it was restful so I'm not in a bad way.

wind raptor
#

!tempban 1372621157014179844 4w claiming "pronouns are something the west came up with to brainwash a generation" is something you will be held responsible for as it's against our code of conduct here.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @spice nebula until <t:1767097401:f> (28 days).

patent chasm
#

in the office so just here to lurk

whole bear
long wing
#

true.

#

i hope ill enjoy this strictly-friendly server.

patent chasm
#

becasue your about to go down the down the mines again at work

chilly wolf
patent chasm
#

"hi ho its off to work i go"
apprently offically tis "heigh-ho" but i was pretty sure it was "hi ho"

long wing
# chilly wolf

AI!??!?!
i thought it wasnt allowed here.
(sorry if im being weird)

patent chasm
calm ginkgo
#

AI isn't allowed here?

wise cargoBOT
#

10. Do not copy and paste answers from ChatGPT or similar AI tools.

wind raptor
#

This is the only rule about it

patent chasm
#

why didnt you just use openwui?

chilly wolf
#

They didn't have the Fork chat feature

patent chasm
#

ohhh. well you could add one as a plugin

#

probably not lightweight however

#

hi milien

whole bear
patent chasm
#

parrell answers displayed in the gui?

chilly wolf
whole bear
#

Do you remember his username?

patent chasm
#

and today on drama time ๐Ÿ˜‰
time for some ๐Ÿต

whole bear
patent chasm
#

i am just lurking here at "work" while writing some BS repots on how fiber networks work

#

yeah we are gonna go on holiday and eat foot till we explode

whole bear
#

Does it really matter?

patent chasm
#

i can link you videos for some real britsh dialog Debarshi ๐Ÿ™‚

#

but its not gonna be approate for your course

calm ginkgo
#

it's monty python isn't it?

whole bear
#

@craggy vale You are in ICSE board or CBSE?

patent chasm
#

well its made by the bbc

whole bear
patent chasm
whole bear
#

You are doing the right thing

patent chasm
#

typical male london interactions

whole bear
#

You can write an essay in the maths exam and you can score marks in such a board

patent chasm
#

if you want some more modern british comedy id reccomend "that mitchel and webb look"

whole bear
#

British comedy?

whole bear
#

Like charlie chaplin?

patent chasm
whole bear
patent chasm
#

i guess that makes sence when they deported him for not being american citizen over the mcarthy stuff

whole bear
#

James bond is british or not?

peak siren
#

Ever listen to Chaplin's The Dictator speech?

calm ginkgo
#

yeah

patent chasm
#

he soudned american in that

whole bear
patent chasm
#

no i was refensing charlie chaplin in the great dictaor

whole bear
#

He is like a Einstein born in a different country but became american

peak siren
patent chasm
#

which is why charlie moved to switerzland

whole bear
#

I think he was german

patent chasm
#

who then moved to usa to avoid the nazis and was given usa citizenship. but he spent the majority of his life not in usa (eninstine)

#

i bring up enstines jewishness only because it was the reason he fled geramny

whole bear
#

Hmm

ashen jolt
#

(Born in Germany, later moved to (and worked in) Switzerland)

whole bear
#

Good!

patent chasm
#

yeah thats why i was a bit confused i know most of his imporant work was done in switzerland

calm ginkgo
#

einstiein was also a ladies man apparently

whole bear
patent chasm
#

he got all the women who liked men with brians ๐Ÿ˜‰

whole bear
#

was he gay?

calm ginkgo
#

is that the phrase?

patent chasm
calm ginkgo
whole bear
patent chasm
#

its an older term, we go cruder these days and use terms we cant use here

patent chasm
whole bear
#

Damn

patent chasm
#

and had great game

calm ginkgo
#

by player, not a football player

whole bear
#

Einstein was a player, never in my avocado, I would imagine that.

patent chasm
whole bear
#

Damn

patent chasm
#

more switch cases in alot of cases

whole bear
#

Newton is the opposite of Einstein

chilly wolf
patent chasm
#

ill want it too

candid spire
#

hello

patent chasm
#

best choice you could have would be to simulate the hardware with a virutalized fpgma and speed that bugger up

candid spire
#

How many of you have life?

candid spire
patent chasm
candid spire
#

I wish you guys could talk beyond coding.

#

There are many other topics to talk

#

Like how do you enjoy your life

#

what was the best thing happened to you today

#

and so on

patent chasm
#

football, politics , ect

#

so its more or less 100% python 100% of the time

candid spire
#

Hmm

patent chasm
#

plus we are all mega nerds

candid spire
#

Damn!

#

I do understand

#

but sometimes its better to talk about topics beyond code

patent chasm
#

some of use tea british drinking weebs (see pfp)

#

but we come to listen about code/talk when we are free

candid spire
#

I have tears in my eye

#

can't have look at your pfp

#

@chilly wolf I have worked with BIOS. It is frustating

#

why would you want to mess with BIOS?

#

It is not a good place to be as dev

#

Give it to your grandma

#

she prob knows how to fix it

patent chasm
#

anyhow gonna dip, back in a bit dudes and dudeets

craggy vale
candid spire
#

Idk who, someone was asking about BIOS

#

ig it was you?

craggy vale
#

yeah it's me

chilly wolf
#

I think he was referencing me

#

since I was having sbat errors

candid spire
#

Try this,if it ain't work

#

let me know

chilly wolf
chilly wolf
#

It was because I unplugged the battery, the system thought there was a hardware change

candid spire
chilly wolf
#

I don't have it anymore, for some reason my boot entry for windows got deleted

candid spire
#

issue is now resolved

chilly wolf
#

i had to find the windows boot file and make a new entry

chilly wolf
#

I thought it was quite strange

candid spire
#

Did you choose erase all?

glad shuttle
#

hey i found some vulns in rainbets website and i also found there testing grounds any tips of what i should do to exploit it

chilly wolf
#

All I did was power down the device, unplug everything, unplug the battery, and discharge the capacitors

chilly wolf
#

When I put it back together I got sbat errors, my windows boot entry was missing, and AHCI was switched to RAID On

#

which is so friggin weird

candid spire
#

Hm

candid spire
#

I guess you got no other option but to install windows again with the help of ubuntu

chilly wolf
#

I fixed it by putting the windows boot entry back in, and something else with the security settings, as well as keeping RAID On setting because the AHCI was triggering BitLocker

#

it was a whole mess

candid spire
#

Never happened to me

#

quite strange

primal shadow
brisk bridge
#

hi

wind raptor
chilly wolf
primal shadow
pseudo helm
#

Which is better iced and egui?

long wing
patent chasm
# wind raptor

This image has caused many arguments over the world due to electrical safety nerds

peak siren
#

Are you familiar with the drunk boxing octopus?

paper wolf
#

lol

#

it looks like flipped rabbit head

vestal merlin
#

@wind raptor wow i finally found a time when im online and Opalmost isnt in VC!

(Its past midnight for both of us lmao)

patent chasm
#

Quick the convicts are offline let's talk about marmite superiority

#

;p

vestal merlin
#

Lmfao

#

You shall be sent to the emus

patent chasm
vestal merlin
#

Lmao

chilly wolf
#

@inner hill I haven't actually read over his code yet, he just showed me the frontend

livid niche
#

@upper basin could you look at some syntax on my code, im struggling with elifs

def test(Num1,Num2):
     a=Num1
     b=Num2
     alen=len(str(a))
     blen=len(str(b))
     if alen == blen:
         a=a*10**(alen)
         b=b*10**(blen)
         numrand=random.randrange(a,b)
         print(math.floor(numrand/10*alen))
     elif alen < blen:
         a=a*10**(alen+blen)
         b=b*10**(blen)
         numrand=random.randrange(a,b)
         print(math.floor(numrand/10*(alen+blen))
     elif blen < alen:
         a=a*10**(alen)
         b=b*10**(alen+blen)
         numrand=random.randrange(a,b)
         print(math.floor(numrand/10*(alen+blen))

its line 16 elif blen < alen:

#

it throws syntax error

upper basin
#

You're missing paranthesis.

livid niche
#

thank you

upper basin
#

You're welcome.

livid niche
#

oops my code is shit

livid niche
livid niche
# livid niche <@664667836605661217> could you look at some syntax on my code, im struggling wi...

@upper basin the code was made off of a false pretense that the randrange function when you pass small numbers to it it sucks, but someone else disproved that by running the function in a shit ton of subprocesses and averaging it.

what i tried doing was forcing each input to have the same amount of digits and then getting the random range between the two, and then i divide the result by 10*alen+blen which is basically the lengths of the numbers added together. expected behavior is it prints a number inbetween the actual inputted numbers but i fucked it up somewhere

#

so i think this codes a dead end cuz the randrange() function has no issues

#

i was trying to solve a problem that wasnt there

livid niche
short owl
#

pre - emption ? @dry jasper

livid niche
#

seemingly preferred 1's

#

but that was just cuz i didnt run it enough

#

if you run it long enough it will average out

#

@dry jasper they went off on you for saying both are bad?

upper basin
#

@wind raptor Can you please give Animmo stream permission? He is explaining something and we want to see his screen so we can see the code.

livid niche
#

@upper basin if i wanted to store a 4x4 table of integers whats the best way to do that, JSON? and if i wanted to pull out numbers based on their coordinates of that table, how would i do that?

pseudo helm
#

Good night, ๐Ÿ˜ด bros

#

Have a nice day ๐Ÿ˜Š

upper basin
#

List of lists. Or a numpy array.

#

It's just a matrix, so numpy array may be a good option if you are going to apply stuff to it.

livid niche
#

oh wrong image

#

i imported wrong image

#

ignore image

upper basin
livid niche
livid niche
#

its an older image

upper basin
livid niche
#

print(10*(a+b)) wouldve been better

livid niche
#

@upper basin uhhh code sometimes does polarize, especially when it comes to memory safety lol

dry jasper
livid niche
#

what do you think of the zigzag walk

livid niche
#

nvm doing array1 and array2 doesnt work

#

thats weird

livid niche
#

@upper basin this is the output of doing ```py
import math
import random
import numpy as np

primes = np.array([
[2, 3, 5, 7],
[11, 13, 17, 19],
[23, 29, 31, 37],
[41, 43, 27, 53]
])

print("\n\n")

fibonacci = np.array([
[1, 1, 2, 3],
[5, 8, 13, 21],
[34, 55, 89, 144],
[233, 377, 610, 987]
])

print(primes, fibonacci)

#

the newlines didnt help so im assuming it is merging for some reason

#

@dry jasper ive been working with ESP32 devices for a few days

#

@dry jasper they are super cheap, much cheaper than raspberry pi

amber raptor
#
def problem_1(input:list) -> None:
    current_number = 50
    number_of_zero = 0
    for line in input:
        if line.startswith("R"):
            for x in range(1,int(line[1:]) + 1):
                current_number += 1
                if current_number == 100:
                    current_number = 0
        elif line.startswith("L"):
            for x in range(1, int(line[1:]) + 1):
                current_number += -1
                if current_number == -1:
                    current_number = 99
        if current_number == 0:
            number_of_zero += 1
    print(f"Problem 1 Answer: {number_of_zero}")```
dry jasper
#

zeroes = 0
start_nmbr = 50

with open(r"randomm\Advent_of_Code\2025\AOC_day1.txt") as input_file:
    for line in input_file:
        if "L" in line.strip():
            line = str(start_nmbr)+line.replace("L", "- ")
            print(eval(line))
            start_nmbr = eval(line)
            if start_nmbr % 100 == 0:
                zeroes += 1


            #print(line)
        elif "R" in line.strip():
            line = str(start_nmbr)+line.replace("R", "+ ")
            print(eval(line))
            start_nmbr = eval(line)
            if start_nmbr % 100 == 0:
                zeroes += 1


        #if start_nmbr 
        print(line.strip())

print(zeroes)
amber raptor
#

time -p python3 main.py
Problem 1 Answer: 1011
Problem 2 Answer: 5937
real 0.06
user 0.05
sys 0.00

livid niche
#

@dry jasper what level of python should i be at before i try AOC

dry jasper
#

knowing the basics

livid niche
#

@dry jasper did you hear that arduino was acquired by qualcomm and now they disallow reverse engineering

#

@amber raptor wouldnt you get the average by doing smth like

print((len(str(Num1))+len(str(Num2)))/2))
livid niche
#

its 2 in this case cuz im using 2 numbers

dry jasper
scarlet halo
#
 ~/Documents/Python/AOC/ tree
.
โ”œโ”€โ”€ 1
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ”œโ”€โ”€ 10
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ”œโ”€โ”€ 11
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ”œโ”€โ”€ 12
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ”œโ”€โ”€ 2
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ”œโ”€โ”€ 3
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ”œโ”€โ”€ 4
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ”œโ”€โ”€ 5
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ”œโ”€โ”€ 6
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ”œโ”€โ”€ 7
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ”œโ”€โ”€ 8
โ”‚ย ย  โ”œโ”€โ”€ 1
โ”‚ย ย  โ””โ”€โ”€ 2
โ””โ”€โ”€ 9
    โ”œโ”€โ”€ 1
    โ””โ”€โ”€ 2

37 directories, 0 files
scarlet halo
#

@dry jasper

vestal iron
#

Could anyone help/tutor me for python im in a class but I don't get it๐Ÿ˜ญ

tame furnace
#

@wind raptor i cant talk

wind raptor
#

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

livid niche
#

@wind raptor what do you do to prevent numpy arrays from getting mangled when you print two of them

somber heath
#

Please demonstrate.

livid niche
#

!e

import numpy as np

primes = np.array([
    [2, 3, 5, 7],
    [11, 13, 17, 19],
    [23, 29, 31, 37],
    [41, 43, 27, 53]
    ])

fibonacci = np.array([
    [1, 1, 2, 3],
    [5, 8, 13, 21],
    [34, 55, 89, 144],
    [233, 377, 610, 987]
    ])

print(primes, fibonacci)
wise cargoBOT
livid niche
#

what was the question?

#

@turbid dome what was the question

somber heath
#

!e ```py
import numpy as np

primes = np.array([
[2, 3, 5, 7],
[11, 13, 17, 19],
[23, 29, 31, 37],
[41, 43, 27, 53]
])

fibonacci = np.array([
[1, 1, 2, 3],
[5, 8, 13, 21],
[34, 55, 89, 144],
[233, 377, 610, 987]
])

print(primes, fibonacci, sep="\n")```

wise cargoBOT
livid niche
#

nice

#

something i was worried about is that i was worried these arrays were being merged because if you do

import numpy as np

primes = np.array([
    [2, 3, 5, 7],
    [11, 13, 17, 19],
    [23, 29, 31, 37],
    [41, 43, 27, 53]
    ])

print("\n\n")

fibonacci = np.array([
    [1, 1, 2, 3],
    [5, 8, 13, 21],
    [34, 55, 89, 144],
    [233, 377, 610, 987]
    ])
print(fibonacci,primes)

but thanks to what you showed ig its just a weird thing about print()

ripe helm
#

hello

livid niche
#

i just gaslit my self with bad coding cuz i only defined primes and fibonacci

wind raptor
livid niche
#

so print("\n\n") wouldnt separate the two

#

@craggy vale where are you from out of curiosity

ripe helm
#
#include <pybind11/pybind11.h>

int divide(int a, int b) {
    return a / b; // 
}

PYBIND11_MODULE(example, m) {
    m.def("divide", &divide, "Divide two numbers");
}
``` can someone help me with problem
livid niche
#

@craggy vale is the government bluffing or are they actually pushing a surveillance app to all the phones

wise loom
ripe helm
#

@turbid dome little help

turbid dome
livid niche
wise loom
#

@amber raptor ^^ is IBM's CEO problem that he doesn't have guts and he's not bold enough?

livid niche
#

i forgot what it was called

craggy vale
ripe helm
#

@somber heath u know this problem#include <pybind11/pybind11.h>

int divide(int a, int b) {
return a / b; //
}

PYBIND11_MODULE(example, m) {
m.def("divide", &divide, "Divide two numbers");
}?

livid niche
craggy vale
livid niche
livid niche
#

@craggy vale im gonna create my own linux distribution for this, do you know how to create a package manager?

#

@turbid dome i think its an entrypoint for python

turbid dome
#

@ripe helm pybind is what?

#

ok

livid niche
#

@wind raptor i think the language its coded in is C since its using #include, but its calling python to do a certain thing i think?

#

@turbid dome im doing alright

livid niche
#

@wind raptor a bugged repl came with 3.13 and 3.14 pithink

livid niche
somber heath
#
import math as elephant
elephant.trunc```
craggy vale
#

yeah hold on let me see

livid niche
#

the pdf is hosted on their cdn

livid niche
#

@wind raptor are you talking about termites?

#

man

#

i wish moths werent so destructive

#

@wind raptor did you try wooden hangars to protect your clothes, wooden hangars are made of a specific wood that repels moths

craggy vale
livid niche
#

so all i need to do is connect to my big tower and sync the local repos of the microcontroller with the main repo

#

if that makes sense

craggy vale
livid niche
#

small form factor so i can hide it in a bookshelf and its only able to be talked to through ssh over bluetooth

scarlet dust
#

๐Ÿ‘‹

livid niche
#

low power too so i dont have to recharge it often

craggy vale
livid niche
#

@somber heath communal singing practice

somber heath
#

Mm. I miss it.

craggy vale
livid niche
#

im thinking it is a way to verify the package comes from the maintainer?

craggy vale
livid niche
craggy vale
wind raptor
#

Like this?

craggy vale
#

yo my catos really looks macos ?

wind raptor
wind raptor
livid niche
craggy vale
craggy vale
scarlet dust
livid niche
#

@somber heath what do you think of shoebill storks

#

@somber heath machine gun bird

whole bear
#

Hello ๐Ÿ‘‹

somber heath
#

@fresh cloud ๐Ÿ‘‹

whole bear
#

Hello clem

#

@somber heath You are an average Australian?

#

Or secretly millionaire

#

He is kangaroo ๐Ÿฆ˜ disguised as human in python discord

livid niche
#

@somber heath australia is one of the member countries of the alliance of intelligence agencies that share intelligence with each other

whole bear
whole bear
livid niche
#

@somber heath tbh intelligence agencies dont really concern themselves much with bombings, a lot of the time they just let it happen

whole bear
#

Counter Intelligence is part of Intelligence

#

CIA itself has Counter Intelligence mechanism for US

#

The Best Intelligence Bureau knows what they are doing.

livid niche
#

@mighty linden i might be wrong but isnt prachanda a CIA plant

mighty linden
#

RAW tbh

livid niche
#

he capitulated so hard, destroyed the revolution, and the people suffered

#

even though the nepal revolution was so close to its conclusion

#

the nepalese government was helpless to the guerillas

whole bear
#

Have any proof?

#

India's intelligence

livid niche
#

i thought you said my statement was raw

whole bear
#

Dirty?

whole bear
#

F u

#

It ain't dirty

#

I highly doubt that

#

Because RAW can't act beyond the foolish dummy politician command

mighty linden
livid niche
#

@somber heath the koala killer mafia

whole bear
#

Personally I think Mosaad, Chinese Intelligence Bureau and CIA are the most powerful intelligence bureaus.

Because no matter how much you glaze about Intelligence, an economically influential and independent to most extent, countries like the US and China inheritably have power and money to , finance to it

livid niche
#

@mighty linden im doing research on embedded systems

#

im from USA

#

i was born in texas

#

@mighty linden the nepal revolution was the worst failed revolution in recent history

#

because it was so close to being successful

#

i suspected prachanda was a CIA plant mainly cuz he opened up the nepal market to beuracratic capital from the west, even meeting with joe biden

#

those are the usual motions CIA plants do, once they gain power, they instantly surrender the country's resources to USA

#

brb

livid niche
#

@upper basin cross compilation is hell ngl pithink

#

what project are you working on rn? @upper basin

jaunty brook
#

Keep it up

craggy vale
whole bear
#

Hello ๐Ÿ‘‹๐Ÿค—

whole bear
#

@chilly wolf Hi

whole bear
#

@upper basin hi

#

@whole bear hi

#

@vale pumice hi

#

@upper basin Did you buy the parts from Amazon for PC built?

#

Hello ๐Ÿ‘‹

cloud lotus
#

hello @upper basin what you working on

pseudo helm
#

why can't I stram into Voice 0/

cloud lotus
#

hello everyone

pseudo helm
#

hello yoloooooo

cloud lotus
#

nice to meet you all

pseudo helm
#

It's a pleasure to meet you, Yolo

#

@chilly wolf Wht model are you sing for your Ollama GUI App?

#

bah bye

pseudo helm
whole bear
somber heath
#

@blissful lagoon ๐Ÿ‘‹

blissful lagoon
#

hii

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.

blissful lagoon
#

i've jst joined

#

thats cool ig

#

i haven't even really startet yet tbh

#

im trying to start but idk how

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.

somber heath
#

Corey Schafer.

blissful lagoon
#

alright, thanks!

somber heath
tired tinsel
#

yes

tired tinsel
somber heath
whole bear
#

Hello

iron geyser
#

no

#

I am a viril man :p

#

๐Ÿ˜œ

somber heath
#

Little Britain is a British sketch comedy series that began as a radio show in 2000 and ran as a television series between 2003 and 2006. It was written and performed by David Walliams and Matt Lucas. Financed by the BBC, the radio series was first broadcast on BBC Radio 4, with the initial two television series premiering on BBC Three and the t...

#

@thin wasp ๐Ÿ‘‹

whole bear
#

@somber heath Have you tried lobster and eel before?

#

Lobster is exotic food?

#

I just had a lobster with my friends and it tasted like sweeter fish

#

I don't why they hype lobster

#

It's just normal fish

#

Like thing

somber heath
#

@muted mirage ๐Ÿ‘‹

whole bear
somber heath
#

@halcyon swallow ๐Ÿ‘‹

halcyon swallow
#

Hello!!

#

RIP I am not active enough to enable mic

#

yeah

somber heath
#

@potent flare ๐Ÿ‘‹

potent flare
#

Hello

remote swallow
#

hi

candid spire
#

@upbeat oasis

#

Join again

dry jasper
#

@amber raptor have you solved part 2 of day 2?

amber raptor
#

My solution takes 8 seconds to run however

jaunty brook
jaunty brook
muted mirage
somber heath
#

!code

wise cargoBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

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

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

For long code samples, you can use our pastebin.

jaunty socket
#

I gave her a box of chocolates for her birthday

#

weak form

#

zad

#

zib

somber heath
#

zip

#

!d zip

wise cargoBOT
#
zip

zip(*iterables, strict=False)```
Iterate over several iterables in parallel, producing tuples with an item from each one.

Example...
somber heath
#

!e py letters = "abc" numbers = "123" for ab in zip(letters, numbers): print(ab)

wise cargoBOT
somber heath
#

I ran the code.

#

Past tense.

#

!e py letters = "abc" numbers = "123" symbols = "@#$" for group in zip(letters, numbers, symbols): print(group)

wise cargoBOT
somber heath
#

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

wise cargoBOT
somber heath
#

!e py letters = "abc" numbers = "123" symbols = "@#$" for letter, number, symbol in zip(letters, numbers, symbols): print(letter + number + symbol)

wise cargoBOT
somber heath
#

!e py for a, b in [(1, 2), (3, 4), (5, 6)]: print(f"{a = } and {b = }")

wise cargoBOT
somber heath
#

!e py print(type(zip))

wise cargoBOT
somber heath
#

!e py var = zip("abc", "def") print(var)

wise cargoBOT
somber heath
#

An instance of zip.

#

Because zip is its type/class.

#

So not a function.

jaunty socket
#

I don,t have anything to add

somber heath
#

don't

jaunty socket
#

a ninstance of zip

#

for example

#

foe instance

somber heath
#

@scarlet flare ๐Ÿ‘‹

#

for

#

as an example / for instance

jaunty socket
#

he's gone

#

he has gone

#

he left

#

he went

somber heath
#

' apostrophe

jaunty socket
#

prebiotic

#

probiotic

#

I gave her a box of chocolates for her birthday

patent chasm
#

chockeys

somber heath
#

Choccies.

#

Choccie.

patent chasm
#

Bruv, I dashed her a box of choccies for her born day, innit. Bare peng vibes, peak generosity, wagwan!

jaunty socket
#

slang

#

sarcasem

somber heath
#

Sarcasm.

jaunty socket
#

sarcasm

pallid hazel
#

finally setup, and they are hungry for code...

patent chasm
#

nice, what did you put on them?

pallid hazel
#

u mean like proxmox?

patent chasm
#

yeah, thats what ive got on mine

pallid hazel
#

they gonna run a k3s cluster

patent chasm
#

id put talos on them then:)

#

that takes care of it all for oyu

pallid hazel
#

pain was getting 2 lcxs built to run as router/dhcp .. but done now, and still a prox.noob

patent chasm
#

prxmox now converts oci to lxc

#

with promxox 9.1 there is a converter tool

pallid hazel
#

i dunno what oci is, vut looking unto this talis thing

patent chasm
#

open container image

amber raptor
patent chasm
#

lxc shares the host kernel to save resorces

#

but has a seperate userspace for each container

#

linux kernel now has decent lxc isolation for containers, so its not that much and issue and you can make the lxc an unprivileged container now

amber raptor
patent chasm
#

same risk tbh

amber raptor
#

yea, I guess

patent chasm
#

if all you want to do is run k8s, use that

amber raptor
#

if you want easier kubernetes with single node, k3s is great

patent chasm
#

yeah i use that for my desktop

#

suse rancher desktop specificaly

amber raptor
livid niche
pallid hazel
#

i was in a rabbit hole, now i need haproxy and a ngix load balancer to run talos effectively.. going to be diggin deeper.. but isnt so simple as spin it up and have fun..

amber raptor
#

Talos is great if you are like "I'm going to use Kubernetes and I have 5 machines to deploy against"

#

I'm learning Kubernetes or just deving with it, K3s

pallid hazel
#

prolly so, was just a whim since hearing about it.. i do already have a plan in mind for building out my pipeline

patent chasm
somber heath
#

@signal arch ๐Ÿ‘‹

cloud lotus
#

@turbid dome it honestly depends on the state

wise loom
#

@somber heath also.. all the Microsoft Surface devices which are more or less tablets
with VERY good Linux kernel support.

vestal merlin
#

price i foudn is 1034 euro

#

@somber heath bye ig

#

oop hes bak

mighty linden
#

@somber heath great tablet

vestal merlin
#

connection issue?

somber heath
#

Audio issues.

#

Phone app misbehaving.

cloud lotus
#

bro no way anyone is actually purchasing this iphone pocket

vestal merlin
#

shitcord mobile is notriously bad for VC

wise loom
cloud lotus
#

there is no way this is sold out

#

its a iphone pocket apparently

#

229.95

#

no way

#

๐Ÿ˜ญ

#

nope ive seen guys wearing it too

cloud lotus
#

holding an iphone

#

๐Ÿ˜ญ

#

u just put the iphone in the pocket and wear it

wise loom
#

@midnight agate hello, linux tablets are being discussed

#

@midnight agate how are you

cloud lotus
#

same use case as the holes in our pants

wise loom
#

galactic algorithms, got it

river wharf
#

โฌ‡โฌ‡โฌ‡โฌ‡โฌ‡โฌ‡DOWNLOAD IN THE DISCORD โฌ‡โฌ‡โฌ‡โฌ‡โฌ‡โฌ‡
DISCORD : discord.gg/9j7KA6Crru !!!!
DISCORD : discord.gg/9j7KA6Crru !!!!
DISCORD : discord.gg/9j7KA6Crru !!!!
DISCORD : discord.gg/9j7KA6Crru !!!!

tags:
koxaro, vegard, tier s chilean, leaan vs staind, blackzide, how to beat leaderboard players, blackzide, jp2k16, ipraise, haxlux, st...

โ–ถ Play video
deep python
#

Is there a channel where I can share a screen?

torn yarrow
#

Ssup @chilly wolf

chilly wolf
#

Hello

proud tangle
#

Did you fix it with will-change?

chilly wolf
proud tangle
#

@midnight birch so this is a nasty thing in america

#

there are many reasons a person will be unable to get a therapist

#

and so they fall to ai..

#

one of which si doctors : )

#

risk to your license

#

that's the thing though. They're not low income

#

It's not about money

#

it's about the consequences

#

pilots can't go to therapy in the us

#

They get dinged and removed from flight as a risk

#

and then they're no longer getting paid

#

The side is objectively superuor because screens have extra horizontal space

chilly wolf
proud tangle
#

most of them

#

the new ones come in 8/16/16/24 varoamts iirc

#

Of the four latest amd cards, 1 is low end 8gb, the rest are 16

whole bear
#

@calm ginkgo Thankyou!!
I have to go now, it was a nice discussion with you.
Thank you for your time.
เด•เดพเดฃเดพเด‚

calm ginkgo
pseudo helm
#

Hello

#

Chris

#

@wind raptor

#

Works on Windows, Linux, Mac OS

wind raptor
#

Please don't advertise on the server

#

!rule 6

wise cargoBOT
#

6. Do not post unapproved advertising.

pseudo helm
#

Ok

#

I'm just sharing my project

#

Hehe ๐Ÿ˜†

wind raptor
#

sharing the github when we are talking about it is very different than saying:

Please install my Tui, if you want a quick note taking tool

pseudo helm
#

Ok

#

Pardon me

wind raptor
#

No worries. Just helping to clarify the rules

pseudo helm
#

Ok ๐Ÿ†—

#

Please try the tool, and give me some feedback ๐Ÿ™

whole bear
#

hi

pseudo helm
#

Hi

wise loom
wind raptor
#

!cpban 697567879524253696

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @slender magnet until <t:1765210791:f> (4 days).

wind raptor
#

!cpban 1422534279912751124

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @tacit shell until <t:1765211376:f> (4 days).

paper wolf
#

Too many bans

paper wolf
#

Lol

heavy horizon
#

Hi

lavish gazelle
#

Lol

#

@dry jasper I solved till day 3

#

@amber raptor just use the mod operator

#

I love it @frosty garnet

jaunty brook
#

Confused where to put wires ๐Ÿ˜ตโ€๐Ÿ’ซ

lavish gazelle
#

Which part @dry jasper ??

#

Day 1 or 2 or 3??

dry jasper
lavish gazelle
#

@dry jasper I only go through the ranges and divided the len by 2 and then use the mod of the to work from there

#

Sorry my bad

#

It took me over 30 mins to figure it out

#

I have an Idea on how to solve day 4 but coding it is hard @dry jasper

#

I will try it later

#

I was going for matrix, since the maximum is neighbours is 8 @dry jasper @amber raptor

amber raptor
#

Go insane, do a database

#

Make a dictionary, go nuts

lavish gazelle
wise loom
#

Advent of Code..

lavish gazelle
#

It's hard to find a bug in these programs now @dry jasper

#

Fuzzing @dry jasper

#

Fuzzing doesn't really mean using it only on urls @dry jasper

upper basin
#

Some are small, like 50 bucks. Some are good, like 500.

lavish gazelle
upper basin
#

unitaryHACK.

lavish gazelle
upper basin
#

See, some are small. Some are big.

lavish gazelle
upper basin
#

Small ones are useless most of the times.

lavish gazelle
#

So they do is on time frames

upper basin
#

There, I would go for 200 one. It seems hard, it's actually easy.

#

Did I solve that one?

#

Click on it, see if I solved it hehe.

#

It's oddly familiar...

lavish gazelle
#

Twice

upper basin
#

heh

lavish gazelle
#

no 3

#

You solved 3 bugs

#

when is the next openning??

upper basin
#

I think I had the most money won in that event this year.

upper basin
#

Around March I think?

lavish gazelle
lavish gazelle
upper basin
#

They make it hard to win though. They basically cap you to 4 prs open at all times.

lavish gazelle
#

lolz

upper basin
#

If a maintainer is slow to merge your PR, it really hurts your winnings.

upper basin
#

Yeah. Legitimately, you should focus on repos that have issues you can solve AND have active maintainers that quickly review and merge. Unethically? Make multiple accounts, and basically do as many PRs as you want. You'll never have more than 8 open anyways, so two accounts would be plenty.

#

The maintainers prefer that too. They want those issues closed. The event is just a chance to get people to solve them for them.

lavish gazelle
#

Hmmmm

wind raptor
lavish gazelle
urban abyss
#

pyrefly

calm ginkgo
#

!pypi pyrefly

wise cargoBOT
#

A fast type checker and language server for Python with powerful IDE features

Released on <t:1764806884:D>.

calm ginkgo
wind raptor
#

!stream 778585347562930208

wise cargoBOT
#

โœ… @calm ginkgo can now stream until <t:1764870255:f>.