#voice-chat-text-0
1 messages · Page 1044 of 1
!e py try: ""[0] except IndexError: print("Hello!")
@somber heath :white_check_mark: Your eval job has completed with return code 0.
Hello!
was jojo here today
aList = []
for num in range(2,10001) :
aList.append(num)
for multiNum in range(2,101) :
for aNum in range(2,10001) :
if aNum in aList :
if aNum % multiNum == 0 and aNum > 100 :
aList.remove(aNum)
print(aList)
like hailjojo(na) did he go on to the voice chat today?
!d set
class set([iterable])``````py
class frozenset([iterable])```
Return a new set or frozenset object whose elements are taken from *iterable*. The elements of a set must be [hashable](https://docs.python.org/3/glossary.html#term-hashable). To represent sets of sets, the inner sets must be [`frozenset`](https://docs.python.org/3/library/stdtypes.html#frozenset "frozenset") objects. If *iterable* is not specified, a new empty set is returned.
Sets can be created by several means:
• Use a comma-separated list of elements within braces: `{'jack', 'sjoerd'}`
• Use a set comprehension: `{c for c in 'abracadabra' if c not in 'abc'}`
• Use the type constructor: `set()`, `set('foobar')`, `set(['a', 'b', 'foo'])`...
!zen
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
"There should be one, and preferably only one, obvious way to do it."
i usually do "import this" every now and then to remind myself of this lol
import antigravity```
hi guys
hey
i will try
I'm back, what'd I miss
done with your delivery today?
I just started my day
oh
It's 08:10 here
@rugged root we are importing antigravity
In put gravity
!e
from __future__ import braces
@rugged root :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | SyntaxError: not a chance
guys how can i connect 2 languages with each other
like if someone build something in go and i build something in python
i am doing the cs50x course by harvard. is it good>
they seem to be going deep in some of the parts of computer fundamental
i am new
its give u a general idea of what u might get interested in i guess
also
is this gonna be of any use?
Mr. hemlock
Not sure
hmm i will search it up to see if i can find out anything
#career-advice could probably answer it
oh ok i will ask there
also another question. i thought even tho Advanced Math isn't of any use most of the time in coding but i heard that there is some situations that will differentiate between great programmer and a good programmer just by math
<@&267630620367257601> how to have two buttons in a form in html*?
it's kind of a habbit now to put ";" on lines after coding in java for long time
Same
Hi everyone
How've you been?
doesn't 3 days seem awfully long for voice verify :v
Hello
I m new here
hi
It's with good reason. We had what I call hit and run trolls, who would join the server, join voice chat, scream, and then leave. It used to happen like... 5 or 6 times a day.
breh people actually have time for that? damn
It's happened I think twice since we've had this system in place, and that's been for a year and half or so
``py<a href="{{url_for('templates', filename='login.html')}}">Alreaady have an account? </a>
So it seems extreme, but it's been super helpful
why did i find this funny
oh ok. idk but week 1 of cs50 tell me to use visual studio code
for c
then i try compiling using bash but it doesn't work
just says command not found
i am missing the compiler i think
yep
ok
@frozen owl #roles
@frozen owl https://doc.rust-lang.org/stable/book/
You'd just have to go to the Available tab and snag the build tools there
Mr hemlock scan you answer my question
``py<a href="{{url_for('templates', filename='login.html')}}">Alreaady have an account? </a>
If it is possible
Yeah I have been suffering because of this
#web-development would be able to help
Reason lets you write simple, fast and quality type safe code while leveraging both the JavaScript & OCaml ecosystems.
Python's new type hints + JS arrow functions + functional piping
More or less
I want to try a new language in production, but.... which one ⁉️
I swear languages pop up more often than JS frameworks
Stick with the basics
But... the whole point is I want to try something new and fancy
I'm already using Rust in production
No idea then
That's the dotnet C, right?
dotnet looks nice
But it's not exactly new and shiny
Languages become battle tested for a reason
Accepted
I have seen a few of the NDC talks lately on what's new in C#, and it does look interesting
I'm still hating on the "projects" but I'm starting to get my head around them
ye u choke on water if u try to drink any
and the muscles spasm near ur mouth creating foam for rabies
I actually have a C# thing to work on
Every year for ARRL's Field Day I take the dog to meet all the people and the cool technology, and this year I ended up forking a C# report generator that some guy made that one of the people was learning C# to get updated.
I went to learn about their toys, ended up teaching them about mine
good nigh guys have a good one
Eyelids?
Hi guys
I can hear now
Apparently Android doesn't tell you in the interface when you're deafened
You have to check inside of the persistent notification
Only when I pull down to see the notifcation
I had no idea I was deafened
!user

Created: <t:1443481946:R>
Profile: @rugged root
ID: 98195144192331776
Joined: <t:1525291749:R>
Roles: <@&267628507062992896>, <@&807415650778742785>, <@&267629731250176001>, <@&831776746206265384>, <@&587606783669829632>, <@&797891034906099752>, <@&267630620367257601>, <@&295488872404484098>, <@&764245844798079016>, <@&764802720779337729>, <@&463658397560995840>, <@&542431903886606399>
Messages: 63,838
Activity blocks: 13,314
Total: 30
Active: 0
!e ```py
import re
pattern = re.compile(r"(\w+) .? (.) ")
serviceline = "main_postgres_1 docker-entrypoint.sh postgres Up 0.0.0.0:5432->5432/tcp,:::5432->5432/tcp"
match = pattern.search(serviceline)
print(match.groups())
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
('main_postgres_1', 'Up ')
now show us the plan of your house 🤣
Wurrd!
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
This visualization shows monthly global temperature anomalies (changes from an average) between the years 1880 and 2021. Whites and blues indicate cooler temperatures, while oranges and reds show warmer temperatures. As you can see, global temperatures have warmed from mainly human activities as time has progressed.
These temperatures are based...
RIP us.
we're all fucked
its like...... a single bug in a complex code can bring down the whole application
excess CO2 is that single bug in the nature's app.

I think ultimately climate change is a natural change (after all we are "natural"), the world never remains constant and life will always find a way
Ponzi Schemes. Created by Sal Khan.
Watch the next lesson:
https://www.khanacademy.org/economics-finance-domain/core-finance/investment-vehicles-tutorial/ira-401ks/v/traditional-iras?utm_source=YT&utm_medium=Desc&utm_campaign=financeandcapitalmarkets
Missed the previous lesson? Watch here: https://www.khanacademy.org/economics-finance-domain/...
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
i have problem when start my docker. could everyone help me? 😄
let me share my screen 😄
OMG. i dont have permision for sharing 😄
@autumn forge Can you move closer to your mic?
It's very difficult to hear you
You also have a looooooot of static
Theres a lot of noise and you're very quiet. @autumn forge
@autumn forge I need you to check your mic settings in Discord.
You have a lot of background noise, and it's incredibly hard to hear you because you sound very far away from your mic
I muted your temporarily until you tell me it's fixed
I just turn on noise filter:D
you might want to check whether discord has selected the wrong microphone
I think he needs to adjust mic sensitivity
Are you hearing us? can you understand us?
or push to talk
sorry about that, fuxxk my mic 😄 i will record the video for preproduce my error 😄
@autumn forge did you hear what we were saying? you have not really responded to what we said in voicechat or what i recommended over voice
sr. because i can hear clearly 😄
In my eyes, it won't become a currency
Certainly not in it's current popular forms
There are reasons for centralized money management
p2p consensus blockchain is a interesting concept for a few very specific fields but currency is not one of them imo
imo it's a field looking for a problem to solve
Q'doba
if we were able to magically produce enough non carbon energy... then thoughts on bitcoin ?
i mean, like..... not magically literally.... but if we are able to have technological advancement to meet energy demands with solar and stuff..... ( there would still be cost of energy, just no carbon footprint )
The model is busted. The energy is just another reason not to do it.
even if there is unlimited energy, there will still be greedy people who would want to have more than others
or just have new govt laws..... and police makes sure that money is paid back ? ?
I think consumer protection is more about Trust.
if you have unlimited energy, then bitcoin is worthless. the reason bitcoin is secure is because it is computationally hard to get bitcoin; with infinite energy, it's not computationally hard to do anything
I was saying, if we have unlimited energy, we would still need govts
you said this, though
if you had unlimited energy, no one would really have more than other people, since the people who had less would just get more
assuming it was freely available
but poeple would still want to have control over other people
why?
because thats how poeple are ? since history people have tried to rule over others
because there were scarce resources
That's the point
There will always be scarce resources
well, not with infinite energy
but unlimited energy will not give us unlimited food
Food, minerals, etc.
how would it not
infinite energy is impossible though, so it is a moot point
because time will always be limited
because entropy is not reversible
and it takes time to convert energy to food
just invest more energy to make that faster
that would burn food

The soil still has limited nutrients and it would still need farming.
just like you cannot cook something faster, you cannot make natural processes go faster ?
there is a limited amount of water available for irrigation
why not? just use some of your infinite energy to make more water lmao
lol
if you have infinite energy you also have infinite matter
exactly lol
you could literally just create matter, fuse it together to get what you want
you also have infinite gravity, and thus a black hole is the inevitable result
we are not technologically / biologically advanced enough to create human babies without a woman's womb
well, not yet lol. we don't have infinite energy
so we cant do everything with unlimited energy
yes you can
yes you can, you said it yourself. it is infinite
which you could acquire with guess what? energy!
with infinite energy you can produce infinite knowledge. after all, knowledge is powered by energy
this is also assuming entropy doesn't instantly go to infinity as well
with infinite energy, all matter is perpetually at 10^32 Kelvins. that's pretty warm.
my assumption was that it wasn't infinite, per se, rather very very very cheap
you'd have to assume that the powers that be won't artificially increase the price to maintain the status quo
perhaps
wow
@fierce summit Let's do the old standard first
Open PowerShell as Admin
cheeki breeki
can i talk with google translate??
i talk with google translate
sfc /scannow; dism /online /cleanup-image /restorehealth; sfc /scannow
WHy
I'm about to explain why
i didnt done anything
Your typing was coming through, and there was some weird text to speech voice in the background
It was disruptive
let me guess, you weren't using your real voice
sorry
i will try to type not loud
my keyboard suck
@rugged root Default tried to explain himself earlier
hey sorry i was too loud when i joined, but just now i just wanted to say hi to jojo
I understand
if you play sounds on your mic, i'd say that counts as micspamming
Just please mute when you're not talking to us, Default
alright, because it's about dropshipping and off topic
Or use push to talk or something
but i cant speak english
i can write only
okay call me @frozen owl
i want to communicate
@prime kestrel Then mute
you can do so without micspamming
You can still talk to us here
like in private? you added me as friend
i can say but it will be trashy shit that notunderstandable
Just mute your mic
th
Thank you

This looks similar
ok
@rugged root
funny if it turns out you have to fix the same problem lol
have you tried turning it off and on again? LMAO
Already told him to, funnily enough
@fierce summit Did that fix it?
Pasting large amounts of code
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
Let me know when people have been fed.
Increased Earning Potential: On average, employees with a graduate degree earn 28 percent more than bachelor’s degree holders over their lifetime. Data from PayScale shows that computer science professionals with a master’s degree, specifically, see an average salary of $101,000, compared to $86,000 for those with a bachelor’s degree.
is this from the bls?
@fierce summit I haven't forgotten, just double checking some things before I tell you to start poking in your registry
dude lacroix tastes like sunscreen
I'm back
Method 2 is probably your best
@quasi condor did heat wave finally break?
31 still
broke 40c today
only got to 38 here
big difference between 39 and 40
rarely
!tempvoicemute 660505628803858434 1w The entire time you've been on call, you've been combative, disruptive, trolling, and continuing to lean in extremely close to the mic making your voice blow out the mic. None of this is appropriate behavior. Nor is leaving the voice chat with "Molester, out." If your behavior does not improve when you return after the voice mute, you will have your speaking privileges removed permanently.
:incoming_envelope: :ok_hand: applied voice mute to @lethal thunder until <t:1658861249:f> (6 days and 23 hours).
@rugged root mr it man
Assistant Commissioner of the London Fire Brigade tells Sky News that his crews are battling fires across the Capital.
It comes after the UK recorded a temperature above 40C for the first time ever.
#skynews #heatwave #weather
SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews
Follow us on Twitter: https://twi...
you know on Windows 10 you can pin the weather to the taskbar
how do I do it on Windows 11
Linux
!stream 494575788377636874
✅ @fierce summit can now stream until <t:1658256996:f>.
...and other musings on thermal movement of large civil works.
Most people have a certain intuition about thermal expansion, but you may not have considered how engineers design to accommodate it on large civil structures. The video gives a quick overview on this important consideration that engineers must account for when designing infrastruct...
shut the fuck up
I appreciate the data on overall salary but the question is masters/bachelors pay in CS which I don't think this speaks to
d = dict(
DV1="Development",
QA1="Quality Assurance",
...
)
d.get(stage_name.upper(), "Unknown")
``` @amber raptor
!e
This is fairly common to see in real code bases (with the lambdas swapped out for real functions)
d = dict(key=lambda x: "func 1", key2=lambda x: "func 2")
print(d.get('key what we dont have', lambda x : 'fuck')("test"))
@quasi condor :white_check_mark: Your eval job has completed with return code 0.
fuck
what are these stupid buttons?
lambda x : print(f"you passed in: {x}")
# That is the same as above ^
def equivalent(x):
print(f"you passed in: {x}")
!e
my_dicts = [
{
"first": "foo",
"second": "bar",
},
{
"first": "spam",
"second": "baz",
},
{
"first": "spam",
"second": "eggs",
}]
for my_dict in my_dicts:
match my_dict:
case {"first": first, "second": "bar"}:
print(f"Second is bar and first is {first}")
case {"first": first, "second": "baz"}:
print(f"Second is baz and first is {first}")
case _:
print("Can not match this dict")
@terse needle :white_check_mark: Your eval job has completed with return code 0.
001 | Second is bar and first is foo
002 | Second is baz and first is spam
003 | Can not match this dict
!e
# We want to sort numbers by their last digit
l = [1,2,3,10, 100, 122, 123]
print(sorted(l, key = lambda n : str(n)[-1]))
```#
% 10 😔
@quasi condor :white_check_mark: Your eval job has completed with return code 0.
[10, 100, 1, 2, 122, 3, 123]
don't question my ways
Text version of the video
http://csharp-video-tutorials.blogspot.com/2014/06/part-1-what-is-linq.html
Slides
http://csharp-video-tutorials.blogspot.com/2014/06/blog-post_28.html
LINQ Tutorial - All Text Articles & Slides
http://csharp-video-tutorials.blogspot.com/2014/07/linq-tutorial.html
LINQ Tutorial Playlist
https://www.youtube.com/playli...
As far as I can tell BLS does not partition by occupation/degree only by field when the question of masters vs bachelors appears https://www.bls.gov/careeroutlook/2015/article/should-i-get-a-masters-degree.htm
Both payscale and BLS agree there is a significant pay increase for a masters in STEM/CS
the question wasn't if there was an increase, though, it was whether or not it was worth it
You dont get to change the question
huh?
The question is whether or not there is a significant pay increase for a masters degree
sure lol
sure lol
Regardless lets say you incur 100k of debt
your lifetime earnings with a masters degree is 1,000,000 dollars higher
Your strategy of yelling insults is a great one
keep it up
sure lol
I accept your concession
you might be right, looking through the old notebooks, there's information about postdoc salaries, and information with it cut by degree for the UK but not the US
I appreciate the constructive dialogue we had
for sure the BLS data is a higher quality
To be clear: I never even gave an opinion on whether or not a MSc is worth it, just said that using shit biased data isn't better than using no data.
My actual opinion, on the original and specific question of a masters degree worth it is: I think the data would imply that it is, but that doesn't incorporate the fact that people doing an MSc are on average more intelligent and on average more motivated than someone who gave up after a bachelors - whether or not someone who would be likely to complete a masters would earn more from having completed the masters is something that probably can't be answered with any data available to anyone
sure I agree there is correlation with master degree holders and general cognition, I know many studies have been done for general cognition and bachelors but the data from payscale is self reported salaries of n=3000. Data with measurement bias is better than using no data however in supporting claims, every scientific instrument has some kind of bias in measurement, imprecision or inaccuracy. Counter claims which attempt to dismiss data supported claims via bias without meaningful measurements of that bias (aka sourced data) are dismissible.
level of education correlates with IQ, phd on average smarter than msc on average smarter than bachelors - but clearly that doesn't tell you anything about any specific individual
and you'd expect that to hold true, because the higher the degree of education the harder it is and the more your base aptitude matters
for sure G is the most predictive psychometric ever! However the interplay between G, education, and salary seems to be an answer to a different question. The market value for a msc is higher

vc
need some help with data processing
csv data normalization
specifically doing stock prices
the issue is that in order to normalize, i determined that i should use percent change
the issue isn't the normalziation technique
its that after i normalize
when i drop NaNs
it drops waay too much data
say theres like 9000 days for apple
ill change the values to percent change to normalize
and then dropna
and by the end there will be like 300 data points left
there arent NaNs in the raw file
they are being generated somehow by the normalization process
i use the pandas pct_change funcction
wish i could talk hold on
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
ah
well the weird part about it is that
i did minute by minute data and it worked perfectly
the csv aspect isnt really the problem i don think
what i notice is that when i run the pct_change function on 90k datapoints (a lot more data points when ur doing minute by minute rather than daily) it works fine, however i notice that it still drops about 10k data points due to pct_change gnerating nans, however when u have 90k datapoints dropping 10k is acceptable, when u only have 8k data points e.g. for daily data dropping a similar amount doesnt work cause ur left with pretty much nothing
well i know that some nans are guaranteed to generate from the first item
because when the pct change function runs, it compares the prev element to the next one
well i think the issue is that
it looks at the first val, says ok whats the percent change from the previous value
and then its like oh well there is no prev value so the %change is NaN
then my code says the drop the NaNs
true
thats y itd be nice to talk and stream lol
its aight tho thanks for the good attitude
i sleep now tho thx for help
Righty.
Family visiting a town ~5 hours away to visit some relatives on my aunt's side
Not particularly much to do in the town for 3 days, so I opted to stay back at home in my nice bed
They'll be back 23rd-26th, and then they're off back home
As opposed to your nasty bed?
As opposed to a shared bed with sister/uncle in some hotel somewhere sharing the washroom with 5 people.
But yes, I got the joke and I chuckled
I think it sounds like you made a good call.
It's a nice town, but they're visiting an elderly relative that's immunocompromised so they're going to have to be extra careful and stay at home anyway, plus there's not much to actually do there and I've visited before
Nope, back in Toronto!
Will be at my computer in 40 minutes or so. Can talk properly then if you're still around
Very much
I'm so ready to code something up next 3 days I have free
Fam back in Toronto for 3 days then
Will be fully free again from 26th
Gotcha
I wish people had polar bear problems instead
🙂
Getting on the subway, gotta jump, see y'all later tonight
I keep having troubles with this import statement that makes little to no sense. I have tried both relative and absolute imports.
oh god wat is tat theme
Provided you can stop dithering long enough.
🙂
if some_test_condition:
db = TestConnection()
else:
db = RealConnection()
# whatever you want t do
db.execute(...)
if some_test_condition:
db = TestConnection()
else:
db = RealConnection()
# whatever you want t do
run_all_tests(db)
This one?
Am I able to ask for help here?
I'm sure it's super basic but I need to iterate through two arrays
A = ["1", "2", "3","4","5" ] B = ["a", "b","c"]
I want to run a loop that goes like this,
1a, 2b, 3c, 4a, 5b
!d zip
zip(*iterables, strict=False)```
Iterate over several iterables in parallel, producing tuples with an item from each one.
Example:
```py
>>> for item in zip([1, 2, 3], ['sugar', 'spice', 'everything nice']):
... print(item)
...
(1, 'sugar')
(2, 'spice')
(3, 'everything nice')
```...
zip( a, cycle(b))
!d itertools.cycle
itertools.cycle(iterable)```
Make an iterator returning elements from the iterable and saving a copy of each. When the iterable is exhausted, return elements from the saved copy. Repeats indefinitely. Roughly equivalent to:
```py
def cycle(iterable):
# cycle('ABCD') --> A B C D A B C D A B C D ...
saved = []
for element in iterable:
yield element
saved.append(element)
while saved:
for element in saved:
yield element
```...
maybe there's another method you would suggest
arrr yes
unpacking
I was over thinking it
hmm how do you return the array in the zip
A = ["1", "2", "3","4","5" ]
B = ["a", "b","c"]
def cycle(iterable):
# cycle('ABCD') --> A B C D A B C D A B C D ...
saved = []
for element in iterable:
yield element
saved.append(element)
while saved:
for element in saved:
yield element
x = zip(A,cycle(B))
print(x)
for k in x:
print(k).
got iot
it*
!e py alpha = "abc" beta = "123" for a, b in zip(alpha, beta): print(a + b)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
001 | a1
002 | b2
003 | c3
should be fine
#steam
#triciclo
moto a vapor
carro a vapor
veiculo movido a lenha
como fazer um carro
como fazer uma moto
energy free
🙂
see u later
@somber heath didn't here that, could you say that again?
oh are you talking to someone else
@somber heath that's weird... I only see the two of us
Hey mate!
You australian?
Haha great, Im from melbourne 🙂
Just getting into python =] =]
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I am attempting to re purpose a fishing script for educational purposes
trying to learn python
Have you ever dabbled in home automation?
- Fishing as in for a game
Yeah dont worry im not some weirdo hacker hahaha
Well see the game im doing it on is similar to new world fishing but the variables are a bit differentr
Thats good!
Opal, would you be willing to donate a little bit of your valuable time for my fishing bot project
What i think I need to do: 1. change screenshots 2. change focus 3. add a few button presses
Yes sir, ill link it here
In game python script that does automatic fishing
here is whats happening look
this is the code:
Hey @spiral goblet!
You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.
:incoming_envelope: :ok_hand: applied mute to @spiral goblet until <t:1658301998:f> (9 minutes and 59 seconds) (reason: newlines rule: sent 120 newlines in 10s).
@spiral goblet Someone may be along shortly to remedy the situation. Or not. In either case, you can just sit and twiddle your thumbs.
okay im back
thats what im looking at!
Question: castingBaseTime this variable
where is this being defined / pulled from?
Nah this isnt my code
Im trying to learn it lol
Brand new =] =]
a bit of LUA
Corey Schafer, Youtuber. Playlist for Python beginners.
please can you advise me where to start with python
check out the resources page
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
has some courses listed
many thanks
np
Question regarding the zip iterations, when I run a for x in a: #where a is zip(a,cycle(b)). the loops breaks
what error does it give
It'll be because a is finite.
Specifically, the a inside the zip
Avoid overlapping your variable names if you're working in the same scope.
for x in *a*, zip(*a*, ...
It's probably fine, but can be confusing.
!voice
can I send you a dm with a screenshot
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
No.
no i got muted
can I post a screenshot here?
If you so choose.
by an admin
for 7 days!
for saying the words: "Moe Lester"
i sent a message to modmail
i appealed my mute
me and the admin had a disagreement
@somber heath
the nested for loop seems to not run properly
it runs the for k in xa: only once when I want it to look 20 times
super odd
for kkk in range(1,20):
for k in xa:
print(k)
should that do the entire range of k in xa 20 times?
instead it breaks out after doing one k in xa then loops on the kkk = var
@errant brook join the vc
yea look at the console
opal has been speaking the whole time
it does the for k in xa loop once and then breaks out
I think the nested for loop is bugged
yea fair
for loop is bugged
yea it only does it once
doesn't even do it 2 times
this works
this loops the full amount
however in the snip above, that doesn't for some reason, peep the console
that's correct in this one
peep blue part
that's what I mean, it's breaking out of the for loop for some reason
only thing that changes is the xa table
see the confusion haha
@somber heath weird the array still exists however it wont loop again. it skips the for k in xa the second time
@frozen owl any chance you can help? or know anyone who can?
If you think it was just because of that, you didn't read the rest of the infraction
u abused ur admin powers
when did i blow into my mic?
disruptive?
what did i disrupt exactly?
combative...?
you muted me after i left the vc
you werent muting me cause i was harrasing someone or argueing, you muted me after i left
what rules did I break to reveive my mute?
besides saying "Moe Lester" Once while i was leaving vc (which was immature but didnt require a mute for 7 days!)
@whole bear just used the f word but i dont see him being muted for it
i was leaving when i said it
i just said "Moe Lester"
i didnt even get a warning
i just got a week long mute
@rugged root unmute me
It'll be addressed in the ModMail
already did
you only muted me cause you were having a bad day
had little to nothing to do with me
You already have a modmail thread open about this that we are actively reviewing. If you say anything more about it over text, you will be muted.
yes mam
@terse needle Does KJ know he's deafened?
Boni also read it as "defeated" the first time round.
Hemlock needs to phrase things better
Installing, this may take a few minutes...
WslRegisterDistribution failed with error: 0x80370102
Error: 0x80370102 The virtual machine could not be started because a required feature is not installed.
Press any key to continue...
"+y
@whole bear Restart your machine and start tapping F2 as it's powering back up. That'll take you to the bios
(don't do it yet)
V V V 👋 👋 👋
@whole bear
Open a PowerShell or CMD and enter the following:
wsl --set-default-version 1
Installing, this may take a few minutes...
Please create a default UNIX user account. The username does not need to match your Windows username.
For more information visit: https://aka.ms/wslusers
Enter new UNIX username:

We had some kangaroos up the hill, today. Haven't seem them around for a while, so it was nice.
It doesn't exist
And if you ask, no permanent role for you.
so true
passwd right?
yes
the shell reminds me of xonsh
just when I see a conch in the context of shells and linux it reminds me of xonsh
the actual shell as in the physical object not "the shell" as a terminal
I know
!stream 845850546333679647
✅ @whole bear can now stream until <t:1658327963:f>.
Enter the new value, or press ENTER for the default
Full Name []:
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Is the information correct? [Y/n]
@rugged root
did you know this was a thing lol
ok bet
yeah
James Anthony Bowen (born 15 March 1979) is an English author based in London. His memoirs A Street Cat Named Bob, The World According to Bob and A Gift from Bob, were international best-sellers. A film based on the first two books was released in 2016 and a sequel was released in 2020. Bowen now dedicates his time to helping numerous charities ...
oh I read his book
it was really good
A Street Cat Named Bob
yo could someone help me in code/help real quick
@rugged root
So.... You know how printer settings have a "ports" tab, where you can switch which port your printer is attached to?
you might want to get a help channel
The second time this week, I got called in for a printer not printing, and when I checked, the printer wasn't assigned to a port
am i aloud to if it doesn't involve python
See the offtopic channels for not Python
yes, they are evil little devices
How does a printer just unassign itself?
I don't think I've ever seen that as an issue
Software estimations: double it and then double it again!
@gentle flint https://diablo.fandom.com/wiki/Rakanishu ?
"Raaaakanishu!" — A Fallen War Matron(src) Rakanishu was a particularly brutal Fallen One, feared and perhaps even respected among his own kind. Driving his minions into a frenzy, Fallen could often be heard screaming his name as they rushed headlong to their deaths. Whether it be through fear or loyalty, Fallen in his presence refused to break ...
@gentle flint ❤️
“Anyone who is capable of getting themselves made President should on no account be allowed to do the job.” <-- Applies to just about any big lead
yo
can somone help me rq?
Img = []
for item in skinsavailable:
Images = imagesdictionary[item]
Img.append(Images)
Imgdisplay = []
for item in Img:
if item:
r = requests.get(item)
img = Image.open(BytesIO(r.content))
img2 = Imgdisplay.append(img)
with tempfile.TemporaryDirectory() as skinsfolder:
print("file created", skinsfolder)
skinsfolder2 = tempfile.TemporaryFile()
for item in Imgdisplay:
Image.SAVE(skinsfolder, 'JPEG')
skinsfolder2.seek(0)
skinsfolder2.read()
File "c:\Users\getre\OneDrive\Desktop\CanvasMessengerbot\valshop.py", line 110, in <module>
Image.SAVE(skinsfolder, 'JPEG')
TypeError: 'dict' object is not callable```
hello @wind raptor
hello @lavish rover
hello everyone
chris i want to make a project
That’s great tip :0
so when a person says my name i get undeafen
What kind of project?
@zenith radish your email being line-broken onto 2 lines takes it down 2 points for me LOL
Sounds like you'll learn a bunch doing it
so when a person says my name i get undeafen
Ohh, that's the project
I see
That would be a form of self-botting, so I unfortunately cannot help you there.
It's not really a good question for this server due to the rules
👍
and i want it for only myself
May I ask how it's useful if you don't talk in the server? Or are there other servers you actually vc in?
yes
Gotcha
i want to this for fun
everthing i do
has no use
for anything
i am learner
and i do anything to learn
Not a bad goal! A lot of stuff I do is the same haha
nice
It is probably just the undeafen that is self botting. You can still ask about name detection.
Yeah
ok
so i will go fot that
now if you can tell me about some library for that
@lavish rover where are you from
Gujarati
After my paycheck I'm gonna upgrade to g@veil.gg
gujarati
Speech recognition is pretty spotty still. Google can't even do it right half of the time but there are some Python libraries for that.
https://realpython.com/python-speech-recognition/ - maybe a useful article to learn about it.
thank you
There's Fastmail.
l.
so it's not been electron for a while now?
It is on Windows 10
hello @lavish rover where are you from
gh auth login
@lavish rover le mur
How can i become an admin? @rugged root
@rugged root you sound like my teacher
"Behaving"
But actully how can i become as developed in this discord server as you @rugged root?
@lethal thunder why do you keep changing your name a profile picture?
ill do it again
ok?
It is so helpful, thank you so much.
how can i become an admin/mod/helper/owner
hi
See #roles

homebrew I would assume
Thanks let me check
buddy on youtube i have seen like they are installing from terminal
how can i get
I don't know
I don't use MacOS
i do that but i am getting some erorr
@strong arch
buddy did you use mac os?
.wa s define prophetizing
Failed to get response.
I guess we'll never know
Hello. I'm Takuya Matsuyama from Japan, an indie developer making a Markdown note-taking app called Inkdrop.
I've set up PowerShell environment for my Windows PC.
I hope you enjoy it!
▶ Check out Kazephoto's beautiful nature videos
https://www.youtube.com/watch?v=2LRXlZtF7xc
▶ Check out my product: Inkdrop - Markdown note-taking app
https://www...
check out how cheap these are https://vast.ai/
(obviously not secure so use w caution)
Neat
A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.
geeksforgeeks?
You're an admin @rugged root
@rugged root can we have this as a server emoji
I'll even make an svg of it for the server
please
k
!paste
Pasting large amounts of code
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
For the former employ at GNB, see Randy Wharmpess.Wharmpess is a very successful beer, created by Randy Wharmpess. In Canning Randy, Randy was thrilled that he was fired, as he plans to use his severance to start up his own beer brewery. However, Marshall feels incredibly guilty and convinces Arthur to have Randy rehired and urges him to be m...
sudo
fancy seeing you here

Cunningham's Law states "the best way to get the right answer on the internet is not to ask a question; it's to post the wrong answer."
@leaden comet You around to view another duck creation?
emoji is the best idea for low res sample data, i always forget
need help preventing ctype crash
fatal py error: cannot recover from stack overflow
!traceback
Please provide the full traceback for your exception in order to help us identify your issue.
While the last line of the error message tells us what kind of error you got,
the full traceback will tell us which line, and other critical information to solve your problem.
Please avoid screenshots so we can copy and paste parts of the message.
A full traceback could look like:
Traceback (most recent call last):
File "my_file.py", line 5, in <module>
add_three("6")
File "my_file.py", line 2, in add_three
a = num + 3
TypeError: can only concatenate str (not "int") to str
If the traceback is long, use our pastebin.
I think the angle of this one is better
it actually helps with the squash/stretch issue as well
!stream 777116875972018186
✅ @waxen aspen can now stream until <t:1658344682:f>.
yeah 2nd movie I think
I don't think we've ever had a ducky with legs
!e
for x in range(0, 7):
globals()[f"variable{x}"] = f"This is variable number {x}!"
print(variable0, variable3, variable6, sep="\n")
@wind raptor :white_check_mark: Your eval job has completed with return code 0.
001 | This is variable number 0!
002 | This is variable number 3!
003 | This is variable number 6!
!e
print(globals())
@terse needle :white_check_mark: Your eval job has completed with return code 0.
{'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__spec__': None, '__annotations__': {}, '__builtins__': <module 'builtins' (built-in)>}
.wa s 20C in F
68 degrees Fahrenheit
.wa s 103F in C
about 39.4 degrees Celsius
Doesn't this make you want to switch to being a Python dev? @zenith radish
Thanks for taking the time to contribute to websockets! Code of Conduct: This project and everyone participating in it is governed by the Code of Conduct. By participating, you are expected to upho...
This guy really hates Boris 
most of us do, except the tories
G2G to make some dinner. Cheers all!
@terse needle @zenith radish brawlhalla in 20m? (I feel like I can guess the answer)
sure
1/2
@gentle flint @sour imp want in @quasi condor
@zenith radish come to outside voices
!e py a = set("abbccc") print(a)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
{'c', 'b', 'a'}
:v oh thats something i just learned
!e
code
!eval [python_version] <code, ...>
Can also use: e
*Run Python code and get the results.
This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.
If multiple codeblocks are in a message, all of them will be joined and evaluated, ignoring the text outside of them.
By default your code is run on Python's 3.11 beta release, to assist with testing. If you run into issues related to this Python version, you can request the bot to use Python 3.10 by specifying the python_version arg and setting it to 3.10.
We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*
!eval [3.0] <print('hello world'>
!e py a = {'a', 'b', 'b', 'c', 'c', 'c'} print(a)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
{'c', 'b', 'a'}
@hardy belfry :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | [3.0] <print('hello world'>
003 | ^
004 | SyntaxError: '(' was never closed
!e py print("Hello, world.")
@somber heath :white_check_mark: Your eval job has completed with return code 0.
Hello, world.
!e
code
!eval [python_version] <code, ...>
Can also use: e
*Run Python code and get the results.
This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.
If multiple codeblocks are in a message, all of them will be joined and evaluated, ignoring the text outside of them.
By default your code is run on Python's 3.11 beta release, to assist with testing. If you run into issues related to this Python version, you can request the bot to use Python 3.10 by specifying the python_version arg and setting it to 3.10.
We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*
!e
print('hello world')
@hardy belfry :white_check_mark: Your eval job has completed with return code 0.
hello world
!e py s = set() s.add("apple") print(s) s.add("pear") print(s) s.add("apple") print(s)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
001 | {'apple'}
002 | {'pear', 'apple'}
003 | {'pear', 'apple'}
Hey @hardy belfry!
You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.
@hardy belfry :x: Your eval job has completed with return code 1.
001 | input a year number: Traceback (most recent call last):
002 | File "<string>", line 21, in <module>
003 | EOFError: EOF when reading a line
!e
code
!eval [python_version] <code, ...>
Can also use: e
*Run Python code and get the results.
This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.
If multiple codeblocks are in a message, all of them will be joined and evaluated, ignoring the text outside of them.
By default your code is run on Python's 3.11 beta release, to assist with testing. If you run into issues related to this Python version, you can request the bot to use Python 3.10 by specifying the python_version arg and setting it to 3.10.
We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*
Hey @hardy belfry!
You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.
code
!eval [python_version] <code, ...>
Can also use: e
*Run Python code and get the results.
This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.
If multiple codeblocks are in a message, all of them will be joined and evaluated, ignoring the text outside of them.
By default your code is run on Python's 3.11 beta release, to assist with testing. If you run into issues related to this Python version, you can request the bot to use Python 3.10 by specifying the python_version arg and setting it to 3.10.
We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*
Hey @hardy belfry!
You either uploaded a .txt file or entered a message that was too long. Please use our paste bin instead.
code
!eval [python_version] <code, ...>
Can also use: e
*Run Python code and get the results.
This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.
If multiple codeblocks are in a message, all of them will be joined and evaluated, ignoring the text outside of them.
By default your code is run on Python's 3.11 beta release, to assist with testing. If you run into issues related to this Python version, you can request the bot to use Python 3.10 by specifying the python_version arg and setting it to 3.10.
We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*
!e
x = input("enter something")
print(x)
@hardy belfry :x: Your eval job has completed with return code 1.
001 | enter somethingTraceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | EOFError: EOF when reading a line
!e py a = set("abcde") b = set("defgh") c = a.intersection(b) print(c)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
{'e', 'd'}
!e py a = set("abcde") b = set("defgh") c = a.difference(b) print(c)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
{'a', 'c', 'b'}
Everything that appears within both sets. If something exists in one but not the other, it is not included.
Everything that exists in one except anything that is in the other.
lets talk
i try not to say anything bad
one condition
i will say swears
ok
no ban for me lplz
i don't have a mic
but i have a headphone
hi
hello
hello
Dmes
hello @somber heath
how are you doing opal
nice answer opal
hey opal
spotify
can we link spotify to discord
how old are you Opal
ok
Hello
What is the point of this discord server?
python
ohhh
okay
mm thx for the answer
Is Python going to be used in the future?
or is TypeScript taking over?
I am new to programming and I am trying to learn the best programming language
Thx for explaing it
yeah
Many
Isn't Python to slow for it tho?
@somber heath tnx




