#voice-chat-text-0

1 messages ยท Page 304 of 1

stark river
#

now all i have is rooh afzah ๐Ÿ˜…

whole bear
#

benazam

stark river
#

๐Ÿ˜‚ merci dadashem

slender grove
#

???

#

@lavish roveris correct that a memory leak in your code. Not in the C.

#

๐Ÿ˜„ I think a C is a good lang ๐Ÿ˜„ I love it ๐Ÿ˜„

#

C is safe just the human do stupid things .

#

๐Ÿ˜„

#

"auto everything" is a good example.

silk dust
#

#include <stdio.h>

int main(){
int array[4096] = {0};
int i = 6000;
array[i] = 5432;
printf("%d\n", array[i]);
}
@lavish rover check this

upper basin
#
#include <stdio.h>

int main(){
int array[4096] = {0};
int i = 6000;
array[i] = 5432;
printf("%d\n", array[i]);
}
eager tapir
#

wave

#

๐Ÿ‘‹

#

very cool

brisk jolt
#

hi!

turbid flame
#

how to make 123 to 321 with mudolu?

somber heath
#

A while loop is generally also used.

#

!e py print(123 % 10) print(123 // 10)

wise cargoBOT
#

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

001 | 3
002 | 12
amber raptor
#

!kindling

wise cargoBOT
#
Kindling Projects

The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.

somber heath
#

@supple gyro ๐Ÿ‘‹

supple gyro
somber heath
plucky mica
#

Dose some one Know How to Setup llvm with the c/c++

#

for converting AST to IR

#

I Tokanize and parse the code of my own language, But Still figuring about how to setup LLVM

#

I play minecraft on 4 gb ram Laptop

#

with i3 processor

obsidian dragon
#

my server is 32GB i7-6700K with 1060-6gb

plucky mica
#

Is someone Lang Dev in You

obsidian dragon
somber heath
#

@grizzled wasp ๐Ÿ‘‹

plucky mica
#

New/inactive People come and You Hi them And they Left VC Every time

#

Hi Cartoon.

somber heath
#

@echo lynx ๐Ÿ‘‹

whole bear
#

hello

#

i have to send 50 messages for that. @somber heath

plucky mica
#

Just Do Some Conversation with Some cone it is not that big number

whole bear
#

what if bot bans me if i send some random messages?

plucky mica
#

Just do not Spam it will not block Yu

whole bear
#

I mean spam or some sh1t.

plucky mica
#

i use word Fuck

#

I am Not Block

obsidian dragon
#

BLOCK

#

I din't

plucky mica
#

Not you

#

Mango Boy

somber heath
# whole bear what if bot bans me if i send some random messages?

The auto text-mute only tends to kick in if you are doing something you shouldn't. It's tuned fairly reasonably, so there's no need to stress.

In the event it does ding you and you weren't actually up to mischief, a moderator usually spots it and will unmute you.

wise loom
#

@somber heath hmm, 17 C

#

and raining! ๐ŸŒง๏ธ

#

rain is nice except in excess

whole bear
#

Are we up to something rn? @upper basin I

#

alrighty ๐Ÿ‘

somber heath
whole bear
#

hello

#

broooooo

#

are

#

you

#

there?

somber heath
somber heath
#

@fading moss ๐Ÿ‘‹

whole bear
#

yo all.

#

@somber heath thank u for welcoming, ill be back later!

somber heath
#

@lavish dirge ๐Ÿ‘‹

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.

lavish dirge
#

Hey I have question

somber heath
lavish dirge
#

Has anyone played minecraft? There is a plugin called Slime Fan, which has several add-ons, one of them is Supreme, in it there is a part that generates electricity, it is called Supreme Generator, and... it should generate 20 million electricity per second, but it generates 20,000 electricity. Is there a problem with the programming?

somber heath
#

@spare adder @tardy nova ๐Ÿ‘‹

somber heath
lavish dirge
#

No it's plugin

somber heath
#

Because these things are often configured in configuration files. A modpack composer may choose to nerf the energy generated.

#

Could it also be an error from where you're getting the higher figure?

#

Might you be misinterpreting the energy reading in-game?

lavish dirge
median geode
#

wedqerf

#

hi

somber heath
#

@slender sierra ๐Ÿ‘‹

peak depot
#

we call it Vappu

#

labor day

wind raptor
#

@rugged root's work ^^

somber heath
#

@versed heath The best next language to learn after Python is the one you choose.

#

Learn the one you need.

#

Learn the one you want.

obsidian dragon
#

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

obsidian dragon
whole bear
#

``

public class FizzBuzz {
public static void main(String[] args) {

for(int i = 0; i <= 100; i++){
  //System.out.println(i);
  if (i % 3 == 0 ){
    System.out.println("Fizz");
  } else if ( i % 5 == 0) {
    System.out.println("Buzz");
  } else if (i % 8 == 0) {
    System.out.println("FizzBuzz");
  } else {
    System.out.println(i);
  }      
}

}
}``

rugged root
#
for i in range(100):
  string = ""
  if i % 3 == 0:
    string += "Fizz"
  if i % 5 == 0:
    string += "Buzz"
  if not string:
    string = i
  print(string)
#

Not the most efficient, but it's what I would do

mental laurel
rugged root
#

It's one of for sure

mental laurel
#

i just sometimes like to overcomplicate it

rugged root
#

God I just realized that's in an f-string

mental laurel
rugged root
#

It is a clever usage of True being == to 1

mental laurel
#

yeah

somber heath
#

!e py import numpy as np arr = np.arange(1, 11, dtype=object) three = arr % 3 == 0 five = arr % 5 == 0 arr[three] = 'Fizz' arr[five] = 'Buzz' arr[three & five] = 'Fizzbuzz' print(*arr, sep='\n')

wise cargoBOT
#

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

001 | 1
002 | 2
003 | Fizz
004 | 4
005 | Buzz
006 | Fizz
007 | 7
008 | 8
009 | Fizz
010 | Buzz
somber heath
#

!e py import numpy as np arr = np.arange(11, 21, dtype=object) three = arr % 3 == 0 five = arr % 5 == 0 arr[three] = 'Fizz' arr[five] = 'Buzz' arr[three & five] = 'Fizzbuzz' print(*arr, sep='\n')

wise cargoBOT
#

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

001 | 11
002 | Fizz
003 | 13
004 | 14
005 | Fizzbuzz
006 | 16
007 | 17
008 | Fizz
009 | 19
010 | Buzz
peak depot
rugged root
#

!e h$am = "spam"

wise cargoBOT
#

@rugged root :x: Your 3.12 eval job has completed with return code 1.

001 |   File "/home/main.py", line 1
002 |     h$am = "spam"
003 |      ^
004 | SyntaxError: invalid syntax
somber heath
#

!e py a5 = ... 5a = ...

wise cargoBOT
#

@somber heath :x: Your 3.12 eval job has completed with return code 1.

001 |   File "/home/main.py", line 2
002 |     5a = ...
003 |     ^
004 | SyntaxError: invalid decimal literal
peak depot
somber heath
#

@muted hare ๐Ÿ‘‹

rugged root
#

That'll tell you what you need to know about the voice gate

uncut crow
#

damn okay

#

i came cause i need help on python assigiment

#

my professor gave me chance to fix my grade and i dont know how to fix it

#

am i able to send a picture?

#

okay brb

rugged root
#

!e print(0.1 + 0.2)

wise cargoBOT
#

@rugged root :white_check_mark: Your 3.12 eval job has completed with return code 0.

0.30000000000000004
wind raptor
uncut crow
#

those are the things i got wrong but i dont know how to fix it

rugged root
#

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

rugged root
#

Can you toss the code into that pastebin site?

uncut crow
#

okay just did it

rugged root
#

It should change the URL and you just paste that here

low stump
#

how much flea medicine would you have to drink to get blackout drunk?

uncut crow
#

wont let me

#

also getting these errors

eager tapir
#

guys

#

i became an official maintaner for OpenDevin yesterday

uncut crow
#

should i get rid of exif

low stump
#

anyone can do something smart

#

being a genius just means you do smart things more often

uncut crow
#

im not sure anymore i got lost in the code

low stump
uncut crow
#

exif was for the image for metadata

low stump
#

why do we use Binary as the default instead of something like Ternary

uncut crow
#

i cant really start from scratch cause its two assignments in one

#

till Thursday

#

i tried to use ai to help but it couldnt

#

that sucksssss

#

i just did pip install exif and still nothing

#

yes i have to pip install and stuff

#

ill send a screenshot

low stump
#

whats ur assignment evven abt

uncut crow
#

first 1 is assigiment 1

#

then second

#

no we just find whatever works

#

first assigimnet i passed it but the second i messed up bad got a 35

#

my prog 2 class

#

Ai

#

yea i just got lost so i did that

low stump
#

if you cant understand the code, then you can't fix it when it's wrong

uncut crow
#

yes ill try again myself

#

i have the first code all good just the second one to add into it im los

#

lost

#

the metadata and the api part

#

yes

#

yes

#

okay ill do that

#

no you arent

#

ill be back ill do some

#

i have a database exam then ill brb

#

worst elective i ever chose

#

yea

low stump
#

๐Ÿ˜ญ

#

RIP

uncut crow
#

thought it was gonna be easy the way the consoler explained it

low stump
#

if it has the word database in it then its either really boring or really hard

uncut crow
#

yes i realized like a week in

#

but i am passing it just faiking my prog class cause that one assignment i failed

rugged root
#

We'll get you up to snuff, don't worry

amber raptor
#

YOU

low stump
#

This is the future of technology

#

I don't get how people even make this stuff

rugged root
#

TUI libraries

#

Or just patience and a lot of string formatting

low stump
#

The Dualsense is the best ๐Ÿ˜ญ

#

its just so comfortable

rugged root
#

Right!?!

low stump
#

What ๐Ÿ˜ญ

rugged root
#

And the adaptive triggers.... I thought they'd be a gimmic but they're so nice

#

And the fact that Returnal made it part of the controls was awesome

low stump
#

Yeah, I wish there was an easy way to changethe sensitivity of them though

rugged root
#

Some games are good about it but others less so for sure

low stump
#

I want to be able to easily customise the light colour on it and the sensitivity of the triggers, and the amount of vibration

amber raptor
#

.xkcd 1172

viscid lagoonBOT
#

There are probably children out there holding down spacebar to stay warm in the winter! YOUR UPDATE MURDERS CHILDREN.

urban abyss
#

hey guys

rugged root
#

How goes it

low stump
rugged root
#

@hearty grotto If you're wondering why you can't talk, check out the #voice-verification channel. That'll tell you what you need to know about the voice gate

low stump
#

What is this diagram ๐Ÿ˜ญ

urban abyss
#

going pretty well, got to delete a few hundred lines of code today

low stump
#

what happened to simplicity

rugged root
urban abyss
low stump
#

Ben Chang

#

that's who he played in Community

#

I think Ken Jeong is still licensed

#

Yeah I think it's Phil

#

he stopped renewing his license a while ago

rugged root
low stump
#

is there any way to use TUI but easy ๐Ÿ˜ญ

#

Python, yeah

amber raptor
#

sigh

low stump
#

someone told me to check theirs out, pyTermTk, it's pretty good but I don't like how much I gotta type out and how messy it can get

#

or is using a TUI just messy and makes you type too much anyway?

amber raptor
#

it's messy in general but Python isn't the language for it either

low stump
#

why has rent increased by so much in the past decades?

amber raptor
#

various reasons

low stump
#

there's plenty of houses aren't there?

#

All I know is that last time I checked, I'm probably not going to be able to live on my own within the next 6 years or so

#

If a bank you are paying your Mortgage to goes bankrupt, do you still have to pay it?

low stump
#

๐Ÿ˜”

urban abyss
#

with pathlib I just want to instantiate a path that's relative to the file it's instantiated in, how can I do that?
I have:

dir/
  file.py
  schema.json
  tests/
    ...

but if were to run pytest it breaks my Path('schema.json') due to current working directory

rugged root
amber raptor
#

that would be quite a hack. Rich people would create a bank, have it issue a bunch of loans, send it to bankruptcy and walk away

low stump
#

at least I can say I'm a millionare... in Vietnamese Dong.

#

yeah like you can't really comprehend what 1 billion of something looks like in your head

#

any of yall know why we stopped using the gold standard?

amber raptor
low stump
rugged root
amber raptor
low stump
#

The entire country is built upon pieces of paper with green dye on it

amber raptor
#

And?

low stump
#

if they tried to replace that with gold it'd all come crashing down

amber raptor
#

sounds like a reason not to do it

urban abyss
low stump
#

yall ever think the USA will switch to the Euro???

#

prob change its name

#

to the NATO or smth

amber raptor
#

Why would we?

low stump
#

other way around bozo

#

EU takes over US

#

๐Ÿค‘

low stump
#

The EU needs to stop sitting on their ass and actually do things

amber raptor
#

GDP of United States: 28.78 GDP of European Union: 19.35

low stump
#

GDP of the United North Atlantic States: 48.13

amber raptor
#

Sure, but Europeans don't want to deal with it.

low stump
#

Please ๐Ÿ™

#

I dont want to have to get a Visa to go to the USA please ๐Ÿ™ ๐Ÿ™ ๐Ÿ™

amber raptor
#

What Euro states require a visa to visit the United States?

low stump
#

NVM I JUST REALISED I DONT NEED A VISA ๐Ÿค‘

#

wait how do i just go and live in the united states

amber raptor
low stump
#

do i have to fill out an application to remain there after a certain amount of time

low stump
amber raptor
#

We are closed

low stump
#

wha ._.

dire pebble
#
window = tk.Tk()
window.bind("<Escape>", lambda event: window.quit())
window.attributes('-fullscreen', True)
background = ttk.Label(window, background= 'black',).pack(expand= True, fill= "both")
checkframe = ttk.Frame(window).place(relx= 0.97, rely= 0.05, width= 400, height= 400,anchor= 'ne')


abox= ttk.Checkbutton(checkframe, text='a').pack()
bbox= ttk.Checkbutton(checkframe, text='b').pack()
cbox= ttk.Checkbutton(checkframe, text='c').pack()
dbox= ttk.Checkbutton(checkframe, text='d').pack()
window.mainloop()

What I expected is seeing the checkboxes in upper right corner, but the happening is I see the checkboxes just underside mid of the window

low stump
#

I can live there if I get a job there tho?

amber raptor
low stump
#

can i marry one of my friends in the USA and then divorce them when I get there?

amber raptor
#

Immigration is hot button issue in United States and in general, the public sentiment is against increased immigration

near smelt
#

Why is the first thing I see

#

๐Ÿ˜ญ

#

Man pulled the oldest trick in the book, the green card trick

low stump
#

It works, right?

near smelt
#

...

amber raptor
stark river
#

if (steal land from natives): print "we are closed"

low stump
#

Time to get myself a Husband and/or Wife

near smelt
rugged root
low stump
amber raptor
near smelt
#

Harder than getting a US citizenship

rugged root
near smelt
#

jk

#

U got to be making a mil every year just for them to consider u

rugged root
#

The fuck? Random sexist comment

low stump
#

Do they have to be American or do they just have to be a permanent citizen?

amber raptor
near smelt
low stump
near smelt
#

sorry

low stump
#

I'm trying to go the USA to get money

near smelt
#

I apologize

low stump
#

not lose it

near smelt
#

Please accept my apology

amber raptor
low stump
rugged root
#

Just delete the message and keep in mind we don't want jokes that would make the community less welcoming to people

low stump
amber raptor
#

there is a bunch of laws around couple having enough money to support themselves and such. I have friends who dealt with this process, it's not cheap. You need a lawyer to get the paperwork underway, visiting immigration. I know it cost money, I never asked details because I didn't care that much.

near smelt
#

There was a meme of that sort so I thought it was alright

surreal hedge
#

i've got it in another server, i think its a classic discord slow rollout

urban abyss
#

immigration is much harder in the UK now also, they've raised expected salaries past the average salary of first year medical staff. not smart when we depend on other countries for our hospitals to run...

surreal hedge
#

o/

#

its certainly going

near smelt
#

if

#

mid*

amber raptor
surreal hedge
#

not to get too political but we rejected a damn good offer from the EU the other day about free movement :(

surreal hedge
#

๐Ÿ‡ฌ๐Ÿ‡ง

#

for some people it was about movement yeah, though the bigger talking point was all about our money being sent off to be spent by pesky europeans that we didn't vote into power

rugged root
#

@heavy sundial Would you mind changing your nickname to fit our policy? Specifically not having blank characters in this case. See the #rules channel for more detail on that

surreal hedge
#

and of course the bus

urban abyss
#

๐ŸšŒ

rugged root
#

Belive the bus

surreal hedge
#

yeah, asserts aren't really intended to be relied-upon behaviour (they can disappear with the right compilation flags!), they're more just sanity checks for use while debugging

urban abyss
#

assert is used to make your tests pass CI: assert True

surreal hedge
#

the logic goes is that if you've written good tests, and all of your tests pass without any assertion errors being raised, then it should be safe to remove those assertions from the code for a bit of performance

rugged root
#

I think there's a Python flag to strip out the asserts

surreal hedge
#

py -O

stark river
#

--production /jk

surreal hedge
#

TIL that there's also a __debug__ global constant

#

cpython can even optimise in/out if __debug__ conditions ๐Ÿคฏ

#

!e ```py
def foo():
if debug:
print("hiiiii")

import dis
dis.dis(foo)

wise cargoBOT
#

@surreal hedge :white_check_mark: Your 3.12 eval job has completed with return code 0.

001 |   1           0 RESUME                   0
002 | 
003 |   2           2 NOP
004 | 
005 |   3           4 LOAD_GLOBAL              1 (NULL + print)
006 |              14 LOAD_CONST               1 ('hiiiii')
007 |              16 CALL                     1
008 |              24 POP_TOP
009 |              26 RETURN_CONST             0 (None)
surreal hedge
#

I think the else would get optimised in/out too

rugged root
#

@whole bear We were hearing whatever you were watching in the background and I think you were AFK so I scooted you down there

whole bear
#

@rugged root Thanks!

surreal hedge
#

!e ```py
def foo():
if debug:
print("hiiiii")
else:
print("Goodbye, cruel world...")

import dis
dis.dis(foo)

wise cargoBOT
#

@surreal hedge :white_check_mark: Your 3.12 eval job has completed with return code 0.

001 |   1           0 RESUME                   0
002 | 
003 |   2           2 NOP
004 | 
005 |   3           4 LOAD_GLOBAL              1 (NULL + print)
006 |              14 LOAD_CONST               1 ('hiiiii')
007 |              16 CALL                     1
008 |              24 POP_TOP
009 |              26 RETURN_CONST             0 (None)
surreal hedge
#

the entire else branch is statically known to be unreachable, so it just gets yeeted

#

#bot-commands message

#

seems to work essentially just as expected

#

if a condition is always True, all branches after that disappear
if a condition is always False, that branch disappears, but the later branches still exist

#

iirc there is also constant folding, if you write x = 5 + 6 for example, it actually avoids that calculation and just loads a constant 11

stark river
#

i wonder if i++++ works in C or js

low stump
#

im back sorry but i had to brush my teeth

#

isnt Brown regular?

surreal hedge
#

neon green should be the default obvs

low stump
#

oh I thought you meant skin colour ๐Ÿ˜ญ

#

Neon Yellow

#

Like this colour

#

is there a super simple explanation as to how Modulo works

#

like "explain it to me like I just had a lobotomy"

#

mhm

#

wait fr?

#

It's just that simple

#

Thank you so much

#

I thought it was complicated

surreal hedge
#

divmod my beloved

low stump
#

and so 10%2 = 0?

#

but 11%2 = 1

#

๐Ÿค‘

whole bear
#

@upper basin how did u missed sum1 is 16 when there was sum1+1=sum1

#

lul

upper basin
whole bear
#

dw tho, i tend to overlook things also ๐Ÿ˜ญ

whole bear
low stump
#

Wait VMWare subscriptions now??

whole bear
#

i only masster python :3

upper basin
#
for (i=0; i<=6; i++) {
  ...
}
#

And you can change i to 1.

upper basin
cerulean ridge
#
import os

folder_path = '/path/to/folder'

# Get all the file names and subfolders within the folder
file_names = os.listdir(folder_path)

# Iterate over the file names and subfolders
for file_name in file_names:
    # Create the full file path by joining the folder path and the file name
    file_path = os.path.join(folder_path, file_name)
    
    # Check if the file path is a file or a directory
    if os.path.isfile(file_path):
        # If it's a file, delete it
        os.remove(file_path)
    else:
        # If it's a directory, delete it recursively
        os.rmdir(file_path)
upper basin
#

You can define it yourself, it's not a limitation.

whole bear
#

very helpful, i appreciate it ๐Ÿ‘

amber raptor
low stump
amber raptor
whole bear
low stump
#

Sorry I've seen NO news about it till now

#

yeah but why are you asking?

whole bear
#

uhhh im trying to bring up ur awareness?

#

maybe u havent updated ur bio yet?

low stump
#

??? ๐Ÿ˜ญ

#

sorry you've really confused me there

whole bear
#

wait

#

whats discord min age?

low stump
#

13

#

im not 12 ๐Ÿ˜ญ

whole bear
#

17 then?

low stump
#

Why are you trying to guess my age ๐Ÿ˜ญ

#

Im not gonna tell you if you're right or wrong

rugged root
#

Let's not creepily try to guess someone's age, please

#

If they don't want to say, don't push it

whole bear
#

I always expect everyone to be 18+ in vc just to be safe of any wordings and whatnot. My bad if i made you or anyone uncomfortable.

whole bear
low stump
#

I don't get the whole deal with cheese tbh

whole bear
low stump
whole bear
#

pl means programming language

#

again, wording. (my bad)

low stump
#

Oh i normally use Lua

low stump
#

I'm not very good at Lua but I got bored 2 days ago and decided to use python instead

rugged root
#

Both are good and have their place for sure

whole bear
#

^

low stump
#

Python seems much more accessible and has much more use than Lua

amber raptor
#

yokosuka naval base

whole bear
#

In terms of library? Yes, python is still developing.

low stump
#

Yeah, roblox is actually where I started with Lua

#

I got bored of Roblox fast though

whole bear
#

does the entire universe run as a Roblox simulation?

#

people always talking about it, it's like a Matrix mystery

whole bear
low stump
surreal hedge
#

i've seen python being used as an embedded lang like lua before (bespokesynth uses it)

low stump
#

Although I'm not sure the universe runs on Luau

#

Luau logo or Lua logo?

#

Which is better?

whole bear
# low stump It possibly could

although we can provide theories, i dont advice anyone to suggest such because we are very powerless and microscopic in scale compared to other bodies or segment of the universe

low stump
surreal hedge
#

shoutouts to the short period in time when scotland had pubs/bars that you had to drive to, and would refuse to serve people who walked there

whole bear
low stump
#

Scotland is honestly the best country in Europe

whole bear
#

๐Ÿ’€

low stump
rugged root
#

Steve

peak depot
low stump
rugged root
#

Nah, just seemed like a good name to pick

surreal hedge
# low stump What ๐Ÿ˜ญ

it was so people travelling through an area could rest and have a drink, but local residents weren't allowed to walk up and get sloshed

low stump
whole bear
whole bear
#

although, u can push me

rugged root
#

We talk about all kinds of stuff

#

Other programming languages included

low stump
#

only good ones tho

whole bear
rugged root
#

VC and the accompanying chats are more general chat. I've been working on Rust lately, ACE was just working on C

#

All as in a multitude of things

whole bear
rugged root
#

Not necessarily every possible topic

whole bear
#

then not all?

rugged root
#

Economics, video games, science, fun facts, etc

#

Politics occasionally. If anything gets too heated we try to shut it down as quickly as possible and shift topics to make sure it's a comfortable place for folks

low stump
#

Oh that reminds me, Scotland's Prime Minister Resigned yesterday!

vocal basin
rugged root
whole bear
vocal basin
#

still trying to get <90s

whole bear
#

i meant how long before u got it?

low stump
#

Do all Huskies have blue eyes?

whole bear
#

@vocal basin

vocal basin
#

I've been playing for three years

whole bear
low stump
#

Can we domesticate large sharks?

#

i want a fish that can solve maths equations

whole bear
#

@upper basin so we are still pulling all nighters? ๐Ÿ˜ญ

low stump
#

would you use a lab pipette to get an accurate volume of liquid or no?

amber raptor
vocal basin
#

os.system("")

urban abyss
vocal basin
vocal basin
#

if it doesn't work even with terminal emulation on

whole bear
low stump
#

are humans automatically considered domesticated?

whole bear
low stump
#

I love Wojtek

#

yall like the Fallout show?

ionic hill
#

Allow my voice chat

rugged root
livid ivy
#

3 ten-minute blocks. What are blocks?

low stump
#

Do you think there should be more games like Detroit: Become Human?

#

Yeah, Heavy Rain

#

The Dark Pictures?

#

I love their games

rugged root
low stump
#

I wish those games jut had more actual gameplay

rugged root
#

If you say something, from that point until 10 minutes is up is a 10 minute block

low stump
#

How do you check how long a block is?

rugged root
#

You can see how many you've got by doing the !user command in #bot-commands

low stump
#

3 of them seems really easy to get

livid ivy
rugged root
#

As in text

#

I should have clarified, sorry

whole bear
whole bear
livid ivy
rugged root
#

Correct

livid ivy
#

Thank you

low stump
whole bear
#

the activity blocks and total msgs @low stump

#

nvm i got it :3

low stump
#

how do people even know how to dance?

#

if people think about me less than I think they do, does that make me weird for thinking about other people a lot?

low stump
#

@rugged tundra from their point of view you could jus tbe really weird and stalkerish to them ๐Ÿ˜ญ

#

@rugged tundra she's a sleeper agent for the KGB

#

she's gonna kill you

whole bear
#

Why are talking about the complex social interaction and relationship like we are professionals lol

low stump
#

honestly just speak to her

rugged root
#

More just trying to break out the logic

whole bear
rugged root
#

Is that specifically relevant in this one?

low stump
#

whats the most paranoid thing you've every done/thought?

whole bear
low stump
whole bear
#

The whole VC is talking about ONE PARTICULAR GIRL whom name is unknown (i only want to know her first name)

low stump
#

The chance of being kidnapped twice is lower than the chance of being kidnapped once

#

Can we assign this person a made up name pls

rugged root
#

I've known Focus for a few years at this point

low stump
#

It is confusing me with them being referred to as "This girl"

whole bear
#

let unk girl be โ€œEagleโ€

whole bear
#

relax

#

dont chase her no more

rugged root
#

He wasn't in the first place

whole bear
#

wait

low stump
#

he thinks the girl is stalking him

whole bear
#

then why are we talking about her?

whole bear
#

lol

#

confront her???

low stump
#

Coincidinces occur ๐Ÿ˜ญ

low stump
#

Confront them then if you dont think they're gonna kill you

whole bear
#

@rugged tundra is there any problem on confronting her? and also where is this if that is a possible concern?

low stump
#

I think you're just scaring yourself even more

#

It's alright to be a bit weirded out when you see a person multiple times like and it feels strange, but you're just making yourself more scared

whole bear
#

what would u do? @low stump

low stump
#

Like if it's a complete coincidence I dont wanna accuse someone of stalking

#

but if it almost definitely is then call the cops

low stump
#

@rugged tundra next time u see them ask them why shes crazy

#

Why can't you go up to her and tell her that she's creeping you out?

whole bear
#

is it bad to wish whats happening to Focus to happen to me also?

whole bear
#

@rugged root what were the signs that she is a threat?

low stump
#

if staying in the same gym makes u uncomfortable then yeah 100% swap gyms

whole bear
#

or build HOME GYM

low stump
#

Home Gyms are ๐Ÿ‘Ž

#

The gym environment is built different

#

It just feels different

whole bear
low stump
#

how are HOAs even legal?

whole bear
#

Privacy is the new luxury if thats what Focus wants

low stump
#

@rugged tundra maybe she just likes you ๐Ÿ˜ญ

terse needle
#

pre covid prices for gym stuff made home gyms worth it

#

but its ridiculously priced now

low stump
#

I hate staying at home

willow light
low stump
#

it just makes me feel pathetic staying inside

#

or she's a KGB agent

whole bear
low stump
#

the commies are trying to kill us all

whole bear
#

The boys are talking about their feelings about this โ€œstalkerโ€ girl ๐Ÿ—ฃ๏ธ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ

willow light
#

Oh I thought you meant stalker as in someone who enters a zone of alienation to retrieve artifacts

whole bear
#

u play that game too much

low stump
#

no someone who is a creep

whole bear
#

๐Ÿ˜ญ

willow light
#

Game? I am referring to the novel Roadside Picnic

willow light
low stump
#

Arsenic

#

it also works

safe solstice
#

maybe he can have some female friends and have them go and explain to this girl he is not comfortable

willow light
#

Arsenic kills, bear spray causes suffering. Pain is far more effective a teacher than death.

low stump
#

@rugged tundra Do a cop out and switch to another gym

#

if they start going to the one you told them about, that confirms it

whole bear
#

im gonna stop focusing on โ€œFocusโ€™sโ€ feelings because thereโ€™s only one way to find out. You guys have been giving HIm sound advices. He shall execute them now.

low stump
willow light
#

Also do what I do for gyms: ain't no gym like the outdoors.

#

Far less likely to run into creeps if you get on a kayak and head up a river and back

low stump
#

how expensive are they

#

nvm way too expensive

willow light
#

There are decent inflatable ones on Amazon for $300

low stump
#

I cant afford that

low stump
#

Wouldn't it just pop

willow light
#

If you go out of your way to pop it, yes

#

But then you just patch it and move on

low stump
#

I want a proper Sea Kayak

willow light
#

Then start saving money and give up avocado toast for a while

#

-CNBC every three weeks

low stump
stark river
#

never do budget ships or submarines

willow light
#

Avocados are $0.88 each, where tf are you getting your avocados?

low stump
#

Im gettinga Canoe

#

I dont have the money for it

#

but ill do it

low stump
willow light
#

Actually this week they're $0.66

whole bear
#

brb

low stump
willow light
#

Just go to Hannaford.

low stump
#

yeah I'll just fly halfway around the world to go to a supermarket

willow light
#

Skill issue

#

Says CNBC

#

And the average boomer

low stump
#

CNBC more like CNBA

#

because americans watch NBA

#

and I dont

#

๐Ÿ˜Ž

#

(worst joke ever ๐Ÿ˜Ž)

willow light
#

CNBC is the "you should've bought property in 2008 when you were 16, stupid millennials" network lol

#

Doing my workout: biking to the dispensary.

whole bear
low stump
#

??? ๐Ÿ˜ญ

stark river
#

the telegraph ๐Ÿ™„

vocal basin
stark river
#

technically correct

#

a right angle does form a right wing on the square

stark river
amber raptor
#

Wait, are you coloring logs?

trim walrus
#

yo

willow light
whole bear
#

i left. and came back witht the same topic

#

๐Ÿ˜ฆ

#

ill come back in 24 hours

wind raptor
#

Hi @supple pewter ๐Ÿ‘‹

supple pewter
#

Hi @wind raptor

#

How are you?

wind raptor
#

Good thanks, how about you?

supple pewter
#

@wind raptor I am good. Thanks for asking! I have 2 questions.

wind raptor
#

What are they?

supple pewter
#

Why can't I stream in Code/Help and Live-Coding?

#

There is no permission to stream.

wind raptor
#

Streaming permissions are given out as needed and temporarily.

supple pewter
#

Ah, okay.

wind raptor
supple pewter
whole bear
#

bbl

upper basin
#

1234

#

1, 2, 3, 4

normalize(1 * |00> + 2 * |01> + 3 * |10> + 4 * |11>).

upper basin
graceful latch
#

oh ok cool

low stump
#

ok but how do I code getting a boyfriend

slender grove
#

something like that ?

slender grove
#

smtp

cedar mason
fallow musk
#

Slavoj ลฝiลพek

fallow musk
#

to answer your question @cedar mason this is who i thought of when u said good president ๐Ÿ˜‚

slender grove
#

Mohandas Karamchand Gandhi (ISO: Mลhanadฤsa Karamacaแนda Gฤแนdhฤซ; 2 October 1869 โ€“ 30 January 1948) was an Indian lawyer, anti-colonial nationalist and political ethicist who employed nonviolent resistance to lead the successful campaign for India's independence from British rule. He inspired movements for civil rights and freedom across the world...

#

Nelson Rolihlahla Mandela ( man-DEH-lษ™; Xhosa: [xolรญษฌaษฌa mandษ›ฬ‚หla]; born Rolihlahla Mandela; 18 July 1918 โ€“ 5 December 2013) was a South African anti-apartheid activist, politician, and statesman who served as the first president of South Africa from 1994 to 1999. He was the country's first black head of state and the first elected in a fully r...

cedar mason
#

Nelson Mandela is heralded as one of the most important and impactful political leaders of the 20th century. But what is missing from the conversation is his actual legacy and the decisions he made in 1960 that still reverberate throughout South Africa today.

In this episode, we argue that the progress South Africa thinks it has achieved since...

โ–ถ Play video
slender grove
slender grove
#

Scientology is a set of beliefs and practices invented by the American author L. Ron Hubbard, and an associated movement. It is variously defined as a cult, a business, a religion, a scam, or a new religious movement. Hubbard initially developed a set of ideas that he called Dianetics, which he represented as a form of therapy. An organization...

#

My grand pa said "Never trust one books mans!"

silk dust
#

run:
python mypackage/main.py

install:
pip install -r requirements.txt

build:
python setup.py build bdist_wheel

clean:
if exists "./build" rd /s /q build
if exists "./dist" rd /s /q dist
if exists "./makefile.egg-info" rd /s /q makefile.egg-info

#

make : The term 'make' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was
included, verify that the path is correct and try again.

primal shadow
silk dust
#
    python mypackage/main.py

install:
    pip install -r requirements.txt

build:
    python setup.py build bdist_wheel

clean:
    if exists "./build" rd /s /q build
    if exists "./dist" rd /s /q dist
    if exists "./makefile.egg-info" rd /s /q makefile.egg-info```
#

make

primal shadow
silk dust
#

.egg

#
run:
    python mypackage/main.py

install:
    pip install -r requirements.txt

build:
    python setup.py build bdist_wheel

clean:
    if exists "./build" rd /s /q build
    if exists "./dist" rd /s /q dist
    if exists "./makefile.egg-info" rd /s /q makefile.egg-info```
#
if True:
  print("egg")```
primal shadow
#
CAN HAS STDIO?
PLZ OPEN FILE "LOLCATS.TXT"?
    AWSUM THX
        VISIBLE FILE
    O NOES
        INVISIBLE "ERROR!"
KTHXBYE```
cedar mason
primal shadow
cedar mason
#

๐Ÿฅ’ Schedule your free video chat โ†’ https://moneypickle.com/jaketran

๐Ÿ’ต Watch Arvidโ€™s video now! https://youtu.be/03fw0Diccos

๐Ÿ’ป Learn exactly how I landed my $40/hr work-from-home job ($83k/yr) at 19 years old WITHOUT a degree or experience โœ… Click here โžก๏ธ https://www.evil.university/remote

๐Ÿ˜ณ Learn the ONE SECRET that has made every giant corpo...

โ–ถ Play video
tulip gyro
somber heath
#

@tulip gyro Back.

#

@young wagon ๐Ÿ‘‹

young wagon
#

I Still don't have permission to talk

#

Hey

#

I haven't done that

#

Let me see

somber heath
#

@shrewd linden ๐Ÿ‘‹

young wagon
#

It said failed

#

Not eligible still

#

On the voice chat yeah
Second time here

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied timeout to @whole bear until <t:1714529082:f> (10 minutes) (reason: burst spam - sent 8 messages).

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

young wagon
#

It says I have less than 50 messages

shrewd linden
#

Web Log Analyzer Project

I need help The objective is to create a web application (using Flask) for analyzing logs from Internet services, particularly web and authentication.

To get inspiration, check out an online demo of an open-source web server log analysis application:

https://rt.goaccess.io/?20240416184251

In the sidebar, you'll find (web, security, and logout).
By default, the displayed dashboard shows web logs (see the shared link).
The requested services include:
UNIQUE VISITORS PER DAY - INCLUDING SPIDERS
OVERALL ANALYZED REQUESTS
REQUESTED FILES (URLS)
STATIC REQUESTS
NOT FOUND URLS
VISITOR HOSTNAMES AND IPS
GEO LOCATION
HTTP STATUS CODES
OPERATING SYSTEMS
BROWSERS
Please note that each log file has its own format (see attachments). You need to model the appropriate database (MySQL or MongoDB), extract the data, load it into the database, and then create dashboards.
Once the application is tested, it should be deployed as a service in Multipass. The application's logs should be configured to be redirected to rsyslog, adopting a rotation management strategy.

#

yesssssss

#

Web Log Analyzer

somber heath
#

@shrewd linden Are you able to hear us talking?

shrewd linden
#

This is an end-of-year project for which we are provided with tar files. I have started working on the system log parted

#

sorry i speak just french and arabic

tulip gyro
#

Do you have a github of current project?

shrewd linden
#

sooryy

tulip gyro
#

that is a 404 it must be set to private

shrewd linden
tulip gyro
#

your web analyzer is set to private

#

can't access

#

you need the repo to be public for me to see it

shrewd linden
#

I don't want to use ChatGPT

#

I prefer to have logic in my code

somber heath
#

@patent socket๐Ÿ‘‹

young wagon
#

I have to go

#

I'll keep on sending more message so I can join next time

somber heath
#

@whole bear ๐Ÿ‘‹

somber heath
#

@tawny cradle ๐Ÿ‘‹

tawny cradle
#

hi

#

im muted @somber heath

somber heath
tawny cradle
#

what are your thoughts on caffeine? @somber heath

#

i often switch between taking it and taking time off, it does help with productivity

#

ive tried theobromine, and it didnt do much for me @somber heath

#

its very similar to caffeine structarlly @somber heath

#

how long have you been coding for? @somber heath ?

#

is javascript similar to python? @somber heath

#

ive only used python for basic algorithms so far @somber heath

#

i havent used it in the context of actually producing something of substance yet ๐Ÿ˜ฆ

#

im about 8 hours into cs50's intro to python

noble solstice
#

Hello Guys!!

tawny cradle
#

hi @noble solstice

noble solstice
#

@somber heath Have u heard that news google layoff entire python team

tawny cradle
#

dang

#

i live in austin tx

#

meet alot of people in tech

noble solstice
#

Nowdays getting a tech job is fuckking difficult as a fresher

tawny cradle
#

seems small startups are still hiring

noble solstice
#

opalmist ur job work?

tawny cradle
#

ai is a tool that i fewel like allows for more experienced coders to do more work

#

feel

#

correct

#

it elimanates entry level jobs

noble solstice
somber heath
#

@mild igloo ๐Ÿ‘‹

noble solstice
#

I think i need to move ur country for getting a job opalmist

tawny cradle
#

ive heard that tax laws, and higher intrest rates causing lower amounts of money being invisted into r&d is also causing less jobs

#

like farmers

#

less farmers but they are still around

noble solstice
#

what ur company size @somber heath How many members in ur company how ur company hires fresher or intern ?

tawny cradle
#

deeznuts

somber heath
#

@timid wing ๐Ÿ‘‹

tawny cradle
#

thats a cool name

timid wing
#

hi

noble solstice
#

okay @somber heath a rough idea? of hiring?questions?

tawny cradle
#

young people cant be trusted

timid wing
#

๐Ÿ˜‚

#

@somber heath where do you work

tawny cradle
#

tech sales is big

#

unfortubnately

noble solstice
#

Okay Anyone?

tawny cradle
#

i work at walmart

timid wing
#

Im sorry

noble solstice
tawny cradle
#

were hiring

#

im part of the walmart family

#

i bleed blue

timid wing
#

I live in Asia

tawny cradle
#

i love big corporations

timid wing
#

no walmart here

noble solstice
tawny cradle
#

they take care of us!

noble solstice
timid wing
#

it certainly is

tawny cradle
#

outsourcing labor is good for the economy!

#

and it raises company morale

timid wing
#

so @somber heath do you do coding and stuff

tawny cradle
#

if name == main

#

main()

#

call main?

timid wing
#

I started a course on python dev

#

I am 15

tawny cradle
#

underscores

#

undelrine

#

when put around a word

#

in discord

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.

tawny cradle
#

oh neat

#

***py print ('hello, world')

#

***py

#
print("hello, world")
somber heath
#

@whole bear ๐Ÿ‘‹

#
class MyClass:
    pass```
#
class MyClass:
    pass

instance = MyClass()```
#

!e ```py
class MyClass:
def init(self):
print('Hello, world.')

instance = MyClass()```

wise cargoBOT
#

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

Hello, world.
somber heath
#

!e ```py
class MyClass:
def init(self, obj):
print(obj)

instance = MyClass('Hello, world.')```

wise cargoBOT
#

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

Hello, world.
tawny cradle
#
def get_int 
get_int = input("enter int")
get_int = (int)
get_int()
def fib
if (int) = 1
  print('1')
 elif (int) = 2 
    print('2')
junior beacon
#
print("Hello World")

I am now a programmer

tawny cradle
#

is that the proper way to call get_int and rename it to int

somber heath
#

!e ```py
class Person:
def init(self, name):
self.name = name

def greet(self):
    print(f'Hello, I am {self.name}.')

peter = Person('Peter')
sally = Person('Sally')

peter.greet()
sally.greet()```

wise cargoBOT
#

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

001 | Hello, I am Peter.
002 | Hello, I am Sally.
tawny cradle
#

okay

#

ah ๐Ÿ˜ฆ

#

understood @somber heath

#

i use vscode and rely heavily on the auto indentation @somber heath

#

ill open vscode and fool around and just copy and paste

#

really

#

tabs seems so much more convinentnt

#

@somber heath any good recommendations for problem sets

somber heath
#

!e ```py
def func():
print('Hello, world.')

func()
func()
func()```

wise cargoBOT
#

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

001 | Hello, world.
002 | Hello, world.
003 | Hello, world.
tawny cradle
#

you called it 3 times

somber heath
#

!e ```py
def func(obj):
print(obj)

func('Hello.')
func('Goodbye.')
func('Hello, again.')```

wise cargoBOT
#

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

001 | Hello.
002 | Goodbye.
003 | Hello, again.
tawny cradle
#
def func()
  print('Hello world!')
func() *3

somber heath
#

None * 3

#

!e py None * 3

wise cargoBOT
#

@somber heath :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     None * 3
004 |     ~~~~~^~~
005 | TypeError: unsupported operand type(s) for *: 'NoneType' and 'int'
somber heath
#

!e ```py
def func():
pass

print(func())```

wise cargoBOT
#

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

None
somber heath
#

!e ```py
def func():
return 'Hello, world.'

print(func())```

wise cargoBOT
#

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

Hello, world.
tawny cradle
#

okay

#

ok

somber heath
#

!e py a = print('abc') print(a)

wise cargoBOT
#

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

001 | abc
002 | None
tawny cradle
#
[] = "hi, hey"
print(f[])
somber heath
#

!e py print('TeXT'.upper())

wise cargoBOT
#

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

TEXT
tawny cradle
#
print('Hello world!'.lower())
#

!e

wise cargoBOT
#
Missing required argument

code

tawny cradle
#
print('Hello world!')
#

!e

wise cargoBOT
#
Missing required argument

code

tawny cradle
#

!e```py
print('Hello world!'.lower())

wise cargoBOT
#

@tawny cradle :white_check_mark: Your 3.12 eval job has completed with return code 0.

hello world!
somber heath
#

!e py my_list = [] print(my_list) my_list.append(1) print(my_list) my_list.append('abc') print(my_list) my_list.append(int) print(my_list)

wise cargoBOT
#

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

001 | []
002 | [1]
003 | [1, 'abc']
004 | [1, 'abc', <class 'int'>]
tawny cradle
#

ok

#

!e```py
dict = {1,2}
print(dict)

wise cargoBOT
#

@tawny cradle :white_check_mark: Your 3.12 eval job has completed with return code 0.

{1, 2}
tawny cradle
#

ok

#

:

#

do they have diffrent methods?

somber heath
#

!e py print(dir(dict))

wise cargoBOT
#

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

['__class__', '__class_getitem__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getstate__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__ior__', '__iter__', '__le__', '__len__', '__lt__', '__ne__', '__new__', '__or__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__ror__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'clear', 'copy', 'fromkeys', 'get', 'items', 'keys', 'pop', 'popitem', 'setdefault', 'update', 'values']
somber heath
#

!e py print(dir(set))

wise cargoBOT
#

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

['__and__', '__class__', '__class_getitem__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getstate__', '__gt__', '__hash__', '__iand__', '__init__', '__init_subclass__', '__ior__', '__isub__', '__iter__', '__ixor__', '__le__', '__len__', '__lt__', '__ne__', '__new__', '__or__', '__rand__', '__reduce__', '__reduce_ex__', '__repr__', '__ror__', '__rsub__', '__rxor__', '__setattr__', '__sizeof__', '__str__', '__sub__', '__subclasshook__', '__xor__', 'add', 'clear', 'copy', 'difference', 'difference_update', 'discard', 'intersection', 'intersection_update', 'isdisjoint', 'issubset', 'issuperset', 'pop', 'remove', 'symmetric_difference', 'symmetric_difference_update', 'union', 'update']
tawny cradle
#

!e```py
set = {1,2,3,4}
print(set)

wise cargoBOT
#

@tawny cradle :white_check_mark: Your 3.12 eval job has completed with return code 0.

{1, 2, 3, 4}
somber heath
#
var = 123
var = 456```
#

Shadowing

tawny cradle
#

!e```py
str = 'cat'
print(str.length())

wise cargoBOT
#

@tawny cradle :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 2, in <module>
003 |     print(str.length())
004 |           ^^^^^^^^^^
005 | AttributeError: 'str' object has no attribute 'length'
somber heath
#

!e py print('A') print = ... print('B')

wise cargoBOT
#

@somber heath :x: Your 3.12 eval job has completed with return code 1.

001 | A
002 | Traceback (most recent call last):
003 |   File "/home/main.py", line 3, in <module>
004 |     print('B')
005 | TypeError: 'ellipsis' object is not callable
tawny cradle
#

ahh

#

ok

#

!e```py
set = {dict1,dict2}
dict1 = {1:2}
dict2 = {3:4}
print(set)

wise cargoBOT
#

@tawny cradle :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     set = {dict1,dict2}
004 |            ^^^^^
005 | NameError: name 'dict1' is not defined. Did you mean: 'dict'?
tawny cradle
#

should i define dict1, and dict 2 before putting them in the set

#

or do they require quoutes @somber heath

#

ohhh

#

ok ok

#

ok

#

no duplicates @somber heath

#

ina set

#

ah, not a list @somber heath

#

what is hashabvle? @somber heath

willow gate
#

@somber heath can i get permission to stream?

tawny cradle
#

!e ```py
input("what is x?")

wise cargoBOT
#

@tawny cradle :x: Your 3.12 eval job has completed with return code 1.

:warning: Note: input is not supported by the bot :warning:

001 | what is x?Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     input("what is x?")
004 | EOFError: EOF when reading a line
willow gate
#

ok

#

ok

#

i have an error want to fix it

#

yes

#

need to modify css

#

ok

#

@somber heath bye

lucid trail
#

!e

print("hello world!")
wise cargoBOT
#

@lucid trail :white_check_mark: Your 3.12 eval job has completed with return code 0.

hello world!
lucid trail
#

!e

dict1 = {1:2}
dict2 = {3:4}
set = {dict1,dict2}
print(set)
wise cargoBOT
#

@lucid trail :x: Your 3.12 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 3, in <module>
003 |     set = {dict1,dict2}
004 |           ^^^^^^^^^^^^^
005 | TypeError: unhashable type: 'dict'
slender sierra
supple pewter
#
Patient admission system
General admission hours for patients can be scheduled in 1-hour increments every weekday from 10:00AM to 5:00PM
If there is another patient assigned to the doctor at the same time in the reception system, the system should report this
When the program is started, all patient admission data set prior to that day's date must be deleted. For example, when the application is launched on April 25, all old appointment data by date should be deleted from the hospital.json file
#

I couldn't do this ๐Ÿ˜ฆ

#

I saw many topics

brisk jolt
#

hi!

#

are u using windows 11?

whole bear
brisk jolt
whole bear
brisk jolt
whole bear
#

I recently started using linux

#

Ubuntu

#

I feel like shit

whole bear
#

I am a regular windows user๐Ÿ˜ญ

whole bear
#

2 years and you still feel the same

#

God save me

brisk jolt
# brisk jolt custom windows10

I rewrote part of the network connection policy, and tried to cut out microsoft services, otherwise almost indistinguishable from a simple OS

brisk jolt
#

He said he would put the old system back on

whole bear
#

Here I am,who don't even know how to use linux and why.

#

๐Ÿ˜ญ

#

I recently joined my uni and i had no idea about tech.

whole bear
whole bear
#

I got a website from where i am learning fundamentals of linux

#

Basic commands and sh!t

whole bear
brisk jolt
#

one person said that after you got used to Linux, you no longer want to switch back to Windows

whole bear
whole bear
#

he said MIT OCW (open course weaver) or something like that. @supple pewter

#

you can find that in google

supple pewter
#

@whole bear thanks!

whole bear
#

it's a free course from MIT

whole bear
supple pewter
#

University?

whole bear
supple pewter
#

AH

#

Okay

#

I can't learn from Udemy

whole bear
#

you will find everything about it on google

supple pewter
#

I can learn from someone as well

#

Someone teaches me in Azerbaijan

#

I paid 300 manats

whole bear
supple pewter
#

but

supple pewter
#

I think

whole bear
#

you can find some tutorials in your language on youtube too.

supple pewter
#

but

#

no

whole bear
#

hope you will get it

whole bear
supple pewter
#

English is no reason

whole bear
#

then it seems like a big problem.

supple pewter
#

I can't think when I code as well

#

๐Ÿ˜ฆ

brisk jolt
#

A country with too small a population is not enough of that and the material is not enough

#

sorry my english too bad

#

I can make a lot of textual mistakes.

whole bear
#

same bro.

#

i do make lot of mistakes while chatting and speaking.

#

just trying to improve.

brisk jolt
#

Personally, I don't notice them anyway.

brisk jolt
#

It would be better to say I can't notice them

whole bear
#

while chatting

supple pewter
#

@upper basin

whole bear
#

or speaking

supple pewter
#

patient: Patient

#

I can't understand this

#

data: str

#

:

#
       def __init__(self,username,password)```
#

My Python programming teacher taught me like this

whole bear
#

@rugged root have u ever worked on login user interface before? cuz i think you know ur stuff

gentle flint
#

the traffic light has proclaimed it to be a warm day

whole bear
gentle flint
#

red = not good

#

green = good

#

I prefer >20 to <10