#voice-chat-text-0
1 messages · Page 737 of 1
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
Youtube
what is that python based hastebin link? anyone
^ there are some helpful resources on here, how to get started etc
Always youtube 1st
nah
But what do i learn
syntax
syntax first (defining variables and built in methods like print) -> functions -> further
books, i guess
Learn pseudocode
automate the boring stuff
how to write code on paper
if you want to challenge yourself and see where you are at, create a command line game like guess the number or someething
i should be able to make a guess the number ill do that now @uncut meteor
George Takiyama said "Those who failed history ,has to repeat the subject"
can anyone check this error out, maybe @warped saffron 😅
https://github.com/prateek-git-332/testing/blob/main/error.txt
if you know functions and how to use them, try to use them for it.
alr
Build an A.I. supercomputer and try to hack into Edward Snowden's laptop
if not, i'd learn them outside of a little project then apply them after some learnin
yes
hi guy
I'll check
guys
hi person
German History, now who does it reminds me of
Kaiser Franz?
seem someone like the classical
or that one guy who can't draw?
Hi@all
yeah, not A.Hit***
Hey @warped saffron!
Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:
• If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)
• If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:
@wise glade
File "C:\Users\prateek_parashar\AppData\Local\Programs\Python\Python39\lib\site-packages\flask\templating.py", line 89, in _get_source_fast
raise TemplateNotFound(template)
jinja2.exceptions.TemplateNotFound: index.hmtl
This is what i'm looking at
!projects
index.hmtl 😂
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.
Clearly a path problem
mhm, my thoughts exactly! thank you
🥲 now works, thanks @uncut meteor
Does enyone use WSL2?
me
do you like it?
idk how is it different from WSL1, I started it from WSL2
stuff works, I guess
there's cool custom themes for terminal
if you are just asking about is it good, I can tell you a colleague of mine uses it and recommends it alot for coding setups.
#Opalmist
if you need/want windows
what about glass pane?
lextroll
I learn python

@warped saffron did you get the printer to work
for learning Python, you won't need WSL2
and it feels al little bit like fighting against windows os
yes
yes I did
@fierce summit I can count up to 3
ayyyyyyyyyyyy what did you do
@rugged root Bareskin Rug.
I beat it and threatened to sue it
Prove it 🤠 
I understand some of these words
8**10=1073741824
Zom-beh
8 Times timees 10-en times tehn then
as far as 10km
7**17 = 232 630 513 987 207
How convincing is interpretation D about Elizabeth I's approach to religion in the first 10 years of her reign (8 marks)
what's D?
What terminal emulator can you recommend?
termux
I am using sakura
for what device?
use terminal
ok
Thanks for the help.
Welcome to fish, the friendly interactive shell Type help for instructions on how to use fish
the one think I get annoyed with is that fish doesn't allow chaining commands with &&
thing*
whats zsh
give me a tldr;
Lextroll is convinced
tldr?
I'm convinced that elizabeth did the right thing
@warped saffron you kinda need to give some background info on what Ms Elizabeth did first
by executing and torturing Catholics
only then you can approach the question
a summary
yes
it could be a good/bad thing
k
dunno, i've never been to England. heard that it was a nice city
yeah
humhumhum
I've heard it's Chinese nowadays
"England was my city" as the song says
How can I run fish with the terminal?
it should be England bridge is falling down
install it and type fish
you can set a startup command in the settings
to auto put you in fish
your nose experienced a culture shock
no, no
your brain probably got used to no taste
Asymptomatic
@rancid pelican can you give me a quick rundown on semiconductors
assuming that this is you
https://en.wikipedia.org/wiki/Mohamed_M._Atalla
Mohamed M. Atalla (Arabic: محمد عطاالله; August 4, 1924 – December 30, 2009) was an Egyptian-American engineer, physical chemist, cryptographer, inventor and entrepreneur. He was a semiconductor pioneer who made important contributions to modern electronics. He is best known for inventing the MOSFET (metal–oxide–semiconductor field-effect trans...
skribbl
Thx
pics
@plush willow post a link then
for that icebox
imagine imagining
Imagine all the people
PoE
Punches over Ethernet
sorry but i am not this person
gets shot
o no
living for today! aha-ah
how sad
Imagine there's no countries
Is it possible to change the theme in fish?
yes
Imagine no debugging
Imagine a brotherhood of man
there is command to bring up a webui for it
Imaginnnnnnnnnnnne all the people
Can you send it to me?
who is snacc?
Imaginnnnnnnnnnnne no possessions
I'm your favourite snacc
I'm imagining
UwU
and that's communism
XD
@uncut meteor I did it
import random
def generate():
number = random.randint(1, 6)
a = int(input('Guess a number 1-6'))
if a == number:
print('correct!')
else:
print('incorrect')
print('the correct answer was', + number)
generate()```
does the bottom print work?
suprising, a plus there I would expect to fail
@uncut meteor
!e
print("test", + 5)
@uncut meteor :white_check_mark: Your eval job has completed with return code 0.
test 5
In Python, there are several ways to do string interpolation, including using %s's and by using the + operator to concatenate strings together. However, because some of these methods offer poor readability and require typecasting to prevent errors, you should for the most part be using a feature called format strings.
In Python 3.6 or later, we can use f-strings like this:
snake = "Pythons"
print(f"{snake} are some of the largest snakes in the world")
In earlier versions of Python or in projects where backwards compatibility is very important, use str.format() like this:
snake = "Pythons"
# With str.format() you can either use indexes
print("{0} are some of the largest snakes in the world".format(snake))
# Or keyword arguments
print("{family} are some of the largest snakes in the world".format(family=snake))
I hate duck typing
why?
No reason
It's convenient until it's not
It's nice to have. But I think I'd prefer static typing
so now what do i do @uncut meteor
use turtle to make a race, try to make the racers into classes
if you don't know how to make classes, do some research before hand
yes, thats why Python is great for solo dev, quick dev and prototyping
I see
its package for python, have a quick google around.
its like drawing using a turtle movements. (left, right, up down) etc.
so kinda like snake?
grab a little example code and run it, so you get a feel
Kinda like snake
the way you control it is with angles
but you can just do 90 degree turns each time
Realpython is a good website for articles about packages, take alook at this https://realpython.com/beginners-guide-python-turtle/
In this step-by-step tutorial, you'll learn the basics of Python programming with the help of a simple and interactive Python library called turtle. If you're a beginner to Python, then this tutorial will definitely help you on your journey as you take your first steps into the world of programming.
so wheres the exapme code in there
it's laced within the article
How do you try to start it?
wdym?
this
sorry about that
but I can't speak😫
seems right for me
read channel description here
whatever
that's a pizza
i think you can't import turtle right
why not
mike
I'm new so maybe is not right what i say
but i had trouble with another import
is this the first time you're playing skribbl
which terminal do you use
pycharm
it looks like you have to join VENV an start the script within the Terminal
how are you guys guessing these
oh then what is a terminal
why I'm I getting kicked out😭
there is a Terminal integrated
this is a terminal @manic shore
no no
dm me the word
I promise I wont tell anyone🤣
how do i find that in pycharm
basically it's a thing where you enter text prompts and your system does smth back
like command prompt in windows
is drawing easier with a touchpad
@manic shore
I guessed it yeah
I'm using a mouse and it's shit
probably just me
oh i found it @olive siren
😶
bad drawing
Join venv and start the script
thx 🙂
😁
one of my best artworks
wdym
you always not need not take turtle in a varibale
you can just use turtle.<command(pramameter)>
?
lemme share one of my program
waiit
import turtle
turtle.left(60)
turtle.forward(60)
turtle.right(120)
turtle.forward(60)
turtle.back(20)
turtle.right(120)
turtle.forward(40)
turtle.left(180)
turtle.forward(40)
turtle.right(60)
turtle.forward(20)
turtle.left(60)
turtle.forward(10)
turtle.left(90)
turtle.forward(51.9615)
turtle.right(90)
turtle.forward(15)
turtle.right(53.15)
turtle.forward(10)
turtle.right(36.87)
turtle.forward(35.9615)
turtle.right(36.87)
turtle.forward(10)
turtle.right(53.15)
turtle.forward(15)
turtle.left(180)
turtle.forward(61)
turtle.left(120)
turtle.forward(60)
turtle.left(180)
turtle.forward(60)
turtle.left(120)
turtle.forward(30)
turtle.right(120)
turtle.forward(30)
turtle.left(120)
turtle.forward(60)
turtle.left(180)
turtle.forward(60)
turtle.left(120)
turtle.forward(20)
turtle.left(60)
turtle.forward(60)
turtle.right(120)
turtle.forward(60)
turtle.back(20)
turtle.right(120)
turtle.forward(40)
turtle.left(180)
turtle.forward(40)
turtle.right(60)
turtle.forward(20)
turtle.left(60)
turtle.forward(10)
turtle.left(65)
turtle.forward(60)
turtle.left(180)
turtle.forward(30)
turtle.right(120)
turtle.forward(80)
turtle.Screen().exitonclick()
look
at this one
i just imported turtle
and exectued it
you guys are all python developers?
you need not always take a variable for turtle
learner
learner
any INDIANS??
Nativ American or India Indians?
India indians
ahoy mate
why does python hate me so much
oh ok
File "C:/Users/Nathan/PycharmProjects/Maze/turtle.py", line 1, in <module>
import turtle
File "C:\Users\Nathan\PycharmProjects\Maze\turtle.py", line 2, in <module>
turtle.left(60)
AttributeError: partially initialized module 'turtle' has no attribute 'left' (most likely due to a circular import)
justa min
sinc
Your script is outside your venv
?
@manic shore mate just change your file name
?
OHHH
lmao
put something differtn
which it thinks is the turtle module
and then try
ooohhh
yes
how do you even draw that
Wait for it
how
big brains 😂
I know this
does it work?
but I don't know the word
yes lol
import turtle
colors = ['red', 'purple', 'blue', 'green', 'orange', 'yellow']
t = turtle.Pen()
turtle.bgcolor('black')
for x in range(360):
t.pencolor(colors[x%6])
t.width(x/100 + 1)
t.forward(x)
t.left(59)```
run this one

hey I guessed it😎
the best thing i have every done
did expect it
oh F i am not even in the game
...wow
whats your alias in the gaame?
not in the game XD
XD
gnome is like a small dwarf thing
a creature
Oh got it
from western mythology
all americans here?
oh nice
bye
😢
bye
its almost 2 am
ok goodnight
gn
😭
Sleep guys
maybe
Addition Pyramid
^
is the same
11^0
11^1
11^2
11^3
and so on
ok
And what is the question?
to print it
like that?
i have seen it , they are using combinations , i was thinking of doing it without that
are you there
?
oh sorry i was coding , got alerted with a ping
ymm
i am doing ti in java
but yea the same thing
i was tinking of doing it by converting the whole thing to a string
and then dealing with astring
one string output per line?
umm yes
just replacing the string
but then i was again thinking of doing the same thing with a array
try it with a for loop with range(0, n)
umm , yea but the thing is
i have problem with printing the nested one
nvm
i code in places
python as well as java
@olive siren its 2:14am now , i think i should head to bed
cya
gn8
Can i get some help in Code -help 0 please
!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.pydis.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.
py -3.6 -m pip install pyaudio or whatever the library is called
could you guys explain the use of
pass, break, continue etc..
def stuff():
What is the best code editors?
!e ```py
def add(a, b):
c = a + b
return c
return_val = add(2, 5)
print(return_val)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
7
It's entirely preference. Some people prefer PyCharm, some VisualStudio Code, others Sublime, Vim, Atom, tons. If you're just starting out, I suggest either Thonny or Mu-Editor. We've actually got a big ol' list of suggest editors:
!tools
The Tools page on our website contains a couple of the most popular tools for programming in Python.
def add(a, b):
c = a + b
print(c)
add(2, 5) -> 7
@rugged root thx
!e ```py
from keyword import kwlist
print(kwlist)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
['False', 'None', 'True', '__peg_parser__', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
Hello there
hello
hello 👋
I'm new using python
same!
So what should I pay attention to when i start to code @rugged root
In need, I'm here because I'm looking for help
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
hey, you're currently chatting in the text channel for the voice chat, if you just want to get help there is a system for claiming a entire channel for yourself here, you can read about it here: #❓|how-to-get-help
you could also join General-VC-0 and we could answer your questions in voice!
@dataclass
class SomeObject:
a: int
b: str
c: bool = False
class SomeObject:
def __init__(
self,
a: int,
b: str,
c: bool = False
) -> None:
self.a = a
self.b = b
self.c = c
next im gonna make it generate mazes then have an ai solve them
!e ```python
import timeit
def append():
my_list = list(range(0,1000))
my_list.append(list(range(1001,2000)))
def add():
my_list = list(range(0,1000))
my_list += list(range(1001,2000))
print(timeit.timeit(append, number = 10000))
print(timeit.timeit(add, number = 10000))```
@amber raptor :white_check_mark: Your eval job has completed with return code 0.
001 | 0.738728066906333
002 | 0.7784571689553559
!e ```python
import timeit
def append():
my_list = list(range(0,100000))
my_list.append(list(range(100001,900001)))
def add():
my_list = list(range(0,100000))
my_list += list(range(100001,900001))
print(timeit.timeit(append, number = 10000))
print(timeit.timeit(add, number = 10000))```
@amber raptor :warning: Your eval job timed out or ran out of memory.
[No output]
!rule 6
6. No spamming or unapproved advertising, including requests for paid work. Open-source projects can be shared with others in #python-general and code reviews can be asked for in a help channel.
4. This is an English-speaking server, so please speak English to the best of your ability.
🔴🎵 Subscribe: http://bit.ly/SubscribeAstrix
Buy: http://btprt.dj/1pm33DA
Buy CD: http://www.psyshop.com/shop/CDs/hom/hom1cd092.html
Here is track number 2 from my 4th album "He.art"
Release Note:
Astrix is a unique phenomenon in the trance world, a leading DJ & Producer, who came from the underground psychedelic scene, performing in the biggest...
SoundCloud
https://soundcloud.com/salliandy/darkpsy-forest-tripstep-set
Facebook
ॐSalliandyॐ
https://www.facebook.com/salliandy/
Twitter
ॐSalliandyॐ
https://twitter.com/Salliandy
Time - Title List:
00:00:00 - 00:01:26 Delic Project - Robotic Mission
00:01:26 - 00:08:40 Muscaria - Custodes Noctis
00:08:40 - 00:14:55 DoHm - KUDA
00:14:55 - ...
result = '\n'.join(''.join(mylist[x:x+90]) for x in range(0, len(mylist), 90))```
result=''.join([chr(10)]+mylist[x:x+90]for x in range(0,len(mylist),90))[1:]
One join.
Provided to YouTube by dig dis! c/o Music Mail Tonträger GmbH
Gehirngeschluckte Atemwege · Pressterror
Quarantine of Drrrrrr
℗ Suizidcore Records
Released on: 2020-11-13
Music Publisher: Suizidcore Records
Auto-generated by YouTube.
CRO MAG BOT. Man | Machine | Music.
=================================
Made for Oscilloscope viewing! The sounds create the graphics!
Play through your own oscilloscope in XY mode, and you'll see the same visuals.
FREE HD downloads available for all tracks.
Get all the HD wav files here: http://bit.ly/FreeOscilloscopeMusic
--...
title: three signs of a bad man
artist: the olllam
char_grid = '''xxx\nxxx\nxxx\nxxx'''
grid = grid.replace('\n', '')
cell_list = #for every char in grid, make dict(x=, y=, char=)
new_list = #for every dict in cell_list, get char
new_char_grid = #for every 3 chars in new list, make \n
!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.pydis.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.
for ch in DemoMap['map']:
Root.update()
Cell[c] = dict(x=wCounter, y=hCounter, gfc=f'{ch}')#cells are given an x,y and graphic
CellList.append(Cell[ch])```
!e ```py
a = (('.' * 90) + '\n') * 40
print(a)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
001 | ..........................................................................................
002 | ..........................................................................................
003 | ..........................................................................................
004 | ..........................................................................................
005 | ..........................................................................................
006 | ..........................................................................................
007 | ..........................................................................................
008 | ..........................................................................................
009 | ..........................................................................................
010 | ..........................................................................................
011 | ........................
... (truncated - too long, too many lines)
Full output: https://paste.pythondiscord.com/odikatucey.txt
recursion
!e ```py
def recurse_len(l):
if len(l) < 1:
return 0
return recurse_len(l[1:]) + 1
print(recurse_len([1,2,3,4]))
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
4
!e ```py
l = [1,2,3,4]
print(l[1:])
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
[2, 3, 4]
Or
!e ```py
l = [1,2,3,4,5,6,7,8]
print(l[1:4])
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
[2, 3, 4]
Can i ask something?
The : (cutting)
How is it useful
def add(a, b):
c = a + b
return c
add(2, 3) # this is will assume the value of `c` from the function
k imma obfuscate the quick sort
Yells in precompiled code
aw
:p
Honey Wheres My Compiler
thanks all, see you next time!
!e ```py
#a basic quick sort algorithm 2: Obfuscated
quick_sort=lambda *s:((len(s)and len(len(s)==1 and(isinstance(s[0],list)and s[0])or s))<=1)and s or[(pivot:=(s:=list(s)).pop()),(items_greater:=(items_lower:=[])),[(item>pivot)and items_greater.append(item)or items_lower.append(item) for item in s],1][-1]and(quick_sort(items_lower)+[pivot]+quick_sort(items_greater))
print(quick_sort(5,2,5,6,7,4,3,1,4,2,3,6,8,7,9,0,8,6,7,5,4,3))
@past pawn :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 4, in <module>
003 | File "<string>", line 2, in <lambda>
004 | File "<string>", line 2, in <lambda>
005 | TypeError: can only concatenate tuple (not "list") to tuple
where's these tuples coming from?
@faint ermine sorry for @ u bc i cant talk but do you know a good free bot hosting
I don't host bot externally anymore. I just keep my laptop plugged in as much as possible
it works...
lol ye ik but i use js and i have to install many npm i
and i dont feel like doing that
?
!e ```py
def dumgen():
yield 1
yield 2
yield 3
d = dumgen()
for e in d:
print(e)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
001 | 1
002 | 2
003 | 3
i cant tell from that image
@ me in response. but does anyone happen to know if chrome os can download and run mobaxterm?
Im talking about the headers, should they have c bodys or no?
The actual code doesn't matter. Basically how should i handle a second c file in main
Or is this too abstract
yeah, probably not recommended, but what I would do is make a file called install, then make it open all those files and write their contents to them, so that you can just move the install file, and click it, and that whole structure will appear and be ready
headers? idk I don't C
Nono
That's not the problem
There is no real problem. See i am just asking how should i go about structuring this in main.c
how do i connect to it
Should i include the other c file or just work with .h
coding like this make my eyes go brrrrr
okay I somehow managed to replace the background 'spaces' with random text
I borke command window hahahaha
omg bruh fix yo color
my eyes
why is the syntax on line 11 wrong if the line 6 syntax is fine
You misspelled client
well i did but that didn make a difference
You don't have quotes around "-"
If message.channel.startswith(-) is wrong
There needs to be quotes around it
you missing a )
I am a dumbo
Anti-ni hao
print('...'.format('...'))
please help
define label
thank you
The playlist thumbnail looks like this:
oh the name changed
hello! @past pebble
how is your day so far?
not as well as id like it to be
i blew off some things i should have done
im sure you will figure it out eventually
if you stick to it that is
even if i did get the voice verification my mic would be hell to listen to
Hello @severe pulsar
hey
WHAT'S UP!
awesome game
To practice Elixir and the Phoenix framework, I created a competitive game for programmers. I used Phoenix LiveView for all interactions and no javascript frameworks!
Code: https://github.com/benawad/stripcode
#benawad #stripcode
Checkout my side projects:
If you're into cooking: https://www.mysaffronapp.com/
--...
Lemme see
hadeez is using phoenix liveview for scalable websockets
Phoenix is a web framework for the Elixir programming language that gives you peace of mind from development to production
really cool framework hadeez!
Me too Hadeez
changes the title of the video based on the number of views
https://www.youtube.com/watch?v=KzLBg-fPmpM
"
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.
Do you know if there is a channel to get help with pyautogui
No error msgs
It just spam clicks for some reason
It is odd
Probably gonna relaunch
Indian briyani masala is enough!
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.pydis.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.
!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.
!resources @hybrid berry Check out "Automate the Boring Stuff" and/or "A Byte of Python"
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
the 6th track of the 2004 album 'Barenaked for the Holidays' by the Barenaked Ladies
what is that?
A song that I forgot existed and I love it
https://www.rockpapershotgun.com/2018/03/01/how-to-set-up-three-monitors-for-ultrawide-gaming-guide/
Curved monitors like the Samsung CHG90, Acer Predator Z35p and AOC AG352UCG are all well and good for making you feel more immersed in a game, what with those ultrawide edges supposedly wrapping themselves closer round your eyeballs like some kind of pixelated caress on your peripheral vision, but let’s face it. Curved monitors are hideously […]
sepia-ish
Python datetimes made easy
I thought the website looked similar to Poetry's but apparently, they're built by the same person
Pretty neat
I have so much to work on for my site, and of all the things I decided to be absorbed in, it just had to be configuring Nix
Did it really have to be?
Or was this a "no seriously, it has to. I promise. This isn't just because I read about it and I love it"
The latter, but I somehow managed to retroactively justify it
e.g. cached CI builds that I can use locally
Which is important for Haskell projects with > 20 dependencies
Yep
Instead of Cabal doing the downloads, builds, and per-project source caching, Nix wraps around that and stores it globally
In other news, I have more Nix than PureScript in my repo
Dhall is a configuration language
Maintainable configuration files
resident FP nerd btw
yikes my dude
sorry lol
just did an audio test and it sounds pretty terrible with that loud screech
Apart from the types, you also have functions and stuff
Maintainable configuration files
Szalejot
gotta go buy some milk, I'll be back in 15
I guess FP folks like niche things for the sake of fulfilling the "purely functional" thing
it goes with their "FP personality"
That's why I'm willing to give it a look
Since you know I've got a hunger weird functional things
ooh we have 2 general vcs now?
Big agree on the FP evangelism, I feel like one way or another you're bound to encounter one of those types of individuals; in defense of niche FP tooling, when they're used as tools in the appropriate context, they're serving their purpose in full
Yeah, I figured it was time. Still playing around with channel sizes and the like
Gotta love Haskell's kingdom of compiler extensions
At the very least, they can be enabled through the build tool
how would you make a program that automatically organizes words in alphabetic order?
There's a .sort() method on strings and lists and there's also the sorted() built-in function
ooh
kinky
they are retooled blacks w/ 205g0 in a polaris w/ brass plate
Wait, brass?
yes and polaris is an alu case
I say that instead of cool or neat sometimes
Old habit from high school
shouldve guessed, eh?
I think it was from the movie Blazing Saddles
Wish I had time to read. Or the willpower
Most days when I get home I just want to game
I also like mythology and hp lovecraft
God Lovecraft is difficult to get through
it came when I played bloodborne and dark souls...

Bloodborne's setting is so much better than Dark Souls. That's my opinion at least
No no, I mean the setting specifically
- Chalice dungeons show how good level designers are at their job (though Heditaka designed all of the levels himself.)
Not all.
ew bloodtinge farming
Exactly
i wanted to break my ps4 when I tried to farm that crap
I thought about making a custom keyboard @vivid palm
until I saw how long it wouldve taken.
@trail shore office fan?
And then I got really into these switches; though I wouldve preffered logitech's mx keys advanced.
yess, and you?
yeah there's definitely a barrier of entry to get over... i've amassed a lot of supplies now because of this lol and have a few unfinished builds still
also because of the money.
I could afford one, but I would prefer to save it for other reasons.
yup not a cheap hobby
yup mee too, its my third time lmao
wow
@trail shore Dinner Party was the best
oh sure it was lol
also the time when stanley yelled ryan
pycharm has a html interpreter?
take your daughter to workplace?
just looked over to make a new file and saw that option.
yeah exactly
this song is amazing: https://www.youtube.com/watch?v=7RzA_Oomra8&list=PLKzg0DeoAjD-cGZOEspgvDGpFal8S2aS-&index=27&ab_channel=dudewhereismyspoon
Ludwig's second battle theme from the Bloodborne DLC, The Old Hunters.
Composer: Nobuyoshi Suzuki
©2015 Sony Computer Entertainment Inc. All Rights Reserved.
@trail shore and the time when Ryan took the place in corporate and then came back to Scranton, and when he started shouting to others it was shown that Stanley was actually thinking that if Ryan is at such high position with authority, he sure could marry his daughter, all of this with just one expression
buy me a covfefe
lol, his daughter who studies in catholic girls school? whom michael noticed. XD
so I had to make a rock-paper-scissor game, for my assignment
yeah that, who else was there, lol?
🔥
I have to go make more coffee before my work meeting. See you all!
made this using my python skill 
def greetingsMap(winner):
return{
'player1': "Congratulations Player1 Wins",
'player2': "Congratulations Player2 Wins",
'draw' : "That was a draw",
'foul' : "Foul Play Made",
}.get(winner, "Foul play made.")
def resultMap(play):
return{
'pr' : 'player1',
'rp' : 'player2',
'sp' : 'player1',
'ps' : 'player2',
'rs' : 'player1',
'sr' : 'player2',
'ss' : 'draw',
'pp' : 'draw',
'rr' : 'draw',
}.get(play, "foul")
def RockPaperScisor():
print("Enter 'r' for rock, 's' for scisor, 'p' for paper!")
while True:
p1 = input("Player1 Move: ")
p2 = input("Player2 Move: ")
print(greetingsMap(resultMap(p1+p2)))
new_game = input("Want to start a new game,'y or n':")
if new_game == 'n':
break
RockPaperScisor()
this part in this code, can I put all draw plays in one?
seems like all u preoccupied with some serious stuff before i got here
so you guys are not even looking in this chat
ok
by now my bike tyre looks like this
damm millennials, always speeding on the road
In consumer computer products, a beige box is a standard personal computer (PC). It has come to be used as a term of derision implying conservative or dated aesthetics and unremarkable specifications.The term is ultimately derived from the style of many early personal computers and dedicated word processors, which were usually beige or similar c...
👆 where's mouse? no mouse in that time?
huh
oh yeah
funniest video I've seen in a while on youtube
just had an idea
perhaps Hemlock's angry cat pillow ate it
was it Steve Jobs, who thought of mouse very first time?
nope
Douglas Engelbart
the first OS to use a GUI with windows etc, the Xerox Alto, used a mouse
is mouse cursor also moved in screens through programming? just programming alone?
they must have made some new electronics for it?
new protocols etc
whatever that's called
bro!!! you knew this or googled it? cuz i am lowkey impressed
Engelbert Humperdinck, born Arnold George Dorsey on 2 May 1936, is an English pop singer. Humperdinck has been described as "one of the finest middle-of-the-road balladeers around". His singles "Release Me" and "The Last Waltz" both topped the UK music charts in 1967, and sold more than a million copies each. In North America, he also had chart ...
I looked it up a few days ago
when I was interested
and you remembered? now that's impressive
thx lol
i havent seen one in my life
Wow... It has been a really long time since I heard that sound the last time... perhaps 5 years. I just can't resist the temptation of record it :-)
this is pretty much what it sounds like
that sound reminds me of my old CPU 🙂
oh yeah, not the last one, it was years ago.
how does that even happen?
anyone here who ever played road rash?
Power switching
what does all these mean? when downloading mp3
Older CPUs utilized more power and were larger so it was easier to hear the voltage changing
higher number, bigger file size
Plus they were slower
i did tried all of them, in layman's language it affects sound quality of audio
how does bit rate, relate to sound?
i think something to do with fourier transform
oh, right
sampling
higher sampling, lower aliasing
better quality
less noise
possible, one can even think of as a video framerate i guess
nyquist sampling
cuz 60fps is better than 20
rule 👆
you read about it?
nyquist formula gives us the minimum sampling rate in order to capture the best quality
also, I started watching Silicon Valley series, and its based on file compression thing, they keep doing
I'm only on season 1 right now
ooh that show is really good
that's intresting, cuz i am really gonna read about it. it seems cool enough
yeah, the real important was the "jerk algorithm"
how many seasons are there?
trueee
i mean then you're probably better off watching a youtube tech tutorial
if you really want implementation details and tech explanations
"mean jerk time" 🤣
lol
The code that caused this warning is on line 389 of the file C:\python39\lib\site-packages\wikipedia\wikipedia.py. To get rid of this warning, pass the additional argument 'features="lxml"' to the BeautifulSoup constructor.
@Client.command()
async def search(ctx, amount : str, features = "lxml"):
channel = Client.get_channel(801135115257380###)
result = wk.summary(amount)
await ctx.send(result)
this is the list
hey ppl
i saw somthing today in my terminal, a bit strange
what exactly??
this is my program , it searchs for a number then converts it to a character and then check that if it is equal the iinput string's first character , if it matches then it moves on to the next one , if it doesent , itjust searches for another random number but look at the image , if i am right the 5th line should be a space , but when i try to select the space it does nothing , so that place is just blank , how could the interpretor print a line without a random number ?
i can give you the code
import random
import time
s = input("Enter String : ")
time.sleep(5)
os = ""
x = 0
i = 0
while s != os:
c = chr(random.randint(0, 122))
if c == s[i]:
os += str(c)
i += 1
else:
print(os + c)
time.sleep(0)
x += 1
print(f"The final result after random searching was {os}")
print(f"The program has run {str(x)} times")
anyyoneeeeee ?
anyone know why line 43 is wrong?
what makes you think it's wrong?
try reloading vscode, it looks fine to me
Check line 42
Check line 42
oh
cant find it 😭
you need to close the parentheses
o
Look at ()
sorry rabbit
lol
but i mean, its probably faster for him, and i think he knows why he should close the parenthesis
This is why powershell ‘ is great
Anyone know where I can get lego information about EV3 Basic
@plush willow I'd just ask in here #pyweek-game-jam
nice
i got a lil question. what would the try and except do in here?
so if the
try:
is wrong, will it ask the try again?
if there is an error thrown in the try block --> the code inside the except will run
so if they dont enter an int in the try
how do i do it so after the try part fails, it shows the expect part, then goes back to try
We're a large, friendly community focused around the Python programming language. Our community is open to those who wish to learn the language, as well as those looking to help others.
(to give the user another try)
i would use loops
Good, you?
while index_to_edit != int(index_to_edit):
code....
am good
check the isinstance function @shut goblet
Be careful with that, because if you happen to skip over that index, you're going to be stuck in an infinite loop
it allows type checking
oh
u got any links that icould check out?
hello can anybody help me wht all can i do here
pls help
or else am clue less
am just hearing guys
i cant talk
cause am new here
once you meet the criteria you can join with your mic. there should be some info here #voice-verification
3 days on the server and 50+ msgs
why dosent the /n change colour to show its made for a new line and not the text
yea i appreciate u helping me can u help me more if needed
Its most likely a ide thing, Pycharm does that highlighting style for me.
are you using vsCode?
Any other vscoders in the chat?
u see any errors in the /n ?
nope i use idle

🥳

🥧Charm
lmao
||🥧on||
||🥧off||
guys the topic you guys r talking makes me so impatient to talk abt
cause i have decent knowledge n would luv to get knowledge form u guys
.Net Core is usage is also climbing
im also a dinosaur 
Microsoft work on CLR speed has come long way.
@dense notch Probably better to talk in here so that others can chime in if they have information. My main thing is that you should never hesitate to ask questions in this server. There's no such thing is a bad question. Everyone started somewhere, everyone was confused at one point
yea offcorse i'l talk here only
!e
try:
oof = 50 / 0
except ZeroDivisionError:
print("you can't do that!")
@uncut meteor :white_check_mark: Your eval job has completed with return code 0.
you can't do that!


