#voice-chat-text-1
1 messages ยท Page 86 of 1
i only have 3 opened apps : terminal emulator, browser, email client
hmm i have never had one
that is what you can run
If you don't need lots of computing power, it's a great way to go.
well im a "Gamer" so i kinda need it lol
but i could try a one
i heard about mutt and mutt wizard (easy to configure) and aerc (tried it, failed the configuration)
never of thunderbird
I'm eyeing up the M1 macbooks ๐
XD i play vim
what dose M1 mean for the macbooks
lol you have 10k hours on vim
actually probably more XD
since i even did my file management in vim for a time
now i have ranger
(vim-like shortcuts)
(plus preview of files, like code, html, pdf, etc in the terminal)
Kids - FOrTnite
Oskar - hmm yes, VIM POWER
(my awsome terminal emulator also supports displaying images [png, gif, svg, etc...])
Arm CPUs (instead of Intel)
it seems cool, i think that it is better to wait for the moment
not ARM
alright I am gonna go stream cya guys โค๏ธ
at least like one year
See ya ๐
i think that ARM are the future
bye
Nah, ARM, as opposed to x86-64
but for the moment it is quite new for the macOS
ok
well, with ARM, we could get 2 times more. cores for almost the same price
plus it is quicker (in some ways)
i think i will wait for the M2
^_^
Do either of you watch Baumgartner Restoration? ๐
Same thing. You don't appreciate how good some paintings are until they're restored.
i am so proud i finished to implement the dijkstra algorithm
soooo happy
it makes now one week that i stuck at it
and i saw the heap implementation
(this is awsome)
@true valley : for the moment, 3d printing is mostly for prototyping
at least for "popular" 3d printing
Yeah, I don't know much about discord.py either, sorry
@misty sinew have you tried opening a help channel?
@misty sinew if you're not getting many replies, it can help to include more information in your question.
E.g.
- what did you expect to happen and what happened instead
- did you get any error messages
I should be learning that for PyWeek ๐
In this Pygame for beginners video, we'll be making a game in about 90 minutes. I'm going to cover a lot of stuff about Pygame in this video, including sound effects, images, moving objects, collision, most of the fundamental things you need to make a basic game. We'll be making a simple 2 player game to showcase how everything works in Pygame i...
Hey @ocean remnant ๐
Ah, you weren't lying ๐
I feel like that's a bad idea.
Yeah, I'm never really sure about this kind of thing.
@stone flume, did you try out Amethyst?
Pretty cool right?
NP ๐
I can't go back to floating windows now.
It's similar to i3wm on linux @true valley
I'll show you...
Can you see?
Yeah, I have an 8px margin around the windows
Here are the shortcuts I settled on:
I tried reading the Scrum guide and found it almost incomprehensible.
So many buzzwords and jargon.
Back in a bit ๐
If it talks agile, itโs wrong.
if it talks SAFe, run
mRNA
Java do you know what wire on a car door Handel means
Because I just saw something and it said itโs a bad sign but didnโt say what it was
No America I just looked it up and it said kidnappers put wire on your car door handle to distract you for a bit
ยฏ_(ใ)_/ยฏ
Idk itโs scary itโs real which is crazy
Weird, did you see those three people join and leave code-help-0 at the same time?
Yeah
Sounds like an urban legend tbh ๐
Nah, not heard of that.
@warm tendon one more round of binary search before I sign off for the night?
Learn algorithms together on binarysearch. Create a room, invite your friends, and race to finish the problem.
Sorry for taking a while, I messed it up the first time 
๐
no social life -> no social anxiety
And that's how you become a hermit ๐
Yeah itโs just cause โfriendsโ really fucked with me and werenโt good friends. And itโs created this doubt about everything else
Yeah, but at the same time, monitoring your thoughts too closely is classic OCD
Really, but I donโt need to do tasks and things in certain orders. I thought thatโs what ocd was
If you need clinically-tested help, look up the "overcoming" books.
@hearty heath ahhhhhhh
The tables have turned ๐
"real life" ;-;
@hearty heath fix my code ๐ฅบ
I don't read other people's code ๐
๐
Yeah, just getting out of the house can make all the difference tbh ๐
2am here ๐
But don't follow my example.
Lol what country are you in? If you donโt mind me asking.
ookay
UK
( ๐คฎ )
Lol
I just donโt like toxic British gamers they are annoying but everyone else they are chill
!paste @snow sable
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.
I didn't know we had a reputation ๐
Lmao only those people the rest of you are nice and you talk cool
chewsday
Oi! U want sum bruv?
chewsday
Ur mum
move the 'log in' part out of registeredUsersMenu to its own function, and call this new function before you call registeredUsersMenu
ใฐ๏ธ
bye lx ๐
Cya ๐
ใฐ๏ธ
!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.
Learn algorithms together on binarysearch. Create a room, invite your friends, and race to finish the problem.
class Ship:
def __init__(self, image, x, y, health=100, ):
self.x = x
self.y = y
self.health = health
self.image = os.path.join(f'Game_assets', '{image}.png')
self.laser_img = None
self.lasers = []
def draw(self, window,image,x,y):
window.blit(image, (x, y))
def get_width(self):
return self.image.get_width()
def get_height(self):
return self.image.get_width()
class Player(Ship):
def __init__(self, x, y, health=100):
super().__init__(x, y, health=100)
self.image = pygame.image.load(os.path.join('Game_assets', 'spaceship.png'))
self.mask = pygame.mask.from_surface(self.image)
self.laser_img = pygame.image_load((os.path.join('Game_assets', 'green_laser.png')))
self.health = health
class Enemy(Ship):
type = {
'type1': (enemy, green_laser),
'type2': (enemy2, blue_lazer)
}
def __init__(self, x, y, type, health=100):
super().__init__( x, y, health)
self.image, self.laser_img = self.type[type]
self.mask = pygame.mask.from_surface(self.image)
def move(velocity):
enemy.y += velocity
enemy = Enemy(0,0,'type1',health=100)
no homo?
hiiii
@shell nacelle Hello
moves ?
just finishing up will upload a vid soon
10 to 7 ? fr ?
i do get like 2 - 7 or its 11 - 11
OLD
hehehe
NOPE
NOPE
stats
how many words said in a voice chat
never happened with me
gym helps with the sleep
๐
i like celebrity too
๐
can i ask a pygame question real quick ?
how do u draw a arc with width in pygame
my clock is done
just need to make it "thicc-er"
anyone ?
#game-development would know best
Cool!
I think I still have an image of my old Minecraft world
I'll try to find it lol
A picture lol
7k hrs on battlefield
It's on an old Minecraft Pocket Edition version, pre-Bedrock I think
June 3, 2012 is when I got Minecraft
It's really old
au know anyone way to make the arc a bit thick
Hmm, what's your current code?
currently im doing
for i in range(10):
pygame.gfxdraw.arc(self.window.surface, self.origin[0], self.origin[1],
self.base_length + self.s_arm_length - i, -90,
s_arm_angle,
self.s_arm_color)
i get this
7k hrs on battlefield
@mild flume DMs, if you're curious
I am yeah
I had a peaceful survival world
That I lost on a Dropbox account
That was pre-hunger on Pocket Edition
So I had chests upon chests of wheat
Pocket Edition used to be so bad before all of the cross platform integration/bedrock
Remember the nether reactors?
lmao I found a dupe glitch and I just made a bunch of nether reactors and my world was filled with the boxes they make lol.
I simplified my Emacs configuration a bit
LSP consumes too much memory, especially on bigger projects
Suffering from caffeine withdrawal... 
Yeah I was the same. Straight As in science and maths, and fails in everything else ๐
Maths at university becomes more about constructing proofs and models.
Ah, let me tell you about equivalence relations....
Well, purple doesn't correspond to a single wavelength of light, but colours are a perceptual phenomenon.
Brown too I believe
Purple is what you perceive when the red, blue, and green rods in your eyes are stimulated in certain proportions.
Ah, linguistic determinism
@hushed sky background noise...
arghhhh
when can python start throwing a runtime error when you set a function default var to a mutable type
the bugs it causes are so damn subtle sometimes.....
runtime error probably isn't because of that specifically
did you make it a dict or set?
@hushed sky
no custom class
Also I would just like to say for the record I didn't mean for that to sound like I was making fun of the language if it did sound like that. Just curious about it!
#voice-chat-text-0 cancelled? ๐ฆ
with an attrs attribute using ```python
@attr.s
def class A:
x : Custom = attr.ib(default=Custom())
vs factory=Custom
and our datastructure is super nested, its hard to find when it happens
I just built a really cool query builder for Python, library in its early stages, does anyone want to check it out and let me know what they think?
It depends on the teachers
I'm not allowed to chat lol
with voice
fox
hello
Could you imagine ๐
!voice
Voice verification
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Haven't send enough messages yet ๐ฆ
trying not to, genuinely trying to get feedback on a thing i made that i think is cool
Did you see this? ๐ https://www.youtube.com/watch?v=ar3MFiF2stg
In this new footage we see what was inside the Tiffany's gift box that Melania Trump gave to Michelle Obama at Donald Trump's inauguration. We also find out what Barack Obama did with the gift when he took it away...
SUBSCRIBE: https://www.youtube.com/channel/UCklLTAOBRj4DdxTazOzP_lA
If you liked the video, please click LIKE, and SUBSCRIBE fo...
2011 wasn't much better
Her face looks a lot like her husband's face
Was it the querry builder?
yeah
cool!
I made it bc hard coding SQL queries in Python was horrible, so I made a json file and then I build the query from that
my name is Boat
and wen im tired
(but shipping werk
is still required)
then all I want
is lyttle snooze
i turn to side
i blok the Sooz
6024
20500
Silly question but if I have an init python file it will be run on startup right?
__init__
It's the module that's loaded when you import a folder/package
you can put the name of the file in `'s
this kugel is verra salty
The file won't run on it's own
i love kugel
ok thanks!
potato kugel is such a classic
and its passover soon, which is the perfect time to eat it!
same for chicken soup and matzah balls
lol yup
yeah, sunday, right?
oh yeah
i will be... drinking wine
starts in evening ofc
yup, thanks lunar calendar
heeheheheh
@raven orbit hey, who says I won't be drinking 4 cups of wine a night for 8 days!? dont tell me what to do!
I was being hopeful

I swear now these teachers are rushing people to finish tests now...
i live in new york, can confirm
my favorite town name by far is Florida, NY
such a misnomer
hi guys
really cool a little stressful on eyes
i am a begineer so i didnt understand what u said
dont get this wrong but ur name sounds INDIAN
u see little dots in this ?
cuz i am LOL
yeah
same bro
Is there such thing as truly random? ๐ค
yes
no
I disagree ๐
i agree to ur disagree
ok ยฏ_(ใ)_/ยฏ
lo;l schrodinger
ยฏ_(ใ)_/ยฏ
do you wanna discuss lol
do txt files have limits?
Nah ๐
lol ok
Just wanted to state my position 
while loop
Read Edwin Jaynes
That's a worm?!
Sasser is a computer worm that affects computers running vulnerable versions of the Microsoft operating systems Windows XP and Windows 2000. Sasser spreads by exploiting the system through a vulnerable port. Thus it is particularly virulent in that it can spread without user intervention, but it is also easily stopped by a properly configured f...
I realise now it was a mistake to go cold-turkey on caffeine

๐
@hearty heath but once it's over it's over!
Excuse me while I curl up in a ball on the floor ๐
nice
@peak frigate
I'll let you know
kekekeke
@fair heart here
@fair heart hiya
@acoustic remnant
Created in January 1971 by a team of logic architects and silicon engineersโFederico Faggin, Marcian (Ted) Hoff, Stanley Mazor, and Masatoshi Shimaโfor Japanese calculator manufacturer Busicom, the centerpiece of the four-chip set was the 4004, initially described as a 4-bit microprogrammable CPU.
@acoustic remnant]
@fair heart well to bad
twoo
@peak frigate Yeah we've switched
toow
no "you*oer
:D
In 1964, IBM introduced its IBM System/360 computer architecture that was used in a series of computers capable of running the same programs with different speed and performance.[29] This was significant at a time when most electronic computers were incompatible with one another, even those made by the same manufacturer. To facilitate this improvement, IBM used the concept of a microprogram (often called "microcode"), which still sees widespread usage in modern CPUs.[30] The System/360 architecture was so popular that it dominated the mainframe computer market for decades and left a legacy that is still continued by similar modern computers like the IBM zSeries.[31][32] In 1965, Digital Equipment Corporation (DEC) introduced another influential computer aimed at the scientific and research markets, the PDP-8.[33]
I'll be right back, grabbing snacks
Thank you for this Kemal I can use this on my friends
We're houseplants :D
A thrice-weekly webcomic written and illustrated by Reza Farazmand. New comics every Monday, Wednesday, and Friday.
make a mask off cover pls
old pic
a what?
mask off
the hell is that
Itunes: https://itunes.apple.com/us/album/instrumental/id865307861
CD Baby: http://www.cdbaby.com/cd/project8
Greg is a Gemeinhardt Artist! Check them out at http://www.gemeinhardt.com
Twitter: http://twitter.com/thePROJECTTrio
Facebook page: https://www.facebook.com/thePROJECTTrio
Buy our music on Itunes: https://itunes.apple.com/us/artist/p...
I'm not sure if the low whistle has the range for that, but I can give it a go another day @nova glade
that's weirdly cool and weirdly disturbing at the same time
On the topic- old, this is hilarious https://www.youtube.com/watch?v=V6CLumsir34
The infamous KATU Exploding Whale video has remastered!
To celebrate the 50th anniversary of the infamous beached whale incident that took place in Florence, Oregon on November 12th 1970, the Oregon Historical Society arranged for a 4K transfer of the original raw film footage from their archive. KATU has re-edited the package from the new hig...
This is a classic
Finished ig
wait you're old
lol
i thought you were like griff's age
Can't grow a beard.
I don't get IDed...
'cuz I never buy alcohol...
Erm, I thought I already told you this, sorry.
I have a hard time keeping track of who I've told what.
must be the old age
Right ๐
HEY
Yeah, I think I'm the same age as Hemlock?
and me 
I wonder who is the oldest in this server
Can someone join codehelp 0 real quick?
they would be at least 50ish
why?
If you're talking about active members, probably Ned ๐
I just needed help with something I should have just put my question in chat my bad
why is that?
150k members
and?
that's not how that works
peeled garlic
apparently largely made via Laogai
https://en.wikipedia.org/wiki/Laogai
yeah so i guess
union st
is all i see of flushing ktown
also in my mind bayside is included, but it's really not technically part of flushing? i think
the street is long,
@long gust You said storm catchers and all I can think about is some dude with a net
@mild flume it's uh... i meant those lighting rods, needed to do an urgent call rn, will be bak later
ye, i'm a bit lost in thought, pollenseason do be pain as usual
we need to sterilize all trees so we can breathe fresh air
not that it would help, oxygen is important too 
oh, wait really
i never thought of that
cutting down all forests in europe would barely make a difference
wait i really gotta look this up
not like we have that many left tbh
That's depressing to think about
on the on hand, on the other I enjoy not living in a forest
we could make sawdust musli bars out of the trees
and expand growth of algaes, doe that would probably ruin ecology
The answer will surprise you. "I Can't Believe It's Not Rice Crispies!"
Thank you to Audible for sponsoring this video! Choose 1 audiobook and 2 Audible Originals absolutely free. Visit https://www.audible.com/william or text william to 500-500.
Featuring:
@iDubbbzTV
@Allen Pan - Sufficiently Advanced
@Simone Giertz
@PeterSripol
@illymation ...
more like true classic taste
delicious woodglue
nah woodglue is for sniffin
I mean there's always the option of eating gravle Grape Nuts https://www.grapenuts.com/
im not stating that i do that on a regular basis, wait wat
@elder wraith they're talking about powershell ๐
Wait, an addict to woodglue or Grape Nuts
oh well not anymore
grape nuts with woodglue, fresh new flavor
Say goodbye to your teeth
and hi to the dentist
both
Num num num
This isn't even close to how full it's gotten before
This is around the average
crap I keep forgetting we have 2 different chat channels now
i have a pi hole
weary noice
@scarlet cedar Type out your question here and we'll see what we can do
what does e do in C ? how does it work so here in this code
#include <stdio.h>
void main(){
int i = 5;
float j = 314.15;
char cr= '$';
printf("%5i \n",i);
printf("%20.2f \n",j);
printf("%f \n",j);
printf("%.1e \n",j);
printf("%10.2e \n",j);
printf("%c \n",cr);
}
How does %10.2e work ?
c in 2021 ๐คข
Support my channel by browsing the internet with Brave; A faster and safer browser: https://brave.com/byt134
This is the output 3.14e+002
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
typedef struct Apple {
int xPos, yPos;
char *name;
} Apple;
typedef struct Snake {
int xPos, yPos;
float velX, velY;
char *name;
} Snake;
typedef struct Game {
Snake *snake;
Apple *apple;
} Game;
// ** ------------- ** //
void Update ();
void Render ();
void CleanUp (Game*);
void Initialize ();
// ** ------------- ** //
void Snake_Render ();
void Snake_Update ();
void Snake_CleanUp (Snake*);
Snake *Snake_Init (int, int, char*);
// ** ------------- ** //
int main(int argc, char *argv[]) {
Initialize();
while(true) {
Update();
Render();
} CleanUp();
return 0;
}
void CleanUp (Game *game) { if(game) { free(game); game = NULL; } }
void Snake_CleanUp (Snake *snake) { if(snake) { free(snake); snake = NULL; } }
void Snake_Render() {
}
void Snake_Update() {
}
Snake *Snake_Init(int xPos, int yPos, char *name) {
Snake *snake = (Snake*) malloc(sizeof(Snake));
snake->xPos = xPos;
snake->yPos = yPos;
snake->name = name;
return snake;
}
void Initialize() {}
void Update() {}
void Render() {}
"natural selection"
the wild, wild west
I remember once when I was a child, I had just passed through security at an American airport and was watching the X-ray monitor because it was interesting. Then a police officer walked up to me with a gun and I almost shit myself ๐
Sheesh
Hey, see #voice-verification
I think any except the bot channels.
awesome. thanks for the info
But don't spam messages! ๐
of course (:
Oh also, they can't be deleted messages
All the times I have had a question I think I've deleted them after they were answered lol
I'm not sure this is the correct channel if you are asking for help.. though I'm new here
i dont need help...
oh. sorry man
i am a psx programmer
@fair heart You're saying the UK thought the US was dependable?
that's fair I guess
What happens when the US dollar inevitably crashes
I've been hearing that it will for the longest time
What country are you in?
what do you think about the new pi cryptocurrency?
theres pi crypto?
yeah both crypto and the US dollar are pretty much faith based. though crypto has a lot less
i don't know if i should trust pi crypto
Most people here dislike crypto period
me too lol
I made a little off of it but its too risky
what is the vc discussing about ?
its not if you know technical analysis
50 non deleted chats
Okay
What are top 5 modules you would suggest a beginner to learn about?
modules for what?

Python modules
it depends on what your goals are
True
think of a project you want to do and research the best modules for that. I don't think it's a matter of learning as many modules as possible, it's meant to learn the ones you need as you go
I am learning Machine Learning but I wanna Learning something purely in python to get a better knowledge about the language
Okay, thanks
np my friend. good luck. machine learning is nuts
Yeah man. I work for a service based company which is mostly known for outsourcing
So I am getting mapped to this project for Bank of America, they want me to do python.
Occasionally people connections are shaky
that's quite an ask
I am not sure about which modules I will be working so I thought I could just get started with anything
I work for TCS
I'm starting a new job next month that outsources for banks as well
we're using Node and React though
That's amazing man
I'm really excited
These two are really in demand skills rn
I got lucky to learn them when I did. And now that I have, I can never go back
I tried learning web dev too, did a project on flask and then on django too
Fintech loves to outsource
oooh I did flask a while back. But I learned it at a begginner to programming level. it was hell
I should have just focused on one thing
my college seniors got into FAANG after getting 1-2 yrs of experience in the industry
Cooper which country u from?
mostly Amazon & Microsoft
That's the dream man
India
Amazon is recruiting alot these days
I've worked for a fortune 500 company for 5 years, only to learn I HATE giant companies
yeah
there are too much polotics, and you have way too many bosses over you all pulling you in different directions
Did they get hired by FAANG or contracted to FAANG?
I can understand man, u don't get the work satisfaction in these companies. That u will only get in start up
Cool
its called Spectrum, they are an ISP. they dragged me through the dirt the whole time
Yea, Iโve got friends in US mentioned those two had opened offices there and hiring like mad
Google I hear is ramping up contracting as well
I was mapped as An ETL developer without being asked even once
they are... microsoft's new HQ in India is massive & s3xy
My team lead was pretty mean to me, he wanted an experienced Developer but I am a fresher.
That is annoying
So he did some politics behind my back and got me removed from the project
this is why I hate large companies
Anyway now I feel that happened for better since this time Bank of America wants a python prodigy which they can groom.
Fits my profile.
go for it then
lmao
all the best
Np bro, hopefully I get into a better company till then
@craggy heart where are you looking for jobs? location wise
Cooper seems like u already love programming by first year, u can definitely make it
hope so
I have a contact obligation till November, but will only be looking for company with better package. Kinda have student debts so once I clear that I can study for GRE too.
what did you go to college for? do you think it has helped you?
Not really but college helps u get a seat at the company exam
I never went to college
thats stupid
yeah in India it's diff
This older project, they told me I will be released by 15th, then they extended till 26. Now they're asking me to stay till 31.
These things are really frustrating in big companies
i would not assume the worst ๐
Ive been toyed with for the past 5 years lol
how so?
Where r u from bro?
Central US
Was talking about mine next one
I hope its something you will enjoy
I am typing with one hand cause I'm eating. I will explain in a moment
its alright ๐
Damn Brandon, that was horrible
Man my team lead used to make me feel like a bad coder
And a stupid person too
Sorry, I shouldnโt laugh
Thatโs why I said this going south
Itโs not time to automate, itโs time for fuck you pay me
I cried
Man when will this last me talk sigh
Make sure you use right command fisher
!voiceverify
LOL why
murder is ill advised but understandable
dammmmmmn, I would be pissed
typical karen's husband
afsdkfjsdfjsdfarghhhhhhhhhhhhhhhhhhhhhhhhhhhhh
i got his mgr on the phone
confirmed he was wrong
excellent
ARGHHHHHHHHHHHHHHHH
noiceee
now ruin his life
ARHGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG
SLDFKJSDFGDDDFDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
oop
angry crai lmao
๐
!warm mina no spam for voice permissions 
warm ๐ณ
AAR R RRR RG G GH HHHH x 1000000000000000000000000000000000000000000000
ok done
omg you got bugcat
what happened

foreal, that really sucks though. Very annoying
This is the only emoji I could find


just the two
i don't have that one T_T
Hey!
hey jake
how you doing cooper?
good, u?
Pretty good my modmail bot works!
Thank you for listening
niiiice
yay ๐ฅณ
It makes channels for each report

he's calling me back
collecting myself
awesomeeee! username + discrim would be better doe
may the force to kick his ass be with you
Yes I know I just have to do a bit of string manipulation
but I didnt feel like doing it yet cause Im lazy
haha, looking good though
thanks for the advice @elder wraith
did i miss something?
Yeah well Iceman helped with a lot of it
I saw you in the code help, iceman is one of the best 
I'm honored to witness this
lmao
Iโm 18.
What advice would you give to your 18 year-old self?
That should be an off topic channel topic. "are you honored to witness"
Yeah, I cannot STAND condescending people. It is so extra, lol.
I have maybe burned a friendship for it xD
!otn s jake
โข honored-to-witness-jake
โข jakeโs-hd-eyeballs
oh shit I forgot about that
^ we talked abt this.. like yesterday lmao
Yeah I know but I was tired ๐
hopefully you got better sleep yesterday :)
It was amazing
I might just pull an all nighter just to have that same sleep thats how good it was
how old are you jake
Yes mom...
getting a cs degree teaches you how to think like an engineer. it's very difficult to learn that by self teaching
15
degree == good.
I learned nothing from mine, but it is still very important. Even better if you can succeed in that structured learning
idek about that xD
^ with good professors and mentorship, probably?
agreed.
Yeah, but you really need to pursue that.
I knew one prof that was incredibly passionate and knowledgeable. He mentored a lot of people and had industry knowledge.
But I would say classes typically do not offer this, at least not for me. Classes all ended up being: read the textbook, then receive a presentation on that same exact textbook content.
same lol
that was aviation though right?
jake is from statefarm
this was a CS prof, but my classes were aviation
I would say the only skill I really got from college is how to lead a team and meet a deadline.
agreed
school taught me that
@buoyant echo you're very quiet
@hearty heath Thanks for telling me. I look into that
Ya'll are talking a bit over my head now so Im going to head out. Thank you for listening to my story and sharing advice, @elder wraith and @finite urchin
TIM?
THERES TECH WITH TIM HERE?
O_O
or is it just an oridinary tim
no offence
theres a lotts people here... O_O


1. Follow the Discord Community Guidelines and Terms Of Service.
?
what chains?
...
could you be more specific?
mikรค on chain?
kyllรค puhut, vittu
I think PythoNub is trying to hit his 50 messages to vc
lelelelelel
i already am
you guys are playing too much among us
always sus of people
how do you even create a system like that-
its imperssive
Among us is boring lol
yeehhh
does a bot count the amount of messages you send?
this is why i love python-
endless possibilities-
amazing.
Hi
Yoo
Helloo!
hello
hi
yo
@brittle spear what was the problem i was unable to hear you
im having trouble showing the board in pygame
show the code pls
while not check_win(cur_x, cur_y, game_mat, new_mat) and not give_up:
print("\nyou're goal board is:")
for row in game_mat:
print(row)
print("\nyou're current board is:")
for row in new_mat:
print(row)
for event in pygame.event.get():
if event.type == pygame.QUIT:
give_up = True
elif event.type == pygame.KEYDOWN:
if event.type == pygame.K_UP:
d = 'w'
elif event.type == pygame.K_DOWN:
d = 's'
elif event.type == pygame.K_LEFT:
d = 'a'
elif event.type == pygame.K_Right:
d = 'd'
for row in range(len(new_mat)):
for col in range(len(new_mat)):
color = orange
if new_mat[row][col] == ' ':
color = white
pygame.draw.rect(screen, color, [(gap + g_width) * col + gap, (gap + g_height) * row + gap, g_width, g_height])
clock.tick(60)
pygame.display.flip()
pygame.quit()
it like doesnt get inside the event ifs
while not check_win(cur_x, cur_y, game_mat, new_mat) and not give_up:
print("\nyou're goal board is:")
for row in game_mat:
print(row)
print("\nyou're current board is:")
for row in new_mat:
print(row)
for event in pygame.event.get():
if event.type == pygame.QUIT:
give_up = True
elif event.type == pygame.KEYDOWN:
if event.type == pygame.K_UP:
d = 'w'
elif event.type == pygame.K_DOWN:
d = 's'
elif event.type == pygame.K_LEFT:
d = 'a'
elif event.type == pygame.K_Right:
d = 'd'
for row in range(len(new_mat)):
for col in range(len(new_mat)):
color = orange
if new_mat[row][col] == ' ':
color = white
pygame.draw.rect(screen, color, [(gap + g_width) * col + gap, (gap + g_height) * row + gap, g_width, g_height])
clock.tick(60)
pygame.display.flip()
pygame.quit()
this is the same code
ya
pygame.quit() why are u doing this in the loop
its at the end if the player is idle
ok i dropped it but now it still doesnt show me the board
can i see where u initialized the screen
the console?
no i mean in the code
the command pygame.display.set_mode
white = (255, 255, 255)
orange = (254, 216, 177)
g_width = 10 * game_size
g_height = 10 * game_size
gap = game_size
pygame.init()
window_size = [g_width * game_size + (game_size + 1) * game_size, 280]
screen = pygame.display.set_mode(window_size)
pygame.display.set_caption("Word Puzzle")
Hey @golden marsh
@brittle spear lets take this too #โ๏ฝhow-to-get-help or code help 1
this is so cringe
'''py import random
choices = ['rock','paper','scissors']
a = random.choices(choices,k=1)
print(a)'''
what should i do to not get ['scissors'] or ['paper'] or ['rock'] ?
import random
choices = ['rock','paper','scissors']
a = random.choice(choices)
print(a)
!e
import random
choices = ['rock','paper','scissors']
a = random.choice(choices)
print(a)
@verbal fjord :white_check_mark: Your eval job has completed with return code 0.
scissors
@hard mulch ^^^^
thanks a lot
can someone explain me what the themes mean in pyweek
Aquila
Snooker loopy
Bridging the gap
Cops
Soul to soul
like what does Snooker loopy
mean ?
what type of bot?
a discord bot
LOL
I know that lmao
i just took all the different kind of bots, and merge them lol
can anyone get pyweek role or its just "staff"
Hi guys
@charred creek did you look at my chess ๐
yeah, why
Because I want to know.
that's it?
@raw wren What language is the game you're playing written in?
real quick question:
How can i get the amount of DISTINCT values of a dict?
e.g. : {"1": "tim", "2": "tim", "3": "peter"} should be 2
looking for an elegant way
@raw wren What language is the game you're playing written in?
somebody sent me this gif-
and it is mildly infuriating
thought i would share it w/ you guys-
sad life
yeah I know lol it was like 5k pings in like 5 seconds
it was sooo loud cause i didn't have notifications off
Ah, that reminds me of the time Joe accidentally exposed a web-hook
lmao did the same thing happen?
Yeah, a similar thing, but it got shut down pretty quickly.
Last summer, before I was a helper.
I'm good thanks ๐ You?
I'm pretty good ๐
oh ok so yeah
I can do brew install minecraft in the terminal
linux smh
OS X*
Nah they changed to MacOS
I reckon the next version will be called Sequoia
You ask Hemlock, and he's not here.
@warm tendon do you want to play Shapez with me? ๐
It's like a factorio knock-off
๐ actually? not a bad idea
is it free
Yep
What no bots?
Didn't know if it was one of those let's remove bots until very end mods
We are Element Animation, we are a small team of artist's and animators. We create short 2-5 minute comedy animations and pride ourselves in the quality of our work. All we really want to do is entertain you guys, and we love doing it. Subscribe to see our videos as soon as they're available!
For advertising queries, please go to https://www.ele...
โ
WATCH SONGS OF WAR โ
https://youtu.be/yCNUP2NAt-A
The full Songs of War Season 1 trailer! Songs of War is a fantasy Minecraft animation series coming November 23rd to Black Plasma Studios.
The series is directed by David R. B, creator of animations such as Animation Life, Blocking Dead, Giant Derp, as well as earlier projects such as Rise of...
Just a little timelapse video from one of our players on our Survival Multiplayer Server. Come join us!
Music: Tobu - Colors
http://youtube.com/tobuofficial
Released by NCS https://www.youtube.com/NoCopyrightSounds
this is my video
!voiceverify
!voiceverify
wait i verify
@misty sinew rip i'm not voice verified
bug
sure?
convinced
ye know
if you don't make me interpret my bug, you don't have to be prejudiced
I am contacting support
wait
EEL
from flask import Flask
app = Flask(name)
@app.route('/')
def hello_world():
return 'Hello, World!'
im here
... I did not mean to join voice
Why does your ui has to be so bad discord
Whatcha doing?
@tender sand probably me lol
haha
You should review!
Sounds cool
:thonk:
Lmao
Turn them on!
How much too much is too much
@tender sand Erlang when
โInfinitely configurableโ is just another way to say โso many ways to shoot yourself in the foot youโll never get bored!โ In this talk we briefly explore the pitfalls of common Open Source system design and see what happens when you take the less-travelled path like ScyllaDB has. Discord has saved time and been able to move quickly without incid...
building an error monitoring tool
Is it normal for the bot not to send me a dm when I open a help channel?
are your DMs open?
That would do it lmao I forgot I turned them off
did the schedule library also exists?
im new to python and this is way beyond my knowledge but this is interesting to watch
yeah me too
Thanks
ah; idk any java
Hm
i would but i think hemlocks the lord of streaming privileges
and hes not online so ;-;
niiiice
it looks neat @golden marsh
thats very cool
nothing atm just doing a bunch of codewars challenges to practice
but i havent started anything big (no ideas)
but i have been using python primarily
since java and c++ were too hard or complex when i tried to learn them lol
Hey my name's Freya! I'm a game dev professional and a creative streamer. Here on Twitch I stream code ๐ป 2D art ๐จ DDR/PiU Workout ๐ Chatting about philosophy & politics ๐ฌ Gaming, sometimes~ ๐ฎ
You're trying to extend the trail length right? @golden marsh
Hmm, what have you tried?
other than going under .002
could you add something that after a certain number of iterations it just sets the values to 0?
after certain # frame delete pixel?
probably wrong but idk
oh :/
too heavy
divide
what is the optimal behavior ?
fade away
u want it to fade out by distance ?
yeah from my understanding
is it possible that its doing something wrong in your update portion?
but change it back to when it faded at .002
in the fade because you know that worked and it actualyl faded
it just wasnt long enough
you cant output a big ass list of values to debug it?
maybe that'd tell you if your random is buggin or w/e
just temporary till you figure out the right values
do you need arguments for it?
are there not resources for that langauge?
haha
nope
hlsl right
where are you generating the random numbers? i didnt see it
or is it built in?
im not sure :/
During this live stream, we'll be taking a look at the 10 best projects the teams have submitted during Python Discord Summer Code Jam 2020: Early Internet.
At the end, we will announce the winners of the code jam.
The projects: https://git.pythondiscord.com/summer-code-jam-2020/
Visit us on Discord: https://discord.gg/python
Visit our website...

