#voice-chat-text-0
1 messages · Page 812 of 1
Its crazy how I don't know a single programmer who is a dog person
what is the game?
How about you @icy axle, would you say you're more of a dog person or a cat person?
I've never personally owned any animal, but I quite like both. If I had so choose only one, though, it would probably be a dog
My cousin has a dog, that I quite like 😄
Yeah. I like other people's pets. But I'm not too keen on owning them myself.
I looked after my friend's dog while they were away, and it's a lot of work 😄
Yeah, that's completely understandable. I've also heard from my cousin (the one I just mentioned), about how much work it is
When I just see pictures of the pets, I often find them so cute
Later Vester 👋
see you
Have fun studying 😄
Thanks 😄
.spookify
looks good
@faint ermine Do you know about sed?
ehh, i had previously asked you about regex so i thought you might know
ah, yeah sed is a bit out of my expertise
see you guys, I am going to sleep right now , have a nice weekend 👋
Hey @finite ruin, do you have a specific reason you want to stream right now?
i want to show a code instead of copying it
it's an entire chess program and there's something weird about it
i need help again 😿
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.
Sorry, I had to attend to something.
@finite ruin I'm going to hold off on giving streaming permissions for the time being, as I don't know you well and I can't be around to monitor the stream. But please open a help channel to get help with your program: #❓|how-to-get-help
ok
Hey KJ 🙂
What's up?
Erm, I've mostly been on here tbh...
Ah right.
It's been a bit quiet today.
I'm guessing because Hemlock isn't around.
Oh, I haven't been out.
I'm picturing like, Shaun of the Dead.
Yep 😄
I'm not quite used to it yet tbh.
Particularly the pings 😄
Well, Griff an I were made mods in the middle of a raid. So there was that...
Erm, mostly just people reporting incidents. ModMail stuff.
It's actually not that bad... except for raids 😓
Erm, not that often.
The staff have set up pretty good systems for dealing with it.
Oh right, didn't know that.
I have to be honest, I've not played many of the other games.
Well, yeah, by many I meant any 😄
Hey @paper tendon
I'm just watching this recipe video...
Have you ever watched a channel called Chinese Cooking Demystified?
I really want to make this, but it seems like a lot of effort 😄 https://www.youtube.com/watch?v=ssxwWvjUgKw
Rice Tofu! Not a lick of soybean here, this 'tofu' could be thought of as more of a... firm, slippery rice cake. Great ingredient.
0:00 - Introduction and Background
1:44 - Making Rice Tofu
4:14 - Making Chili Oil topping
5:37 - Outro & Tips for Doneness
Written recipe is also over here on /r/CasualChina, if you prefer your written recipes in ...
Yep?
can i have perms??
Erm, alright 😄
thx
One sec while I remember the command 😓
!stream @
!stream 537553907363086343 1h
@whole bear
✅ @open tulip can now stream.
Thanks 😄
🙂
Brb...
OK
!eval ```py
import operator
for name in dir(operator):
if name.startswith('__'):
continue
print(name)
@stuck furnace :white_check_mark: Your eval job has completed with return code 0.
001 | _abs
002 | abs
003 | add
004 | and_
005 | attrgetter
006 | concat
007 | contains
008 | countOf
009 | delitem
010 | eq
011 | floordiv
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/ejafoxirar.txt?noredirect
!stream @graceful grail 1h
Nice try 😄
Nah, I don't think that's in the standard library.
Yep Sympy @dense ibex
It's pretty cool tbh.
Just eval it 😄
Just kidding. Don't eval user input.
Can I stream @stuck furnace
Sure
thanks
!stream 368692694551101443 1h
@paper tendon
✅ @paper tendon can now stream.
@stuck furnace :white_check_mark: Your eval job has completed with return code 0.
2659119772153226779682489404387918594905342200269924300660432789497073559873882909121342292906175583032440682826506723425601635775590279389642612611093020398930347774460613894425379600874662147884229022133853819192905427915750759274952935109319020362271989830578539328807633196834507090639946131138999460277671978289412532212329252032960511820487913640083895490443657920956267126291922289224609441034849578266461219690879675039920051391388174525259443193865041630348000323295729231692725808120388628956451330203199414186213654593812478970390749485268614971964248428562782648720818548493937299025693132719165544060431069136029010640558959534212123746079660766983306735060532482925553082121188696097199078085563246046013216102655431476452400396602364732664246252767374593256582134654265209220042370143240456646479703878634028476799516301302320589620637994623895999962376530625874148998609130106933187937209476887496871311072138713943694894357288061061557708461902289692063089736008186036231141171109877
... (truncated - too long)
Full output: too long to upload
!e
import sys
print(sys.maxint)
@terse needle :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 2, in <module>
003 | AttributeError: module 'sys' has no attribute 'maxint'
Python is clearly no match for Batch.
Hmm, this doesn't look like valid python?
You guys just told him to do that 😄
You could do the float conversion once at the top of the function. This will save some characters later on.
!e
try:
x = (9*(10**100)) ** (9*(10**100000000000000000000))
except OverflowError:
print("Look like you can't code")
@terse needle :warning: Your eval job timed out or ran out of memory.
[No output]
You might be interested in this guy's videos KJ: https://www.youtube.com/c/TheChernoProject/videos
Yep, you can do that.
To catch different exceptions.
You can do:
try:
...
except ValueError:
...
except KeyError:
...
...
ooooooooooooooo you can do that ?!?!?
You can also do: ```py
try:
...
except (KeyError, ValueError) as e:
...
(Sorry, I had it a little wrong before.)
You can also do ```py
except Exception:
...
Yep?
Just use Exception as the exception.
This is the base class for all exceptions.
Which command it producing the error?
how about ast.literal_eval()
Oh yeah, that's an option.
What are you up to LX?
Erm, nothing really. Might head to bed in a minute.
it's like 12 pm for you right?
Yep
I'm trying to be good lately and get to bed before 1am 😄
I'm off guys, cya 👋
bird
hello
so what were you trying to do>
guys, if i set this datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") to a variable, the output will be time when it was called?
That's what .now() pertains to.
#voice-chat-text-0 I've just registered yesterday = =
thx~
3 years maybe (I'm currently in my 4-th year of undergrad
yep, quite interested in ML
machine learning of course
cool
yep, just got admitted to Columbia
for Master's degree
maybe getting a job after getting the degree
family-funded
no scholarship
hhh
HH, just hanging around, maybe I'll be able to talk to you in days
sure~, so how long have you been working with Python ?
just started?
good idea
it's gonna take a little bit tho
im playing hypixel sb bc it's the fastest on 1.8
it's basically a shader oriented minecraft clienct meant for fps
while badlion is meant for mods
yep
actually, more like 230 fps
for me at least
i got an amd rx580
basically a dumpster fire during an eartquake
im saving up for a 2080
haha nice
oh
oof
nice
uh oh
ew
nice
better idea
i bought a prebuilt then added 2 16gig sticks
my prebuilt came with 8 gigs of ram and a ryzen 7
i upgraded to dedicated gpu, rx580, and 32 gigs
yeah ik
a ryzen 7 is an i9 in my opinion
yeah
yeah threadrippers are ridiculously expensive
my name's back to normal
ba lah key
well, KAY
no
on the LA
yeah
or block
either is fine
minecraft server start programs
i made a server a while ago
1.14.4
really?
i mean, i've been screwing around with python and java for a while
but never really cmd or powershell
eclipse for java
and jetbrains or pycharm for python
ik
that's whatnim trying to do
nah, i just dont like it
im a guy
btw
i use it for c++
well, VSC
wait i didn't know that
imma switch to msvs then
thats a lot of repitition
and spelling errors on my part'
oh crap is this a batch paint program
your voice has changed and i don't like it
hello
hi
OwO
Yes, I do use Windows, but not for long.
I've always wanted to try Linux, especially Ubuntu.
Hello.
Basically, Windows sucks. There was one time when I tried opening File Explorer. It crashed for a while. Not until that did Windows give me a BSoD, as if flipping a middle finger at me.
And that's just Windows 8.
It urges me to "update" to 8.1, but it can't even update.
Instead, it would show me a loading screen which seemingly takes forever.
Currently I'm learning C (and maybe C++). A good programmer cannot stick on just one language. Even if one is familiar with it.
😛
Fun trivia: I once tried writing some sh_t with HTML. I'd wanted to create my own website. It was entirely boring.
Microsoft Visual Studio Code is very useful, in my opinion. But it's performance on a computer like mine is absolutely ABYSMAL, that it will eventually rage quit while you're working on something.
<div class="flex-container">
<div>
<h1></h1>
<p></p>
</div>
<div>
<h1></h1>
<p></p>
</div>
<div>
<h1></h1>
<p></p>
</div>
<div>
<h1></h1>
<p></p>
</div>
<div>
<h1></h1>
<p></p>
</div>
<div>
<h1></h1>
<p></p>
</div>
</div>
<div class="flex-container">
<div>
<h1></h1>
<p></p>
</div>
<div>
<h1></h1>
<p></p>
</div>
<div>
<h1></h1>
<p></p>
</div>
<div>
<h1></h1>
<p></p>
</div>
<div>
<h1></h1>
<p></p>
</div>
<div>
<h1></h1>
<p></p>
</div>
</div>
Minecraft is pretty slow on my computer, but at least it runs faster than VS Code.
And it actually runs fast enough to play.
xD hey
Here's my PC specifications.
I was writing in code help voice
haha
my presentation
Arduino was my entrance to fall in love
I am using "sh_tty Windows" - basically pirated Windows.
Right now I'm learning python in the university
In my country (Vietnam), software piracy is pretty common.
Oh, I'm from Chile
Don't worry. They're used to it.
I'm in the tecnological university of chile 😄
monday I have my first exam of pseudocode and I hate pseudocode bc I was studying python and that's a little weird
is C# working in arduino?
I have Photoshop CS6. I could not afford a copy, so I had to get a cracked copy.
For my English-speaking guys, my PC has a lot of SVN, UVF, UTM, SFU fonts.
These fonts support Vietnamese characters.
I recently realized that Microsoft owns many of the biggest software development applications, like typescript, vscode and microsoft word
HAHAHA microsoft word
They also created Xbox - the console that had shaped hundreds of people's childhood.
right, I didn't realize the size of microsoft...
did they create xbox?
or buy?
🤔
yes, I'm a little slow to understand english
Guys, which text editor do you use?

I mostly use Notepad++. I've got Vim for a few weeks, and I use it sometimes.
@whole bear your voice relax me
In my country (Vietnam), if you mention "Vim" in a conversation, people might refer to Unilever's product that cleans your toilet bowl. Nobody knows that Vim is a real text editor.
wait can someone fill me in on this cat thing?
@vivid palm
@whole bear 👀
aye 😄
nice
gotchha you were here only i see
Us I guess
nice, I'm from Puerto Varas
Is a city in Chile
what do u know of Chile?
we have a so similar volcano to the fuji mountain xD
the fuji mountain?
ah, yess
I clim?
I live near
google puerto varas and you will see photos of the volcano
sometime I think when I see an "american guy" I automatically think is a mormon? xD
a mormon of all things?? xD
Hey ya
@whole bear How's the project goin on?
Good 😄 Python script done, waiting for .psd file for the website 🙂
I love how you designed the subprocess thing
yeeee 😄
I met many Americans at church lol and I also met a girl whose father worked at NASA and that blows my mind
yeeee 😄
Your aresome man
ty for the help!
noice no problme
hey laundmo!
laund in the house ayyyy

yeeeeee
sfc /scannow
@vivid palm you should slap this onto laundmos name ᓚᘏᗢ 😄
:p
lol!
ive succumbed too
I didn't even think to check your roles, void said you did it and I assumed you changed their nickname
yeeeee 😄
https://www.youtube.com/watch?v=K74l26pE4YA&ab_channel=Fireship @whole bear this video is a great introduction to css flexbox
Learn the most important concepts of CSS Flexbox Layout in 100 seconds.
#css #webdev #100SecondsOfCode
Upgrade to Fireship PRO at https://fireship.io/pro
Use code lORhwXd2 for 25% off your first payment.
My VS Code Theme
- Atom One Dark
- vscode-icons
- Fira Code Font
Python dependency management and packaging made easy.
this is really great
ngrok secure introspectable tunnels to localhost webhook development tool and debugging tool
@patent lake I think you're a Canadian spy
not at all
meow
Griff, why have you not jumped on the bandwagon?
Ah, don't want to compromise your brand 😄
Fair...
@stuck furnace your name always reminds me of alex
Have you trademarked Griff yet?
Griphe or Griffe, probably
Erm, I have only seen that we didn't win 😄
I'll take a look...
Ah right
Erm, what does "DNW" and "DQ" mean?
Disqualified?
just putting this in here so I don't lose it; please ignore it
class Foo:
def __init__(self, key):
self.key = key
self.bar = Bar(self)
def test():
print("hi")
class Bar:
def __init__(self, foo):
self._foo = foo
def my_random_func(self):
self._foo.# do some stuff
mytest = Foo("erdhnfcoidehcfi")
mytest.test()
mytest.bar.my_random_func()
Use the OMEN Gaming Hub software to install updates, overclock your machine, test network speed, complete challenges, improve game skills, organize and launch games, and more.
5CD9083FRK
anyone who uses awk here?

Download the latest drivers, firmware, and software for your OMEN by HP 15-dc1027tx.This is HP’s official website that will help automatically detect and download the correct drivers free of cost for your HP Computing and Printing products for Windows and Mac operating system.
"Did you 3d print the save button?"
!report yo mom
!report @gentle flint being too handsom
ooh
mods are passé
c'est la vie
TRACK: LXST CXNTURY - VHS
LXST CXNTURY - UNIVERCE OF THE PAST (ALBUM)
Apple Music: http://itunes.apple.com/album/id/1482737219
Spotify: https://open.spotify.com/artist/4TS37lr3ZraUxBHS727sEp?si=NN5aVfguTTG9zlkcij8EdQ
INST: https://www.instagram.com/lxst_cxntury/
VK: https://vk.com/lxst_cxntury
SOUNDCLOUD: https://soundcloud.com/lxst_cxntury
DON...
thru / tho
We are 2 minutes away from a discussion about the iambic pentameter
/\
Russki
da
Ју
Ну да получается
Понял
iambic pentameters are interesting though
class Foo:
def __init__(self, key):
self.key = key
self.bar = Bar(self)
def test():
print("hi")
class Bar:
def __init__(self, foo):
self._foo = foo
def my_random_func(self):
self._foo.# do some stuff
mytest = Foo("erdhnfcoidehcfi")
mytest.bar.my_random_func()
class Foo:
def __init__(self, key):
self.key = key
def test():
print("hi")
@property
def bar():
return Bar(self)
class Bar:
def __init__(self, foo):
self._foo = foo
def my_random_func(self):
self._foo.# do some stuff
mytest = Foo("erdhnfcoidehcfi")
mytest.bar.my_random_func()
What is this?
a test of a concept in the library I've been working on
y
import discord
client = discord.Client()
@client.event
async def on_ready():
print('We have logged in as {0.user}'.format(client))
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content.startswith('$hello'):
await message.channel.send('Hello!')
client.run('your token here')
this uses decorators, but that aside, everything inherits the token from client
@wispy idol
I really don't see anything about tokens
the decorators here seem to be event listeners
The token will be added in run
and then it is internally in client
haven't found its name, yet.. I am going to look through a list in the hope of seeing it when I scroll past
oof
Bash is just a "shell" for linux, like the command prompt. You can also write Bash scripts and run them.
Its'a pretty horrible language to program in tbh 😄
But it has some nice features, just a lot of quirks.
A slightly more modern alternative is Fish.
zsh
I love their tagline:
Finally, a command
line shell for the 90s
You kind of can.
It's mostly used as a kind of "glue code".
For glueing together other programs in Unix.
hi
Okay, I cannot find it. This pattern pretty much states this:
Imagine a class like this:
class Employee:
def __init__(self):
self.wage = Wage()
def getWage(self):
return self.wage
Employee().getWage().getSum() # this is bad
class Employee:
def __init__(self):
self.wage = Wage()
def getTotalWage(self):
return self.wage.getSum()
Employee().getTotalWage() # this is good
This pattern says to hide the inner implementation, so it can be changed easily later. Or extended. More polymorphic subclasses.
Anyone knows what this pattern is called? I forgot the name. But I am sure it had name.
Encapsulation?
@stuck furnace It is about encapsulation, but there was a pattern about how far it should go. But, yeah, basic encapsulation idea
Yeah. It would be hard to anticipate every possible way the implementation might be changed later.
hi i suck at python can i ask things that are getting me stuck at a beginner level, please and thanks
Yep 🙂
class Config:
def __init__(self):
self.key = "kdlsjflsjf" # best to be read from a config file
def getKey(self):
return self.key
config = Config()
-----------------------------
DIFFERENT FILE
-----------------------------
from Config import config
class Client:
def __init__(self):
self.config = config
def doSomething(self):
doSomethingWithTheKey(self.config.getKey) # here is the key used
Example code for 1verbose

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
I wonder what burns through more electricity. Using google or asking Opal on Discord. Maybe it's good for the environment to ask Opal first 🙂
Ah yes, I've seen his stuff, excellent videos
Guys, I'm just starting to work with discord.py who can tell me how the documentation works, I don't understand anything
Erm, what @fresh python?
You can perhaps ask in the #discord-bots channel. 🙂
thank you
Gotta bounce
I don't see how this is any better. You still have a parent Client class, only it has a config attribute now instead of a key attribute
driver booster
I'm getting the hang of it everyone, 🎊 🎊 , minor celebration!
yeah
cool
sadly, discord does not support the vim logo unicode
but it is in the meslo nerd gs font XD
how about \/|\\\
__ ___
\ \ / (_)_ __ ___
\ \ / /| | '_ ` _ \
\ V / | | | | | | |
\_/ |_|_| |_| |_|
use Figlet
FIGlet is a computer program that generates text banners, in a variety of typefaces, composed of letters made up of conglomerations of smaller ASCII characters (see ASCII art). The name derives from "Frank, Ian and Glenn's letters".Being free software, FIGlet is commonly included as part of many Unix-like operating systems (Linux, BSD, etc.) dis...
i use toilet
Good to know 😄
i mean the terminal app...
▄▄ ▄▄ ██
▀██ ██▀ ▀▀
██ ██ ████ ████▄██▄
██ ██ ██ ██ ██ ██
████ ██ ██ ██ ██
████ ▄▄▄██▄▄▄ ██ ██ ██
▀▀▀▀ ▀▀▀▀▀▀▀▀ ▀▀ ▀▀ ▀▀```
Oh right. I thought you were just showing off 😄
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
██ ██ ██ ██████████████████████
██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
▀▀ ▀▀ ▀▀ ▀▀ ▀▀ ▀▀
██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
██ ▄▄▄▄▄▄▄▄▄▄██ ██ ██ ██ ██
██ ████████████ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
▀▀ ▀▀ ▀▀ ▀▀ ▀▀ ▀▀
██ ██ ██ ██ ██
██ ██ ██ ██ ██
██ ██ ██ ██ ██
██ ██ ██ ██ ██
██▄▄▄▄▄▄▄▄██ ██ ██ ██
████████████
last one before it gets to be a spam
@somber heath background noise.
Oughtn't have been. Maybe I was rubbing my mic hole.
Maybe discord needs a restart.
It is a mystery!
rubbing with what, hmmm?
Could have phrased that better 😄
I think Opal's lost it tbh...
you might be right
he probably just restarted discord as he said he should do
@paper tendon that was short
what's the best python library for merging audio streams from multiple users
thanks i also found https://github.com/aiortc/aiortc but not sure if maintained
If you are building something like Discord, wouldn't want to be working with .wav files
you never specified
yes, specifically looking for real time audio stream processing, echo cancellation, mixing (volume equalization), ability to separate/mute audio streams
no idea, sorry
i think you get echo cancellation for free with WebRTC at the client level
so really just need to mix streams at the server level
from dotenv import load_dotenv
load_dotenv()
APIKEY = os.environ.get("KEY")
parent_client_instance = Client(key=APIKEY)
sry im like choking on water
I manage without
class Foo:
def __init__(self, key):
self.key = key
self.bar = Bar(key)
adieu
klamboe
kelambu
tabee
prauw
rimboe
Lumpia are various types of spring rolls commonly found in Indonesia and the Philippines. Lumpia are made of thin paper-like or crepe-like pastry skin called "lumpia wrapper" enveloping savory or sweet fillings. It is often served as an appetizer or snack, and might be served deep fried or fresh (unfried). Lumpia are Indonesian and Filipino adap...
@whole bear oi
ya feckless lad
do you have a DVD
"Moffen kunnen geen sch zeggen." - Erik (Rutger Hauer) en Guus (Jeroen Krabbé) komen zich melden als vrijwilliger bij het leger tijdens de Duitse invasie van Nederland op 10 mei 1940. Uit de film Soldaat van Oranje (1977).
depends on why it's not working
while choice =="yes":
import math
a = float(input("Enter Leading coefficient a"))
b = float(input("Enter the next coefficient b"))
c = float(input("Enter the constant c"))
if a==0:
print("Value of a should not be zero")
else:
D = b**2 - 4*a*c
if D>0:
R1=(-b+math.sqrt(D))/(2*a)
R2=(-b-math.sqrt(D))/(2*a)
print("Roots are Real and UnEqual")
print("Root 1 =",R1,"Root 2 =",R2)
elif D==0:
R1=(-b)/(2*a)
print("Roots are Real and Equal")
print("Root 1 =",R1,"Root 2 =",R1)
elif D<0:
R1=(-b+(math.sqrt(D))j/(2*a)
R2=(-b-(math.sqrt(D))j/(2*a)
print("Roots are Complex and Imaginary")
print("Root 1 =",R1,"Root 2 =",R2)
choice=input("Enter continue of not(yes/no)")
in this code I am trying to get the output as complex numbers too
neither x nor y
noch x noch y
lunch
middagmaal
maaltijd
is used as meal
but actually means mealtime
het is tijd voor de maaltijd
moeilijk difficult
mooi beautiful
onoverzichtelijk
@ripe hatch i think math doesn't support imaginary results, only cmath does
what's the Dutch word for secretive? Anything to do with the word "home"?
geheimzinnig
'cuz geheim means secret
an alternative older version of geheimzinnig would be heimelijk
the word reminds me of this: https://www.reddit.com/r/ActLikeYouBelong/
target_compile_definitions(HelloCMake PRIVATE $<$<CONFIG:Debug>:HelloCMake_DEBUG>)
this creates a macro in my source file if the debug option is chosen when running cmake so i can check for that to use debug mode in my source
that way i dont have to set a resource macro manually
ohh ohay Thanks
Police Academy 1: "Hands in the air, this is a robbery!" Best scene of the whole film!
woo interesting thing going on
@somber heath do you speak any other languages? 
What do Australian kids learn as their 2nd language at school?
In cryptography, a salt is random data that is used as an additional input to a one-way function that hashes data, a password or passphrase. Salts are used to safeguard passwords in storage. Historically a password was stored in plaintext on a system, but over time, additional safeguards were developed to protect a user's password against being ...
Essentially, no.
Oh I see~
@gentle flint gotta go
bye
o/
Do you have a 4:3 aspect-ratio monitor by any chance Oof?
Oh right. It works quite well for screen-sharing I think.
ah
Viewed on a 16:9 monitor.
I see
docs for my module
Cool cool.
Hmph!
Hmph?
I agree my heart skipped a beat.
Now you're really quiet @paper tendon
Hmm, I wonder what the issue is 🤔
Are you using an external mic?
What kind of mic? Does it have a pre-amp?
Gi, same. Lmao
;p
what a set of noobs sitting in vc
I mean you can't help someone that's more advance than you. So...
XD
true
but i m just xtra noob
You're not alone.
;-;
no, i m the noobest of the noobs, so i m alone
LX, uncount urself, dw
i was talkin about the majority
Eh, I'm a noob sometimes too.
poor verbose, let him figure it out himself
That will be the outcome anyways. LOL
lol
I hope you're still alright verbose.
Same with Marko with his mic.
and alone in a vc filled with 6 ppl
5 perhaps
I think I have
it's already on
death
I can hear him, but with a lot of snakes on the background.
idk he is fighting with his microphone or sth
i m rude to ppl with bad microphones
brb

This is only one language that has power over any other language. It is called as All in one language. As python is much simpler and easy to code language than any other. python training institutes in Hyderabad help in programming, scripting and web development, application development etc. Python is a universally useful programming language planned and created by Guido Van Rossum. The name Python has its cause from Guido Van Rossum’s #1 TV program “Monty Python’s Flying Circus”. It doesn’t make any difference on the off chance that you are new to programming or have been modifying in different dialects.
have you used conky to update the i3status?
just used stock i3status
🥺
lol
girls i have got my new form #loveingit #twiter #noMenInMyLife @gentle flint
that looks life you
Guys, getting a bit spammy with all the images.
lel
this chat is now HARAM
@ everyone https://github.com/Null-B my GitHub is the best.
guys help
@flat sentinel Hi
what's good
Are you guys working on a project?
for loop, if not dad come home and beat me up
@whole bear You got some nice juciy name
Lol
Fuck you
I'm smart too
teach me powershell, bitch
make a for looopp
@whole bear No, it doesn't make it slower
Lol
name = ['Megumin_unwanted_Dad']
for i in name:
for w in i:
print(w)
@whole bear No, if you have git download then just clone it
you don't need to download it
!e ```py
name = ['Megumin_unwanted_Dad']
for i in name:
for w in i:
print(w)
@paper tendon :white_check_mark: Your eval job has completed with return code 0.
001 | M
002 | e
003 | g
004 | u
005 | m
006 | i
007 | n
008 | _
009 | u
010 | n
011 | w
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/udafitomaq.txt?noredirect
who the fuck is that
!e ```py
name = ['Megumin_unwanted_Dad']
print([c + "\n" for c in list(name)])
!e ```python
name = ['Megumin_unwanted_Dad']
print([c + "\n" for c in list(name)])
@whole bear :white_check_mark: Your eval job has completed with return code 0.
['Megumin_unwanted_Dad\n']
bruh
!e ```py
name = ['Megumin_unwanted_Dad']
print([c + "\n" for c in list(*name)])
@paper tendon :white_check_mark: Your eval job has completed with return code 0.
['M\n', 'e\n', 'g\n', 'u\n', 'm\n', 'i\n', 'n\n', '_\n', 'u\n', 'n\n', 'w\n', 'a\n', 'n\n', 't\n', 'e\n', 'd\n', '_\n', 'D\n', 'a\n', 'd\n']
!e ```python
name = ['Megumin_unwanted_Dad']
print([f"{c}\n" for c in name])
@whole bear :white_check_mark: Your eval job has completed with return code 0.
['Megumin_unwanted_Dad\n']
!e ```python
name = ['Megumin_unwanted_Dad']
print([f"{c}\n" for c in ''.join(name)])
@whole bear :white_check_mark: Your eval job has completed with return code 0.
['M\n', 'e\n', 'g\n', 'u\n', 'm\n', 'i\n', 'n\n', '_\n', 'u\n', 'n\n', 'w\n', 'a\n', 'n\n', 't\n', 'e\n', 'd\n', '_\n', 'D\n', 'a\n', 'd\n']
who the fuck are you?
!e ```py
name = ['Megumin_unwanted_Dad']
print(*[c for c in list(*name)], sep="\n")
@paper tendon :white_check_mark: Your eval job has completed with return code 0.
001 | M
002 | e
003 | g
004 | u
005 | m
006 | i
007 | n
008 | _
009 | u
010 | n
011 | w
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/agisogohoj.txt?noredirect
thank you
Thanks
@whole bear Goodbye
@gentle flint https://github.com/Dragon-Batch/Paint
!Bb! /c 0x!ColorBG!!ColorFG! /g !top_left_x! !top_left_y! /a !MainChar! /g !X! !top_middle_y! /a !MainChar! /g !top_right_x! !top_right_y! /a !MainChar! /g !middle_left_x! !Y! /a !MainChar! /g !X! !Y! /a !MainChar! /g !middle_right_x! !Y! /g !bottom_left_x! !bottom_left_y! /a !MainChar! /g !X! !bottom_middle_y! /a !MainChar! /g !bottom_right_x! !bottom_right_y! /a !MainChar!```
Heyo @paper tendon
It's going to be a bit boring if it's just me here, sorry 😄
You're coming through clear!
For once 😄
Oh right. What was causing the static?
can i get video role just to casually stream what i m coding
Alright. I think I understand.
Erm, what do you want to stream @whole bear?
i was denied
me just boringly coding
Er, one second while I confer 😄
okiii
👍
You have streaming permissions for one hour.
Don't abuse this role.
defo not
Sorry, didn't mean to shout 😄
na, i didnt even felt that
Kemal, if you think that's bad, I use -GASP- light mode.
Are you referring to Batch? 😄
Heyo @storm patrol 👋
If you're wondering why you're muted, see #voice-verification
Well, it's usually in the interest of the company itself to try to become a monopoly, but perhaps not good for society.
this sounds like my parents
Companies can also be like a monopoly without actually being a monopoly, through market differentiation.
Apple can charge higher prices, because they are the only company that sells Apple devices, which are difficult to compare with devices from other vendors.
Heyo @faint ermine 👋
Y-Dna mtdna IndusValey Civilisation
Qiskit https://qiskit.org/
Qiskit is an open source software development kit (SDK) for working with OpenQASM and the IBM Q quantum processors. Create quantum computing programs, compile, and execute them online in a real quantum processors.
Oh nice.
I'm currently taking an automator theory online course.
As I realised I've forgotten a lot since university 😓
And I want to be able to confidently explain P = NP 😄
I think mathematicians are interested in it.
Like, the difficulty of finding a proof for a particular theorem?
XD
Me? 😄
Sorry, got distracted.
I'm currently playing one of the winning PyWeek games...
which course? I mean which online uni.
Cya 👋
rum
Erm, @timber vale, write your question here.
https://www.edx.org/course/automata-theory Taught by Jeff Ullman no less!
"errorMessage": "local variable 'conn' referenced before assignment",
"errorType": "UnboundLocalError",
"stackTrace": [
" File \"/var/task/daily-ingest-mlb.py\", line 42, in handler\n cursor = conn.cursor()\n"
]
conn = None
logger = logging.getLogger(__name__)
today = date.today()
yesterday = today - timedelta(1)
yesterday = yesterday.strftime('%m/%d/%Y')
db_config = {
'host': os.getenv('endpoint'),
'user': os.getenv('username'),
'password': os.getenv('password'),
'database': os.getenv('db'),
'port': int(os.getenv('port', 5432)),
}
conn = None
try:
conn = psycopg2.connect(**db_config)
except psycopg2.OperationalError as e:
logger.error(f'Unable to connect! \n {e}')
return
sched = statsapi.schedule(start_date=yesterday, end_date=yesterday)
for game in sched:
game_id = game['game_id']
print(game_id)
response = requests.get(f'https://statsapi.mlb.com/api/v1.1/game/{game_id}/feed/live').json()
print(response)
cursor = conn.cursor()
cursor.execute('INSERT INTO testing.storp_payload_table (records,game_id,upload_date) \n'
'VALUES (%s,%s,%s) \n'
'ON CONFLICT (game_id) DO UPDATE \n'
'SET records = excluded.records, upload_date = excluded.upload_date;',
(json.dumps(game_data), game_id, 'NOW()')
)
conn.commit()
conn.close()
logger.info(__name__)
return f'Hello, yesterday\'s date was {yesterday}'
O_O
Heyo
Quite a few people actually.
Lisp definitely falls into the functional camp.
It's like the OG functional programming language.
John McCarthy
Marvin Lee Minsky (August 9, 1927 – January 24, 2016) was an American cognitive and computer scientist concerned largely with research of artificial intelligence (AI), co-founder of the Massachusetts Institute of Technology's AI laboratory, and author of several texts concerning AI and philosophy.Minsky received many accolades and honors, such a...
Do you guys want to do some back-seat gaming? 😄
Arrival 2016
Contact 1997 CarlSagan book based movie
🙂
Negative Gravity and the Kasimir Effect
What is needed to have a traversable wormhole.
you do an impressive job of switching accents
Who's watching the stream?
not I
Erm, it's one of the winning games from PyWeek
I'm reading of mocks
I'm going to need some help to solve all the levels, I think 😓
@timber vale who do u mean Xd
you
Night Oof 👋
Wait, I'm not sure what I just did 🤔
@paper tendon It's one of the games someone made in PyWeek.
@stuck furnace damn everyone just left lol
the stream will pull people lol
Erm, so you have to get out of the jail. You can bribe guards with letters. You can use letters to make python code and run it.
Cya 👋
Yeah, I'll send you the link. One sec..
There appears to be a bug that makes it crash on MacOS.
But it can be patched.
Well, that was a resounding success 😄
😔
😔
😔
guys i think i have over done the 3 question homework that i got given
Lmao
anyway gnight
im doing a report on why my contry is falling
Ah i see
help
m8 i have dose why the gov is failed and why the education system didn't handle it and why a generation is now fucked
Sad kemal momento
low job payments
yes
Lol
i'm going to do that thx
yes
Lol
Bye
Pog
hi
Hello.
o/
o/
It depends whether your internet provider supports open port.
Specifically 80 I believe.
Heroku, Digital Ocean, Google Cloud, AWS
Front End?
HTML is a markup languages.
CSS is styling to be exact.
HTML, CSS and Javascript first.
Hello Pillo and Accelerator
Can't speak, I'm still mute. Sad I can't sign language either. LOL
you'll get voice verified in no time, if you stick around
Haha, I think this is my 2nd day or 3rd day. Not sure.
Yeah. But I can't be speaking with myself or spamming so I just don't.
Thanks, Levi Ackerman. LOL
You binge watch. Hahaha. I am watching Log Horizon atm.
some of my friends won't shut up about it, so I thought might as well watch it
its pretty good I would say
Hahaha, a lot of people including my cousins keep on telling me to watch Shingeki. But I am busy with Log Horizon atm. So...
I did watch some episodes in Season 1. I will come back with it when I'm done with this one.
yeah, its good
I'm fan of the MMORPG, that's why I was hooked by Log Horizon. Plus Isekai genre in anime is lit.
I just don't enjoy movies in general 😅 , so I started anime
some movies are great
few movies are great
Hahahaha. RIP
I honestly don't watch anime back then, I even despise it.. But now? You can't make me stop watching anime.
Bye coding lover.
like Hi @whole bear
Hi @wise glade
Bye everyone T^T
I'm not leaving yet. Hahaha
I want to be voice verified.
I can't chat there, cause I don't have something to contribute.
Yeah.
How about you dope? How's it going?
@undone idol
Eating chips, nothing much. XD
Accelerator are you like advance to python? Or something?
can't say, advanced is quite some word
umm ye
What are the best resources in learning it? I feel stuck.
We can't classify it into advanced 😅
https://www.learnbyexample.org/python best for starting out
We offer best Python 3 tutorials for people who want to learn Python, fast. We also provide examples for every single concept to make learning easy.
do you know any other langs?
A bit of Java, Javascript. Mostly mark-up languages.
umm cool
School taught me Java. I just don't feel Java.
@whole bear 👋
I don't feel java either 😛
Great 😄
Do you have any projects right now accelerator?
projects? personal projects in python?
Both?
I've not written any python code from over a month now 😅
job required me to learn C#, so I "really" started with C#
its fun, and takes a lot of time
since you know java, It'll be easier for you to learn it, if you want to learn it
ok, I gotta go, have a good day @whole bear 👋
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
ok
Yep
mem
well, i haven't abled push to talk
ah ye
you have some air as background noise dope
Who is camle?
Take that shit in the face
im gonna get kemal banned
they won't banned him because mods don't take action on dms
because they think it is forge
I see

