#voice-chat-text-0
1 messages · Page 26 of 1
ok
could you help me with something small real quick, i need to find values in a dictionary and gain a # of variable dependent on whats in it
okay
hello @outer orbit
@tacit rampart I think your internet is spotty
And FabSam here : )
I live on Earth
and I breathe
😄
People around, it's noisy at the moment
oh yes, I try to never use my phone
ahhh
Everyone is on mute now
oops
@tacit rampart Where have you gone
oohhh
I liked the prompt, so here you go
@torn grove I guess Imma go to AFK for a while so that people won't leave the VC thinking it's dead
aighty, same i suppose o/
gl tho c:
Yo Opal!
Ola
@blissful escarp 👋
hello @somber heath
@whole bear Idk just bored
how are you doing opal
@somber heath ohh ok
Just quickly saying hello. I'm not in call. Just letting you folks know I'm alive. Been sick, and found out yesterday that my Lucky buddy has intestinal cancer, and that the vet said that we may be in his last month of life. So not really in a good talky headspace
Hello! Good to hear from you!
So sorry to hear that
Get well soon and our thoughts and prayers will be for you and Lucky 
Let us know if there's anything we can do
get well soon
both you and Lucky
Im so sorry to hear that Hemlock
Hope you recover soon, all thoughts and prayers for you guys and lucky
Hi
@austere summit 👋
😮 hello
I just joined the server a few secs ago
Excellent choice.
ty
@onyx geode 👋
Does anyone think that firing Parag Agarwal was the right decision that Elon made?
what is Parag Agarwal ?
👋
Couldn’t care less
How he do that ? is Elon Co Owner or something on twitter?
what's that 3 ten-minute blocks means ?
Don't think about it too much.
ok
It's more about making sure you've had a reasonable base level of community engagement beforehand.
ok
So just interact normally and it'll be done in no time.
I see
Make war, not love? Righto...😕
🥹 i hate the word "love" thats why i changed it a little bit
@nocturne fox 👋
Essentially it means that you can't cram all 50 messages in talking for a minute. Has to be over at least half an hour or so

benchmarks,benchmark,performance,fannkuch-redux,helloworld,nbody,nsieve,spectral-norm,C++,C++ lang,Wasm,Wasm lang
looks slower than 3 times for me
assuming this really old looking benchmark website is accurate
Ohh I havent been using discord calls of late
must try just for this
Has Mr. Hemlock been missing
U ok dude
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
Bye mate
Hello
How are you?
Lmao
This is cool
Yes
No
How to make ticket 🎫?
I know
Hello hello
!code
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.
def quetelet(height, weight):
thin = str(weight // ( height ** 2 ))
normal =str(weight // ( height ** 2 ))
overweight = str(weight // ( height ** 2 ))
obese = str(weight // ( height ** 2 ))
if thin < 20:
return (thin)
if normal >= 20 and normal <= 25:
return (normal)
if overweight > 25 and overweight <= 30:
return (overweight)
if obese >= 30:
return (obese)
TypeError: '<' not supported between instances of 'str' and 'int'
TypeError: normalize() argument 2 must be str, not float
100.0%. [
a <= b <= c
#roughly equivalent to
a <= b and b <= c```
if >= 20 normal < 25
thin, normal, overweight, obese =
!e py for i in range(10): print(i, i % 3)
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 0 0
002 | 1 1
003 | 2 2
004 | 3 0
005 | 4 1
006 | 5 2
007 | 6 0
008 | 7 1
009 | 8 2
010 | 9 0
!e py result = [] for i in range(48): result.append(i % 12) print(result)
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
7 & 4
max(iterable, /, *, key=None)``````py
max(iterable, /, *, default, key=None)``````py
max(arg1, arg2, /, *args, key=None)```
Return the largest item in an iterable or the largest of two or more arguments.
If one positional argument is provided, it should be an [iterable](https://docs.python.org/3/glossary.html#term-iterable). The largest item in the iterable is returned. If two or more positional arguments are provided, the largest of the positional arguments is returned.
There are two optional keyword-only arguments. The *key* argument specifies a one-argument ordering function like that used for [`list.sort()`](https://docs.python.org/3/library/stdtypes.html#list.sort "list.sort"). The *default* argument specifies an object to return if the provided iterable is empty. If the iterable is empty and *default* is not provided, a [`ValueError`](https://docs.python.org/3/library/exceptions.html#ValueError "ValueError") is raised.
!e py print(max([10, 5, 12]))
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
12
!e py print(max(5, 10))
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
10
Back soon.
def fine(authorized_speed, actual_speed):
speed = authorized_speed % actual_speed
if speed = authorized_speed:
return None
if speed > authorized_speed:
15 % 10 = 5 ?
@tulip plover #media-processing message
from os import access
def fine(authorized_speed, actual_speed):
diff = actual_speed - authorized_speed
if actual_speed == authorized_speed or actual_speed < authorized_speed:
return 0
if actual_speed > authorized_speed:
for i in range(0,3):
return 12.5
if actual_speed > authorized_speed:
for i in range(3,101):
if i > 10:
10*i
return 5*i
Returning terminates the execution of a function.
!e ```py
def func():
for _ in range(9001):
print("Hello, world.")
return
func()```
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
Hello, world.
#An if chain consists of...
if condition: #Exactly *one* if
...
elif some_other_condition: #Zero or more elifs
...
else: #Zero or one else
...
#Only one block will be run, if any. The conditions are assessed in order from top to bottom, executing the block of the first condition satisfied.
So if condition was truthy and some_other_condition was also truthy, the condition block would be run only.
But if condition was falsy and some_other_condition was truthy, the some_other_condition block would be run.
If neither were truthy, the else block would run.
@onyx kindle #❓|how-to-get-help #web-development
Hello
ı have a question @somber heath ı did the fundational things python like snake game ,tetris ,pacman, pong game, space invaders , youtube bot, what is the next step right now do you have any idea because ı am little bit stuck ı can't find a project idea with python what they are doing the python developer ( meanwhile 2 months ago ı was coming here and asking the same question to you and then you are giving to me a really good speech later ı am doing that things )
There is no next step so much as it's just steps.
so what should ı do
But let me think.
ı am not reading book about that or take a course ı am just make project
Let's have a look at what resources and kindling has to say. Because there are suggestions in there.
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
!kindling
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.
Oh, Kindling is the only thing in there.
I thought there were others. Hm. Something to be expanded, I think.
How far have you made it through the standard library?
You won't have to cover everything, but there are some things in there that you should have a familiarity with.
Specific algorithms would be a good topic.
ı just now the pygame
pygame isn't standard library
standard library is things like random or itertools
string
and then you give advice maybe
or homework ı am sorry
ı am little bit a stuck ı can't figure out what should ı do
hi
can you hear me?
ok i will try from phone
i think it might be the server mate cause it doesnt work on phone either
how about a vc in dms?
ok
#bot-commands
yes, i can check it out.
Hey @wintry socket!
You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.
x = [1, 2, 3]
x.insert(0, "hi")
print(x)
del x[0]
@barren carbon Congrats on being a Hustler University student. Surely you'll be a top-G soon one day.
so defined it
@patent otter
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
i get how to
enable voice chat for me
we must be active for 3 days and some other critirea with it
Yes, then there is a command to be used in that room.
!voiceverify I think. It says in the room.
I don't have access to the room, having the voice role.
i cant unmute
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice @whole bear
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
"The Elements" is a song by musical humorist and lecturer Tom Lehrer, which recites the names of all the chemical elements known at the time of writing, up to number 102, nobelium. It was written in 1959 and can be found on his albums Tom Lehrer in Concert, More of Tom Lehrer and An Evening Wasted with Tom Lehrer. The song is sung to the tune of...
Flash cards.
Communication accommodation theory (CAT) is a theory of communication developed by Howard Giles. This theory concerns "(1) the behavioral changes that people make to attune their communication to their partner, (2) the extent to which people perceive their partner as appropriately attuning to them." The basis of the theory lies in the idea that ...
that was actually what I was thinking of
the name Howard Giles brings back all the memories
Everything decays.
The armadillo girdled lizard (Ouroborus cataphractus), also commonly known as the armadillo lizard, the armadillo spiny-tailed lizard, and the golden-armadillo lizard, is a species of lizard in the family Cordylidae. The species is endemic to desert areas along the western coast of South Africa. In 2011, it was moved to its own genus based on mo...
The sand cat (Felis margarita) is a small wild cat that inhabits sandy and stony deserts far from water sources. With its sandy to light grey fur, it is well camouflaged in a desert environment. Its head-and-body length ranges from 39–52 cm (15–20 in) with a 23–31 cm (9.1–12.2 in) long tail. Its 5–7 cm (2.0–2.8 in) short ears are set low on the ...
The rusty-spotted cat (Prionailurus rubiginosus) is one of the cat family's smallest members, of which historical records are known only from India and Sri Lanka. In 2012, it was also recorded in the western Terai of Nepal. Since 2016, the global wild population is listed as Near Threatened on the IUCN Red List as it is fragmented and affected b...
Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub
Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home Programme website: http://bbc.in/2CHzXJj A rusty spotted cat, the world's smallest cat, explores his forest home in Sri Lanka, but his natural curiosity is destined to get him into a spot of trouble.
Big Cats | BBC
#bbc
All ou...
at least we'll think "oh, that's cute", before we're murdered by the robot for not paying our Metaverse bills
Guinea pig or kitty cat?
not sure
That's what I was thinking
"They'll never know."
yeah, we're all listing the things we love
they love cats, I love...
Martin Shkreli (; born March 17, 1983) is an American former hedge fund manager and convicted felon. Shkreli is the co-founder of the hedge funds Elea Capital, MSMB Capital Management, and MSMB Healthcare; the co-founder and former chief executive officer (CEO) of the pharmaceutical firms Retrophin and Turing Pharmaceuticals (now Vyera Pharmaceu...
Swaffelen (or zwaffelen or dick slap) is a Dutch term meaning to hit one's soft or semi-hard penis—often repeatedly—against an object or another person's body. Swaffelen was named as the word of the year in the Netherlands and Belgium in 2008.
The act of swaffelen often takes place in the form of teasing, crude humour or a degrading context, but...
Ernesto "Che" Guevara (Spanish: [ˈtʃe ɣeˈβaɾa]; 14 June 1928 – 9 October 1967) was an Argentine Marxist revolutionary, physician, writer, guerrilla leader, diplomat, and military theorist. A major figure of the Cuban Revolution, his stylized visage has become a ubiquitous countercultural symbol of rebellion and global insignia in popular culture...
George Smith Patton Jr. (November 11, 1885 – December 21, 1945) was a general in the United States Army who commanded the Seventh United States Army in the Mediterranean theater of World War II, and the Third United States Army in France and Germany after the Allied invasion of Normandy in June 1944.
Born in 1885, Patton attended the Virginia Mi...
looking right into our souls ngl
Only true emperor
The Banana Repulic
God just thinking about the bedsores he must have....
could someone jump over in Code/help to help me out ? Thanks
https://www.webmproject.org/about/ @zenith radish Is that something separate?
That's a container, usually
webms have h264 and opus inside
can also be other formats
Oh nifty
Also VP8/VP9
@vast light Only reason I asked in text is because this convo's going to be a bit
AV1 for the future
Compression formats?
Neat
@amber raptor @quasi condor you just use this
$0.0075/minute
@quasi condor "Z-ray eyes?" "They're like x-ray but better. It two more than x!"
@pastel plover What's the question?
Or what's it in regards to?
its not about python to be exact
You have me curious
i was going to ask if any1 has some experience with css
Right but what's your question about it
cuz im facing a slight problem that i need to fix
i could show you if im able to stream
Not overly great for me to do that kind of help at the moment, about to go on a delivery run for work
see how my sub nav is slightly to the right and i dont really want that
i want to fix it to be almost centered with the menu element
What framework are you using?
No no, I mean are you just writing this in pure CSS or are you using something like React, Vue, etc
no no pure css
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 floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
Can you toss your css file in that site?
Yeah, you paste, save, then copy the URL and dump it here
I'll look in a bit, working on something at the office
Looking now
Still poking around
@pastel plover Sorry, CSS isn't my strong suit. #web-development will probably be able to help faster than I. Or one of these: https://github.com/mhxion/awesome-discord-communities/#css
Thought I had it, apologies
Any time.
Thx
95 vs 80 vs 67
Hello
Maybe I had a special position in mind
Back in a bit
@dusk raven in brain
?
@pulsar island
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voiceverify
Manual Be Quiet! Dark Rock Pro 4. View the Be Quiet! Dark Rock Pro 4 manual for free or ask your question to other Be Quiet! Dark Rock Pro 4 owners.
!tvmute 683806442012409901 1w "My bad for earraping xD I've never done it before wanted to try it out". If this happens again you're losing your permissions entirely.
:incoming_envelope: :ok_hand: applied voice mute to @shadow sable until <t:1667850604:f> (7 days).
In probability theory, the Kelly criterion (or Kelly strategy or Kelly bet), is a formula that determines the optimal theoretical size for a bet. It is valid when the expected returns are known. The Kelly bet size is found by maximizing the expected value of the logarithm of wealth, which is equivalent to maximizing the expected geometric growt...
!stream 152515077512232960
✅ @quasi condor can now stream until <t:1667248933:f>.
def words():
with open("README.txt","r") as file:
list = []
for i in file.readlines():
coords = i.strip("\n")
coords = coords.split(",")
list.append(coords)
print(list)
words()
im here
How you doin sr
everything great and you
and me trying to solve a problem in my pycharm version
😭
I'm tired, I'm going to rest
thanks! I'm already very tired, I need to sleep urgently, accept the friendship invitation there
Hello @whole bear
hello my new plant
are you using nix OS?
Which Operating Soystem are you using.

?
No way
opensuse

I know that
but I don't remember the reason
No they don't
https://www.eweek.com/networking/microsoft-buys-100m-of-novell-suse-linux-enterprise-server-support/
Microsoft will buy $100 million worth of Linux support certificates from Novell to redistribute to Microsoft Windows Server customers for Novell for SUSE Linux Enterprise Server (SLES). Novell has promised "tools, support, training and resources" for SUSE Linux Enterprise Server users seeking "optimal interoperability" with Microsoft Windows Ser...
it means, SUSE == Bad, Arch == Good
good + bad == neutral
actually,
True + False == 1
And == True
1 + -1 = 0
!e
print(True + False == True)
@dense parrot :white_check_mark: Your 3.11 eval job has completed with return code 0.
True
!e
print(True + False)
@whole bear :white_check_mark: Your 3.11 eval job has completed with return code 0.
1
!e
print(True + True)
@dense parrot :white_check_mark: Your 3.11 eval job has completed with return code 0.
2
!e
print(True == 1)
@whole bear :white_check_mark: Your 3.11 eval job has completed with return code 0.
True
True, when forced into an int, is the number 1
Hmm
code
bro
!e
print(True | True)
@dense parrot :x: Your 3.11 eval job has completed with return code 1.
001 | File "<string>", line 1
002 | print(True || True)
003 | ^
004 | SyntaxError: invalid syntax
!e
bool("hello")
@whole bear :warning: Your 3.11 eval job has completed with return code 0.
[No output]
!e
print(bool("hello"))
@whole bear :white_check_mark: Your 3.11 eval job has completed with return code 0.
True
!e
print(bool(""))
@whole bear :warning: Your 3.11 eval job has completed with return code 0.
[No output]
!e
print(bool("openSUSE"))
@dense parrot :white_check_mark: Your 3.11 eval job has completed with return code 0.
True
prove that openSUSE is good
!e
print(bool("Arch"))
@whole bear :white_check_mark: Your 3.11 eval job has completed with return code 0.
True
@dense parrot
import sys
line=sys.stdin
aa=input("Enter the value here: ")
print(line.read())
so how does this voice chat thing work?
which side is this
From Glassdoor
For all of Germany
Didn't check how many salaries were submitted though
thx
Gboard チームからの新しいご提案、Gboard 棒バージョンをご紹介します。
Gboard 棒バージョンは、すべてのキーを一列に配置することにより、入力したい文字を探しやすくした画期的なキーボードです。
詳しくは紹介ページとGoogle Japan ブログをご確認ください。
Gboard 棒バージョン: https://g.co/____/
Google Japan ブログ:https://japan.googleblog.com/2022/10/gboard-2022.html
Today, we are proud to announce the new Gboard Bar Version.
Gboard Bar Version: https://g.co/___...
get back to this later
def avg():
conteur = 0
while True:
user_num = input("Entrez de nombres : ")
if user_num == '':
break
try:
user_num = float(user_num)
except ValueError:
print("Tu n'as pas rentré un numero, essayé encore une fois")
continue
conteur = (conteur + user_num) // #Something but idk what
print(conteur)
avg()
nǐ hǎo
Hi everyone
How goes it
Can someone help me, i'm a beginner and i dont understand why my code doesnt work?
So u = 0.9 * u + 1.8 rather than u = 0.9u + 1.8
The * needs to be there in order for Python to know what to do
ty bro
It's an easy thing to miss when you're starting out and used to just doing math
you look like Dariush
That's not me it's my professor
2cm is the best cm
Im tired it still doesnt work
Are you calling main?
😳
before you get too impressed, it is not me
!e ```py
def func():
return 5
result = func()
print(result)```
@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.
5
shrimps are sea cochroaches
It steel not working
Delicious delicious sea cockroaches
def func():
...
func() #This is a call to func. It becomes what the function returns.```
@somber heath :warning: Your 3.11 eval job has completed with return code 0.
[No output]
schroos?
@rugged root
looks like a cross between a chick and a rat
Subscribe to get more interviews, viral videos, funny videos and Clips. www.youtube.com/themediagathering
found the original
Back in a sec, sorry
Working with the printer guy on something
Two guesses as to what we're working on
First one doesn't count
The brown marmorated stink bug (Halyomorpha halys) is an insect in the family Pentatomidae, native to China, Japan, Korea and other Asian regions. In September 1998 it was collected in Allentown, Pennsylvania, where it is believed to have been accidentally introduced. The nymphs and adults of the brown marmorated stink bug feed on over 100 speci...
black
or with matcha
u'll get the hang of it it just takes practice
Here's a good video on recursion that I like: https://www.youtube.com/watch?v=_JtPhF8MshA
Improve the efficiency of recursive code by re-writing it to be tail recursive. Professor Graham Hutton explains.
EXTRA BITS: https://youtu.be/eoi3s_4mAAc
https://www.facebook.com/computerphile
https://twitter.com/computer_phile
This video was filmed and edited by Sean Riley.
Computer Science at the University of Nottingham: https://b...
is this person elon musk
I'd say just pick one and go for it, become so good that you can't be ignored
thats crazy
aren't they also enforcing stricter lockdowns these days
Hey
someone mind helping me
def words():
my_list = []
with open("README.txt", "r") as file:
t = file.readlines()
for i in t:
my_list.append(i.strip())
return my_list
words()
def search():
w = words()
print(w)
mot = str(input("Mot a chercher: "))
for i in w:
if i == mot:
print(i, "est dans README.txt")
else :
print("Ce mot n'est pas dans la list")
search()
Hey hajaa
I think you're traversing through the characters instead of teh words?
😦 aww I hope it gets to 100% really soon
Marking season again. And I picked up Github Actions recently I really like it :3
Oooo, nice
Still need to toy with that
All the devops stuff is spooky to me
Dude, how do I keep forgetting that doctest is a thing
def words():
my_list = []
with open("README.txt", "r") as file:
t = file.readlines()
for i in t:
my_list.append(i.strip())
return my_list
words()
def search():
w = words()
print(w)
mot = str(input("Mot a chercher: "))
if mot in w:
print(mot, "est dans README.txt")
else:
print("Ce mot n'est pas dans la list")
search()
Thank you very much everybody ❤️
Yeah it takes time getting used to 😦 I can never get how the environment variables work. They just don't work like I want them to.
True
Jesus
because of bad crowd control
Humans
crushed
Lemme find a link
is anyone here familiar with jupyter notebook configuration and could help me with something?
It's really sad. Something that could've been prevented.
And it could happen to anyone. Some of the victims were just visiting the city.
What kind of help
i think its an issue with python venv tho it might be a quick fix
oh
Let me type it up:
You've seen the top of this channel?
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Always possible
1/2:
I'm trying to convert a sage ipynb into latex via nbconvert inside the sage docker container and want to use bibtex for including citations.
I basicially followed the advice in this GitHub repo, which is a little older but still seems relevant.
Except, instead of using regular jupyter notebooks, I am using a modified version of the sage docker container as my base install.
You can find my own repo with the example I'm trying to compile here: https://github.com/jimkoen/sagemath-thesis-template/tree/test-sage-ipynb-to-latex-conversion
Switch to the branch 'test-sage-ipynb-to-latex-conversion' (its default selected).
The notebook I want to convert is called "QuadraticEquations.ipynb"
If you look into the dockerfile, you can see the changes I made to the default sage container. I installed nbconvert to enable direct conversion of notebooks to latex then to pdf, and also texlive and some addons, including latex-bibtex-extra.
When I now want to convert my Sage notebooks via the WebGUI (File > Download as... > PDF via Latex) the conversion works and a PDF is generated, albeit with the citation missing. I'm sure the version of nbconvert I installed through sage -pip3 is used for this, as it didn't work in a previous version of the Dockerfile, without nbconvert. I assume the citations are missing, because nbconvert is not passed the bibtex references I created (which makes sense, given I trigger the conversion via UI).
So, I run the conversion via bash, which makes a little more sense, but this yields a much weirder error, which I don't understand.
When trying to invoke nbconvert like so:
sage --jupyter nbconvert --to latex --template testnotebook.tplx QuadraticEquations.ipynb
I get the following error log:
...
File "/home/sage/sage/local/var/lib/sage/venv-python3.10.5/lib/python3.10/site-packages/jinja2/loaders.py", line 575, in load
raise TemplateNotFound(name)
jinja2.exceptions.TemplateNotFound: index.tex.j2
Sry the output is huge
jinja2.exceptions.TemplateNotFound: index.tex.j2
^^the above error message is weird though, because the file is clearly there. this also only occurs when converting with the --template param
Yeah nvm this is really jupyter specific and more latex oriented.
You must build additional pylons
POWER OVERWHELMING
READY TO MOOOOVE OUT
that hihi was cute
hihi?
oh I was taking about opal's little hihi
wait u guys talking about cowsay
omg
HEY anyone here worked on ansible? since this is a python discord
I used to now I moved on to Github Actions
how could I print("Hello word") in red + bold ?
I only ever played the sims and roller coaster tycoon. And some pokemon games on the gameboy emulator.
oh gtg I can;t keep my eyes open no more
bye guyss
nobody cares about offical rules from monopoly xD
@serene glade
sorry for ping btw
But they should!
Like
It would stop so many holiday arguments
i mean, yes, but to be honest, most people only care about themself and their own rules. wich is dumb, (kinda like me), but we cant change people. the only people we can change are ourself
But it does kind of fit in with the capitalism theme
yeah
!projects
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.
A useless machine or useless box is a device which has a function but its direct purpose is deliberately unknown. The best-known useless machines are those inspired by Marvin Minsky's design, in which the device's sole function is to switch itself off by operating its own "off" switch. Such machines were popularised commercially in the 1960s, so...
Rose Marie "Rosemary" Kennedy (September 13, 1918 – January 7, 2005) was the eldest daughter born to Joseph P. Kennedy Sr. and Rose Fitzgerald Kennedy. She was a sister of President John F. Kennedy and Senators Robert F. and Ted Kennedy.
In her early young adult years, Rosemary Kennedy experienced seizures and violent mood swings. In response to...
Making pizza is not rocket science, but for this actual rocket scientist it is now. Benson Tsai is a former SpaceX employee who is now using his skills to launch a new venture: Stellar Pizza, a fully automated, mobile pizza delivery service. When a customer places an order on an app, an algorithm decides when to start making the pizza based on h...
Gtg, Good luck Charlie!
@quasi condor https://www.asus.com/support/faq/1040820
ASUS TUF Gaming motherboards distill essential elements of the latest Intel® platform and combine them with game-ready features and proven durability. Engineered with military-grade components, an upgraded power solution and a comprehensive set of cooling options, each ASUS TUF Gaming motherboard delivers rock-solid performance with unwavering g...
what type of robotics/ computer is that?
ATX
Regular motherboard and big ass gpu
Why mini DP?
Because god hates the users of that card
I really hope they're able to help
Niiiiiiice
what're we looking at?
Oof
✈️
🐕🦺
Ooh, ic
Nice
G2G have some dinner. Cheers!
@uncut meteor valid ape
(extern printf Str ...)
(printf "%s %s\n" "test" "xyz")
!e
import inspect
def test():
try:
return 1
except:
return 2
else:
return 3
finally:
print(inspect.stack())
return 4
print(test())
@uncut meteor :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | [FrameInfo(frame=<frame at 0x7fcfbb97c880, file '<string>', line 11, code test>, filename='<string>', lineno=11, function='test', code_context=None, index=None, positions=Positions(lineno=11, end_lineno=11, col_offset=10, end_col_offset=25)), FrameInfo(frame=<frame at 0x7fcfbb7185c0, file '<string>', line 14, code <module>>, filename='<string>', lineno=14, function='<module>', code_context=None, index=None, positions=Positions(lineno=14, end_lineno=14, col_offset=6, end_col_offset=12))]
002 | 4
!e
import dis
def test():
try:
return 1
except:
return 2
else:
return 3
finally:
return 4
print(dis.dis(test))
@uncut meteor :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | 3 0 RESUME 0
002 |
003 | 4 2 NOP
004 |
005 | 5 4 NOP
006 |
007 | 11 6 LOAD_CONST 1 (4)
008 | 8 RETURN_VALUE
009 | 10 PUSH_EXC_INFO
010 |
011 | 6 12 POP_TOP
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/zifevuzixa.txt?noredirect
>>> import torch
>>> torch.cuda.is_available()
True
>>> torch.cuda.device_count()
1
>>> torch.cuda.current_device()
0
>>> torch.cuda.device(0)
<torch.cuda.device at 0x7efce0b03be0>
>>> torch.cuda.get_device_name(0)
'GeForce GTX 950M'
nvidia-smi
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117
.
pip3 uninstall torch
!e
print("Hello world")
@uncut meteor :white_check_mark: Your 3.11 eval job has completed with return code 0.
Hello world
def triangle(n):
my_list = []
my_list1 = []
for i in range(0,n+1):
my_list.append(i)
print(my_list)
triangle(4)
!e
def triangle(n):
my_list = []
my_list1 = []
for i in range(0,n+1):
my_list.append(i)
print(my_list)
triangle(4)
@vast light :white_check_mark: Your 3.11 eval job has completed with return code 0.
[0, 1, 2, 3, 4]
brb for 2 minutes getting a drink
FROM SALES_REP
WHERE EXISTS (SELECT*
FROM CUSTOMER
WHERE(CREDIT_LIMIT = '500')AND(CUSTOMER.REP_ID = SALES_REP.REP_ID));
Use a subquery to find the sales rep ID, first name, and last name of each sales rep who represents at least one customer with a credit limit of $500. List each sales rep only once in the results.
!e def triangle(n):
my_list = []
for i in range(0,n+1):
for j in range(n):
new_list = []
new_list.append(i)
print(new_list)
triangle(3)
@vast light :white_check_mark: Your 3.11 eval job has completed with return code 0.
001 | [0]
002 | [1]
003 | [2]
004 | [3]
SELECT REP_ID, FIRST_NAME, LAST_NAME
FROM SALES_REP
WHERE EXISTS (SELECT * FROM CUSTOMER WHERE(CREDIT_LIMIT = '500') AND (CUSTOMER.REP_ID = SALES_REP.REP_ID));
REGEX
!e def triangle(n):
my_list = []
for i in range(0,n+1):
for j in range(i,n):
new_list = []
new_list.append(i)
new_list.append(j)
my_list.append(new_list)
print(my_list)
triangle(3)
@vast light :white_check_mark: Your 3.10 eval job has completed with return code 0.
001 | [[0, 0], [0, 1], [0, 2]]
002 | [[0, 0], [0, 1], [0, 2], [1, 1], [1, 2]]
003 | [[0, 0], [0, 1], [0, 2], [1, 1], [1, 2], [2, 2]]
004 | [[0, 0], [0, 1], [0, 2], [1, 1], [1, 2], [2, 2]]
!stream @scenic wind
✅ @scenic wind can now stream until <t:1667343046:f>.
FROM CUSTOMER
WHERE EXISTS (SELECT CUST_ID
FROM INVOICES
WHERE ITEM_ID IN(SELECT ITEM_ID
FROM ITEM
WHERE (CUSTOMER.CUST_ID = INVOICES.CUST_ID)AND(DESCRIPTION = 'Wild Bird Food')));
Find the ID, first name, and last name of each customer that currently has an invoice on file for Wild Bird Food (25 lb).
ERROR 1054 (42S22) at line 1: Unknown column 'ITEM_ID' in 'IN/ALL/ANY subquery'
FROM CUSTOMER
WHERE EXISTS (SELECT ITEM_ID
FROM INVOICE_LINE
WHERE ITEM_ID IN(SELECT ITEM_ID
FROM ITEM
WHERE (ITEM.ITEM_ID = INVOICE_LINE.ITEM_ID)AND(DESCRIPTION = 'Wild Bird Food (25 lb)')));
SELECT CUST_ID, FIRST_NAME, LAST_NAME
FROM CUSTOMER
WHERE EXISTS (
SELECT *
FROM INVOICE_LINE
JOIN ITEM ON INVOICE_LINE.ITEM_ID = ITEM.ITEM_ID
WHERE ITEM.DESCRIPTION = 'Wild Bird Food (25 lb)'
);
✅ @astral plank can now stream until <t:1667346038:f>.
Is anyone good with AWS-SAM / Lambda?
I literally just want to configure some environment variables, i'm probably being stupid
but i've wasted so much time on this now 😠
this sucks xD
Is this like Azure Functions?
hey opal..
it's been awhile, but I think you were using some cad program?
anyways, I just ran across a free web based one, seems ok so far.. onshape ... worth checking out.
My internet connection is unstable atm so I can't really hear what you're saying Hemlock :/
AWS function
Similar, yes but this issue is pretty specific to AWS Sam
Everyone's like beep boop 😔
@rugged root @frosty star Hey, doesn't let me talk as I joined recently :/
Like: beep, boop?
Yeah a bit from my side too
brb
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@somber heath Thanks, I already did this, need more messages or more activity.
I'll be back on in a bit, currently seeing what our devops folks are doing
Trying to learn by watching
Yeah sorry sorry.
I disabled the built in text channel voice thing because it's just...
Not good
Respiratory syncytial virus
im having an issue with my program rn. is anyone free to help in voice chat
my object just stops executing code after
s = ball("ball"+i,screen,space,objects,1280/2,720/2,1,1,0)
ball is another class
Respiratory syncytial (sin-SISH-uhl) virus,
def update(self,screen,space,objects,getevent):
if getevent != None:
if getevent.type == pygame.MOUSEBUTTONDOWN:
s = ball("ball"+i,screen,space,objects,1280/2,720/2,1,1,0)
self.balls.append(s)
objects[1].append(s)
self.i += 1
print("ball spawned")
class ball():
def __init__(self,screen,space,objects,x,y,sx,sy,r):
self.body = pymunk.Body(1,100,body_type = pymunk.Body.DYNAMIC)
self.body.position = (x,y)
self.shape = pymunk.Circle(self.body,50)
space.add(self.body,self.shape)
def update(self,screen,space,objects,getevent):
pos_x = int(self.body.position.x)
pos_y = int(self.body.position.y)
pygame.draw.circle(screen, (0, 0, 255), (pos_x, pos_y), 50)
G'evening
!paste
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 floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
Looking
Hmm... nothing's jumping out at me.... #game-development might be able to spot it better than me, sorry
thanks
Sorry I couldn't be more help
lol
hello
Debug Mode
Start a new game on Medium difficulty. Call it .Wampa..Stompa (Case sensitive). Start in a level and as soon as it starts press pause. Now press and hold all at once C up, C right, C down, C left, L, R, Z and Left on the d-pad. While holding these down gently move the control stick left halfway, and hold all this until you hear a sound. Do the same thing with the joystick facing right, then left, right and finally left. Make sure you keep the other buttons held down during this time.
If it worked pink writing will come up, and using L, R and A you can select cheats such as 50 lives, wall ghost, next level, gravity, jump power etc. To make the menu reappear each time you go back to the pause screen C up, C right, C down, C left, L, R, Z and Left on the d-pad.
old dance dance revolution games have so many secrets you can reveal...if you dare to do so!
get 2000yen off your first purchase with buyee!
https://bit.ly/buyee-kkclue
clue's house discord: https://discord.gg/clue
patreon: https://patreon.com/clue
p.o. box:
8311 Brier Creek Pkwy
Suite 105 - 119
Raleigh, NC
27617
On the topic of cheat codes
I'm contemplating whether I should eat the ramen. It is 10.30 PM.
chess?
so yall telling me you' never asked an ai for the infinite money code
who has the time
did ya all code in python ?
Ideally
DONT TEMP ME ;-;
altho i use qtile: )))
gnome > xmonad
kde > gnome
arch is the best
kde sucks
gnome > literally the universe
do you have to use some apps required a mac only?
linux is the best
ubuntu not the guy, but arch is the best
no
ok i think gentoo more
i learned one thing from linux
Ubuntu is too commercial-feeling, Arch breaks too much
the harder you make it , the bigger the waist
NixOS + GNU Guix is my jam
windows and macos too
windows is the best operating system
ghehehehehehe
windows is the best, for gaming
Mint Xfce...
i config qtile full setup
Juoy
and kde for extra working
Haha
bruh i used to use mint
no
but it feels like a ubuntu clone
use something like opensuse
FOSS is the best
opensuse is prob the best linux distro, but zypper aint the way
I ate a Yakiniku Beef Bowl recently
imagine opensuse with apt ❤️ ❤️ ❤️
It's really good
Nah
no opensuse is not the best, popos and arch and gentoo
you must have a lot of time to use gentoo
😩
have you ever stucked in gentoo? I have, and I paid 2 weeks to setup it
i think the longest arch install i had was like 6 months
3 months ?
:))
dont have that time ....
@swift valley u do compilers and stuff.... Huh
Nice 👍
show ur emacs setup?
arch is nice, not breaks (ik it breaks, even the simplest program is neovide i cannot install it)
also katsudon
neovim is ok?
ive just eaten that
yummy
:)))
btw arch is the best
:)))
homemade?
it's so CRISPY 😩
show yur text editor setup
super basic
i just setup my neovim in windows only. the arch, none, cause that's enough for me.
Resto
i use vsc & intellij
I mostly just work on the type checker
I haven't really written a language from scratch
Well, I did but I scrapped it
:how hard is a type checker
i think it shouldnt that hard ...
i do backend
It requires a bit of background knowledge
But once you get past a certain point, it becomes relatively easier
i also tried nextjs but i failed MISERABLY
node is the best
yea
after trying deno and next, i have to say dat
gtg
properly
deno sucks
Good, you?
Eh.... relatively. I think I average around 60 to 70 wpm? But just depends on the day or how coherent I am
And coding typing speed is like... way lower for me
coding typing wow
Yeah, watching some of the folks code here is crazy
4 hours practising i can reach 80-90
but normally my record is 85
yeah i knooow
i know some
i know
im doing in monkeytype too
is it a site too??
150 what
@vivid palm can you link your monkeytype profile? I forgot what your top speeds were
Yeah it's 50 messages over three 10-minute blocks
You can do !user in #bot-commands
but i know to talk
I typically add 2 weeks to the verification time for folks who try to spam the way to it
okay
got it,
for example about the programming language
i learned python
with the help of a book called "boring stuff " or sth like this
messages
really?
I forgot to mute this server when joining
it was so hard
I guess you're trying to reach to 50 count too right
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
yessss
or just learn JS
A Byte of Python
Is it a legit use case to write a python script to reach the 50 message count
what is it
JS as in JavaScript
Fine, don't
or c++
Do you want a job?
Horray, security risks!
im a student i dont need job.i just want to learn c++ because this programming language is a language of robots
or python
which books do you know to learn c++?
first of all
which programming language to learn?
Depends on what you want to do
LinkedIn Learning has some great content
I’ve been waiting for this day for a long time. The @rustlang at Microsoft summit is kicking off.
686
thank you
I learn loads on there, compared to youtube content it's broken down
I keep meaning to look into that
this helps me to learn content much more effectively
It's expensive, but nag your boss to buy it for you
YouTube's big issue is that you have so much content, a majority of it is either out dated or just poorly presented
Hmm?
why ii still cant talk?
You have to do !voiceverify in the #voice-verification channel
It's not auto granted
a
matlaaaab'
@whole bear 👋
👋
On a work call, otherwise I would have said hello with my face hole
You're good :D
Back on in a bit, getting prepped to do a delivery run
Draw lines, and divide a large shape into small shapes.You need to observe what kind of parts the whole is composed of.Various symbols are waiting for you to explore.Feature-There is no tutorial, the level itself is a tutorial.-Conciseness is maintained. -Occasional brain teasers.-A total of 49 different level areas, each level area has a uniqu...
$2.99
inside
are mt profiles public?
personal bests
i broke the 130wpm barrier for 60s recently in october
wait what
is abortian actally illigal
in what places?
@rugged root ?
wait what. i missed smth, what is happening with walmart and sexist?
@rugged root i am so confused rn
the lethal dose of menthol is one gram per kilogram of body weight
one cough drop typically contains about three to 10 milligrams
unless you have it for breakfast lunch and dinner

