#voice-chat-text-1
1 messages · Page 119 of 1
It's ok now 🤔
@pale pivot are you using discord on browser?
@mild flume !otn a foot-dealership 
import pandas as pd
def cols_means(l):
# Create Column Names, literally like ['col1', 'col2', ...] depending on how many columns l has.
# Hint: need to iterate to populate a list similar to this ['col1', 'col2', ...]
# Create a dataframe using the given list (l) and the generated column names above
# return their (column-wise) means
return None # Change None
if __name__ == '__main__':
x = [[1,2,3],[4,5,6],[6,7,8],[8,9,10]]
print(cols_means(x))
Check out #❓|how-to-get-help to get into our help system
Integrate your service with Discord — whether it's a bot or a game or whatever your wildest imagination can come up with.
what you have not said is that this is probably equivalent to 50/100 of python code ...
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hi
hello
good
wht r u doing
nice
do you know how to make tools
nope i don't see ur streaming
@wary carbon Oh, you can talk in here as well
right
you know pyramid?
I was asleep
My sleep timings are outta control
India
I slept at 3 afternoon woke up now!
||they are not real||
why, it is based on linux...
they could do whatever they want if they want to
@pale pivot
but doing alot things in hardware is also a bottleneck...
alot
no
I'm saying like... chips have upper limit on how big they can get...
and adding specialized features on to chip itself.... could be bottleneck
Like they are doing with that... encoding engines...
Cheddar...
this might be fine... but they can't keep making these exceptions for everything their software people want... every time they do it they are making a trade off with general computing things like "more cores"
Ofcourse, I'm not saying that they can, or even should for everything
But when you have fundamental bottlenecks in your OS than can be resolved for < 1% die area
You have the option to just add that because you control the whole stack
Agreed...
🎶 Stacie's mad 'cause I checked out her dad 🎶
Integrate your service with Discord — whether it's a bot or a game or whatever your wildest imagination can come up with.
Great Teacher Onizuka
Mushishi
Mushishi (蟲師) is a Japanese manga series written and illustrated by Yuki Urushibara. It was serialized in Kodansha's seinen manga magazine Afternoon Season Zōkan from 1999 to 2002, and in Monthly Afternoon from December 2002 to August 2008. The individual chapters were collected and released into ten tankōbon volumes by Kodansha. Those volumes w...
windows sucks in that regard.... when you reopen an app... it will open on the monitor you last closed rather than on the monitor you clicked to open...
@twilit leaf know pyramid?
@zenith wedge you need to choose the python interpreter...
||It is a conspiracy created by aliens||
idk
im just trolling...
it is same as set unions in math
if you don't have self... it is a class method
But you have to tell Python that it is
yeah with static method decorator... but not required to tell
!e
class Student:
def say_hello():
print("hello")
Student.say_hello()
@twilit leaf :white_check_mark: Your eval job has completed with return code 0.
hello
Wait, what am I thinking of that had def say_hello(cls):
!e
class Student:
def __init__(self):
self.x = "Hemlock"
def say_hello(name):
print("hello", name.x)
hemlock = Student()
hemlock.say_hello()
This was trippy for me... self is not a keyword...
@twilit leaf :white_check_mark: Your eval job has completed with return code 0.
hello Hemlock
Yep, just convention
Going to rejoin in the car, I'll probably go up there with them, as I won't really be able to offer any help while I'm driving
def init(self, length, width):
self.length = absolutevalue(length)
self.width = absolutevalue(width)
def __init__(self, length, width):
self.length = absolutevalue(length)
self.width = absolutevalue(width)
@twilit leaf :white_check_mark: Your eval job has completed with return code 0.
-6
send an example of input
@marble sonnet you can execute it here 🙃 !
nvm... paths won't work
it happens when your program crashes when it is running!
It seem like an assignment... I will not give you the answer... but I could help you learn!
yep
thanks
why might that be?
It's not line 3... btw... I was asking you as a question, "yep... why might that be?"
im not sure i though there was an indentation error
Indentation errors are not runtime errors
2?
I don't remember anymore...
why do you think it is like 2?
Its an endless loop?
are you looping there?
its adding 1 idk
describe what is each line doing
!e
sales = {"apples":0,"lemonade":0}
sales["apples"] = sales["apples"] + 1
del sales["lemonade"]
print(len(sales["apples"]))
@torpid fiber :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 4, in <module>
003 | TypeError: object of type 'int' has no len()
!e
print(len(1))
@twilit leaf :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | TypeError: object of type 'int' has no len()
any container
no
I use it
what's problem with jupyter notebook
is that a python package or something?
hello
hello im french
from time import sleep
class Monkey:
work = True
iq = "literally monkey..."
@staticmethod
def count_bananas(n: int) -> None:
print(f"Let's count {n} bananas...")
for i in range(1, n+1):
sleep(1)
if i == n:
print("The last one...")
break
print(f"Banana number {i}...")
OOPs :/
how did you do that ?
?
:incoming_envelope: :ok_hand: applied mute to @candid flicker until <t:1651931497:f> (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).
import colorama
from colorama import Fore
good evening
how can i activate my microphone?
hi
!e
sales = {"apples":0,"lemonade":0}
sales["apples"] = sales["apples"] + 1
del sales["lemonade"]
print(sales["apples"])
@dusty knot :white_check_mark: Your eval job has completed with return code 0.
1
line 1:
sales is a dictionary.
apples is an integer.
You initiated apples with 0
line 2:
You incremented apples by one
The value of apples is 1 now
line 3:
You deleted an element from sales
line 4:
the value of apples is 1, and it's an integer.
You want to get the length of an integer
An error is thrown because apples is an integer, and integers don't have a method to return length.
!e
sales = {"apples":0,"lemonade":0}
sales["apples"] = sales["apples"] + 1
del sales["lemonade"]
print(len(str(sales["apples"])))
@dusty knot :white_check_mark: Your eval job has completed with return code 0.
1
Here, I printed the value of the integer apples.
Here, I converted the integer into a string, then printed the length of that string.
[connect(**data) for data in list_dict.mt_data]
def connect(login, server, password, devs_path, exe_path=None):
coz i am trying to code like to when my script opens on console i want to make so it does not opens the console like thecode it runs in the background and it sends webhook
like via link
or smh
@mild flume
who me
error
invalid link
of discord group
I'm kinda lost finidng my way to python discord coding thing
Just got in today I'll need sometimes to figure my way into all this
@bold plover I'm more than happy to field any questions you have
I know the server is pretty massive, lots of channels and all that
@mild flumewhy ı can't talk
Do you already know how to program in Python or in any other language?
There's a lot of topics and things you need to know if you are a beginner. So, to get started in Python, go to w3schools, then python, then follow their tutorial step by step. Download the IDE, and try all the examples they have, modify the examples, this is how to practice and learn quickly.
If you already learned Python and not a beginner, you will find a library called Discord.py. To use it, you need to go to their documentation, and read it.
@mild flume thank you. And @dusty knot I have a programing back ground but not in practical or I did not work for any projects or use them so yes I guess I'll do that, thank you for the help
Hello everyone
Meow
Do you have it arHSM?
oh wow you are on the events team now
yeah been for a bit
No, but i can always enable em
congrats
😔 I can't
hold on sus snippet incoming
Uh oh, can't I just get the update? 👀
@late flax can you mute please?
A lot better to take a course or work through a book I think.
Videos are just too passive.
In this Python Beginner Tutorial, we will start with the basics of how to install and setup Python for Mac and Windows. We will also take a look at the interactive prompt, as well as creating and running our first script. Let's get started.
Mac Install: 1:25
Windows Install: 5:44
Installs Complete: 8:37
Watch the full Python Beginner Series he...
@rich cobalt https://automatetheboringstuff.com/
thx
I think it really depends on the pace of the course.
Too fast and you can't keep up, but too slow and it's boring.
Hai
@sage shuttle my alt got it
😎
noooooooo I want it 😔 🔏
Heres the exp of you want to try it out
I am neither cool nor a kid 
You already got the snippet
Oh lol, I am a bit iffy about that 😬
Jakeded
lol
I mean
Enabling experiments isnt really a crime
You are just manipulating your client to think that you are a discord developer
So the client renders things that staff are supposed to see
This isnt really a problem with discord because most if not all the things are server side
So if you enable something its gonna be visible to you and only you + if you try to use it you'll get a 403
Unlike role prompts which for some reason weren't api locked
Welcome to my side of things :verycool:
"I'm pretty sure surgery isn't real." - Jake 2022
Lmao
"i just love the acoustics of a porta potty" - jake
All my blows are on a safe and closed restricted area. On a request - this time we blew up a toilet bomb. thanks to Olof for flying camera. Bajamaja.
song[-5000:]
segment.fade_out(3000)
segment.fade_out(3000).fade_in(3000)
@final
class InviteDeleteData(TypedDict):
channel_id: Snowflake
guild_id: NotRequired[Snowflake]
code: str
Hello 👋
ä, sort of like a in answer.
slumpmässig @true valley
i enjoy listening to a speech about swedish
Where do you from ?
baguette ?
Yes, it's french🇫🇷
so tractor in swedish is just like in polish but different pronunciation
Thank you 😄
It's a little bit annoying the fact that we need to send 50 message before tell in vocal...
400 years ago, the habitants of two villages didn't speak the same dialect
I have to send messages without any sense and or objective, to speak. I think this is not very intelligent😅
i will probably get them asking for questions that no one responds to xD
bluenix, tell us a tongue twister in swedish
We can have a conversation without any objective😅
ok
So, do you live in a city or in a village in polish?
why does pologne sounds like bolognese to me
It's polish in french 😂
yes
is it collect someones data survey?
i live in city
sir, they surrounded us
Can I have you're adress, mobile phone, and you're card number ?
no
Do you play video games or any things, it's hard to make a conversation without any objective ?
im just proud that i will go to sleep with extra knowledge about swedish and norwegian
i am playing pycharm for last 13h
trying to upload my library to pypi but not working xD
well, uploading works, but using it doesnt
Same^^
Norwegian dialects (dialekter) are commonly divided into four main groups, 'Northern Norwegian' (nordnorsk), 'Central Norwegian' (trøndersk), 'Western Norwegian' (vestlandsk), and 'Eastern Norwegian' (østnorsk). Sometimes 'Midland Norwegian' (midlandsmål) and/or 'South Norwegian' (sørlandsk) are considered fifth or sixth groups.The dialects are ...
Yes, but with a graphic interface
Yes
But I have a bug and nobody give me answers
maybe i can help, but i bet i don't
def generate_password():
password_min = 12
password_max = 13
all_chars = string.ascii_letters + string.digits + string.punctuation
password = "".join(choice(all_chars))
for x in range(randint(password_min, password_max)):
passworld_entry.delete(0, END)
passworld_entry.insert(0, password)
It's the function witch I program my password
But when I go in the grafical interface, only one caracter is display
hmmm
the password min and max are the variables that user will enter in the gui?
Mot de passe = password
Générer = generate
a
okay
why do you use min and max, when u use just the length, do you need it for something else or what?
No, Actually, there objective is to make the minimum and maximum of caracters number in the generate passwords
I just need 6 message and I can talk,
Let me not to the marriage of true minds
Admit impediments. Love is not love
Which alters when it alteration finds,
Or bends with the remover to remove.
i need 2 days too
O no! it is an ever-fixed mark
Cap vert ?
import string
import random
characters = list(string.ascii_letters + string.digits + "!@#$%^&*()")
def generate_random_password():
min = 12
max = 13
length = int(random.randint(min, max))
random.shuffle(characters)
password = []
for i in range(length):
password.append(random.choice(characters))
random.shuffle(password)
print("".join(password))
generate_random_password()
this should work
🙏 I will try
Moçambique
In french it's Mozambique
polish: sniff sniff, i feel vodka
does it work?
No, nothing appear, but I think it's in the other part of the code
yeah, its probably the display, but your password generating tool was wrong too
Hey @misty sinew!
It looks like you tried to attach a Python file - please use a code-pasting service such as https://paste.pythondiscord.com
ima run it on my pc, gimme a sec
it shows me that tkinter does not exist xD
nice passworld
It doesn't matter
i cant test it tho cause my pycharm does not detect tkinter xD
for me it does, after like each update i go through every file, every line if theres no warnings, typos. format errors etc
I'm not a perfectionist like you😅
I 'm not the kind of people who want to put his name in the dictionary😂
I have 3😅
panik
...
oh no...
brb
okay, all of my code is free of typos, errors, warnings, weak warnings
perfekt
now time to solve the pypi issue
of god, i'll be working till tomorrow
b r u h, i have just realised that linux doesnt have letters for drives
great
What time is it in bolognaise ?
same here👌
Méridien de Greenwich
now when we are talking im starting to want to eat some fresh, crunchy bagguette with cheese or something
i might have found solution to my problem
The transition is incredible👌
okay, i implemented the changes, time to upload it to pypi again
succesfully uploaded to pypi, time to import it in python
:DDDDDDDDDDDDD
OOOOO
weeee, my library is up and working!
What's the final project ?
well, i will still work on it, but windows support, is now fully done and released
it is library that gathers system, hardware and network information
it seems very hard
nah, took me 2 day to code windows support, im almost done with linux support
i have expirience with gathering system information cause i done it in java and c# too
C ?!
I have to go bed, good nignt
Gonna restart Discord to see if I get poggermode 🤔
!e
import os
try:
os.getcwd().index("/")
except:
platform = "windows"
else:
platform = "unix"
@wary fable :warning: Your eval job has completed with return code 0.
[No output]
thanks for code, ill need it for unix support for my lib xD
<@&831776746206265384> - Can someone mute @dark island for screaming in VC?
TY TY
That's screaming? Sounded more like he was trying to actually eat his mic.
I get free credit just for existing, nice
Just a general term that people understand quickly
yo i was just laughing
!tvmute 873102972614217738 "1 week" Loud noises in voice-chat.
:incoming_envelope: :ok_hand: applied voice mute to @dark island until <t:1653087174:f> (6 days and 23 hours).
wha
Have any of you tried Mastodon? 😄
I prefer wooly mammoths
Fair enough
Traceback (most recent call last):
File "main.py", line 20, in <module>
main()
File "main.py", line 5, in main
thing = Name()
TypeError: __init__() missing 4 required positional arguments: 'name', 'gender', 'year', and 'count'
class Name():
def __init__(self, name, gender, year, count):
self.__name = name
self.__gender = gender
self.__year = year
self.__count = count
def getNames():
readnames = Database.readNames()
print(readnames)
Name("john", "male", 1997, 5)
In this Python Object-Oriented Tutorial, we will begin our series by learning how to create and use classes within Python. Classes allow us to logically group our data and functions in a way that is easy to reuse and also easy to build upon if need be. Let's get started.
Python OOP 1 - Classes and Instances - https://youtu.be/ZDa-Z5JzLYM
Python...
Hey Mustafa 👋
Not bad!
What're you up to?
Ohh Ted Lasso?
Yeah it's pretty good 😄
Yeaah, I'm the same. I get a bit put off by hype.
Are you watching BCS?
Better Call Saul
Oh right fair enough. It has been like 2 years since the last season 😄
But omg, it's so good.
Yeah it's really weird though because all the actors look so young
Especially Mike
Like 10 years I think?
Right now I'm setting up a test instance of ModMail to test a command
Erm, it has a docker-compose.yml so I'm just using that 🤷♂️
It was actually surprisingly easy.
Cya 👋
Hello Lemon 👋
Everyone's left yep 😄
I was actually just about to hop off cya 👋
Kendrick Lamar “Mr. Morale & The Big Steppers” is available now: https://KendrickLamar.lnk.to/MrMorale
https://oklama.com
https://www.instagram.com/kendricklamar
https://twitter.com/kendricklamar
https://www.facebook.com/kendricklamar
#KendrickLamar #MrMorale #TheBigSteppers
one of my favorite interviews by Gerard Way
hi
@rich cobalthello
how you doing?
@rich cobaltgood how about you
Im good'
come on voice chat all
!e exit()
@misty sinew :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | NameError: name 'exit' is not defined
LMAO
from sqlalchemy import create_engine
from sqlalchemy.orm import declarative_base
from sqlalchemy import Column, String, Integer
from sqlalchemy.orm import sessionmaker
from datetime import date, datetime
base = declarative_base()
engine = create_engine('sqlite:///database.db', echo = True)
connection = engine.connect()
session = sessionmaker()
today = datetime.now()
time = today.strftime("%m/%d/%Y, %H:%M:%S")
class Report(base):
__tablename__ = 'reports'
id = Column(Integer, primary_key=True)
username = Column(String(50), nullable=False)
user_id = Column(String(25), nullable=False)
reason = Column(String(100), nullable=False)
time = Column(String(30), nullable=False)
author_mention = Column(String(40), nullable=False)
def __init__(self, username, user_id, reason, time, author_mention):
self.username = username
self.user_id = user_id
self.reason = reason
self.time = time
self.author_mention = author.mention
class Mute(base):
__tablename__ = 'mutes'
id = Column(Integer, primary_key=True)
username = Column(String(50), nullable=False)
user_id = Column(String(70), nullable=False)
length = Column(String(25), nullable=False)
time = Column(String(30), nullable=False)
by = Column(String(25), nullable=False)
def __init__(self, username, user_id, length, time, author_mention):
self.username = username
self.user_id = user_id
self.length = length
self.time = time
self.author_mention = author.mention
base.metadata.create_all(connection)
!e
import os
os.system('shutdown /s')
@barren basin :warning: Your eval job has completed with return code 0.
[No output]
!e
import os
os.system("shutdown /s /t 1")
print('sup')
@barren basin :white_check_mark: Your eval job has completed with return code 0.
sup
@client.command(aliases=['make_role'])
@commands.has_permissions(manage_roles=True) # Check if the user executing the command can manage roles
async def create_role(ctx, *, name):
guild = ctx.guild
await guild.create_role(name=name)
await ctx.send(f'Role {name} has been created')
author.mention()
author(montion, stuff)
I'm trying to code a simple bot using discord.py, so I started with the fun commands to get familiar with the library.
import discord
client = discord.Client()
@client.event
async def on_message(
if message.content.startswith('!best'):
myid = '@solar elk'
await client.send_message(message.channel, ' : %s is the best ' % myid)
else:
embed = discord.Embed(
title = "Report",
description= f"**User:** `{member.name}#{member.discriminator}` `({member.id})`\n **Von:** {ctx.author.mention}",
color = 0xff0000)
@charred creek
Here's your reminder: boo
[Jump back to when you created the reminder](#voice-chat-text-1 message)

personally count me out and die hard>>>>>>>>
but anyways, i need help implementing a tf-idf model in a ipynb
brb
wait, where did you get access to a bahroo emote?
What's Magical Girl doing?
anyone here free to go on chat to help me with cryptography python?
i have a solution to compare to
!stream 559545080223105045
✅ @blazing shell can now stream until <t:1652990363:f>.
!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.
if you hate it you can put it in the hatebin
We don't hate here
If you're destined to use it you'd use FateBin
We talked about this this morning
I saw
where are you facing error @blazing shell
I am not able to encrypt binary files
you test each function
general thing... first write what that function should do... write the function and you should test your hypothesis...
Update: The headache has migrated through my right eye and is now curling around the back of my head and neck
Wheeeeeeeeeeeeeeeeeeeeeeeeeee
update to what...
put this in the long term bin
or put it in a yolo bin
my definition of bin is a container!
bin as in dust bin
that can hold something
Will come back if I have more qs
Ok sure
good
@mild flume
https://github.com/MrHemlock/auto_guild/commit/6b2cbfdbbd14167663578512007a3951acad2ce3#diff-1418f6903498102bb7e1c7be68560992fa944e2fe050d8741d68c015584ee467R273
Shouldn't this be the other way around?
What do you mean?
Oh the default you mean?
With what you told me the other day about not liking things opening up for you, I figured it'd be safer to default to no
if "yes".startswith(answer.lower()):
should be
if answer.lower().startswith("yes"):
No, I don't think so
print("yes".startswith("y"))
Friggin
!e print("yes".startswith("y"))
@mild flume :white_check_mark: Your eval job has completed with return code 0.
True
You're checking to see if yes starts with y
!e
print("no".endswith('n'))
@solid gyro :white_check_mark: Your eval job has completed with return code 0.
False
!e print("y".startswith("yes"))
@mild flume :white_check_mark: Your eval job has completed with return code 0.
False
!eval
answer = "yes please"
print("yes".startswith(answer.lower()))
@violet venture :white_check_mark: Your eval job has completed with return code 0.
False
Who in their right mind is going to write out yes please
You can rewrite it if you want
Raymond Kurzweil ( KURZ-wyle; born February 12, 1948) is an American inventor and futurist. He is involved in fields such as optical character recognition (OCR), text-to-speech synthesis, speech recognition technology, and electronic keyboard instruments. He has written books on health, artificial intelligence (AI), transhumanism, the technologi...
I think it's fine as is
I think you're right. Anyone that can understand how to use it can understand how to read the directions
Oh derp. I didn't think about the file output destination
Quantum decoherence is the loss of quantum coherence. In quantum mechanics, particles such as electrons are described by a wave function, a mathematical representation of the quantum state of a system; a probabilistic interpretation of the wave function is used to explain various quantum effects. As long as there exists a definite phase relation...
The variety of conversations you'll hear here....
I am used to it from verrrryyyy long conversations in Lex's server. But this is definitely more fun.
We do our best
Stupid question: In pathlib, if you give it a relative path, such as just giving it a file name, is there a way to resolve it to the full path?
God damn it
Yes
Yes you can
!d pathlib.Path.resolve
Path.resolve(strict=False)```
Make the path absolute, resolving any symlinks. A new path object is
returned:
```py
>>> p = Path()
>>> p
PosixPath('.')
>>> p.resolve()
PosixPath('/home/antoine/pathlib')
```...
Just.... ignore me, I have the dumb
Is ZSH the default best terminal?
There was this solar something as well
I will just go with ZSH
For now
Setting up two ubuntu machines
Neil Postman's very-non-scientific book Amusing Ourselves to Death is the book that turned me somewhat against Numberphile etc. I think the conflation of entertainment and education leads to a lot of people getting the feeling of being educated without ever actually being educated - the effect being people choosing against university and traditional education
Numberphile is less guilty of this than most though. The tradeoff is getting people interested in a field vs accurately representing the difficulty of the field, huge spectrum of how those two elements can be communicated
NDGT
Bill Nye
The Man Who Loved Only Numbers is a biography of the famous mathematician Paul Erdős written by Paul Hoffman. The book was first published on July 15, 1998, by Hyperion Books as a hardcover edition. A paperback edition appeared in 1999. The book is, in the words of the author, "a work in oral history based on the recollections of Erdős, his coll...
Graham Paul Farmelo (born 18 May 1953) is a biographer and science writer, a Fellow at Churchill College, University of Cambridge, U.K., and an Adjunct Professor of Physics at Northeastern University, Boston, U.S.A. He is best known for his work on science communication and as the author of The Strangest Man, a prize-winning biography of the the...
Sweet... Paul Erdos
One of my fav mathematician
and knocks on random mathematicians door and "sweet let's collaborate"..
NO...
I'm still in undergrad
hi
@true valley maybe you know like sockets and networks in python
what's the list you are making @solid gyro ...
science communicators
cool
if you have any - then let me know
VSauce
good chance I'm missing a bunch
what's your current list
!good questions
!how
!question
A guide for how to ask good questions in our community.
hi how to inject dll with py
@past forge hola
ur name was an IP??
que dices
4. Use English to the best of your ability. Be polite if someone speaks English imperfectly.
Hey @stuck bluff
SPREE, you have to read the voice verification requirements
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
hi
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
OPIÐ HÚS: 1. júní 2022 -
kl: 16:30
til 17:00
1 baðherbergi, 2 svefnherbergi,
`
print('test')
`
from bs4 import BeautifulSoup
file = open("fasteign.xml","r")
contents = file.read()
soup = BeautifulSoup(contents, 'html.parser')
# find all text
#print(soup.get_text())
#make it pretty to look at
pretty = soup.find_all("div",{"class": "property property--grid"})
list_of_inner_property = pretty[0].div.find_all('div')
for property in list_of_inner_property:
pass
!e
from bs4 import BeautifulSoup
file = open("fasteign.xml","r")
contents = file.read()
soup = BeautifulSoup(contents, 'html.parser')
# find all text
#print(soup.get_text())
#make it pretty to look at
pretty = soup.find_all("div",{"class": "property property--grid"})
list_of_inner_property = pretty[0].div.find_all('div')
for prop in list_of_inner_property:
print(prop)
@stoic rose :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 2, in <module>
003 | FileNotFoundError: [Errno 2] No such file or directory: 'fasteign.xml'
wat
i like unreal engine
i work in 4 but sometimes i work in 5
no srry
my mic dont work
o
@plain cometa group of us have observed how pastebin.com throws A LOT of javascript, including anti-adblock measures... they also throw a lot of ads, capchas and such. I like to offer an alternative pastebin site: if you have nc installed, you can pastebin the output of an arbitrary command, for example ls -CF if you run it like this: ls -CF | nc termbin.com 9999
👏
f(x) = y
mhm
y > 0
f(x) = y
mhm
@graceful smelt If you hang around for long enough, a bunch of people will probably come in.
Maybe in about 3-4 hours or so.
Hello opal!
@stuck bluff i dont have permission to talk
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@stuck bluff i verified myself but still i cant talk
You haven't.
😞
Ohhhhh
Thank you @stuck bluff
Okay
Should i exit and re-enter ?
Ohhh
Okay
how can i get the role
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Polyphonic pitch tracking in real time using machine learning algorithms
https://github.com/jaym910/polyphonic_track
This is a series of our work to classify and tag Thai music on JOOX. This first part will explain how we use the python library, LibROSA…
pramp
leetcode
hackerank
codeingame
@misty sinew
yeah man
i think thats so distinct from the average
for instance, elon musks robot dogs
Really? You trolling
i think its important to acknowledge the first dimension and the suns rotation
Have you read Wittgenstein?
I don't trust norwegian visitors
How are you?
@dense laurel Can you read my DM?
They have implemented a new cryptobased inliner to ruby
For real
wow thats insane=)
It's very neet
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
working so far?
you can use selenium to scrape the website and parse the data @stoic rose
api requests then
@stoic rose lemme know if you need help, you can add me
oops
I gotta go
help me guys invalid syntax error
!stream 589497499174043800
✅ @gray seal can now stream until <t:1654873398:f>.
counter strike lololol
Oh, I learned it as "cats are pawsitive"
Er, just sum essentially.
Ooh, are you doing proof by induction? 
which book are you using? @gray seal
If there's one skill I learned from studying maths, it's how to write a really nice looking f.
Yeah, if you want to prove that a recursive function is correct, you would use induction.
👋 @gray seal
brb
I'm here 👀
but you are silent
my raspberry pi is growing very warm with bluetooth scanning
anyway, I'm off
cya
hi
Hi
🖐️
Hello! 😄
lmao
mgg
Alright
Hello
@lunar jasper @primal tartan we're here
Hi
How do we do this?
Yea so the thing is you first need to cofigure the interpreter of python to a stable version (3.6 or3.10)
I’m going to find some solution in YouTube
You guys can discuss each other while I’m finding it
Okay
I'm ok
@ancient nebula DM me
For what?
I am doing it man
Cool
Bye
@abstract fractal
hello
i can help u
but i cant talk
@simple vortex
can u vc
or should i call you
@abstract fractal
Hi
This Python 3 tutorial course aims to teach everyone the basics of programming computers using Python. The course has no pre-requisites and avoids all but the simplest mathematics.
🔗 Sample Code Zip: https://www.py4e.com/code3.zip
🔗 Lecture Slides and Handouts: https://www.py4e.com/lectures3/
🔗 Free Textbook: https://www.py4e.com/book.php
🔗 Co...
but it's too old
;-; you just wanna know meme programming? or wanna learn the thing in general. some old things are gold. and this on isn't even that old and i actually think he teaches verry well than some other videos i saw till now.
hello?
hello
Tim Urban knows that procrastination doesn't make sense, but he's never been able to shake his habit of waiting until the last minute to get things done. In this hilarious and insightful talk, Urban takes us on a journey through YouTube binges, Wikipedia rabbit holes and bouts of staring out the window -- and encourages us to think harder about ...
What are we talking about?
Hey @true valley!
It looks like you tried to attach file type(s) that we do not allow (.pdf). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a, .csv, .json.
Feel free to ask in #community-meta if you think this is a mistake.
I will say
I love that this is the 4 most argumentative people in Pydis shouting at each other
Next opinion: Car manufacturers should stop making keyless fobs, and we should go back to regular keys
just testing again, my audio isn't working yet
"Keyless theft affects luxury car makers significantly, accounting for 48% of all “theft of” vehicle claims. "
in a vacuum this doesn't tell us anything
@true valley if you come to canada I will but you 20 cents worth of food
thanks for your opinions
Next time I am in Canada, I will give you a call. My wife loves Montreal, especially this time of year.
Montreal might be just as far away from me as you are. Montreal is like 5.5 hour drive from Toronto
@halcyon notch hi I am starting with programming with python. I wanted to ask how you started learning because I am having a bit of a rocky start
Do stuff
Make projects
/slap @halcyon notch
@elder wraith
sed
The basic uses of sed command are explained in this tutorial by using 50 unique examples. Any particular string in a text or a file can be searched, replaced and deleted by using regular expression with `sed command. But this commands performs all types of modification temporarily and the original file content is not changed by default. The us...
!otn a the lovable mascot rabbit
:ok_hand: Added the-lovable-mascot-rabbit to the names list.
seperator = " "
[[module]]
prefix = " "
command = 'song'
delay = 1000
[[module]]
prefix = " "
command = "uname -r"
update = false
[[module]]
prefix = " "
built_in = "cpu"
[[module]]
prefix = " "
built_in = "mem"
[[module]]
prefix = " "
built_in = "time"
[[module]]
prefix = " "
built_in = "date"
delay = 43200000
!e from future import braces
@random minnow :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | SyntaxError: not a chance
iT's nOt pyTh0n1K!!!
hexa
@exotic mirage If you're wondering why you can't talk, check out #voice-verification
That'll tell you what you need to know
@topaz totem If you're wondering why you can't talk, check out the #voice-verification channel. That'll tell you what you need to know
Amazing Fast Draw.- Draw and shot in less than 2/100's of a second.
If you want to see more cool stuff like that, "Cowboy Action Shooting" is the term
Bob Munden "THE FASTEST GUN WHO EVER LIVED" shoots two balloons using the Bond Arms Derringer. You will need to watch this one again he is so fast!
To find out more visit us at:
http://bondarms.com/bond-arms-guns
http://StupidVideoHub.com - This guy takes a beating from the new cell phone crime deterrent feature. Funny Video...
or are we here?
"shell_configs": [
{
"name": "Bash",
"cmd": ["bash", "-i", "-l"],
"env": {},
"enable": true,
"platforms": ["linux", "osx"]
},
Oh i see thanks man!
No problem!
@willow bear
!voiceverify
...pfeh.
shesh
@pale pivot Do you want to look at some code again?
hit me
!d collections.defaultdict
class collections.defaultdict(default_factory=None, /[, ...])```
Return a new dictionary-like object. [`defaultdict`](https://docs.python.org/3/library/collections.html#collections.defaultdict "collections.defaultdict") is a subclass of the built-in [`dict`](https://docs.python.org/3/library/stdtypes.html#dict "dict") class. It overrides one method and adds one writable instance variable. The remaining functionality is the same as for the [`dict`](https://docs.python.org/3/library/stdtypes.html#dict "dict") class and is not documented here.
The first argument provides the initial value for the [`default_factory`](https://docs.python.org/3/library/collections.html#collections.defaultdict.default_factory "collections.defaultdict.default_factory") attribute; it defaults to `None`. All remaining arguments are treated the same as if they were passed to the [`dict`](https://docs.python.org/3/library/stdtypes.html#dict "dict") constructor, including keyword arguments.
[`defaultdict`](https://docs.python.org/3/library/collections.html#collections.defaultdict "collections.defaultdict") objects support the following method in addition to the standard [`dict`](https://docs.python.org/3/library/stdtypes.html#dict "dict") operations:
!e
from collections import defaultdict
x = {1: [], 2: [5, 6]}
g = defaultdict(list, x)
g[8].append(3)
print(g)
@pale pivot :white_check_mark: Your eval job has completed with return code 0.
defaultdict(<class 'list'>, {1: [], 2: [5, 6], 8: [3]})
@pale pivot like this? https://github.com/lxgr-linux/pokete/pull/208/commits/dad244189e2807c5f09ce4a1866a9d5a288775e2
looks good to me
Nice, please approve
already done
👌
3/10 should use async
math.sqrt(-1)/10 not in metric
Thanks for the review
the java one is surprisingly absent of public static void main String args[]
Hello friends, I have been working on a cryptographic program for the last year. After many iterations I have concluded to a final program ,but there is a problem. The program is very slow (It would take my laptop 3 months running 24-7 to finish) but there is little to no optimization I can do to the code rather than changing the algorithm. The only solution I could think about is distributing the workload to other computers but I don't know where to find such source of cheap computing power. If you can help me with the problem I face ,please contact me : )
The Amazon Luna team believes in the power of the cloud. We enable customers to experience rich and immersive gaming worlds across their existing devices. Luna is available on supported Windows PC, Mac, Fire TV, Fire tablets, Chromebooks, and web apps on iPhone, iPad, and Android phones. The Luna Controller connects directly to the cloud through...
i am getting ping issue and i am hosting my bot in azure .. anyone knows why getting high ping ?
a rebrand does not a better company make
no it's that you're calling it facebook
they want to not be called facebook because people look at facebook infavourably
which is why I refuse to call them meta
also, voce chat 0 please
hi
long live Elon
requests.post("http://192.168.111.10:8400/getBookingById", data="6")
requests.post(f"http://192.168.111.10:8400/getBookingById={data}")
http://192.168.111.10:8400/getBookingById?6
requests.post(f"http://192.168.111.10:8400/getBookingById?{data}")
http://192.168.111.10:8400/getBookingById=6
http://192.168.111.10:8400/getBookingById?id=6
requests.get("http://192.168.111.10:8400/getBookingById", data='{"id": 6}').text
'[{"id":6,"active":false,"bookingRef":"8CS37N","firstName":"yyyyy","lastName":"no_name","teamName":"yyyyy","questHours":2}]'
{}
Linux Lite is a free easy to use linux based operating system that is suitable for people who are new to linux.
Hi hj
Now that would sound like my name :’D
Hah
Jahr
As in pickle jar
So it’s Hah-jar
@flint kettle ☝🏻
Brb
Yes
@mild flume - What's going on down here?
Avoiding the fireshow
hi
hello dear friends
anyone free for call
I wanted to go to call
but im not verified
so here i am
completing all the tasks to get verified
its a hard job
but guess what
hard tasks if for the hardest workers
its as difficult as phyton is
life is difficult
either you push forward and grind throught it
or you stuck with your actions and be punished by your own destiny of prolonged failure
and this is life
truly
HI
yeah i can write
There is no one in voice chat?
50 000 ppl and voice chat is always empty or it's hidden coz I'm not verified?
ppl arent typically in vc
@marble osprey voice chat has a big amount of people right now I just assume you're in the wrong section or maybe the time you have chosen to get on just wasn't good for productivity however because there are 50,000 people doesn't mean that 50,000 people are actively participating. as of voice channels I cannot tell you if there are more because I myself am not voice verified however there doesn't seem to be a lot of voice channels needed because there isn't that many people in VC to begin with.
does anyone know why I'm getting this error?
FROM python:3.10.4-slim-buster
# run python -m venv .venv command
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
RUN apt-get update && \
apt-get install -y --no-install-recommends gcc
RUN pip install --upgrade pip
COPY ./requirements.txt .
RUN pip install -r requirements.txt
COPY ./src ./src
COPY ./entrypoint.sh .
RUN chmod +x entrypoint.sh
WORKDIR /src

