#voice-chat-text-0
1 messages Β· Page 844 of 1
When is Joe 
Where is joe 
LMAO
A dik-dik is the name for any of four species of small antelope in the genus Madoqua that live in the bushlands of eastern and southern Africa.
Dik-diks stand about 30β40 centimetres (12β15.5 in) at the shoulder, are 50β70 cm (19.5β27.5 in) long, weigh 3β6 kilograms (6.6β13.2 lb) and can live for up to 10 years. Dik-diks are named for the alarm ...
It's like a cat sized dear
looks tasty
Looks like a gazell
The saiga antelope (, Saiga tatarica), or saiga, is a critically endangered antelope which during antiquity inhabited a vast area of the Eurasian steppe spanning the foothills of the Carpathian Mountains in the northwest and Caucasus in the southwest into Mongolia in the northeast and Dzungaria in the southeast. During the Pleistocene, they als...
That's a really weird face...
They've got like two noses.
ban βΌοΈ
These are some big nostrils
eyeslashes on fleak
So I have json structured like:
[
{"id": dfasdfasdfasd,
"answers": { "1": dfadgfasdgasg, "2": dafsfasdfasdf}
},
{"id": dfasdfasdfasgf,
"answers" : {...}
}
]
I'm trying to flatten the answers part for each ID so I can more easily put it into a table.
How the fuck do I do this in JS?
fleeeeeeeeeeek
"answers": "1": dfadgfasdgasg, "2": dafsfasdfasdf this does not make sense?
wait how does this work - can you put two objects separated by a comma inside another objects
shouldnt the outermost thing be an array?
I essentially want it to be:
{
{"id": asdfasdfasdf,
"1": asdfasdfsadf,
"2": asdfadsfsdf,
},
{"id": asdfawefw,
"1": ...
}
My main concern is how do I get the kv pairs in answers out
and flatten it a bit
@olive hedge ahhhhhhhhh i need a picture of ella in the cat ears
@hollow haven
let values = [
{
id: 'dfasdfasdfasd',
answers: { 1: 'dfadgfasdgasg', 2: 'dafsfasdfasdf' },
},
{
id: 'new id',
answers: { 1: 'first answer', 2: 'second answer' },
},
]
values = values.map((value) => {
return {
id: value.id,
...value.answers,
}
})
console.log(values)
would that work?
using map to go through and destructure and reassemble a new object from the old one
output:
nice usage of ...
:)
that unpack syntax i always forget
yeah spread is amazing
yeah i can just use the arrow and return the object directly without the function
will just add 1
i want return keyword
also, the () around value is not required
where is psvm, I haven't seen him in a while?
Did he stop being staff?
dude rust is so intimidating
he no here 
#[macro_export]
macro_rules! vec {
( $( $x:expr ),* ) => {
{
let mut temp_vec = Vec::new();
$(
temp_vec.push($x);
)*
temp_vec
}
};
}
like dude what is this
and this is in the rust book
the macros section
I mean, I haven't seen him in like a week or 2 I guess, lol
π
like, literally not here. try and ping
@honest pier
wait what
oh he is not staff anymore
woah
I swear I just tried pinging and it didn't appear
wonder why he stopped being staff
@honest pier Hope you doing good c:
Where's pub? π
spoons?
Back later π
Alright, supposedly I have to send 50 messages to be eligible to speak on voice, here's my first message π
synergy
I'm good too, thanks for asking!
oh no
chris's favorite word
!warn @rugged root Your puns are amazing, dont let anyone tell you otherwise. Never stop
yes
:incoming_envelope: :ok_hand: applied warning to @rugged root.
!user

Created: 5 years, 8 months and 6 days ago
Profile: @rugged root
ID: 98195144192331776
Joined: 3 years, 1 month and 2 days ago
Roles: <@&542431903886606399>, <@&463658397560995840>, <@&764245844798079016>, <@&295488872404484098>, <@&267630620367257601>, <@&797891034906099752>, <@&587606783669829632>, <@&831776746206265384>, <@&267629731250176001>, <@&807415650778742785>, <@&267628507062992896>
Total: 22
Active: 1
you want to be the test subject?
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
π
!warn @rugged root Tried to teach me Javascript
:incoming_envelope: :ok_hand: applied warning to @rugged root.
!warn @uncut meteor Tried to learn js from hemlock
:incoming_envelope: :ok_hand: applied warning to @uncut meteor.
which window manager is that @mighty torrent ?
i3wm-gaps
I've not heard of java before, what is it?
alteast in the syllabus
it's coffee
coffeescript
You have to keep patching java
from coffee import beans
it's a pain to patch java
did not realise jake was in vc all along
https://www.youtube.com/watch?v=iqrMFNMgVS0 good gojira song
New album 'Fortitude' available April 30.
Pre-order: http://gojira.lnk.to/fortitude
Directed by Maxime Tiberghien & Sylvain Favre
Fire and smoke simulations by Eric Tualle
Compositing additional help : Julien Cerdeira
Storyboard additional help : Julie Lafeuille
Color consulting : Arnaud Philippe-Giraud
Subscribe: http://bit.ly/171a3Ya
Site: h...
i'm gonna finish some work and head to bed, gn o/

is that fortnite?






!stream @whole bear 30M
@whole bear
β @rapid reef can now stream.
Very uni dependent but from people who just got degrees, Java is primary language for many in computer science tracks. Obviously data engineers and like will do other stuff
Mine was Haskell and Java π
- Matlab, prolog, python, c, c++, MIPS and a few others...
Looks like a shisha pipe Fred π
ooh it started thundering
While loops? More like why loops
Been taking a break from those recently.
alec as a service
tyty, I try xD
luckyyyyy, I got a little bit of thunder the other day, I loved it. not enough
I think knowing about concepts like invariants is useful for general programming.
But provably correct programs is something computer scientists have been trying to accomplish for a long time, without a great deal of success.
Unless you want to learn Hoare logic π
I kind of agree with his idea tho not every new student have an interesting ambition
whats the topic? i just get in
Me too, he was saying that you can't push new learners to proof of correctness
To learn *
@glad heron There's not raw_input in python3, just input, which returns a string.
do you mean avoiding spaghetti code?
Idk i just got in
There's just input, which is like python2's raw_input.
Yep, you would just do int(input()).
You could use ast.literal_eval to parse an arbitrary python literal type.
@faint ermine *dynamically typed (sorry) π
I believe this will behave similarly to python2's input: ```py
import ast
def py2_input(prompt=None):
raw = input() if prompt is None else input(prompt)
try:
return ast.literal_eval(raw)
except ValueError:
return raw
The walrus π
It's an assignment as an expression. The value of the expression is the value assigned.
Lmao
did you mean: its a abomination of the usually beautiful python syntax
if you have the need to be space efficient hashtable is not better then Binary Search Tree as id does requires amount of data units pointers in memory.
Remember that Binary Search Trees (reference-based) are memory-efficient. They do not reserve more memory than they need to.
For instance, if a hash function has a range R(h) = 0...100, then you need to allocate an array of 100 (pointers-to) elements, even if you are just hashing 20 elements. If you were to use a binary search tree to store the same information, you would only allocate as much space as you needed, as well as some metadata about links.
And in any point operation on most of the Tree implementations are O(logn)
@glad heron
@mighty torrent -> https://www.geeksforgeeks.org/python-mongodb-distinct/
It returns a single value
Right
But I just figured out that it actually makes sense
It can't really return the ids of rows because each row might consist of multiple original rows
Hello
should i drop outta college and start coding fulltime to get a job?
having weird thoughts lately man
what are you doing now?/
in which year?
hey @keen shell check dm
i need help
import time
while 1<2:
from datetim import datetime
now = datetime.now()
dt_string = now.strftime("%S")
print(" ",dt_string,end=(""))
time.sleep(1)
yeah!! i'm listening
in third line
there is mistake
datetime
after from
e is missing
ohh i found it thanks
yeah sure
thanks
you want to learn or to be voice verified?
one liner password generator
exec("import random, string\nwhile True:\n\tprint(''.join(random.choice(string.ascii_letters + string.digits + string.punctuation)for i in range(100)))")
@distant forum
@whole bear
tring to get better on python
write ehre
?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
:incoming_envelope: :ok_hand: applied mute to @distant forum until 2021-06-05 12:35 (9 minutes and 59 seconds) (reason: burst rule: sent 8 messages in 10s).
!vban 1w @distant forum Spamming to meet our voice verification criteria is not acceptable, please re-read these rules #voice-verification message
Member "1w" not found.

!vban @distant forum 1w Spamming to meet our voice verification criteria is not acceptable, please re-read these rules #voice-verification message
:incoming_envelope: :ok_hand: applied voice ban to @distant forum until 2021-06-12 12:27 (6 days and 23 hours).
π‘
@sonic hatchbrb
jep
fr
!voice
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!rules
The rules and guidelines that apply to this community can be found on our rules page. We expect all members of the community to have read and understood these.
!voice
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@sacred moon you could also use the verified people to check if the new user is a bot or not no?
people that have already went through the process
maybe trough getting points maybe
for roles
yeah talking at are scale rn
discord
yeah that's a way
have both methods
!source
@uncut meteor what prog languages do you use?
ok ok
@uncut meteor you are talking about some anti-dyslexic bot no?
Grammar errors are easier t o do that's why they do so they can show that they contributed to something
why there is no utility for auto correct
it should be there
what is the main difference between sqlAlchemy and django orm
cool
yeah it's good but confusing
@bot.command()
async def hello(ctx, member: discord.Member):
await ctx.send(f"{ctx.author.name} sends you an hello {member}")
async def cmd(rtx):
await rtx.send(f"Commands-1.hello [user]")
!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.
@bot.command()
async def hello(ctx, member: discord.Member):
await ctx.send(f"{ctx.author.name} sends you an hello {member}")
@bot.command()
async def cmd(ctx):
await ctx.send(f"Commands-1.hello [user]")
@bot.command()
async def hello(ctx, member: discord.Member):
await ctx.send(f"{ctx.author.name} sends you an hello {member}")
async def cmd(rtx):
await rtx.send(f"Commands-1.hello [user]")
@sonic hatch I got an important question
how would someone make an anti dyslexic bot?
ask grammar questions?
i am dyslexic btw just kinding
you would need to make them wright
import discord
from discord.ext import commands
prefix = "!"
bot = commands.Bot(command_prefix=prefix)
bot.remove_command("help")
@bot.event
async def on_ready():
bot.loop.create_task(status_task())
print("Started successfully")
@bot.event()
async def on_ready():
ctx.send("Bot started")
async def status_task():
await bot.change_presence(activity=discord.Game("online"),
status=discord.Status.online)
@bot.command()
async def hello(ctx, member: discord.Member):
await ctx.send(f"{ctx.author.name} sends you an hello {member}")
@bot.command()
async def cmd(ctx):
await ctx.send(f"Commands-1.hello [user]")
@bot.event
async def on_ready():
ws = bot.ws # this is only needed to send messages within event_ready
await ws.send("bot is ready")
you also cannot send a message to channel that is not defined.
has anyone done projects using BENFORD law?
So you would need to specify a type of channel or dm meaning using discord_id that is joined to the guild that your bot is joined to actually send a message to the user or a channel on bot start.
I used to do those things with the twitch bots but difference is that on twitch you are by default connecting to a single channel IRC and in case of the discord you have many channels in guild.
@keen shell ^
this is nyc
wtf is that title
"When a measure becomes a target, it ceases to be an effective measure."
well they was thinking that wearing a mask will suffocate them.
π
WSL2
what
ofir
sure
sure
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
supp
fine
bro your mic. is like zzzzz
?
try:
something
except Exception as e:
print("Error: {e}")
!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.
ye
Hey @dense ibex
!voice
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
there is suggestions channel?
I tried, I need 50 messages or something
@proper sparrow in case you're wondering why you can't talk, it's because you're only sent 10 out of your required 50 messages
Hey
hey
anywhere in the server except in the bot command channels
just have a conversation with somebody in one of the offtopic channels
or go help someone in #python-discussion or smth
okayy
omniscient reader
https://www.webtoons.com/en/action/eleceed/list?title_no=1571&page=1
https://www.webtoons.com/en/action/omniscient-reader/list?title_no=2154&page=1
https://www.webtoons.com/en/fantasy/tower-of-god/list?title_no=95
Jiwoo is a kind-hearted young man who harnesses the lightning quick reflexes of a cat to secretly make the world a better place β one saved little child or foster pet at a time. Kayden is a secret agent on the run, who finds himself stuck in the body of aβ¦umβ¦decidedly fat old fluffy cat. Together, armed with Jiwooβs super powers and Kaydenβs ub...
Dokja was an average office worker whose sole interest was reading his favorite web novel 'Three Ways to Survive the Apocalypse.' But when the novel suddenly becomes reality, he is the only person who knows how the world will end. Armed with this realization, Dokja uses his understanding to change the course of the story, and the world, as he kn...
Hey!
did someone know pygame?
Have you tested your model in Cities Skylines? π
what do U mean? π
Oh sorry, I was responding to something in voice-chat.
oh π
You might want to check out the #game-development channel π
ok thank U
This post presents WaveNet, a deep generative model of raw audio waveforms. We show that WaveNets are able to generate speech which mimics any human voice and which sounds more natural than the best existing Text-to-Speech systems, reducing the gap with human performance by over 50%. We also demonstrate that the same network can be used to syn...
Ahh, nightmare π
I once spent 15 mins trying to get into the wrong apartment, wondering wtf was going on, because the floors of the complex I lived in looked identical.
were you sober? lol
Yeah @somber heath similar thing with the London mayor and the current UK government, which are different parties.
Everyone is forgetting what age they are at the moment π
The last year has messed up everyone's perception of time.
Pretty sure my intelligence is declining too π I'm in a similar camp, but for different reasons.
@cerulean ridge Python art https://imgur.com/gallery/OJaqKvR
import os
import re
mainpath='C:\\Users\\Ayoush\\Pictures\\Screenshots'
a=os.listdir(mainpath)
diction_contains_num_keys={int(re.search("[0-9]+",x).group()) :x for x in a[1:]}
keysss=list(diction_contains_num_keys.keys())
keysss.sort()
ite=(diction_contains_num_keys[cc] for cc in keysss)
print(diction_contains_num_keys)
files = os.listdir(mainpath)
files = [each for each in files if any(char in '0123456789' for char in each)]
sorted_files = sorted(files, key=lambda file: int(''.join([char for char in file if char in '0123456789']))
def func(file):
return int(''.join([char for char in file if char in '0123456789']))
sorted_files = sorted(files, key=func)
d ={int(re.search("[0-9]+",x).group()) :x for x in a[1:]}
sor = {k : v for k, v in sorted(d.items(), key = lambda t : t[0])}
Hey @whole bear!
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:
Sorry? Wasn't listening.
I meant on the Joseph status π
!e py a = ['apple', 'pear', 'grape'] print('*'.join(a))
@somber heath :white_check_mark: Your eval job has completed with return code 0.
apple*pear*grape
no bro..
@whole bear Anything you can do about the buzzing coming through on your mic?
Hey @whole bear
I wonder if noise suppression would work?
your buzzing is louder then your voice ...
Are you sure your microphone is plugged in correctly?
ya
Try doing the self mic test:
can u retry after disabling your voice suppression
still not good
Ah, weird π€
It doesn't bother me a great deal, fwiw, it's just hard to make out what you're saying, sorry.
o no problem i understand
@whole bear I'm sorry my explanation was word salad.
its all right as long as i understus what u meant
Do you need me to clarify anything further?
I'm probably better at explaining in writing.
well if someone of you want to know about history of computing watch this.
history of a bad decisions which seemed fine and was useful then
whaa billion $ mistake ...π π€―
yeap Null Pointers
your asking file in main directory not in the folder ur file is in
Directory
There is the directory error
Directory copy the address where the image is stored
Or put in the main folder where the folder game is there
You need to save the file in the right place so that Pygame Zero can find it. Create a directory called images and save the image into it as alien.png. Both of those must be lower case. Pygame Zero will complain otherwise, to alert you to a potential cross-platform compatibility pitfall.
Hey there, I have just joined, could anyone tell me about the topic
lets go!!!
read the documentation: https://pygame-zero.readthedocs.io/en/stable/ide-mode.html
just call the function i think
since it's a tuple
how u doing
good
x)
hbu
Saddd
why?
cuz i have 2 exams tmr
Luckyy
yuh
Yea, i can hear it
do you like it?
i can hear also you cicking the mouse
I mean like, its a good song.
loll
Yo, ur discord message notifications are loud and ur getting them al the time
someone is dming me
alr
bye
same
cya
welcome back
im back
loll
youre front
alr
@clever needlewhyy dddiiidd uuu leeaavvveee
anyway, brb
It took too much connection
hmm
@quasi thorn inet-abuse@jb3.dev
thx <3
@faint ermine out of interest for me understanding how google groups works, can you add a reply to that thread
I want to see if it unmarks it as complete
π
done
how the heck did maze get into laundmo's thread lmfao
rawr
oh, did you both use h as a topic
h
hhh
@dense ibex
@strong arch I am not
ty
Y
.pridepfp
π
Nice!
!u

Created: 1 year, 4 months and 12 days ago
Profile: @dense ibex
ID: 670802831678373908
Joined: 5 months, 2 days and 22 hours ago
Roles: <@&463658397560995840>, <@&764802720779337729>, <@&267630620367257601>, <@&787816728474288181>
Total: 1
Active: 0
!user

Created: 2 years, 1 month and 9 days ago
Profile: @icy axle
ID: 572303014346489866
Joined: 1 year, 11 days and 23 hours ago
Roles: <@&542431903886606399>, <@&518565788744024082>, <@&463658397560995840>, <@&764802720779337729>, <@&295488872404484098>, <@&267630620367257601>, <@&799041111573266503>, <@&787816728474288181>, <@&815701647526330398>
Total: 12
Active: 0
@trail walrus What's your question?
Steal, Stele, Steel
urls:
# PyDis site vars
site: &DOMAIN "web:8000"
site_api: &API !JOIN ["api.", *DOMAIN]
site_paste: &PASTE !JOIN ["paste.", "pythondiscord.com"]
site_schema: &SCHEMA "http://"
site_staff: &STAFF !JOIN ["staff.", *DOMAIN]
pls solve it
What are you coding @dense ibex
Heretic
The game?
Such a good game
Something for the python bot
More specifically for the help channels.
Cool
I went through 4 project ideas this past week and I've done absolutely none of them
yay!
Our cats hide in the weirdest spots when they go outside
@swift valley Great, you sended this in vc-0 too lol
@pastel cliff What's up?
sent what now
lmao
Apple.y = Apple.x = 300, 200
Apple.y, Apple.x = 300, 200
This one sets both x and y to a tup- yeah
!e
bang ,= [1]
print(bang)
@swift valley :white_check_mark: Your eval job has completed with return code 0.
1
Hidden operator btw
for i, ham in enumerate(hams):
You can unpack lists, yeah
Anything that implements the iterator protocol really
!e
head, next_, *rest = [1, 2, 3, 4, 5]
print(head)
print(next_)
print(rest)
@swift valley :white_check_mark: Your eval job has completed with return code 0.
001 | 1
002 | 2
003 | [3, 4, 5]
!e I'm curious
head, next_, *rest = dict.fromkeys([1, 2, 3, 4, 5])
print(head)
print(next_)
print(rest)
@swift valley :white_check_mark: Your eval job has completed with return code 0.
001 | 1
002 | 2
003 | [3, 4, 5]
OK that is weird
Not really
Python is used in a large number of web sites where the performance of the web tier is a significant cost. There are multiple ways to improve the performance of these applications: improving the Python code itself, moving code out of Python using tools like Cython, and extreme options like directly improving the performance of the Python interpr...
If you're iterating over a dict without calling either values() or items(), you're just getting the keys
does someone know how to format a usb stick from FAT to ext4 on a terminal?
os?
rasbian
checkout dd, I think, that might be incorrect
Perhaps #c-extensions
what was that @glad sandal ? xD
sYsTeM.oUt.pRiNtlInE("hElLo");
oh lol.
@terse needle ok thx
@glad sandal Still getting some serious breathing noise
that's pain.
I think Kivy is one of the biggest projects that use Cython
Just for convenience with interacting with OpenGL
Yes
Cython is a superset of the Python language that adds C-like semantics
Its pretty much Python with types right
Which makes it faster.
Seeing the code it generates is actually a pretty neat way of learning how the CPython API is used
Never really used Cython, when I wanted to do something like that I would just jump to pybind11
@fair timber We all are :P
It's called experience.
typethon
Hello all
Hello welcome
Back in a moment
Thhhhhhaaaaaaaaaaaaaat's the one
I knew there was one for that
gonna need some tableware
Don't apologise for that lol.
Thank you
bad advice, sorry. You can locate the disk you want to format
Locate
lsblk -p | grep "disk"
(/dev/sdb is an example)
Unmount
sudo umount /dev/sdb
Format
sudo mkfs.ext4 /dev/sdb
will brb, potentially
@glad sandalyes
Hello
Hello welcome
Hello.
How's life going??
BleepingComputer.com is a premier destination for computer users of all skill levels to learn how to use and receive support
for their computer.
Be right back.
no problem
Hello to whoever said hi π
Hello!
I think I might have asthma, but only in the summer π€
I had childhood asthma.
I've never had asthma, thank goodness
except one attack induced by heavy second-hand cigarette smoke
Thank you, goodness.
:incoming_envelope: :ok_hand: applied mute to @barren epoch until 2021-06-07 16:10 (9 minutes and 59 seconds) (reason: duplicates rule: sent 6 duplicated messages in 10s).
well that was that
Hmm π€
huh, it used to be 4 messages
There's no rhyme or reason to who bullies choose to pick on. It's just people trying to relatively raise their own status by lowering someone else's, and they'll pick any easy target.
duplicates has a threshold of 3 in the last 10 seconds
ofc if you go above that, it'll get all of the others too
I noticed at summer camp as I got older that the people who were bullying us were the same who got bullied by others
not sure if that's the same at schools
Back in a bit, have to restart my rig and run a BIOS update
No problem
I don't miss high-school. Things will get better dude π
I would turn them in to the police tbh @gentle flint
who, the adults or the children?
Maybe both actually π
it gave me a concussion
I really didn't feel like doing stuff about it at the time
it would have meant that the entire group would have turned on me
@whole bear it's sorta offtopic
we discuss anything and everything
@whole bear Erm, this is kind of an off-topic voice channel.
oh that's cool
We sometimes talk about programming stuff here, but not always.
I meant like, if I was the adult in that situation.
Is this the post-your-message-and-immediately-delete-it-chat? π
lol
sure
Hey!! you will get the vibe if someone is nice or not, that's how friendship works
friendship?
well life*
What does friendship have to do with getting the vibe if someone is nice or not?
ah ok.
Cya @glad sandal π
haha i have a different theory on that
you people like physics and space?
presumably some do and some don't
Yes, although I don't know a lot about it.
we've quite the range of members
yeah!!
Wow.
wow really
@whole bearmy school does have grade 11 and 12 x)
lol every school does
gtg π
byeππ»
x)
byee
OO I AM SORRY
@lusty prawn Again, please. If you're going to talk to me, please do it here
ohhkkππ»
test
!voice @neat brook
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
wrong channel.
@sour wren Easier if you ask in here. Makes it so that I don't have to keep jumping between DM and here
got it.
@neat brook Ask in here, so that other people can answer you as well
I've basically just watched video's and made GUI' interfaces and messing with thing'
I want to get a job in about 6M-1Y and better my life.
im in highschool in greece andd i have a homework
What country and programming languages have you learned?
I just graduated HS
are you forced to use python 2?
I personally find it fun to do.
are you aware that py 2.7 is not supported anymore?
use 3 unless you absolutely can't
i cant use 3 becuse my leason and homeworks its fro python 2.7
i see, that sucks
What's it called again? I couldn't hear him well.
if you can in any way avoid python 2.7 because its reached its end of life at the start of 2020
and is barely used anymore
Portfolio?
I don't have one at the moment.
he means
you have to show you have done big projects etc
that you can actually do things
or that you'll be able to
which is why a degree is a help
because then companies decide that they will more likely be able to train you
I don't really have any idea on what to peruse in College, So If I want to be a programmer I should take an IT Class and for how many years?
it's not a thing you can just do in a day or a week or a year
The exams I give are in python version 2.7 I know they are carpets but I have to go to a university that wants exams from high school where we do python 2.7
I absolutely agree with this.
in any case, @neat brook , first step imo should be to format that code properly. right now its really hard to read because there should be a bunch of whitespace. (i recommend black[python2] autoformatter) next, when asking for help, make sure you are explaining what the code should do and what the issue error is
I don't actually like black so much
but it's certainly better than ignoring style guides altogether
I really need to give it a fair shake
So, I cant sit at home for a couple of Months Grind and learn Programming Langues and try to get a job? I should go to College and Get a Degree? I wanted to see if I could get a job without a Degree.
i just completed learning python ... for building projects ... should i just follow and copy the project codes without understanding ?? like its very difficult to make projects ?? how should i go for making projects for resume
i will try to do it again sorry again becus im not in high lvl but i try to grow up so thx i try it again
if the projects are too complicated start on simpler projects
I donβt have degree either
I have the time
But Iβm lucky
blindly copy-pasting is not going to teach you anything if you don't understand what you're copy-pasting
I know some people
Survivorship bias or survival bias is the logical error of concentrating on the people or things that made it past some selection process and overlooking those that did not, typically because of their lack of visibility. This can lead to some false conclusions in several different ways. It is a form of selection bias.
Survivorship bias can lead ...
Im from Seattle Washington When i look up jobs for Python there's a lot of Jobs that dont require degrees. I dont want to brag, Ive Saved up a lot of money through investing and staying out of School. So I want to try to avoid it. and by working a ton
Sure, then apply for those jobs and good luck
Once I develop more skills? Or should i just apply and try to learn on the job?
I would assume they'd want you to know at the very very minimum the basics
Ok
#career-advice would be a bit better when it comes to seeing what would go good on a resume
this discord has everything it's great
like i shouldn't learn by imitating the code that the lecturer shows without understanding the logic ?
I live in Seattle School in state cost 7-25k community is low university it's too much
exactly
try to understand what they are doing
experiment around to confirm your theories
magazine = ['one', 'two', 'three']
for magazines in magazine:
print(f"{magazines} in a gun")
magazine.append('fourth')
print(magazines)```
Community colleges are awesome, btw
@sour wren you can also share projects or code youve written here and we can give some feedback
What is the status of this, please
wdym with status?
Ok. that sounds great! I would love to talk to you guys but I need to send 50 messages to voice verify so I'm trying to send 50
It goes indefinitely
Run after the bottom has been flashing repeat a Fourth
The issue is that you're modifying the list you're looping over
By doing that, you're essentially making it an infinite loop
oh, well spotted
I hadn't thought of that lol
dont spam in any way, that wont help
thank you
1
now they are
Okay, NOW there's the possibility of spam
lmao
I really hope the 1 was a joke
You want 2 week ban? Thatβs how you get 2 week voice ban
π .
we will dump cores
weird wacky derp circles
Depends on the context
what would you do
YES
Wippidy Wackidy Yippidy Dippidy.
LOL
wiggly wily yellow dogs
They are lying listen to me @sour wren
The correct definition is Wippidy Wackidy Yippidy Dippidy.
your algorithm's sus
See.
Thank you Rabbit.
that's like my stackoverflow picture
;-; this cant be real life
source: trust me bro.
totally legit
Yeah.
is this just fantasy?
caught in a landside
no escape from reality
also with my nick name its pronounced " T" "H" " '1' '3' '7' 'Y"
didn't mean to make you cry.
yes it does
tuh-huh-wun-thruh-suvun-yuh
T H 137 Y
thiety
;-;
can we tempt you with cheese sticks
no
tee aitch one hundred and thirty seven why
NO
Thribbidy-Hibbidy-1appidy-3pidy-7achity-Yaddidy
just say wuh
That's what your name stands for.
magazines = []
for value in range(1,11):
magazines.append(value**2)
print(magazines)```
Nah just say .......
I was worried
theechonethirtysevenwae
So why doesn't this go on forever?Is it because the Magazine list is empty?
:oooo
!e ```py
magazines = []
for value in range(1,11):
magazines.append(value**2)
print(magazines)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
Guys Im free
because range(1,11) has only 10 values
whom'st'd've'ed
nein.
People call him Hen.
Woah.
foiled
Support Discord by buying Nitro

NOOOO
Alright bye.
See you later
He's not gone forever lol.
last online: 5 years ago.
The Python Discord FAQ.
What's with this @paper gale
What?
Spaghetti code is a pejorative phrase for unstructured and difficult-to-maintain source code. Spaghetti code can be caused by several factors, such as volatile project requirements, lack of programming style rules, and software engineers with insufficient ability or experience.
thanks, i always did ctrl e + ctrl z π
@rugged root
this server is amazing.
I wasn't sure if this server is the right place to ask,
because I the topic is sparse graph operation in SciPy.
technically SciPy is python, but still...
And I still get answer in #βhelp-coffee
rabbit is managing HPC supercomputer right?
I'm pretty sure they are not running on mac lol
Individuals might be. And this also might be from a different place he worked
I'd have to ask him again
Not in years
like I was support person on one like 12 years ago
Yep
oh wow ok
HPC is pretty niche and becoming more so with cloud because more and more teams can just spin up a bunch of VMs, run their workload then destroy the VMs
Still has its place
destroy vm lol haha
And different processor types did things better but x86 won so meh
Thatβs what clouds call it
Destroying to make it clear, once you press the button, itβs gone
oooh
@rugged root hi, do you think there's a way to get my printer/fax machine to automatically scan faxes to a network folder?
my machine is an all in one fax, printer, scanner..
I'd need to know manufacturer and model number
And I'd have to look into it later.
I'm just now able to really buckle down on the migration
oooh yeah go for it
But yeah, toss the model number at me and I'll look into it
initial google search i don't see anything, but it's a hp laserjet m426fdn
Generally lower end scanners donβt have scan to network
this is a printer and i use the scan to network feature.
it's just that i'm having to do that for basically 100% of faxes received. would save me some time if i just had all faxes scanned and dumped in a folder for me somewhere
@gentle flint I fixed the discord and obs screen share issue
...wow
but it worked
somehow
If I try to attach a window capture to my mixer, it gives me a X of "unknown" windows with either black / OBS menu as the output, X being the amount of windows I currently have open. Sometimes, the first time I open the menu for the window capture it gives me a randomly chosen window (such as...
brb, gotta re log
also, I did change something in the locale config
also got my first dose today
Please visit this page to register your activity to celebrate Love Your Burial Ground Week. We hope youβll have a great time whatever you choose to do! We have put together various downloads which may be useful and encourage everyone, young and old to get involved. Please pay attention to the COVID restrictions and remember [β¦]
Animals serve an important part in our lives, being those friends and companions that give us love unconditionally. They protect our homes, and are there whenever we need them, asking for nothing but love and tenderness in exchange for all they give. Operation Santa Paws Day is a reminder that we need to return that [β¦]
It was a favorite activity in our earliest school years, and many families would share it as a familiar project around the holidays. Surely it ended up with numerous small flakes of paper on the ground as thick as the snow outside, but it was accompanied by a warmth of time spent creatively, and the [β¦]
@rugged root
hi @flat sentinel @paper gale
Hello.
#βο½how-to-get-help @frosty lodge
oof is now in chrage
Yes, chrage.
am in rage
WIND
The best of the BBC, with the latest news and sport headlines, weather, TV & radio highlights and much more from across the whole of BBC Online
omg
@gentle flint
that's cuz you're in UK
it does.
oh?
what the fudge.
hi LX
We need an h server, but for each letter of the alphabet π€
So that typing out long messages with emojis is easier...
we'd need nitro tho
how do I turn on my mic....
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!voice
There should be a button on your headset.
read the embed






