#voice-chat-text-0
1 messages · Page 733 of 1
@Client.command()
async def clear(ctx, amount: int):
await ctx.channel.purge(limit=amount)
@Client.command()
@has_any_role(role_id)
async def clear(ctx, amount: int):
await ctx.channel.purge(limit=amount)
maybe something like this would work?
!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.
make an api
this works>?
it will raise commands.CheckFailure btw
k
half a pack!?
that's a lot
I've only ever had 3 in my like entire life
that's good. Always remain in control so you dont get addicted
I would do that
The what now?
get_channel GET /channels/{channel_id} {'channel_id': discord-api-docs\docs\resources\Channel.md}
Hey guys i installed the Visual Studio Build Tools and now i get this while trying to pip install scrapy
You might need to close and re-open VS Code in order for it to recognize the stuff.
But I'm going to check to make sure scrapy supports 3.9
Yeah, that might be the issue
Seems to only support up to 3.8 so far
In the docs they say 3,6+
@pure path @hAS#6760_any_role is not defined
it could end at 3.9
I'm looking on their github
The docs do mention 3.6+ but one of their little active tabs only shows 3.6, 3.7 and 3.8
oof
Yeah, and that's why I'm thinking it might be the case. Couldn't hurt to give it a shot with 3.8
If you have it on your system, you can use the py launcher to run it py -3.8 -m pip install scrapy
let me check
im learning rust
It is one of the hot new languages. Word on the street is that it is fairly secure.
I'm gonna restart my vpn brb
Pyhton 3.9.1
@rugged root how can i fix @has_no_role
@olive siren I'd go ahead and snag the 3.8.(whatever the latest is) and give it a shot
i think it make sense to set up a virtual environment for that
@olive siren Oh for sure. But you'll still need 3.8 on your machine in order to make the venv
@whole bear You don't want to escalate, and you could shoot your eye out.
Here is a video containing all the clips from A Christmas Story that contain the famous quote "You'll shoot your eye out" or a variation of it. The clips that have this quote were a running gag in Ralphie's quest to get a Red Ryder BB gun. They are my favorite part of this classic film because it is so funny.
hmm
f u n d a m e n t a l l y
yeah
Does it mean i get trouble if i set up the venv in 3.9 and install 3.8 within the venv
t e c h n i c a l l y
Sorry if my questions are a little foolish
e s s e n t i a l l y they aren't
@whole bear Flash light recomended: https://www.youtube.com/watch?v=5f6mDfc5zg4
Check out http://KiwiCo.com/hacksmith50 for 50% off your first month of any subscription crate.
Hey @Markiplier -- want to review this one? I think it's a bit brighter..
See the circuit diagram at Maker.IO ► https://www.digikey.com/en/maker/blogs/2020/the-hacksmith-the-worlds-brightest-flashlight
Check out the Imalent MS-18, the brightest fl...
Just don't use a laser 😛
I feel enlightened
it's probably not overheating
@rugged root A ticket to ride.
it's pretty hot when I touch it
i thought led's stay could
They should.
the big LEDs used to light up football fields etc need to be cooled with a radiator
@whole bear Though this light may be a bit more practicle for chasing kids off your lawn. https://www.ebay.com/itm/164333089769
i n t e r e s t i n g
I'm not quite understanding what you mean. You'll need 3.8 to make a venv of it. I'm not sure what you mean by making a 3.8 venv in 3.9
maybe the carmakers should use this ones instead of building a heater into there Headlights
Here us something that you may find at a sporting event: https://www.ledlightexpert.com/500-Watt-LED-StadiumPro-II-LED-Stadium-Lights--65000-Lumen-LED-Ballpark-Lights--5000K-Bright-White--10KV-surge--30-degree_p_1380.html?msclkid=140b917732031d08b3ccf177427483dc
i'm not familiar with venv
65,100 lumens!?
so i tryin to understand how it works
good idea
Find active github forks of a repo https://git.io/vSnrC - techgaun/active-forks
@olive siren I'll try to find a good article about it. Not sure how to explain it
500w LED, normally LED's bulbs are what, 8 watts? for a few hundred? I think my 800 lumen LED's take 12 maybe
I have to go I'll see you guys later. bye
I want that 65k light though, that sounds fun
The kids would definately think twice about throwing snowballs. However, I still some good tit-for-tat, snow ball retaliation. Nothing wrong with a little excercise.
https://saralgyaan.com/posts/venv-python-a-complete-tutorial-on-virtual-environments-in-python/ So this more or less covers it. The only difference you'll need to know (since you're on windows) is that on the "How to create a Virtual environment using different versions of Python", you'll use py -3.8 or whatever version you want to use instead of python3 or python3.8 or what have you. The latter is for Mac and Linux
The Python Docs are fairly descriptive as well https://docs.python.org/3/library/venv.html
They are, although I have a hard time recommending conda unless you specifically need it for a project you're working on or if you're working on a team that uses it. I've had issues where conda completely takes over package management whether you want it to or not. But that's just been my experience, it's possible (likely) that I didn't look into how to properly work with it
@rugged root A three dollar bill.
Description Our LED Stadium Sport Lights are the top of the line in both quality and price. With LUMILEDs and a Meanwell Driver, the fixtures are guaranteed up to 5 years. Our LED Powered 1200W Street Lights have no UV or IR in the beam and are easy to install and operate. Additionally, these LED Powered Lights provide
interessting
maybe i try it out in the future. right now i don't get the benefit for me
Primary use for conda is typically for datascience or other scientific projects to make sure that everyone has the exact same versions of everything, since even a minor version difference can sometimes give different results. Most of the time it isn't really needed, especially when starting out or in normal projects
thank you for you advice and your recomendation
Always happy to help!
Rockclimbing lubricant.
lime 😄
It helps me realy to keep learning. Now i take a dive into venv
Loggistics
I have been volunteering for Masksfordocs, and logistics of getting masks to doctors was the biggest bottle neck.
import operator
def dispatch_dict(func, x, y):
return {
'add': operator.add(x,y),
'sub': operator.sub(x,y),
'mul': operator.mul(x,y),
'div': operator.floordiv(x,y),
}.get(func, f'"{func}" operation does not exists')
print(dispatch_dict('mull',2,8))
I need some help here,
This code isn't ideal from performance perspective, we can make the dictionary a constant and reference it inside the dispatch_dict function. We don't want to recreate the dictionary every time function gets called.
How? how to do 👆 ?
Oh that's awesome. What all have you been doing for them?
I have actually been interested in writing a blockchain application to deal with common supply chain problems in distributing aid.
Been working since May...
@wise glade Have it outside the function. Also, you'll likely want to use Partials
Actually no wait
I derped, okay now I know what needs done
We have software called distribute aid, however it requires central servers and maintinance.
The Blitzkriegh was mostly about loggistics.
omega-3, maybe from tomorrow? 😂
new deli
Download Firefox Multi-Account Containers for Firefox. Firefox Multi-Account Containers lets you keep parts of your online life separated into color-coded tabs that preserve your privacy. Cookies are separated by container, allowing you to use the web with multiple identities or accounts simultaneously.
This would deffinately push me over to using firefox for personal use.
is that Google, or is it Alphabet that is pushing the business model?
Does it matter?
It is the business model and incentives that are pushing this, so yes.
Alphabet and Google are pretty similar
hey anyone want to join my study group
we are just racing each other on complex problems
Forinstance, if congress wants to break up google, they could separate it from it's Alphabet overlord.
That wouldn’t work
Though I guess technically it would be the FTC, or the FCC.
Google needs to be broken up
I think the same thing needs to happen to them, that happened to Microsoft.
where's roosevelt when you need him
yup, and they are a better company for it.
He was reincarnated as a woman: see Elizabeth Warren.
😋
@pallid cedar Check out the #voice-verification channel. That should tell you what you need to know about our system!
time to work with markov chain, kinda
How kinda?
how can i send my code like that
!codeblock
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.
thanks
'''py
'''py v = 12000
print(f"abc {'$'+str(v):>20}")''
"""py v = 12000
print(f"abc {'$'+str(v):>20}") """
It's backticks, same key as the ~ tilde key next to the 1 on the number row
ééépy v = 12000
print(f"abc {'$'+str(v):>20}")ééé
Try copying them from the embed
Happy to help
´´´py lksgss´´´
*keyboard layout
py print(hello)
Oh there we go
HURRAH
yeah
thanks lol
colemak >>
Inheritance@Inheritance-MBP markovify % pipenv run start
When the reference count of an object cannot be altered.
A PEP is a non-profit corporation.
However, with context variables, there may be several contexts in one execution thread may have a namespace containing arbitrary Python objects.
Local variables both read and write to the global namespace.
Modules have a different value for a number of reasons.
@balmy nymph kinda making progress with markov chain 
Awesome!
@rugged root
military intelligence
hello
Yo
hows it going?
@hallow warren I muted you because you keep stepping on conversations and derailing them entirely. I would ask that you please try to be considerate of the other people who are already discussing something in the voice chat.
@sinful estuary Going well, you?
im very anxious couse finaly i am learning python
You liking it so far? I'll gladly clarify some concepts or point you to some good resources if you need them
i'm getting a really weird error with sql
sure
it's saying i can't query while not in logged in state despite being in logged in state
i'm not trying to execute two things at once or anything
#databases Will know than us in here, Reg
i'm trying j redeploying
because i have changed nothing
and it just stopped working
!resources @sinful estuary We've got a ton of great resources on our site. Two of the common texts we recommend are "Automate the Boring Stuff" and "A Byte of Python"
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
yeah i've heard abt both those books
thanks
but i didn't notice this error and i changed so much random shit trying to fix it
thank god i created a new branch
This was the Crypto governence system I was talking about: https://tezos.com/
Neat, I'll take a gander
yeah redeploying fixed it but that's problematic...
i can't have that happen again like it just did
Like I said, #databases should be able to either help you iron it out or guide you to somewhere that can
it's j in node, i'm just ranting about my problems
Ah, fair enough
is college worth it for this field of work? excuse me if this has been asked before
idk i never went
Aaaaand I'm back
fuck why has today been the first day that it crashed
@whole bear It can't hurt. You'll have an easier time finding jobs as opposed to someone with no degree, however it's not impossible to find one.
#career-advice can give you more advice than I can on the topic. I just do coding as a hobby
ooh thank you!
No problem!
@pastel shard https://hackaday.io/ or https://www.instructables.com/
Hackaday.io is the world's largest collaborative hardware development community.
Instructables is a community for people who like to make things. Come explore, share, and make your next project with us!
So the RabbitMQ icon kind of looks like someone throwing up the horns at a rock concert
!e import file
@honest pier :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | ModuleNotFoundError: No module named 'file'
!e
with open("yoink.txt", 'w') as f:
print(type(f))
@honest pier :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | OSError: [Errno 30] Read-only file system: 'yoink.txt'
!e
import io
import sys
sys.stdin = io.StringIO("hey")
print(input())
@honest pier :white_check_mark: Your eval job has completed with return code 0.
hey
>>> with open("text.txt", "w") as f:
... print(type(f))
...
<class '_io.TextIOWrapper'>
!e ```py
import io
import sys
sys.stdin = io.StringIO("hey")
print(input())
sys.stdin = io.StringIO("hoo")
print(input())
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
001 | hey
002 | hoo
hu
!e
from io import StringIO
import sys
class MyInput:
def __init__(self, s):
self.old_stdin = sys.stdin
self.new_stdin = StringIO(s)
def __enter__(self):
sys.stdin = self.new_stdin
def __exit__(self, i, d, r):
sys.stdin = self.old_stdin
with MyInput("hey hemhem"):
print(input())
@honest pier :white_check_mark: Your eval job has completed with return code 0.
hey hemhem
who would have thought calling tiers of agents with a 3 sec delay between each tier is difficult
yes
Hello Kin
hi
hi can a big global variable be problematic
yes
should i just trim it
or should i store the data in a json file instead
because it is a global for all of the different sessions data
like things that each session need
and how can the big global be problematic, can it slow stuff down
i'm still confused why a big global is bad
Introducing the Atari VCS. Unmatched versatility for gaming, entertainment, and productivity.
like ij have one global
!global
When adding functions or classes to a program, it can be tempting to reference inaccessible variables by declaring them as global. Doing this can result in code that is harder to read, debug and test. Instead of using globals, pass variables or objects as parameters and receive return values.
Instead of writing
def update_score():
global score, roll
score = score + roll
update_score()
do this instead
def update_score(score, roll):
return score + roll
score = update_score(score, roll)
For in-depth explanations on why global variables are bad news in a variety of situations, see this Stack Overflow answer.
it's bad because it will be very annoying to debug
That link has a good explanation as to the pitfalls
the global doesn't really effect testing as it only has something to do with current sessions
it's because i have multiple things webhooking to it, and i need the data in every one of those
if that is the case i would advocate for passing a objects around which stores your data
i have twilio posting the dial status, how could i access the data there?
hmm i think i need to make my call tiering a class
""" transfers call
:return: True
"""
global sessionData
cur_session_data = sessionData[session_id] # gets current session data from sessionData
call_dict = get_call_list(cur_session_data) # gets call list
sessionData[session_id]['call_list'] = call_dict # storing call_dict in global dict sessionData
tiers_xml = "" # declaring tiers_xml
tier_time = '"100"' # the time between calling tiers
# iterate through call_dict and convert into xml with keys separated by pauses
tiers_xml = "".join([tiers_xml := tiers_xml + "".join(
[f'<Number statusCallbackEvent="initiated ringing answered completed" statusCallback="{cur_url}/handleDialStatus" statusCallbackMethod="GET">{number}</Number>' for number in numbers])
+ f"<Pause length={tier_time}></Pause>" for tier, numbers in call_dict.items()])
# finished xml
twiml_xml = f'<Response><Dial record="true" action="{cur_url}/handleDialStatus" method="GET">{tiers_xml}</Dial></Response>'
logger.info(twiml_xml)
# post xml to phone number
client.calls(cur_session_data['callSid']).update(twiml=twiml_xml)
logger.info(f"Successfully transferred call sessionID: {session_id}, callSid: {cur_session_data['callSid']}")```
i'm thinking making it a generator
because i need it so when one person picks up, all the dials stop
@limber blaze please take this to a help channel if you have any questions, you're just talking to no one here.
and yeah ik my global should be lowercase idc
huh?
ik i'm talking to myself i'm sorry it's somehow helping me with my train of thought
In software engineering, rubber duck debugging is a method of debugging code. The name is a reference to a story in the book The Pragmatic Programmer in which a programmer would carry around a rubber duck and debug their code by forcing themselves to explain it, line-by-line, to the duck. Many other terms exist for this technique, often involvin...
rubber duck 
yes
i store object in dict and then i can stop calls from right where i get status's from twilio
yes
Stop with the reactions

vim gang
🦆
you guys think i should branch off of what i have that's working for making these major changes
or no
🤔
just do it on main
how big is the project?

how many people are working on it?
you have hemlock responding to you in vc and realizing seconds later youre not in for like the tenth time now
ahahahahahahaha
just use branches then, they're easy enough to use
yeah for some reason my mic won't work if i join
yeah
wait shit i'm on a branch rn lool
i have to merge it
🤔

Back later, delivery run time
cya
stay safe
@faint ermine I saw you always are in voice channel, and You tried to help everybody.
I know that, even though I got never your help.
When I saw you some days ago, You have not helper badge, But I can see now.
Congrates!🌷
Because there are many nice people like you, this server will always grow up 👍
I also love this server. :):):)
thank you for the kind words!
i can't use time.sleep right lol
Eccomerce Platforms.
As new eCommerce businesses are started daily and more and more existing companies adopt eCommerce to extend their customer base beyond just the people living close by, the question of which eCommerce platform to select becomes very important. Different platforms have different functionality and integrate with different external services. Some m...
@whole bear
TY
np
here is an email they where sending me
We have just detected an attack on your IP address 51.195.157.xx.
In order to protect your infrastructure, we vacuumed up your traffic onto our mitigation infrastructure.
The entire attack will thus be filtered by our infrastructure and only legitimate traffic will reach your servers.
At the end of the attack, your infrastructure will be automatically withdrawn from the mitigation and we will notify you again once this is the case.
If you experience any problems because of the attack or have any questions, please don't hesitate to contact us. We will be happy to assist you.
then i get charged
a guy in c# discord said he hacked me and this email was sent to me
The angel problem is a question in combinatorial game theory proposed by John Horton Conway. The game is commonly referred to as the Angels and Devils game. The game is played by two players called the angel and the devil. It is played on an infinite chessboard (or equivalently the points of a 2D lattice). The angel has a power k (a natural numb...
seems like someone is trying to DDOS you, happened to me just yesterday, only my host doesn't charge for it
@pastel mesa https://beta.openai.com/?app=languages&demo=1
An API for accessing new AI models developed by OpenAI
if not (call_sid := request.args['CallSid']):
call_sid = request.args['ParentCallSid']```
is this ok to do
i'm getting two different posts where CallSid has a different key
!ban 728780020457275423 Despite multiple warnings, multiple chances given, and a previous ban, you have not learned your lesson. Topping it off with random shouting or playing audio from some random video really hasn't helped your case. You do not show any attempt to correct your behavior to make it acceptable for this server. You are not a good fit for the community, and you are no longer welcome here.
:incoming_envelope: :ok_hand: applied ban to @sly cypress permanently.
that was a harsh reason, 
Was it? Felt very relevant and justified
Given context from their previous infractions
i mean yea, just "you are no longer welcome here" is the sort of thing id imagine a crime boss saying just before pulling a gun
im not entirely serious here, its justified
Entirely
Thought of it more like a librarian removing someone from the library
What methods do you imagine Hemlock?
Sorry?
Hi guys
Of how they'd remove someone?
Hi hemlock
Hello Plus
Hi
I need to know how to remove someone
by force
without physical contact
the force?
I'd prefer verbal intimidation
ok that's just beyond
i am getting such a weird key error
@limber blaze how is that occur?
but I don't know math 😄
ope i understand why
same
I have a math degree
Same
but i can thelp you
I have math degree but it's low
low level degree
@vivid gull i want to be that guy
@whole bear u can or can't?
code review 😔
cant*
alright
!pythonrank
wat?
We don't have that command
hahahaha @vivid gull
Students eat bad donuts?
ew
rats?
jesus man
Tell me about your student story
bruh
@thorny pulsar Check out the #voice-verification channel
That'll tell you what you need to know
so i'm doing ``` sessionData[session_id]['callObj'] = StartTransfer(session_id)
@warped saffron study
I mean I'm not bad
and then twilio is posting
ok, but how does latex magically know where my images directory is
and it is giving me a key error saying that callObj doesn't exist on the first itteration
how the fuck is that possible
if i'm assigning that key when i call the function that triggers what causes the key error
Yes GCSE
messages
It's been stalking you for decades
let's speak
hemmy why is this happening
how is it happening
We choose 3 topics
just instagram bots with selenium and scrapy
makes 0 sense
- maths, sciences, religious education and english as standard
Neat
You can sell bots?
like, i move the images directory up one level and it still finds it. i move it again, and it still compiles
yeah
How?
yes, on fiverr
Finding people who are too lazy to make their own
^
yes
ah
i made 76 $ in my first month on fiverr
This is good I am learning about the coding world everyday
python prolly runs the init before oh
@thorny pulsar You should be able to verify now, if you're curious
Do you have to be at a certain age to sell bots on fiverr?
No idea, I've never used it
hemmy is it because the initializer runs before the declaration?
TOS?
initializer for what? what declaration?
Terms of service
i'm getting a key error, the init triggers the method to start calling the tiers
@vivid gull "Sit down, shut up and work" -- GCSE
what init
when calls start twilio sends me a post where i then try to access the object
like the init in a class
@limber blaze Dude I haven't been paying attention to anything you've been saying for the last 20 minutes, I'm sorry
it's all good
Thanks
i'm just asking does the init run before declaration
thanks man
what declaration

x = class
huh?
does the class init run before x is equal to the class
of course
ah ok cool
it evaluates the right side first
yeah i'm an idiot
Order, order in the VC!
@vivid gull Sorry, I'm not meaning to be rude
Should we create another Off-Topic / General Channel?
@rugged root You SHOULD!!
@rugged root I get it, I'd prefer to be cautioned. I can't learn otherwise
cz its way too busy
honestly we should
there are three voice channels, but only one general voice channel chat
@vivid gull That's fair, and I did try to give subtle hints earlier. So long as you're cool with me trying to cool you down
No problem, I get that
@rugged root Maybe you could create a classroom VC to teach code or other topics?
i mean
I would really like to know how to Say Hungry in it's native tounge
@warped saffron That's actually on our road map. Like giving actual little lectures about certain things and have them hosted on our YouTube.
Still hammering out the details
That's great news
It’s called Magyarország
Could you pronounce that again in the channel?
Yeah, I just don’t want to talk over anyone
What is Mr.Robot?
TV show
ah k
Or just hop down to code-help-1 for a moment.
have anyone said vip?
I don't think so
ok I am going crazy then
message n out of 50
aww i was too slow, hemlocks gone
Sorry
Guys, how to make money coding as a teen?
I may or may not get back on when I get home
Depends on how long it takes me to get what I need at the pet store
9! -> only about 350k possibilities, should be easily brute forceable
but in each checking I think it will take a lot
I am going to give a number for each letter and then check each row and column
it shouldn't really be that hard though
adding numbers isn't exactly an expensive operation
giving value for each variable will take time since I am going make sure that other variables will not have it
itertools.permutations(iterable, r=None)```
Return successive *r* length permutations of elements in the *iterable*.
If *r* is not specified or is `None`, then *r* defaults to the length of the *iterable* and all possible full-length permutations are generated.
The permutation tuples are emitted in lexicographic ordering according to the order of the input *iterable*. So, if the input *iterable* is sorted, the combination tuples will be produced in sorted order.
Elements are treated as unique based on their position, not on their value. So if the input elements are unique, there will be no repeat values in each permutation.
Roughly equivalent to:... [read more](https://docs.python.org/3/library/itertools.html#itertools.permutations)
@rugged root On the discord website, there is the possibility to join to a free MITx course for python. Do you need any prior experience or knowledge to join?
no
So, I can learn with the univerity of my dreams from the 27th Jan this year!?!?!?!
taking the course is not the same as going to mit, but yeah, you can take the course
well tbh, lots of stuff is online rn so it's kinda the same lol
yeah
Is it like buying a t-shirt vs a supreme t-shirt (same thing but branded)?
In the U.S., there are federal laws against monopolisation
So all of the other stores are safe-ish
@vivid gull What kind of reasons would he make?
The Hungarian alphabet (Hungarian: magyar ábécé) is an extension of the Latin alphabet used for writing the Hungarian language.
The alphabet is based on the Latin alphabet, with a couple added variations of letters.
One sometimes speaks of the smaller (or basic) and greater (or extended) Hungarian alphabets, depending on whether or not the lette...
They work extremely hard for it
Well, it depends
Because new markets are opening all the time
Mars is yet to be opened as a market
Maybe create a political discord server?
thats a bad idea
exactly
bruh.. romania is not the worst country in europe.
i'm pretty trash with servers and stuff
how do i return code 204
do i just return the number 204
Idk yet I'm still learning to code
I hope i'll be able to help you in less than a year
from http import HTTPStatus
HTTPStatus.NO_CONTENT
<HTTPStatus.NO_CONTENT: 204>
HTTPStatus.NO_CONTENT == 204
True
ok cool thank you
maybe ask in a help channel instead, or #web-development
or at least tell us the libraries/frameworks youre using
j flask
@graceful grail hey man
okay thank you
first one is just some random text
makes sense
Yeah I'm not getting back on. Got a weather headache coming in
lol
Why the public vc is not open to join directly?
to prevent hit-and-run trolls, please read #voice-verification for info
I read it. However I might underestimate the hit-and-run trolls in a random discord server
yep, there were quite a lot before, its way WAY better now
Yeah. Probably its the first time, I`ve joined the vc in this server out of curiosity
you dont need to be in voice to verify, just be active on the server
thnaks
.wa 1*3
nice
awsome
Any chance anyone wants to help with applying concurrent.futures? 😄 I think it's working mostly but doesn't return results

Hey ? Can i join in ? =) I just joined the server and wont be able to talk, but i will at least hear what you say and i might learn some new things :D
pretty sure you can just join
sure!
i like fish
breaths in Anglais
bonjour there

just books and stuff
@zealous wave yes ma'am
children terrorists?
nobody knows
im setting up my ISO because my old VM was running out of date
;(
he was a nice guy
mmhm
so the sql connection keeps breaking
so i added a catch where it closes and connects again and tries to execute
just hopefully that doesn't break stuff
The Chief Mouser to the Cabinet Office is the title of the official resident cat of the Prime Minister of the United Kingdom at 10 Downing Street. There has been a resident cat in the English government employed as a mouser and pet since the 1500s, although modern records date only to the 1920s. Though other cats have served Downing Street, the ...
Larry is a cat who has served as Chief Mouser to the Cabinet Office at 10 Downing Street since 2011. He is a brown-and-white tabby, believed to have been born in January 2007. By July 2016, when Theresa May became prime minister, he had developed a reputation of being "violent" in his interactions with other local mousers, especially the Foreign...
Larry the cat
460 meters per second, but that's at the equator. I live at 42 degrees North, so it's a bit different.
@vivid gull https://shutplea.se
A web app that works out how many seconds ago something happened. How hard can coding that be? Tom Scott explains how time twists and turns like a twisty-turny thing. It's not to be trifled with!
A Universe of Triangles: http://www.youtube.com/watch?v=KdyvizaygyY
LZ Compression in Text: http://www.youtube.com/watch?v=goOa3DGezUA
Characters, Sym...
Noctilucent clouds, or night shining clouds, are tenuous cloud-like phenomena in the upper atmosphere of Earth. They consist of ice crystals and are only visible during astronomical twilight. Noctilucent roughly means "night shining" in Latin. They are most often observed during the summer months from latitudes between ±50° and ±70°. They are vi...
@vivid gull you sound like cosmic skeptic
Most deep sea fishermen in New England see 10 pints of beer as "a small breakfast"
Oh, but it has to be the cheapest, worst-tasting "beer" they can find.
We're talking Dogfishhead
We have some cold coming lol
Today has been a good day. I completed THREE functions that I've been trying to make for months now.
The weird thing is I finished them all in one day. It's almost like some kind of block was opened in my brain.
Today I had a support call that included the line "Okay, I found the start menu, do I click on it?"
😃
you need a bot
5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious or inappropriate. Do not help with ongoing exams. Do not provide or request solutions for graded assignments, although general guidance is okay.
lol. it's okay. Thanks for your advice.
@hushed elm is that a server for talking about UI/UX stuff in general?
I suppose I could join it and consider adding it to the white list.
yes
Alright
sure
it should be permitted now.
awesome 😄
lol
I ought to be audible.
I've checked and tested the settings, and they should be fine.
How's my pfp now?
Huh?
What should i choose? then?
Hey I wanna ask a question
Like I want a moderation command that judges messages and if someone uses vulgar languages, spamming The bot will ban him or kick as per the situation?
What ML algorithms should I choose'?
hmm
Ok
cool
I wanna be like a AI BOT
Hmm
Ok
Oh
Gotcha!!
Do you watch any youtube videos
Welcome to NetworkChuck!
I LOVE Information Technology!! My goal is to help as MANY PEOPLE AS POSSIBLE jump into a career in the IT field through obtaining IT Certifications. I talk about Cisco Certifications, CompTIA, AWS, Microsoft...pretty much EVERYTHING in IT. As a CBT Nuggets Trainer, it's also my passion to TEACH information technology a...
Ohk cool
Hi @whole bear
Nice song @somber heath '
Reason solved. 😁
Cool
Live in UK
Ok cool
I am also a ethical hacker
like a beginner
one
ME When Python throws an Exception "try/except" cant solve
I recently encountered just that in the form of someone having an issue with an exception occurring in their child thread.
I suggested they try look before you leap instead of better to ask for forgiveness.
Which I would otherwise avoid.
Because try/except is awesome.
lol yes
import pandas_datareader.data as web
import datetime
import matplotlib.pyplot as plt
start = datetime.datetime(2013, 1, 1)
end = datetime.datetime(2020, 1, 12)
df = web.DataReader('TSLA', 'yahoo', start, end)
print(df)
df['Adj Close'].plot()
plt.show()
Hello. I was thinking of a project that will manage my call. Means talk with people in my voice for that first i need to clone my voice. Do you have any idea on this how should i start that.
Yes.
message n out of 50
Sir Philip Anthony Hopkins (born 31 December 1937) is a Welsh actor, composer, director and film producer. He is the recipient of multiple accolades, including an Academy Award, three BAFTAs, two Emmys and the Cecil B. DeMille Award. In 1993, he was knighted by Queen Elizabeth II for services to the arts. Hopkins received a star on the Hollywoo...
@mystic marlin can i come to your DM?s
cant talk on the voice
@mystic marlin I do but i cant talk ._.
@deep egret sup
Keybon is a macro keyboard with configurable layouts and functions. Integrated into each of its nine tactile buttons is a 0.66” OLED screen. Depending on which app is active on the connected computer, Keybon switches to the suitable key layout thanks to its companion software.Some of the key features are:• Standalone Mode as a USB HID device• Co...
?
I feel as though you could use this to create frames for a video instead of going through matplotlib's anim stuff. https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.savefig.html
Plot the first frame, save, clear, plot the second, etc. Or whatever is more appropriate.
like the data is in a dataframe how do i only plot the first x and y coordinates
Smarter Shopping, Better Living! Aliexpress.com
@fiery hearth Slicing?
saw you alone in vc
yea and after saving all the images how do i combine
hey everyone
@fiery hearth ffmpeg would be one way. Lets you construct video from images, say, 24 per second.
ohh okay ...but its not efficient enough
like after the gif is constructed it would be emailed
Video. Not gif.
You could do gif.
Don't.
Unless you know why it's a bad idea and you want to anyway.
What's not efficient?
could save the pics and make it a video via software but that isn't efficient
ffmpeg is command-line.
ahhh
ohhh
At least from pip, I mean.
will look into it
thanks mate @somber heath
@light solstice Check out the #voice-verification for more details
@fiery hearth So this all is probably the wrong way to do it, of course...but it is a way to fo it.
lol
the 0 looking kinda ugly
need 50 voice chats to access text channels
Is it less?
implement what now?
Pain in the ass ~~Mr. Hemlock 2021
noice good utilization of multi threading
if anyone is free plz help me 🙂
want to jump to code help 2
have you worked with datafrmae
ML??
Yayy, night owls
yea pandas
High Low Open Close Volume Adj Close
Date
2015-12-31 56.189999 55.419998 56.040001 55.480000 27334100.0 50.627274
2016-01-04 54.799999 53.389999 54.320000 54.799999 53778000.0 50.006744
2016-01-05 55.389999 54.540001 54.930000 55.049999 34079700.0 50.234879
2016-01-06 54.400002 53.639999 54.320000 54.049999 39518900.0 49.322346
2016-01-07 53.490002 52.070000 52.700001 52.169998 56564900.0 47.606789
im trying to use the date as x n adj close as y and then animate from 2015
yeah u can do if u r using multi threading lol @rugged root
which graph library ur using
matplot??
yea matplot
wait
@light solstice By multithreading, are you referring to either the multiprocessing module, or the threading module?
ok
my connection lost for a while
u can use this
thread
try it and let me know
Dont gamify
got it ??
already have normal plot
just need to animate
Now, hemlock can only stay in one channel, and if i am late on some days, no seat wld be left for me
Only con ^
u can use widgets in matplot lib
i want a gif where the prices start from 2015 and it moves till 2020
ooh there is a general 1 vc now
when did that become a thing
rupesh really do be working hard
5 hours damn
fully productive
@severe pulsar Like.... 15 minutes ago or so
oh nice lol
import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.animation as animation
start = '2016-01-01'
end = '2020-01-14'
df = web.DataReader('MSFT, 'yahoo', start, end)
print(df.head(5))
plt.figure(figsize=(12, 6))
plt.plot(df['Adj Close'])
title = (f'{i} stock chart from {start} to {end}')
plt.title(title)
plt.ylabel('Price')
filename = str(i) + '.gif'
plt.savefig(filename)
how to impllement here
Yayy successfully implemented markov chain
nice, now u can work at nasa
oh awesome
haha if only 😦
Once this happens, or the bottom of the generator is finalized. Fatal errors are signalled by the test method. Unfortunately, just tracking them creates a reference to a module fails, for example due to a disk file are side effects, for example. Common uses for sets are fast membership testing, removing duplicates from a weakref table and a fresh set of attributes of the generator look at a global variable or by passing in some respects. “Directly accessible” here means that an unqualified reference to it for maintaining its state. This is similar to Thread-Local Storage in which attribute references are part of a mangling is helpful for letting subclasses override methods of its instances.
here is an example of it generating python texts using the python docs as corpus
A confrontation between mobsters (Bobby Moynihan, Beck Bennett, Jon Rudnitsky, Pete Davidson) is interrupted by a singer's (Peter Dinklage) performance. Special appearance by Gwen Stefani. [Season 41, 2016]
#SNL
Subscribe to SNL: https://goo.gl/tUsXwM
Stream Current Full Episodes: http://www.nbc.com/saturday-night-live
Watch Past SNL Seasons:...
@rugged root zero basing is just 
👌
Are you tired of your chess opponents threatening thermonuclear war? This tutorial on the Tennison Gambit in chess will explain how to counter your opponent by effectively using intercontinental ballistic missiles in your chess game to trick your opponent. The strategy is viable for players of all levels including beginners and will work on ches...
@rugged root Will I automatically move to AFK as i am not allowed to speak
ok. get it
it feels so weird seeing voice-chat-0 and voice-chat-1
I am an old member. But due to some reason I deleted my old account.
!server
Server information
Created: 4 years and 7 days ago
Voice region: europe
Features: ANIMATED_ICON, WELCOME_SCREEN_ENABLED, RELAY_ENABLED, MEMBER_VERIFICATION_GATE_ENABLED, VANITY_URL, BANNER, DISCOVERABLE, COMMUNITY, VIP_REGIONS, PREVIEW_ENABLED, INVITE_SPLASH, PARTNERED, NEWS
Channel counts
Category channels: 26
News channels: 8
Text channels: 155
Voice channels: 15
Staff channels: 63
Member counts
Members: 132,561
Staff members: 87
Roles: 86
Member statuses
38,702
93,859
Yesterday, we discussed about Dropbox laying off employees. Do you remember?
@rugged root and get some kind of authority and power. Just Kidding😂
That's good for us
Do you guys like this one?
5 different python docs pages, in html form
Anyone excited for Windows 10X release?
Yesterday, I installed the leaked version and it looks awesome.
Where's that guy who get banned everywhere?😂
I am missing him
; DROP TABLE users;
:-P
Window10X is basically Microsoft answer to Chromebooks, problem is, Windows store is not as filled out as Google
@amber raptor Happy to see you after a long time. Yeah i agree but i like the UI.
@somber heath you're from AUSTRALIA right. Bushy green area.
@fiery hearth What about your Yahoo api thing? It's sorted or still struggling.
@rugged root could you please reload the help channel cogs, because there is only one in available
@lunar pendant Are you new to server?
@whole bear Yaha.
What happened to help channel?
no there was a bug and akarys fixed it
Ok
Good to hear.
@somber heath you worked in mining industry right?
ok
hello
hi
everyone
yes everyone
sup
hi
hi @light solstice
I'm good
@hard wyvern you want to ask anything?
no
ok
G'evening
evening. after a long time
Been a while actually
gd night
ello
@whole bear are u new to this server
Isn't Skype almost exclusively a "serious business" thing nowadays?
I've yet to fix microphone issues on my laptop lol
Why is pulseaudio so hard to configure
not verified yet heh heh
That's pretty cool
i enjoyed listening +1