#voice-chat-text-0
1 messages · Page 159 of 1
all binary heaps are binary trees, but not all binary trees are binary heaps
binary heap is a specific type of a binary tree
for a min heap:
if tree is not None and tree.left is not None:
assert tree.val <= tree.left.val
if tree is not None and tree.right is not None:
assert tree.val <= tree.right.val
if a node has a left (right) child, child's val will be equal or greater
value ordering in a binary heap
and in a binary search tree
??
good
😅
but I can't use Mike ykr
so?
I am not voice verified
me too
can any one help me to add keyauth with a python code?
@lunar haven can you?
wtf
😓 I am noob too
i didnt do anything bad mr serious.
pinging it doesn't do anything I think
I am from Bangladesh, in my country there a few people how knows python. It's though to learn it without a mentor
I am trying to learn from YT 😅
@lunar havenis this a good course?
hello
Generic Parrot Text
still looking for a better backronym for it involving "parrot"
lol it doesn't even exist
@lunar haven that can't be a country
😅😅
@lunar haven where i can get help for a coading issue?
am I allowed to create a new post over there?
@lunar haven
#1125574516370849822@lunar haven
"just use Pydantic instead"
@cosmic bison for the discord server you mentioned, what is that group focused on?
its for my programming language
our*
Thanks. Which programming language is that?
communism
Russian
Command "self" is not found
Salmon bhoi
I love black buck btw
Anyone else like those?
Time is linear
BCL
Biysk communist language?
Бийск 💀
I prefer Babruysk as per its representation in postmodern literature
Thank you. That sounds interesting. Could you please share the discord group link to join
Thanks.
@cosmic bison For self learning, about compiler design and DSAlgorithms, could you please recommend some online resources or univ courses you found helpful
yeah
for the heck of it
Mojo is (pathetically) trying to revive closed-source languages
Mojo is closed-source
recently overhyped language
finding things, that languages you're regularly using lack in one way or another, can provide inspiration for features
JetBrains MPS
or whatever it's called
borrow checker helps me a lot to write better code, so I'm not annoyed at it
I never used MPS, tbh
I'm surprised it's free
this looks cursed, a little
who pasted Wolfram Mathematica code into Java?
apparently MPS allows that
it's beautiful
Protocols can be checked on runtime, if you enable it
I don't remember how, so I'll make the error message tell me to
I learned C# very early
one week before Python
or, rather, started
!e
from typing import Protocol, runtime_checkable
@runtime_checkable
class Div(Protocol):
def __truediv__(self, other):
...
print(isinstance(1, Div))
print(isinstance("1", Div))
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | True
002 | False
^ this being Protocol checking on runtime
protocols are somewhere between interfaces and traits
you can define a protocol that a foreign type is an instance of
but you can't implement a protocol for a foreign type
I think neither of three depend on pandas
not numpy and not matplotlib, at least
@lavish rover so messy
?
the code
@lunar haven what is happening?
@lunar haven okay
@lunar haven undone, happy?
can you improve it?
I am noob , I started python as my first programming languages. It's been a week 🙂🙂
then what business do you have of judging other people's code?
@lunar haven why ox?
you are getting it wrong, i did not judge. It simple as I am new code seen messy for me
at least not these lol
age = int(input("How old are you?: ")) and str(input("I'm ")+str(age))
if age >= 18:
print("You are an adult!")
if age <= 0:
print("Thats a lie! No way you're "+str(age))
else: print("You are a child, only "+str(18-age)+(" years to go!"))
!code
!e ```py
age = int(input("How old are you?: ")) and str(input("I'm ")+str(age))
if age >= 18:
print("You are an adult!")
if age <= 0:
print("Thats a lie! No way you're "+str(age))
else: print("You are a child, only "+str(18-age)+(" years to go!"))
!e age = int(input("How old are you?: ")) and str(input("I'm ")+str(age))
if age >= 18:
print("You are an adult!")
if age <= 0:
print("Thats a lie! No way you're "+str(age))
else: print("You are a child, only "+str(18-age)+(" years to go!"))
@elfin bone :x: Your 3.11 eval job has completed with return code 1.
:warning: Note: input is not supported by the bot :warning:
001 | How old are you?: Traceback (most recent call last):
002 | File "/home/main.py", line 1, in <module>
003 | age = int(input("How old are you?: ")) and str(input("I'm ")+str(age))
004 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
005 | EOFError: EOF when reading a line
!e ```py
age = int(input("How old are you?: ")) and str(input("I'm ")+str(age))
if age >= 18:
print("You are an adult!")
if age <= 0:
print("Thats a lie! No way you're "+str(age))
else: print("You are a child, only "+str(18-age)+(" years to go!"))
@cosmic bison :x: Your 3.11 eval job has completed with return code 1.
:warning: Note: input is not supported by the bot :warning:
001 | How old are you?: Traceback (most recent call last):
002 | File "/home/main.py", line 1, in <module>
003 | age = int(input("How old are you?: ")) and str(input("I'm ")+str(age))
004 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
005 | EOFError: EOF when reading a line
and str(input("I'm ")+str(age)) part is unnecessary, seems like
age = int(input("How old are you?: ")) and str(input("I'm ")+str(age))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: invalid literal for int() with base 10: "I'm 4"
no it's not b/c
if i remoe it
and say i'm 4
it wont work
input 4 without I'm
age = int(input("How old are you?: "))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: invalid literal for int() with base 10: "I'm 4"
I want it with i'm or 4
i want the user to have an option
to say either
age = int(input("How old are you?: ").removeprefix("I'm"))
age_str = input("What is your age")
age = 0
if age_str.startswith("I'm"):
# Do stuff here
else:
age = int(age_str)
!e
print("I'm something".removeprefix("I'm"))
print("something".removeprefix("I'm"))
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | something
002 | something
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
0
@vocal basin
so
what if we tell
python to
remove all the string
so lets say
the user makes up some stupid way of answering
Hello, I am 4 years olkd
years old
how do I remove all of the string
do you know how to remove string in a response
print("".join(filter(str.isdecimal, input())))
I feel that might be confusing for a beginner?
in real software, you almost always should just throw an error and/or ask the user to input the data correctly
confusing solution to a confusing problem
i get it kinda
", ".join(["bread", "pasta", "chicken"])
I think it's simpler than any imperative solution
age_input = input("How old are you?: ")
only_digits = filter(str.isdecimal, age_input)
age_str = "".join(only_digits)
age = int(age_str)
ohh
got it
str.isdecimal()```
Return `True` if all characters in the string are decimal characters and there is at least one character, `False` otherwise. Decimal characters are those that can be used to form numbers in base 10, e.g. U+0660, ARABIC-INDIC DIGIT ZERO. Formally a decimal character is a character in the Unicode General Category “Nd”.
!d str.isdecimal
!e
from itertools import groupby
from operator import itemgetter
s = "abc 4.5 def 123"
parts = groupby(s, str.isdecimal)
numbers = filter(itemgetter(0), parts)
number = int("".join(next(numbers)[1]))
print(number)
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
4
what does this do
yeah
eh
I forgot everything
search it should be
total failure
well, because it must be + not *
!e
import re
s = "abc 4.5 def 123"
number = int(re.search(r"\d+", s)[0])
print(number)
@vocal basin :white_check_mark: Your 3.11 eval job has completed with return code 0.
4
re?
!d re
Source code: Lib/re/
This module provides regular expression matching operations similar to those found in Perl.
Both patterns and strings to be searched can be Unicode strings (str) as well as 8-bit strings (bytes). However, Unicode strings and 8-bit strings cannot be mixed: that is, you cannot match a Unicode string with a byte pattern or vice-versa; similarly, when asking for a substitution, the replacement string must be of the same type as both the pattern and the search string.
How can I compile 3.10 code with eval in the bot?
Anyone?
There is a significant difference in behaviour of the two interpreters
elif
?
if cond_one:
pass
elif cond_two:
pass
else:
pass
!e elif: (temp>=0):
print("It's quite cold out today! I suggest you stay inside as for today. "+str(temp)+" isn't a good weather!")
try:
print(error)
except Exception as e:
print(e)
else:
print("I'm just wasting time")
run, then it will suggest?
or not anymore?
!e
...
@vocal basin :warning: Your 3.11 eval job has completed with return code 0.
[No output]
!e
try:
print(error)
except Exception as e:
print(e)
else:
print("I'm just wasting time")
@cosmic lark :white_check_mark: Your 3.11 eval job has completed with return code 0.
name 'error' is not defined
Yep
Like try this in 3.10
a = 287
b = 287
print (a is b)
print ( a == b )
This yeilds diff res in 3.10
!e 3.10
a = 287
b = 287
print (a is b)
print ( a == b )
@cosmic lark :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | True
002 | True
Oofe
Hey @lavish rover 👋
In this video, we introduce how to make video games with the Python programming language and the PyGame module to make video games. Python makes for a great programming language to use when learning game development because of its simple syntax.
Learning game development is also a great way to learn how to program. Video games usually incorpor...
py -m pip install pygame
R
import pygame
better to do this
python -m venv venv
source venv/bin/activate
And then run pip
it does
It's called vcpkg
Cpp package manager
Or if u on lincox it's easier
Just use apt or ur os package manager to get the devel libs
pygame is written in c btw
It is as fast as it can be
Deserved
@lavish rover How was the IRL Pong?
fun
I give -ve karma on reddit and downvote on stackoverflow
Nice
Did you want to implement something tonight?
@cosmic bison ur BCL open-source or wot?
Send link
Gh
Where?
So how is it a compiled lang?
I don't see the assembler
Or am I missing something
I see
Makes sense
LLVM IR good
Right
I see it has a standard lib as well
Hmmm
hmmm.....tui s are annoying ngl
so libc math?
Byebye
it is ig from LLVM 11 onwards
ah
Brb after breakfast
Cya
username= input("Hello Human! Please insert your name:")
u001b[31mError
while len(name) == 0:
print("ERROR: You must ")
while len(username
print("That name is invalid! Please make sure your name is more than 3 letters long.")
u001b[0m
It's because y
you
have a bad username
im a mod i know
the rules
!rule4
!rule
The rules and guidelines that apply to this community can be found on our rules page. We expect all members of the community to have read and understood these.
you need to change your username
to comply with the following: Must be appropiate, can't contain numbers, can't contain the word "killer" and it must contain the word touc
@terse drift 2 minutes left until i ban you
FOREVER
ok
just kidding,
its my name from gaming i can change it XD
but remind me how to change it on a per server basis?
needs to comply with this
no
username
in general
change it to maybe "GeneralToucRules"
maybe
or "GeneralTouc"
that might pass through the python bot
hold on i know there is a way to have a username on one server different on others give me a sec
Thats a nickname
and it wont work
you need to change your user
im giving you 1 minute to comply
before i kick you
sorry man
im not the boss
im working on it can you seriously not wait 5 min while i figure it outXd
test
..............................
there
here
And you changed your nickname
not your discord user
i am not changing my whole account just for one server i thought this would be a cool place to meet other devs and maybe collaborate but seems really ridiulous with the rules ill just go
i mean seriously why do i have to change my whole account? XD
and other admins saw my name and had zero issue
they might've not noticed
but
if you want access
to the voice chat
you need to comply
or else ill kick you
from the voicechat perms
i dont even have voice chat perms yet 🤣
no bevause i dont have 3 days or any of the other critieria yet also i met him day one and he had no issues
nope
im banning u
forever
u cant stop me
im clicking
on the button
that only staff (like me)
can use
bro what are you on about
are you like 6?
actually.
makes sense
<@&831776746206265384>
eval(bestToucanAge - 2)
print("that equals 4 and half")
what
its python
ik
but u forgot
to say
what bestoucan
stands for
anyways
im getting back to my python
then ill ban you, just remind me to ban you
b/c im staff
what's going on here?
it was defined by you
Toucan hates me XD
he doesnt know me
im not 6 and a half
thats it dude im going to create an Ai to do stock investment for me
actually
im going to check on my crypto trade
SHIT
I GAINED 17 CENT
CENTS
you gonna tell him why you hate me?
it actually went up
by 0.34
so far
i gained 17 cents
Murica 🤣
!warn @elfin bone If you continue to impersonate staff, you will be muted or banned.
:incoming_envelope: :ok_hand: applied warning to @elfin bone.
i didn't
impersonate
a staff
i told him a staff will ban him
take off the warning
No, you're defininitely impersonating staff.
at least, like, 4-5 times
yeah, more than a few.
consider this a warning: knock it off.
what!!
i didn't impersonate anyone..
of course!!
trust me........
baby girl
rawr
UwU?
I don't even understand what's going on anymore
!mute 715259748504698924 2d Trolling
:incoming_envelope: :ok_hand: applied timeout to @elfin bone until <t:1688613901:f> (2 days).

sup
?
yeah
yeah
sorry bored
happy fourth
yay independence
I can't talk right now but i can't imagine whats its like to be here and be absolutely quite on the 4th of july
and not even listen to people talk carp
crap
can't even be like.. "Blew my finger off today"
yes
listen to the owes and awws but can't say that typing
no no i can't say that at all.. typing... can't type with no fingers.
there should be a app for that but with money.. set a "flag" somewhere and.. wait...... i see issues.
I play crickets
i little of python and bash
that soon will change after today though
after today i will be the proud owner of my very own controller for the game console that has sat here for nearly a year
and THEN
i will be vicotriously happy for a short period of time
when it all wears away ill need medication
gofek type i can't hear hi how are ya
way to type gofek way to type.
sorr i do not hear you good let me put my headphone
Im not talking nor can i talk due to the needs and requirements of a loved one sleeping
How i can stream here ?
depends on the type of the stream? is the the type that starts with the inner wall of your bladder?
mind you i CAN NOT hear you guys
im not allowed
yo
Brucie he only code
I guess I only code
Hi
I don't ctf, but I know the general idea
Nice would you like to play ?
sure. The website I'm working on is down atm.
sup gofek
he get root.txt flag
i used to be very active on this server 💀
there is 2 flags user.txt and root.txt
tf is a root.txt and user.txt
the hardest one to get is the root.txt
No not today
You find it when play ctf on Tryhackme or Hackthebox when you get access to the machine
yo got a 7700
intelijj was blowing up my laptop
took like 5 fucking minutes for it to do its intellisense bs
@lunar haven start coding
where are opal and hem lmfao
maybe bad time on my side
yeah alot of noise around me
dont wanna bother you guys with the noise
what is opal
we do not have chinese food here LOL
heh
hello @somber heath
hey
@glacial dragon hi there
how are you ?
🫡
hello
hello
hi
new badge
@somber heath opal!
im making an adidas/nike bot
and its going terribly
yes
all in a discord bot
yeah idk why
its fine its just the buying part
that is biting me
@whole bear 👋
oops i just noticed i dont have permission to speak yet :/
You are not currently eligible to use voice inside Python Discord for the following reasons:
• You have sent less than 50 messages.
will join later ! thanks
@somber heath you have a customer service voice
have you ever worked in customer servic
that is more than fair
you work for james bond
@manic canopy 👋
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@hot badge 👋
im so sick of this bot
hello
i don't have a permisson to talk 😄
yeahh i don't have 3 days in server

goodbye
@thorn crane 👋
@errant night 👋
"holding thr reins"
hey
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
oh its raining here too
i really like these bootcut lycras I bought off shopee for cheap
i don't think this is relevant to you tho
yeah but they are super comfy i promise. just wanna put it out there
I had to look up what a lycra was 🤣
oh it's not common over there? it's this stretchy fabric
how to get perms to stream
What is the project/content you are interested in streaming?
work
Jus doing an EDA on data science salaries, I'm a beginner so I'm jus coding by referring Kaggle.
you will need to ask an moderator* for that
Nice. Well, if you wanted to stream it, perms are granted temporarily when requested if a mod(like myself) is present.
Oh, I understand, thanks a lot!
No problem 🙂
anyone is there
They do
Scary stuff
what's the tech stack involved?
nice
Yeah won't react make things faster?
NZT might help
!resources @rustic comet
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
no he is from turkey
You beat me
just watch a yt vid hun
@rustic comet Corey Schafer, YouTuber, Playlist for python beginners
good luck!
Corey Schafer is rly good
ur voice is so soft ...
fastapi
djdjdjdjdjdjdjdjdjdjango
mmhm
pfft
lmfao sup opal, mindful
and uh i think i know hajaa so hi to u aswell
i got the case just the gpu waiting prob gonna get it on the 4th
no gamming lol i got a 7700 bc intellij was killing me with the crashes
i do backend so nothing that gpu intensive
ah maybe i'll try ai one day
also docker has been killing me took me 2 hours to realize running a database on docker has a completely diff host name 💀
tbf the ai apps that nvidia gives you are awesome they just released this app that would change your eye to match your camera so when you look at anywhere else its still focused on the camera
in my experience, VS Code has been easier to use with Docker compared to IntelliJ
sup af
yeah intellij has way better java support vscode is a bit limited there
ease of use basically
i love how they just give up and name it ooga booga
Docker and hostnames is an even more cursed problem when you run into, for example, httpd's hostname caching
fun to have totally wrong things being proxied
i just run postgresql on an old laptop works pretty well
im working with nextcloud for testing so its new to me
Nextcloud good
Error while trying to create admin user: Failed to connect to the database: An exception occurred in the driver: SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for db failed: Temporary failure in name resolution
the errors never end....
im following their own documentation
I run almost everything on this
works well enough
https://www.hardkernel.com/shop/odroid-h2/
Celeron actually not that bad of a CPU
(especially for when this thing was released)
i have one laptop that has xeon platinum i run nextcloud on that high end lol
and i have this other laptop running a A12 for k8
i used to have a way more pleasant experience with their snap build
damn it worked with mariadb
turns out i didnt save my docker-compose properly
beautiful
nvm
almost used a container name instead of the app image
bye guys
no dis respect bud maybe instead of bragging abt ur hard work
brag about ur game later on
!e
a = 287
b = 287
print( a is b )
print( a == b )
@cosmic lark :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | True
002 | True
you can just treat it like Rust does
enums and structs have their fields parsed and highlighted quite similarly
so much so that visibility qualifiers in enum variants are valid syntax
even though it'll scream at you anyway for using them
For context, the woman is a kind of AI and she got rebooted, so she lost her memory, and what she does have is jumbled, so when Ted Danson asks for a paper file, she keeps giving him cactuses.
haven't noticed this diagram before
which is the best sleeping position?
none, don't sleep
I believe so.
@somber heath how many?
👍
this is free?
I didn't get a match! Please try again with a different search term.
!zen
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
its not working
you have create it?
id suggest you using apaid service to prevent certain pictures
yk its all big features till u implement them
also noticed ppl fantasize in vcs here lately lol
seems unsafe
put a possible flag to disable it imo
That hasn't been my experience.
spider did you say unsigned and signed pointers are the same type?
pointers aren't signed right? As far as I know. And llvm doesn't have a way to distinguish between the two regardless
Hyper-Text-Transfer_Protocal :// World-Wide_web . domain-name / dir-name / filename . filetype /? name="t" = "at" -> add-token
isnt the www just a server prefix given?
just parse json body
weight doing name = t = at ->
huh weird thought signed pointers existed
it wouldn't make any sense honestly. Doing a negative pointer would just be really goofy
dumb thing im saying
but when you delete something and it goes on your ram s cache i figured it would make sense for negative pointers
wgp4h9y91c
aren't call stack addresses by default mapped as almost max value?
so they'd be small negatives if interpreted as signed
having positive and negative addresses as two separated groups also allows to ensure valid differences addresses can always be represented as signed
there's a problem that you can't always represent difference between uN and uN as uN
and not as iN
it needs to be i(N+1)
tbh, it should just be absolute difference represented as uN
because usually if you need to handle pointer difference, negative and positive differences are handled very separately anyway
TIL alternative names for this structure
https://en.wikipedia.org/wiki/Parent_pointer_tree
In computer science, an in-tree or parent pointer tree is an N-ary tree data structure in which each node has a pointer to its parent node, but no pointers to child nodes. When used to implement a set of stacks, the structure is called a spaghetti stack, cactus stack or sahuaro stack (after the sahuaro, a kind of cactus). Parent pointer trees ar...
> When used to implement a set of stacks, the structure is called a spaghetti stack, cactus stack or sahuaro stack (after the sahuaro, a kind of cactus).
related to persistent stacks/linked lists also
@high patio
https://www.youtube.com/watch?v=eXBD2bB9-RA&list=PLQVvvaa0QuDeAams7fkdcwOGBpGdHpXln
He uses sublime as the editor, but you can use anything
Downloading and installing Python 3, along with an editor and writing our very first, though super basic, program!
Playlist: https://www.youtube.com/playlist?list=PLQVvvaa0QuDeAams7fkdcwOGBpGdHpXln
#python #programming #tutorial
ah
Looking to create a Discord Bot for your server? Well then, this is the first video in my new series in where I should you how to create a fully functioning bot in Python for your server.
In this video, I go over how to setup your discord bot on your server and how to make a basic command.
►Please consider joining my discord server: https://di...
I'm trying to find what month I started writing discord bots in
what api?
seems to be January 2018
(will I forget this by the time I try to remember it next time? probably yes)
cursed and not good:
oh, wow, I knew about __exit__ in 2019 already
binary mode?
no, just saving data using full-file-write isn't good
if it's supposed to be persistent
also, repr
instead of json.dump(s)
isnt it more efficient though?
it's very efficient at losing data
there are no back-ups
there are no logs (write-ahead or rollback)
it was just rewriting the whole one file in full
fair enough
could you possibly run this on gpu cores on cpu intensive appsS?
seems weird but i can see it being needed
i mean with threadreapers prob not needed with xeon would make abit of sense
gpus have limited instruction sets
especially bad at branching
but if you eliminate branching, it will speed up cpu execution too, quite a lot
@high patio hi
hi
@high patio whr r u from?
@high patio i like yr accent.
gpu frequencies still have room to grow, unlike cpu
dont have any knowledge of enterprise specific gpus though only consumer grade
i mean still 4.5ghz and 5.4 oc is not bad
lol
nice
RX 6750 XT $470
2560 64 2495 MHz
whats your name?
Hiiiiiiiiiiiiiiiiiiiiirrrrrrrrrrrrrrrrrrrrrrro\
okk
ChatGPT openly lies
makes stuff up
it can suggest you to import packages that don't exist
even a 4080 has 2.5GHZ
impressive
those titan cards should even have a higher base clock i presume
5000?
RX 590
ever since I got it, I don't remember thinking about upgrading any hardware at all
like, the only disadvantage for me is that it's no CUDA
AI?
I probably won't buy a new GPU for that anyway
because for me the question isn't whether it's performant, but wheter it's supported at all
I have a spare 1050 Ti, which I can probably still use
fair enough\
though, well, if motherboards to properly organise that are more expensive than just buying a better nvidia gpu, might go for a new gpu
@gentle flint @somber heath @cosmic bison hey guys @high patio is a q-generator.
I have no clue
but the second PCIe slot isn't full-size, and, I'd assume, it's going to be an issue
at least, I'd expect copy times to be worse
prob x4 or x8 then
x4, iirc
whats a q-generator
This server's purpose is to field questions.
i mean still pcie 3 is still very popular
better than paying 500$ for a pcie 5 with a fan lmfao
@whole bear do you have public static IP?
@high patio
"If I had an hour to solve a problem and my life depended on the solution, I would spend the first 55 minutes determining the proper question to ask for once I know the proper question, I could solve the problem in less than five minutes," Einstein said. "It's not that I'm so smart," Einstein said.
what you mean
Hey guys, I am new here on discord! How does the voice chat works?
asking questions is good
53, I did forget
@gentle flint works fine
@whole bear do you pay for an IP address?
ok
ISP may block all arbitrary forwarding
it can do that, to some extent
the simplest way to remove the issue on ISP's side is to pay for a static public IP
What seems to be the problem?
I learned to make a text to say what the code means
u sure?
in big servers i think it needs verification
@turbid sandal here use this email oem91061@omeie.com
Yeah, I can pop over for a bit.
can you join vc?
I think yes
with guest-like account
but not sure
ah
I remember there's something with guest account thing
!stream 651519394673065989
✅ @whole bear can now stream until <t:1688498286:f>.
me
cant
try again
I've tried but couldn't able to talk yet in voice server
brb
me too
as a beginner in coding, should i do the cs50 course?
!d unittest
Source code: Lib/unittest/__init__.py
(If you are already familiar with the basic concepts of testing, you might want to skip to the list of assert methods.)
The unittest unit testing framework was originally inspired by JUnit and has a similar flavor as major unit testing frameworks in other languages. It supports test automation, sharing of setup and shutdown code for tests, aggregation of tests into collections, and independence of the tests from the reporting framework.
To achieve this, unittest supports some important concepts in an object-oriented way:
good enough often
all Python tests I ever wrote were with unittest because couldn't be bothered installing pytest or other tools
!source
I though this list in PyCharm used to look differently
I don't remember anything other than pytest, unittest and doctest
!d class
A template for creating user-defined objects. Class definitions normally contain method definitions which operate on instances of the class.
can't be sure wth !d will return
does it prioritise glossary over syntax reference?
woul make sense
haven't tried this
https://www.jetbrains.com/help/pycharm/bdd-frameworks.html
(I think it was released when I still had the license)
sup!
It's french for John
oui
I can't see the stream for some reason
i guess my connection is clunky
yep
hello
LESS GOOO
ive been making a bot all day
its going dreadfully
no no
i dont even like sneakers
like
nike
hey man. Im new to the server and Im attempting to dive myself more into the python community. Im a senior for my bachelors program in computer science. I do not have questions to ask but in the future I want to be able to ask questions. I'm currently "suppressed" and cannot send text or talk in the stream. thanks
adidas
i love you gof
ill embroid u a burger
embroid
ill learn
why does ur woman voice sound so western
thanks a lot.....
jus press enter every 2 seconds
i've been trying to talk in voice server!
Should I paste anything in bot-commands or sir-lancebot-playground?
It said : You must meet all of the following criteria before you can speak in voice channels:
• Have over 50 messages in the server.
- Messages that have been deleted do not count towards your message count.
- Messages sent in either bot-commands or sir-lancebot-playground do not count
chicken taco 🤮
breast
its jus better
actually
leg is good
havent had a leg in a long time
turkeys are good as hell
takes too long to cooj
they break too easy
ohh yeah
!voiceverify
just get a non stick
really?
oh damn so if u have a meal, you gotta have it coun
count
how was that ?
hello there
ok
how you doing?
let start code
New movie
The guy who created the first tactical nuke
It still said: Voice Gate failed
You are not currently eligible to use voice inside Python Discord for the following reasons:
• You have sent less than 50 messages.
How I can ensure 50 messages? Seperate word?
I know about it. He didn't want to distroy Japan but it was happened due to political culprits leader. He was regret for that bomb!
@lunar haven I noticed you have been reading algorithms, etc during the stream. I am currently working on my programming basics as I am new to python
its gonna release the same day of release of Barbie
im waiting forthose movies
i saw the holes of barbie movies for my sister
your English is fine, I can understand. Would it be possible for you to go over any sorting algorithm and its time/space complexity
wholes sorry
or any of the Python Data structures and its different operation complexities
Me too. My native lang is not English and my vocab is not good too. But I can manage with conversations
Okay
Group theory?
(on stream)
meet-in-the-middle also good for solving that
you walk from both ends
(solved state and initial state)
with a normal Rubik's cube, depth 10 is enough
what?
BFS works well for sssp/sdsp, meet-in-the-middle is specifically for spsp
("single source", "single destination", "single pair")
@lunar haven why do u use that if u dont mind me asking
the text thing
how it glides across the screen
tts
tts also helps with not skipping things accidentally
depends on a specific person anyway
@vocal basin can you please share some examples or resources for scenarios of sssp, sdsp, spsp, usage of BFS for these scenarios as I am not familiar with these concepts yet
example with Rubik's cube:
you'd use SDSP for solving any position basically instantly (if you have enough memory to store them all)
you'd use SPSP for solving any position without necessarily having to walk the entire tree in advance
(that's algorithm independent)
(I'll provide more details later, currently trying to work on stuff from #off-topic-lounge-text)
Sure, that would be helpful. Thank you so much!
@lunar haven what
BFS on its own can be used for both
meet-in-the-middle, as an optimisation for SPSP, can be based on BFS too
so what are you coding@lunar haven
leetcode has quite a lot of path-finding-related problems, can train there
hello bro
what’s this about
this thingymajig
SORRY
ah nice
awesome sauce bro, goodluck
I plan on majoring CySec soon
what should I focus on? If I have no coding experience
yeah true, taking a gap year so I will try these, I’m also learning guitar to become a possible musician
this will lead my life into
- hell
- paradise
welp cya gofek, it was fun talking t’ya
:incoming_envelope: :ok_hand: applied timeout to @uncut ridge until <t:1688518245:f> (10 minutes) (reason: burst spam - sent 8 messages).
The <@&831776746206265384> have been alerted for review.
Can someone please help with this - https://discord.com/channels/267624335836053506/1125959032927174666
Adobe Director (formerly Macromedia Director, MacroMind Director, and MacroMind VideoWorks) was a multimedia application authoring platform created by Macromedia and managed by Adobe Systems until its discontinuation.
Director was the primary editor on the Adobe Shockwave platform, which dominated the interactive multimedia product space during ...
Adobe Director was used by Bas Ording, an Apple human interface designer, to prototype the iPad software keyboard
Get started with VORON 3D printer, the best little CoreXY 'space shuttle' you can build in your garden shed, or your kitchen.
You are what you eat.
I've certainly had a lot of sushi.
Not too recently, though.
@wind raptor r u from roswell?
no
@idle obsidian 👋
sup
@cold token 👋
♪ Download Minecraft OCD: http://smarturl.it/MinecraftOCD ♪
This is the music video for Minecraft OCD by Boots On Cats.
Video by:
Tiff (Live Action/Editing) - http://youtube.com/christifferberry
Minecraft4Meh (Minecraft capture/Editing) - http://youtube.com/Minecraft4Meh
Lyrics, Vocals and Music by Oliver Hindle / Boots On Cats.
Recorded, Mi...