#voice-chat-text-0

1 messages Β· Page 529 of 1

vocal basin
#

AI is slow

#

like you make inference run 24/7, this is such a waste of money

sharp summit
#

Hello

vocal basin
#

it will end up costing more than devs

whole bear
vocal basin
#

LLMs can't unionise

#

however LLM providers can make a cartel

#

(will/do)

whole bear
#

I think real questions can AI replace the job of DS, ML Engineer?

bright tinsel
#

What u mean?

vocal basin
#

the industry will eat itself

whole bear
whole bear
vocal basin
sharp summit
#

I'm really getting into the ethics of AI

vocal basin
#

it's all unethical

bright tinsel
vocal basin
#

unethics

sharp summit
#

πŸ’€

vocal basin
#

ethicsn't

whole bear
bright tinsel
#

I'd update fs

sharp summit
#

😭

bright tinsel
#

Btw @whole bear do u work in web3 as well?

#

or just python?

whole bear
#

What about you?

vocal basin
#

thankfully I work on real and high performance software so I'm nowhere near "web" "3"

#

also distributed and actual decentralised software

#

unlike blockchain

bright tinsel
bright tinsel
whole bear
whole bear
bright tinsel
#

Ahh

vocal basin
bright tinsel
bright tinsel
#

Is growth of it is there?

whole bear
#

Same for DS and ML

#

Anything which is crowded

bright tinsel
#

Is it secure for future?

bright tinsel
whole bear
#

If you care about a stable career

bright tinsel
#

Not interested in cybersec a little

#

Dont like securing system all the time

whole bear
#

Yeah but in tech

bright tinsel
whole bear
#

This is the best for stable growth and job

#

Everything else is risky and can be replaced by new technology

bright tinsel
#

Okayy

whole bear
#

Like AI has replaced most of front-end

bright tinsel
#

But you know my gut feeling loves web thing

#

so I like learning these web technologies

whole bear
vocal basin
#

woohoo I found a (potential) bug thanks to must_use

bright tinsel
whole bear
limber agate
whole bear
#

So you have to be good at what you do!

bright tinsel
whole bear
bright tinsel
#

So a blockchain dev has more chances to get a job than other?

bright tinsel
#

SO?

vocal basin
#

@somber heath what about NZ accent

whole bear
#

A good web dev can do Blockchain development as well

dry jasper
whole bear
vocal basin
bright tinsel
vocal basin
#

cryptocurrencies is another place where it's mostly scam and marketing not code

whole bear
bright tinsel
whole bear
#

I do think the barrier of entry is low in Blockchain development

bright tinsel
whole bear
#

If you love doing it, you can be.
And of course you have to be good at it

whole bear
bright tinsel
#

bcz barriers are low?

whole bear
bright tinsel
whole bear
#

Does that mean all of them are grandmasters?

bright tinsel
#

It was a figure of speech mate

sharp summit
somber heath
#
result = []
for letter in 'abc':
    result.append(letter)```is roughly equivalent to```py
result = [letter for letter in 'abc']```Where the innermost of the loop, the append, is going on the left of the comprehension, then outermost in short of that point left to right.
whole bear
#

@bright tinsel Unfortunately, almost all of the web developers that I know have worked with Blockchain

#

So the number of competitors are high and to survive one has to be best at it

somber heath
#
result = []
for letter in 'abc':
    for number in '123':
        result.append(letter + number)``````py
result = [letter + number for letter in 'abc' for number in '123']```
frosty shell
woven depot
#

@wise loom sup

whole bear
#

Yall don't even talk

#

@night oasis u finally did it!!

night oasis
#

@whole bear look

#

i dont have mic

#

brah

#

i want strim

#

how

#

@whole bear

#

yeh but i dont know how

#

pc

#

i don't have permission

#

but while loop is hard

#

my name is amin

#

ohh

#

now im watch video for while loop

glad river
#

hello speedro

#

I caan

wise loom
#

@whole palm can you hear me?

whole palm
#

@wise loom we can hear you

glad river
#

hello @wise loom

whole palm
#

brodie turn up yo speaker

wise loom
#

why don't you talk then?

glad river
#

yep

wise loom
#

yes

#

turn me up

whole palm
#

@wise loom

whole bear
vocal basin
#

we had several people here who were escaping C++ VC

#

their stories were quite wild

wise loom
vocal basin
#

like some C++-related server

#

I have no idea which one

wise loom
foggy ember
#

This is not the commentary I was expecting in a python discord

wise loom
vocal basin
#

@whole palm kid, you can't call other people explaining to you how you misbehave "anger issues"

#

grow up

foggy ember
#

Nah I just came here because I started programming a few days ago since my course has a programming course I'll need to do later. And I've been crashing out because there's something wrong with a line of code and I can't explain why

wise loom
#

@whole palm you left mid-convo

wise loom
whole palm
#

when i apologized to them

#

and they are still gonna be ignorant

vocal basin
whole palm
#

why would u want to bring urself in the middle of this

vocal basin
wise loom
# foggy ember

Why do people post screenshots of code and not the code. I don't get it.

whole palm
#

i vividly remember callin g ur name

vocal basin
whole palm
#

it was after this whole thing

whole palm
foggy ember
#

Also it's too long to have it all in chat.

amber raptor
foggy ember
#

I'll do it in parts

vocal basin
foggy ember
#

vector_list = []

def get_vectors():
print("Input mode activated")
while (numb := input("Enter a vector or enter quit: ")) != "quit":
vector = list(map(int, numb.split()))
vector_list.append(vector)
# Inplement Error expection when input is a string other than quit or a string or numbers
vector_log()

print("Input mode deactivated")

while [option := str(input("Would you like to continue to input vectors or return to main menu, Yes or No: ").lower())] != "yes" or "no":
    print("That is an invalid option, try again") #This is doesn't work

if option.lower == "yes":
    get_vectors()
elif option.lower == "no":
    main_menu()

def vector_log():
for id,row in enumerate(vector_list, start = 1):
print(f"{id}. {row}")

def vector_addition():
print("Under progress")

def vector_subtraction():
print("Under progress")

def scalar_multiplication():
print("Under progress")

def dot_product():
print("Under progress")

def cross_product():
print("Under progress")

def element_wise_muliplication():
print("Under progress")

def magnitude():
print("Under progress")

def normalize():
print("Under progress")

def orthogonalization():
print("Under progress")

operations_func = {
1: vector_addition,
2: vector_subtraction,
3: scalar_multiplication,
4: dot_product,
5: cross_product,
6: element_wise_muliplication,
7: magnitude,
8: normalize,
9: orthogonalization
}

#

def operations_list():
operation = [
"Vector Addition",
"Vector Subtraction",
"Scalar Multiplication",
"Dot Product (Scalar Product)",
"Cross Product (Vector Product)",
"Element-Wise Multiplication",
"Magnitude",
"Normalize",
"Orthogonalization"
]
for id, op in enumerate(operation, start = 1):
print(f"{id}. {op}")

option = input("Enter which option to operate: ")

if option == "quit":
    main_menu()
else:
    try:
        option = int(option)
        func = operations_func.get(option)
        if func:
            func()
        else:
            print("invalid option")

    except:
        print("Enter that isn't a number or quit")

def main_menu():
while (prompt := int(input("1. Create vectors \n2. Vector log \n3. Operations \n input: "))) not in {1, 2, 3}:
print("Error: Invalid input")

if prompt == 1:
    get_vectors()
elif prompt == 2:
    vector_log()
elif prompt == 3:
    operations_list()

main_menu()

vocal basin
#

!code @foggy ember

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.

whole palm
#

i think anyone would remember a certain situation

vocal basin
whole palm
#

sorry dude, trying to cover up your own lies and missed context with this doesn't change anything

#

i was never rude about anyone

#

i quite clearly intended that this might be a description of them or not

#

a person i was very close with

#

yet even after apologizing they continue on a rant about old stuff

#

you were never apart of the conversation and the onlywant included in that was iko from the very start

wise loom
vocal basin
#

I can try searching up for your two alts too if you need

#

alleged alts

amber raptor
foggy ember
#

What's going on?

vocal basin
#

2023-01-14

whole palm
patent chasm
#

anyone with a h1b1 visa been told to get to usa in under 24 hours by their companies

whole palm
#

there was an altercation of someone spreading misinformation

patent chasm
#

appenrly

whole palm
#

and its quite obvious in that converstaion mindful dev was on my side

vocal basin
patent chasm
#

trumps imposed $100k annual fee on the employers

#

for any company for anyone with a h1b1 employee, and its per employee

#

tldr they getting as many ppl as possible into usa, then keep them for 11months and use that time to offshore the work or train usa employees

patent chasm
#

ofc

whole palm
#

maroloccio told me to tell him where i know him from

#

and thus i said what i said

vocal basin
#

the issue was with how you said it

patent mural
#

dude

whole palm
#

i said what i remembered

foggy ember
#

The hell is going on in this server 😒 . I've been her like 15 min

whole palm
#

i remember a person in that java server with the exact issue i described and he helped me alot in my personal life

foggy ember
#

nah it's in the chat

patent mural
#

why don,t i have permission to speak in vc😭

foggy ember
#

the pizza one

vocal basin
#

you telling "we had a conversation about how your parents were drug addicts, that's where I remember you from" was

whole palm
#

"and it might've been you or someone else"

#

it was the context of this entire convo

vocal basin
whole palm
#

besides am i the child for apologizing ?

#

what do you want me to do?

vocal basin
#

do not bring up speculation so confidently

whole palm
#

i think you can speculate everything

#

with the context of everyone knowing it was a speculation

#

you must be very egotistical to let that fly over your head

vocal basin
vocal basin
whole palm
#

sorry like it or not, i mentioned it multiple times that it couldve totally been another person

patent chasm
#

this is generaly a culture clash between usa and eu companies @amber raptor

amber raptor
patent chasm
#

because there is a higher demand for it, and customers are higher demand on long term performance and data securtity

#

where usa all about that sales and quartly profits

amber raptor
patent chasm
#

its essentualy 2 diff corprate cutlures that are the diffrences between you and marolocoloP:)

#

i am just wathcing it burn and waiting for them to fix their crap of dropping vunrbalities onto ppl πŸ˜‰

#

a "come to jesus moment"

#

there is some really baisic crap misisng from JS,

#

which is why they are all doing dumb shit like importing leftpad

#

and tbh npm is a huge problem as your imports for complication add soo much extra requried resorces, instead of you just writing those packages into your software yourself

vocal basin
#

@midnight agate pizza arrived

#

square pizza

plain dagger
#

hi everynyan

#

were you talking about invterviewing?

#

both of them: yes

#

soy el hombre papa, el hombre patata, el potato man

#

i was going to go do some trekking but rain poured over all the city πŸ™

#

i speak sometimes

#

im with wifey

#

so cant speak

#

nah its more than its weird to speak english when im with her

#

it gives me cringe

#

nah im ok here, just wanted to vibe

#

while coding a little

vocal basin
#

very square, not rounded

wise loom
plain dagger
#

good game

#

harder than hollow knight indeed

patent chasm
#

and its not really for CYA its to litterly save hours of compile time in the cloud

vocal basin
#

Obsidian doesn't deserve to go out of business, unlike Oracle

#

Obsidian's products actually help people

#

unlike Oracle

plain dagger
#

ahahahaha

#

(i hate oci btw)

#

worst thing ever i had to work with

vocal basin
#

Oracle's OCI isn't the OCI OCI

#

open container initiative is the real OCI

patent chasm
#

if we are talking about sham opensorce, lets start slamming redhat and ibm

vocal basin
plain dagger
#

i hate notion

#

not the company but i just dont like it

#

its so bloated

vocal basin
wise loom
vocal basin
wise loom
vocal basin
#

average person isn't a programmer

#

many things inspired many other things

#

but Obsidian and Notion set the example of what people use and expect

plain dagger
#

-y is the argument to the command

vocal basin
plain dagger
#

i think you need to use ncal @wise loom instead of cal

patent chasm
#

ive been tempted to redo obsian with a sqlite backend, a distrabuted sql lite backaend tbh

plain dagger
#

cal is the old one

vocal basin
#

the UI is the main selling point

plain dagger
#

told you, its ncal

patent chasm
#

ngl data part is the only problem ive ever had with obsidan, that and lack of uuid support for notes

vocal basin
plain dagger
#

i would like to create my own obsidian just to be cool

vocal basin
#

they clearly didn't focus their attention on that

plain dagger
#

cool kids have their own knowledge management system

vocal basin
#

I am planning to make something related to note-taking

#

but there is a single specific goal: minimise writing obstacles

plain dagger
#

yeah my only counter pont over obsidian, notion, logseq, etc

vocal basin
plain dagger
#

is that you have to adapt to their system

#

isntead of having them adapting to you, and if you want to you need plugins yadayada

#

logseq is even worse on its bullet point thingy

vocal basin
#

Outline seems okay

#

self-hostable

vocal basin
plain dagger
#

that page seems untrustable XD

vocal basin
#

@midnight agate "ranking"? (might've misheard)

#

I ordered pepperoni there again because that one is better than any single other one I ever ordered myself

sharp summit
#

Hello.

vocal basin
#

unless I ordered the wrong one which is a possibility

#

looks different

sharp summit
#

finally got my code to work tday

plain dagger
#

brb

vocal basin
#

we stopped using dokuwiki at work

#

in favour of Outline

#

STOP PUTTING CONTAINERS INSIDE VMS

wise loom
vocal basin
#

terrible practice

wise loom
#

LXC better?

vocal basin
#

just run containers on the host

#

no VMs

#

Docker/podman/k8s/LXC, whatever

#

just not VMs

wise loom
#

can I run Tailscale inside an LXC?

vocal basin
#

this took, like, 10 seconds to find

#

I just do a very revolutionary idea of having my own servers, IPs and domains

#

@worldly crane or just get an SBC

#

e.g. based on Intel N100/N200

#

covers most of simple hosting stuff

wise loom
#

Flash Pocket NAS x86, Max 48GB RAM
CPU: one of N100,N200,i3-N305

#

@worldly crane @whole bear ^^

vocal basin
wise loom
vocal basin
#

I hosted stuff for a long time on 8GB RAM

#

it did have a minecraft server at some point with >5 players

#

just don't go insane with mod count

#

unmodded is optimised with stuff like paper

#

both are fine

vocal basin
#

@wise loom you do need to clean it sometimes

#

even passively cooled

whole bear
#

GTG

jolly fiber
vocal basin
#

(just don't buy used SSDs)

#

SSDs are more of a resource than a reusable tool

jolly fiber
#

iko where are u

wise loom
jolly fiber
#

from

vocal basin
#

Earth

#

(allegedly)

wise loom
#

πŸ‡·πŸ‡΄ Romania

vocal basin
#

which is located on Earth (allegedly)

jolly fiber
#

ahh

#

I was just curious bc u said u didnt have ebay

vocal basin
#

I don't use wi-fi for any of the servers

#

even though most support it

wise loom
jolly fiber
#

so each of your nodes runs proxmox?

wise loom
vocal basin
wise loom
#

These websites have nice reviews for low-power homeservers and hardware

vocal basin
#

calling black square pizza "Malevich" is quite an obvious pun in Russian but probably not as much internationally

plain dagger
#

i got a question for you people, when you work in something thats unknown (i mean really unknown) how can you make it work under agile? i was doing some spikes and research over some structures, but these are unknowns, i dont see how i can make it a simple task (ik ik i could just probably let the task be there for weeks on progress but you know how these companies are)

wise loom
vocal basin
#

@worldly crane I pay for electricity for five computers and the rest of the apartment, but I live in a cheap energy place, so ends up way less than the equivalent cloud costs

wise loom
#

anything other than maintenance that may have unclear schedules or time required for research, it's being done, with progress meetings but definitely not agile

tepid edge
#

if by agile you mean scrum

vocal basin
#

twice the internet cost

plain dagger
#

wow

vocal basin
plain dagger
#

i pay more than a hundred

vocal basin
#

it will be several small speculative tasks

plain dagger
#

yeah that makes sense for me, but thats the issue speculative

kind cargo
#

hello guys, how do i get access to a mic

plain dagger
vocal basin
#

Agile itself is largely speculative by design

#

short-term speculative

#

try that, see if it works

plain dagger
vocal basin
#

rather than speculating long-term

plain dagger
#

will try that

#

thx πŸ˜„

#

i will just create a task for every unknown i have

vocal basin
#

instead of pretending that something can be planned upfront, being agile means you can cheaply give up time you already invested into speculation

plain dagger
#

thats a cool take

plain dagger
vocal basin
#

I like organising stuff with GitHub-style issues
I used to do kanban in addition to that but gave up because of lack of automation

plain dagger
#

you can always have a hosted jira

vocal basin
#

OpenProject paid version has too

vocal basin
tepid edge
#

@vocal basin just hire 10 people to organise meetings and move tasks around the kanban board /s

vocal basin
#

afaik

#

you can pirate jira

plain dagger
#

iykyk

vocal basin
#

they likely allow you to remain on-prem if you've been paying them for some time

#

for new deployments they really push their own cloud

plain dagger
vocal basin
#

yeah, we used to have Jira too

#

dropped in favour of Redmine

plain dagger
#

that jira looked like 2003 jira, not the actual one

vocal basin
#

looks worse, performs better

vocal basin
plain dagger
vocal basin
#

hmmm

wise loom
vocal basin
#

now that Atlassian owns them

#

it already crashes and performs poorly

#

already aligned well

#

(I tried running Arc on Win10 and it never lasted more than 5 minutes until crash)

vocal basin
#

the new, AI bro Arc

#

the browser from where the rest copied the worst features

plain dagger
#

ahahah

#

im looking it

#

im not into browsers tbh, just firefox/chrome everything

vocal basin
#

the only differentiating feature is the unified tab-bookmark structure

#

which I kind of want

#

but it's implemented so poorly

#

it feels bad to move tabs

#

it crashes

plain dagger
#

i like the mosaic thingy

#

reminds me of i3

vocal basin
#

also it's not Linux-compat I think

plain dagger
vocal basin
#

it took them a long time to do Windows 10

#

iirc they effectively ported Apple's UI stuff over

#

so it was kind of expected to workn't

wise loom
plain dagger
#

just realized i was defeaned all this time

plain dagger
#

since i went apple i stopped using those thingies

#

was just writing "since i went apple" and a key just broke out of nowhere

#

but anyways

jolly fiber
#

@worldly crane what u gonna use the nas for

worldly crane
#

idk

#

stuff

jolly fiber
#

bruh

#

@wise loomdo u use raid?

craggy vale
#

@wise loom

wise loom
jolly fiber
#

I think for basic stuff hdds would be the way to go since u have a lot @worldly crane

wise loom
jolly fiber
#

ye

marsh cypress
#

Guys any recommendations for the best course for python or best way to learn faster

jolly fiber
#

Don’t rush things take time

wise loom
patent chasm
#

?resorces

wise loom
whole bear
whole bear
wise loom
# whole bear I think the actual reason is that India refused to open its agriculture sector f...

Yeah that's never going to happen, allowing US to enter India's agriculture sector.
US's Monsanto is very controversial about not allowing seed replanting from one harvest to the next, pitting neighboring farmers against each other if one uses certain products and the other doesn't.
John Deere creates full-dependence and vendor lock-in, blows apart RTR(right to repair) for farmers.
https://www.youtube.com/watch?v=CxVXvFOPIyQ

whole bear
wise loom
craggy vale
#

πŸ₯²

whole bear
wise loom
craggy vale
#

πŸ₯²

wise loom
#

@whole bear it's incredible that Monsanto managed to enter India's agriculture sector..

#

just for herbicides and genetically modified seeds... surely India can make those too

whole bear
#

@wise loom Yes India can produce its own but ability to assert patent rights of Monsanto is struck by High Court and Supreme Court of India

#

Technically Monsanto dominates India but it can't assert it's patent rights on India

wise loom
whole bear
#

One bad crop field and farmer would kill himself

wise loom
whole bear
#

Yes

#

Because farmers get the bare minimum for crops they sell and to make matters worse they take loans to produce new crops.

Yeah they are making a loss by selling it or barely any profit

wise loom
#

you think it would be even worse without Monsanto?

wise loom
#

It should really be analyzed why those prices are high. If it's because of Monsanto having high prices, it should be kicked out immediately.

whole bear
#

so they invest all of the money for crops, etc to cultivate land not owned by them

#

If they sell, 50% of revenue goes to land owner

#

And 50% for former

wise loom
whole bear
#

To pay these loans they borrow another

#

And eventually it compounds

#

Average debt is around 500$ on agriculture household in India

wise loom
#

Idk, I think the Gov should offer subsidies to the farmers. Also because food production is one of the most important and fundamental things in an economy.

wise loom
#

And they should kick out Monsanto ASAP

#

I don’t even understand how Monsanto managed to enter India

whole bear
wise loom
#

It was founded in US

whole bear
#

Supreme Court of India will stop the resolution in action

#

Monsanto is private company protected by the laws for private company

whole bear
#

It is acquired by bayer

#

Bayer control and operates MIL in India

#

@wise loom India is vulnerable, Reserve Bank of India (RBI) pumps the value of INR artificially to make it strong.
If RBI stops this, India will face deflation and the average Indian would be much poor, but in the long run it will be competitive like vietnam.

This is the very same reason why manufacturing is yet to be a significant contributor to India's economy and most Indians are in farming.

#

Idk, why does the Indian Government choose to strengthen INR despite having weak manufacturing.

#

If India had deflation it would be a nightmare for farmers...
Farmers fear deflation!

#

RBI should let INR in freefall!
Many farmers will die but India will gain it's strength in manufacturing

whole bear
somber heath
#

<@&831776746206265384>

olive hedge
#

!ban 781119470864433152 crypt0 scam

wise cargoBOT
#

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

urban pier
urban pier
marsh cypress
urban pier
marsh cypress
urban pier
#

How are you doing

marsh cypress
wise loom
night oasis
#

hi

wise loom
#

Thanks to AI, say goodbye to medical services

vocal basin
#

might be making some FFI stuff for async Rust today

#

(or not doing anything at all, also a possibility)

#

these three

#

primarily, this needs to be compatible with FFI

TryStream<Item = Item, Error = E>
+ Sink<(Msg,), Error = E>
+ ReadyRoute<Route, Msg, Error = E>
royal patio
#

Hello, I am new to the server

night oasis
#

welcome

vocal basin
#

previous stuff like that I used abi_stable for

#

but

#

that crate is abandoned

#

so now switching to stabby

royal patio
#

Thanks. Do you guys use tools to code? I ask because I am not fluent in coding but I use cursor

vocal basin
#

ruff

#

good tool

#

tagit is a useful tool too but I'm not sharing it yet

royal patio
#

Right

vocal basin
#

@wind raptor 6 is theoretically within possible, however 37 might be problematic

#

ah, I remembered why I didn't entirely want to go with stabby

#

not having the full control over the layout

royal patio
#

What channel would I check out to have someone kinda check out what I am doing and get a new point of view. It's kinda far out there

#

Yes, I just have to use ai tools. And like he said, they are not the best.

#

What about a concept? Forget the coding part. I am trying to build a true digital brain. It's in python. I think you would call in nlp

#

To ask someone to look at code would be alot

#

I didn't hear anything you said

#

Can I put a document in chat

wind raptor
#

As long as it's not written by AI, sure.

royal patio
#

So i can't put a document my tool wrote?

wise loom
royal patio
#

Cursor, it's just a summer of the concept

#

If not, it's ok

wise loom
royal patio
#

Lol,

wise loom
#

summer of conceptπŸ–οΈ ?

#

what

royal patio
#

Summary

wise loom
#

@royal patio "digital brain" is a weekend project your professor assigned to you as homework?

#

@royal patio before doing a "digital brain", you should do a full OS as well to overtake Microsoft and MacOS

royal patio
#

It a hobby, I am disabled and I work on this for fun

vocal basin
#

I remember there were attempts to replicate neurons in hardware

#

but it's still vapourware

#

everyone just went with linear NPUs

royal patio
#

I just like trying different stuff

night oasis
#

I'm having difficulty with a while loop

wise loom
royal patio
#

I just have a little script, just a starting point.

#

I make a lot of chtbots, use local ollama models

#

Im using gpt-oss for everything right now

wise loom
royal patio
#

Lol,

tepid edge
#

@royal patio do you understand the code output of the LLMs?

#

are you able to verify that it does what you expect

#

if no, learn how to do that

wind raptor
#

!stream 1318626588560199692

wise cargoBOT
#

βœ… @woeful blaze can now stream until <t:1758468207:f>.

royal patio
#

I am learning how it thinks down to the token level. I play with temp setting for now but I don't like how the models are trained. And I like teaching, so it a concept about teaching a blank mind. I can simulate it with some of my apps. But there are still safe guards that don't like built in.

#

I have 1 simulator that does 12 llm calls with 20 prompts

wise loom
vocal basin
#

@royal patio do you have a process of checking whether, for example, code like this is valid?

def example() -> (int, int):
    return (1, 2)
#

the type of code that LLMs will eventually generate

wise loom
vocal basin
wise loom
#

"F*ckin' Aussies!" - Kangaroo Island Wildlife Park tricks Scottish reporter into handling dangerous 'drop bear'.

More: http://7news.link/t8FQ8q

Subscribe to 7NEWS Β» https://7news.link/7NewsSubscribe

Connect with 7NEWS online
Visit Β» http://7NEWS.com.au
Find 7NEWS on Facebook Β» https://7news.link/0tdk4A
Follow 7NEWS on Twitter Β» https://...

β–Ά Play video
somber heath
inland mirage
#

can you read this? i mean you ppl in vc0

wise loom
inland mirage
royal patio
#

Haha

inland mirage
#

ngl im trying to get to 25 masseges

#

but I cant spell spell

wise loom
inland mirage
#

this is the thing I have 0 rizz and no subject to talk about

sturdy panther
#

Degree C?

vocal basin
#

.wa s 300 f to c

viscid lagoonBOT
vocal basin
#

hmm

#

application code in Python, library code in whatever

#

as in "I don't write anything other than Python" type of approach

#

there is a certain class of games which are mostly made in Python

#

with one specific extension thereof

jolly fiber
#

you have to press enter @woeful blaze

#

i think no file sharing perms

#

send a dm lol

wind raptor
#

!code

wise cargoBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

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

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

For long code samples, you can use our pastebin.

jolly fiber
#

no wut

#

not every zip has viruses

#

lol

wind raptor
#

Back in a bit. Gotta make my kids some lunch.

woeful blaze
deep python
crude wren
#

i should be going now, cya guys

deep python
#

bye

somber heath
#

@solid inlet πŸ‘‹

vocal basin
#

@peak depot the funniest quote I heard in a podcast so far:
"plus, it's especially notable that every next scene comes after the previous one"

this is, like, peak "I have absolutely nothing to say" moment

#

(translated from Russian)

peak depot
vocal basin
somber heath
#

@fossil barn πŸ‘‹

fossil barn
#

hibro

vocal basin
#

there needs to be a moderator already in the VC

somber heath
#

@surreal sedge @latent moss πŸ‘‹

latent moss
#

Hello there!

surreal sedge
#

hello!

fossil barn
#

respect to @somber heath for saying hello to everyone

#

well how can i get voice verification?

#

@somber heath

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.

fossil barn
#

well guess i gotta get 25msgs

vocal basin
#

@somber heath instructions unclear, pressed the button, missiles launched

#

or as we call them, seismic communication devices

fossil barn
#

oh nah

dim arch
#

result = sum((lambda f: [f(x) for x in range(1, 10)])(lambda x: x2 + x % 3 if x & 1 else x0.5))

#

print(result)

rotund oasis
#

179

vocal basin
somber heath
#

@floral phoenix πŸ‘‹

#

@terse narwhal πŸ‘‹

terse narwhal
#

Hi

#

I'm trying to learn to use Linux for hacking

#

Somebody help

somber heath
#

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

terse narwhal
#

Ok

somber heath
#

We generally don't engage in the discussion of the practicalities of red-team subject matter.

obsidian dragon
somber heath
#

@flint dust πŸ‘‹

flint dust
#

Hello sir

obsidian dragon
#

@somber heath back to work

somber heath
#

@south fable πŸ‘‹

vocal basin
flint dust
somber heath
ornate void
#

hello

#

i need help

#

i cant run a python file

sly hawk
#

I can't do anything to help you

ornate void
#

i need help some1

#

πŸ™‚

candid spire
#

Hello

#

Good

#

watching S line

#

This drama is fed up

#

yes

#

Idk

#

It is like horror

#

theme of drama is body count

#

what are you doing?

#

what kind of coffe?

peak raptor
#

idk why this server has this 3d voice chat ban it's not like anyone would raid a python server

candid spire
#

right now I'm eating dragon fruit, Idk why but eating this exotic fruit changes the color of poop

peak raptor
#

no

#

why would anyone want to raid a python server

candid spire
#

They make attachment with stranger online if thing went wrong they would behave like child

#

troll, abuse, so on

peak raptor
candid spire
#

brb

peak raptor
#

ah

#

i just started learning python like 2d ago, i mainly wanted to just use vc bcs I prefer using vc's over text chat

#

i think for someone like me the 9 minute block thing will end up taking over a week lol

#

i barely chat in servers

#

i mean msg count is 25 messages right, shouldnt the blocks like prob make up for that

#

can you go in depth and explain setter, getter and deleters to me

#

i was watching a OOP tutorial and he was using that

#

for python

#

i already finished classes

#

and parent classes

somber heath
#

Lentilmen.

peak raptor
#

and methodclasses as well as staticclasses

#

i went through the whole oop thign it was like 6 20 minute videos

#

yeah rn i'm watching a 12hr python course by Bro Code

#

around 4 hours in atm

#

i've just been using chat gpt to test me lol

tacit crane
candid spire
#

I'm back

#

Holy f

#

Is it normal to have viscous fluid as human feces?

peak raptor
#

i think i'm prob learning python faster than other people because I have a luau background and it's like 80% similar to python from what i've learned so far minus some tiny tweaks like if statments and else and elif and then turning into : etc.

I've been wroking on this little catalog project on Roblox for like 2 1/2 months

candid spire
#

Damn as per google I have cancer

peak raptor
#

yeah

candid spire
#

I think learning lang is easy

#

but learning to implement is hard

peak raptor
#

but i've done sequel and a little of Java which is sorta similar, but lua is by far like near 1:1 to python from what i've seen so far

candid spire
#

If you could make use of lang to its full potential you have every right to be judge

somber heath
#

!e ```py
class Square:
def init(self, side):
self.side = side

@classmethod
def from_perimeter(cls, perimeter):
    return cls(perimeter / 4)

foo = Square(1)
bar = Square.from_perimeter(1)
print(foo.side)
print(bar.side)```An example use case for a classmethod decorator as part of an alternate constructor to __init__ for the class.

wise cargoBOT
candid spire
#

I'd like to ask a quick question, which is correct : grub or grub2 for theme

#

in Fedora

#

If you could help you out it would be great!

#

Bye

wind raptor
somber heath
#

I expect they would alias to the same thing if both are there, but that's an unqualified guess.

#

I'm trying to get my regex on. Even my Python is feeling like I'm grasping around in the dark.

#

Yeah, I love it, too, but it doesn't love me.

#

It's all very unrequited.

#

Yeah...

#

Has the cheetsheets and the active matching displays and soforth, mm.

#

Dynamic.

#

I'm trying to grab indentation blocks. Like if I was to grab every for loop in code, or every while loop and the text of the enclosed. It's not Python code I'm reading, but that's the shape of the problem.

#

I write something I think should do it, and I set the multiline flag and everything and it's just...sad trombone noises.

vocal basin
#

@peak depot clearly, peaceful victory

#

GitHub Actions workflow failed mail notifications but with actual mail

candid spire
#

I need help

#

This is the command which I've tried

#

And it didn't worked

candid spire
#

@wind raptor wdym lock up?

#

I'm trying to change the theme of grub

vocal basin
#

unless it's white-on-white with white borders, why change

candid spire
#

Yeah but I have multiple distro

#

Lovely theme

vocal basin
#

famous program, unfuck.exe

#

by Rendle

candid spire
#

I have backup

#

and if I fed up

#

I'll delete it

vocal basin
# vocal basin famous program, unfuck.exe

This presentation was recorded at GOTO Amsterdam 2023. #GOTOcon #GOTOams
https://gotoams.nl

Mark Rendle - Creator of Visual ReCode with 7 Microsoft MVP Awards & 30+ Years of Experience Building Software @that_rendle

RESOURCES
https://twitter.com/markrendle
https://github.com/markrendle
https://linkedin.com/in/markrendle

ABSTRACT
Most of the ...

β–Ά Play video
#

first one there

candid spire
#

Restart from the very beginning

gentle flint
#

it's compiled on exclusively gpl-compliant hardware and software and whenever I run it it makes a snarky comment

vocal basin
gentle flint
#

oh that's an actual thing

#

til

vocal basin
#

"it should be" rather than "it should be"

gentle flint
vocal basin
#

"tones should be the same" means either "I think those are same" or "they should be made same"

gentle flint
#

ah, I see

#

with the should referring to your degree of certainty rather than your personal opinion

vocal basin
#

smoke alarm being fully alarmful about its batterilessnes would be an interesting design choice

gentle flint
#

sentient smoke alarm

#

the smoke already does uprisings

#

soon the smoke alarms too

#

if anything is alarming that should be

#

before and after

somber heath
wise loom
craggy vale
craggy vale
wind raptor
#

!stream 1186943801558831168

wise cargoBOT
#

βœ… @craggy vale can now stream until <t:1758549521:f>.

somber heath
#

@timid quartz πŸ‘‹

timid quartz
#

sigh

candid spire
#

@amber raptor Do you use fedora linux?

timid quartz
#

i aint ever gnna have my first amendment right ever again

candid spire
#

I need help

vocal basin
#

also likely doesn't want to

timid quartz
#

chris free me brooooo

timid quartz
candid spire
#

Can I get in contact with Linux trovald

vocal basin
candid spire
vocal basin
#

reminder that Linus didn't bother with Debian because it was too difficult to install

vocal basin
#

that's the point

#

the only subject he didn't hate was guns, probably

#

@peak depot in USA, whenever you collect too many conflicting ideologies together in your head, gun just randomly spawns in your hands

#

probably that's how it works

somber heath
#

@hearty raven @mossy harbor πŸ‘‹

hearty raven
#

My mic is blocked

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.

somber heath
#

@obtuse pilot πŸ‘‹

slender sierra
#

Hi everyone!😊)

obtuse pilot
#

why am i not allowed to speak in voice channel? πŸ₯²

hot valley
#

still not allowed on voice

#

nah, just joined this group few day ago

echo bison
hot valley
#

thanks

vocal basin
#

aaaaaa

#

minesweeper

open moth
#

I prefer Opal

#

for

#

friendly voice

vocal basin
#

I can only provide unfriendly voice

#

for some definition of "voice"

echo bison
#

salt takes the cake

open moth
vocal basin
#

or an air siren

open moth
#

damn i can use it as my alarm's ringtone

#

i missed my math class

#

cuz i

#

woke up

#

late

#

πŸ₯€

#

where's opal

echo bison
open moth
vocal basin
#

nuclear seismic communication research centre

open moth
#

i like the

#

wake word

#

"arch"

#

hell yeh

echo bison
#

@winged copper πŸ‘‹

candid spire
#

Finally πŸ˜ƒ

candid spire
#

Manually...

#

Thanx Linux trovald

mossy harbor
#

Have a nice day

candid spire
royal patio
#

hello

candid spire
#

I got baited...

#

I should have chosen simple theme

wind raptor
#

!stream 856263284764311583

wise cargoBOT
#

βœ… @echo bison can now stream until <t:1758555489:f>.

paper wolf
#

Sup

woeful blaze
#

Howdy

#

How is everyone doing today?

wind raptor
woeful blaze
#

Tired trying to learn how to make my own body cream

vocal basin
#

he was here 9 days ago

#

approx

#

then we dragged him to the other server

plain dagger
#

wait

#

can you hear me?

vocal basin
#

seems like not

#

without speaking mistakes, 0

#

I can only properly read/listen to English and Russian

#

and random pieces of trivia for other languages

#

Maro knows several

#

the language I learned the most besides those (and excluding Ukrainian/Belarusian which are quite close to Russian), was Esperanto

#

but I don't remember much of that

woeful blaze
vocal basin
#

I slept three hours

plain dagger
#

i hate this format, who tf thought this was any good

plain dagger
#

is a 60s format, and people still use it nowadays

vocal basin
#

@peak depot oligarbus

#

rich people replace busses to get more money

#

πŸ“ˆ

#

I really prefer not talking to neighbours

plain dagger
#

+1

timid quartz
#

@vocal basinare u banned to cuh

vocal basin
timid quartz
#

that is english

#

@wind raptorcuz its never talkedd

vocal basin
#

at least you're making progress, you did 3/5 words

#

last time it was 2/5

vocal basin
timid quartz
#

its?

#

i call people it

#

i js say it outa habbit

vocal basin
timid quartz
plain dagger
#

we dont have the concept of "it" and most of words are based on "him" in spanish

vocal basin
timid quartz
paper wolf
#

So many people here

vocal basin
#

it's like when parents are scolding you

#

acted upsetness

timid quartz
#

i dont get scolded

#

im not a bad kid

dry jasper
paper wolf
#

Solar panels

vocal basin
timid quartz
#

but when i say rude stuff i get introuble

#

alrightttt

vocal basin
#

@dry jasper but does it produce its own solar panel replacement

paper wolf
#

Lol

vocal basin
#

free labour already packed inside

#

bringing Europe back to Victorian era

plain dagger
#

i cant speak with this allergy, i hate spring

dry jasper
#

nahh at least weimar era

vocal basin
#

@peak depot it's been free for a while iirc?

#

as in that version

#

yes

#

sounds right

#

nothing wrong with that

#

the drone game? or some other one?

#

it's for drafting kids into military

#

not for playing

#

everyone knows anyway

plain dagger
#

hows that game called?

vocal basin
#

nofuckingclue.exe

plain dagger
#

XD

vocal basin
#

@dry jasper extra points for admission, total is up to 10

plain dagger
#

its like a sim @dry jasper ?

vocal basin
#

idk how much that specifically gives

dry jasper
#

На ΠΏΠ»Π°Π½Π΅Ρ‚Ρƒ ΠšΠΈΠ½Π΅Ρ€ΠΌΠ° Π²Ρ‹ΡΠ°Π΄ΠΈΠ»ΠΈΡΡŒ ΠΊΠΎΠΌΠ°Π½Π΄Π° ΠΏΠ΅Ρ€Π²ΠΎΠΏΡ€ΠΎΡ…ΠΎΠ΄Ρ†Π΅Π² с Π‘Π΅Ρ€Π»ΠΎΠ³ΠΈ. Π˜Ρ… Ρ†Π΅Π»ΡŒ β€” ΠΈΡΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚ΡŒ Π»Π°Π½Π΄ΡˆΠ°Ρ„Ρ‚, Ρ„Π»ΠΎΡ€Ρƒ ΠΈ Ρ„Π°ΡƒΠ½Ρƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ здСсь ΠΏΠ΅Ρ€Π΅Π΄ΠΎΠ²ΡƒΡŽ Π½Π°ΡƒΡ‡Π½ΡƒΡŽ ΡΡ‚Π°Π½Ρ†ΠΈΡŽ.

Π’Ρ‹ β€” ΠΎΠΏΠ΅Ρ€Π°Ρ‚ΠΎΡ€ ΠΊΠ²Π°Π΄Ρ€ΠΎΠΊΠΎΠΏΡ‚Π΅Ρ€Π°, к…

β–Ά Play video
vocal basin
#

probably 1

plain dagger
#

it sounds like this movie

vocal basin
# dry jasper https://store.steampowered.com/app/3453500/Akademiya_dronov/

Russia’s Covert Child Soldier Program Exposed: From Video Games to Battlefield Drones

In this shocking investigation, Tatsiana β€œTanya” Ashurkevich (https://x.com/tashurkevich) and Christo Grozev (https://x.com/christogrozev) reveal how the Russian government is secretly grooming children to support its war in Ukraine. What if the next wav...

β–Ά Play video
plain dagger
vocal basin
#

features such classics as incompetent representatives speaking to journalists without a clue of why they're being contacted in the first place

plain dagger
#

good opportunity to learn russian

wind raptor
#

!stream 1258548535108964363

wise cargoBOT
#

βœ… @rapid jungle can now stream until <t:1758562795:f>.

plain dagger
#

oh no, partial differentation

#

@rapid jungle the issue is that on a spacetime-space (which 4-dimentional) you use relativity for time dillation-contraction not forward-backward, so what a wormhole would do is just accelerate you through that dimension if you, would teorethically would use the bending of the spacetime plane

#

you would never go backwards, thats even impossible as we only have the time dimension as a "metric", is not something factual like distance, mass, volume, etc

#

time is directional as is the enthropy being higher, thats our timeline

#

there is no actual dimension

#

thx for my ted talk

#

we only treat time as a dimension because is easier to calculate, is just a representation

patent chasm
vocal basin
#

I'm still really not sure about the distributed libSQL

#

which exists

#

I kind of like SQLite for being explicitly non-distributed

#

!paste

wise cargoBOT
#
Pasting large amounts of code

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

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

patent chasm
#

so that you can send stuff to the sql lite on someones phone

vocal basin
vocal basin
#

sharding is not that

patent chasm
#

as you can shard a local cached copy of the relevent user data

vocal basin
#

wrong term, but okay

patent chasm
#

that they need access to on their small devices, tehn have the data sent back to the main database

#

but its done using the replication and HA tools opposed to the normal cacheing database tools

vocal basin
#

sharding is about horizontal scaling

#

sounds more like sync or, as you said, just caching

vocal basin
#

@wooden abyss least effort, maybe

#

not necessarily fastest

#

this is not the only way

#

and do be aware that it affects the results

#

look into more precise tools

vocal basin
night oasis
#

@wind raptor while loop is hard

#

yeh

#

while True:
num = int(input("enter a number :"))
if num % 2 == 0:
print("even total")
break
else:
print()

#

i Tink i have watch videos for while

#

@wind raptor how to get role video i want strim

#

ok

honest beacon
#

whats a good way to learn python?

wind raptor
honest beacon
#

yeah

timid quartz
honest beacon
#

i fw both

wind raptor
#

Master Python from scratch πŸš€ No fluffβ€”just clear, practical coding skills to kickstart your journey!

❀️ Join this channel to get access to perks:
https://www.youtube.com/channel/UCWv7vMbMWH4-V0ZXdmDpPBA/join

πŸš€ Want to dive deeper?

β–Ά Play video
honest beacon
#

appreciate it

wind raptor
#

there's one more

#

No problem

paper wolf
#

@near jacinth sup

#

wait wrong acc...

#

srr

#

hows doing

#

your clone of git what happened there?

#

@wind raptor

#

i wanna knows its progress..

#

oh... still nice

#

a what?

#

@craggy vale are you cross compiling it to c or you just run it as regular c-python

#

?

paper wolf
#

im talking about excution...

#

cus python its self is too slow

craggy vale
#

yeah

wise loom
#

@paper wolf are you a neovim user

#

i heard neovim is the new thing