#voice-chat-text-0
1 messages · Page 779 of 1
whats that in fluid ounces?
4 cubic liters
how is it possible that there are 13 people in this channel and its still that quiet
imagine writing server ruels for hours and then no one read them xd
why are there so many help chat channels
we dont need to imagine
.formof
Form of a wall of snow!
@olive hedge 👀
418 I'm a teapot
The Greed of Julia
We are greedy: we want more.
We want a language that's open source, with a liberal license. We want the speed of C with the dynamism of Ruby. We want a language that's homoiconic, with true macros like Lisp, but with obvious, familiar mathematical notation like Matlab. We want something as usable for general programming as Python, as easy for statistics as R, as natural for string processing as Perl, as powerful for linear algebra as Matlab, as good at gluing programs together as the shell. Something that is dirt simple to learn, yet keeps the most serious hackers happy. We want it interactive and we want it compiled.
pub struct IcedElement<D, T: Program<Renderer = Renderer> + 'static, F: FnMut(&mut program::State<T>, &mut D)>
fn render<'a: 'rp, 'rp>(
&'a mut self,
engine: &mut Engine,
data: &mut Self::Data,
frame: &wgpu::SwapChainFrame,
render_pass: &mut wgpu::RenderPass<'rp>,
)
Night!
night smelly dutchman @gentle flint
Alright I am gonna head off to bed since you got it handled g'night all
!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.
Hey @slate pier!
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.
Feel free to ask in #community-meta if you think this is a mistake.
"""
Sliding Puzzle Game
Assignment 1
Semester 1, 2021
CSSE1001/CSSE7030
"""
from a1_support import *
# Replace these <strings> with your name, student number and email address.
__author__ = "<Your Name>, <Your Student Number>"
__email__ = "<Your Student Email>"
def shuffle_puzzle(solution: str) -> str:
"""
Shuffle a puzzle solution to produce a solvable sliding puzzle.
Parameters:
solution (str): a solution to be converted into a shuffled puzzle.
Returns:
(str): a solvable shuffled game with an empty tile at the
bottom right corner.
References:
- https://en.wikipedia.org/wiki/15_puzzle#Solvability
- https://www.youtube.com/watch?v=YI1WqYKHi78&ab_channel=Numberphile
Note: This function uses the swap_position function that you have to
implement on your own. Use this function when the swap_position
function is ready
"""
shuffled_solution = solution[:-1]
# Do more shuffling for bigger puzzles.
swaps = len(solution) * 2
for _ in range(swaps):
# Pick two indices in the puzzle randomly.
index1, index2 = random.sample(range(len(shuffled_solution)), k=2)
shuffled_solution = swap_position(shuffled_solution, index1, index2)
return shuffled_solution + EMPTY
# Write your functions here
def main():
"""Entry point to gameplay"""
print("Implement your solution and run this file")
if __name__ == "__main__":
main()```
!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.
sudo apt update
!e ```py
def func(arg):
return f"the arg is {arg}"
val = func(15)
print(val)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
the arg is 15
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
['hello', 'world']
!e print("hello world".split("o"))
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
['hell', ' w', 'rld']
- figure out output of
get_game_solution - figure out how to split the result
- figure out how to make a grid from that
Hey @lethal thunder!
Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:
• If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)
• If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:
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.
``
def calculator1():
while True:
try:
num1 = float(input("enter your first number: "))
except ZeroDivisionError:
print("Zero is not a number!\n")
continue
else:
break
while True:
try:
num2 = float(input("enter your second number : "))
except ZeroDivisionError:
print("Hey! Didn't i tell you zero is not a number!\n")
else:
break```
Traceback (most recent call last):
File "C:\Users\Ayden\Downloads\Python\simpcalc\simpcalc3\scalc3.py", line 72, in <module>
calculator1()
File "C:\Users\Ayden\Downloads\Python\simpcalc\simpcalc3\scalc3.py", line 45, in calculator1
result4 = float(num1) / float(num2)
ZeroDivisionError: float division by zero```
think about your program flow, your try: except won't do what you expect
def calculator1(): try: num1 = float(input("enter your first number: ")) num2 = float(input("enter your second number: ")) except ZeroDivisionError: print("Zero is not a number!\n") result = num1/num2 return result
ctrl + /
@eternal bough :warning: Your eval job has completed with return code 0.
[No output]
@eternal bough :warning: Your eval job has completed with return code 0.
[No output]
!e
try:
num1 = x
num2 = y
except ZeroDivisionError:
print("Zero is not a number!\n")
result = num1/num2
return result
calculator1(3,0)```
@eternal bough :warning: Your eval job has completed with return code 0.
[No output]
you need to move around where you are doing operations
!e
def calculator1(x, y):
try:
num1 = x
num2 = y
result = num1/num2
except ZeroDivisionError:
print("Zero is not a number!\n")
pass
return result
calculator1(3,0)
@eternal bough :warning: Your eval job has completed with return code 0.
[No output]
@white turret :white_check_mark: Your eval job has completed with return code 0.
Zero is not a number!
@white turret :warning: Your eval job has completed with return code 0.
[No output]
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.
this one
wow nix you coded that yourself??
WOWOW
the soup
you coded soup??!
nice
!e ```python
import urllib.request
request_url = urllib.request.urlopen('https://www.geeksforgeeks.org/')
print(request_url.read())
@thin breach :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/usr/local/lib/python3.9/urllib/request.py", line 1346, in do_open
003 | h.request(req.get_method(), req.selector, req.data, headers,
004 | File "/usr/local/lib/python3.9/http/client.py", line 1255, in request
005 | self._send_request(method, url, body, headers, encode_chunked)
006 | File "/usr/local/lib/python3.9/http/client.py", line 1301, in _send_request
007 | self.endheaders(body, encode_chunked=encode_chunked)
008 | File "/usr/local/lib/python3.9/http/client.py", line 1250, in endheaders
009 | self._send_output(message_body, encode_chunked=encode_chunked)
010 | File "/usr/local/lib/python3.9/http/client.py", line 1010, in _send_output
011 | self.send(msg)
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/eqinumuroj.txt
!e ```python
import requests
import json
x = requests.get("https://cat-fact.herokuapp.com/facts","black")
print(x.json())
@thin breach :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 'requests'
F
eval bot also doesn't have internet access
trying to get help in scandium channel
art
look at the terminal
Rapture, you speak like tommyinit
It's the truth
I just had to think about it because Dream was in the voice ^^
I'm gonna go now, see ya
Look at the paint window 🤣
hell
lol
anyone is 15 here?
How do i talk in vc?
thanks
are you gamiliar with machine learning using sklearn?
ok just wondering
yes
just need to keep typing until i reach 50
yeah, i'm building a machine learning model for one of my courses, and I just came here for some help
1
2
for m in range(1:51:1):
print(message m)
poop
didnt work
what's veryone here do with python?
Bobity boop
Morning folks
didn't realize mic was not on push to talk
yeah, my parents don't get along at all
but, its typical Indian couple
Father always gives in
about 32.2 kilometers
Quite far
yeah, seems hyperbole, what he said
I just scared myself
I hit restart, and then it started doing Windows updates. Thought "well shit, here comes not getting to use my computer for the next hour"
Thank god for SSDs
I wouldn't have been upset if it had told me ahead of time
But noooooo
Can't give the user any warning
But I guess I should have expected it. Yesterday was Patch Tuesday
lmao
why does this makes me laugh
@dim wagon You're cutting in and out really badly
I wouldn't be surprised if native JS matures enough to be viable for writing a DE in
company's covering my covid vaccine's costs 💉
but, if you do get it, you'll be among the first to return to office
so no thanks 😂 , just an intern
Last night I was wondering why my phone screen keeps going black when I pull on notifications
Although I then realized that being on call triggers that behavior when you hover over the proximity sensor
so, you didn't end the call
Yep
you using f5 to run it?
I am trying to compile C
you need this
@wise glade Should be able to now
some troll came to interrupt our meet-class
See that kind of stuff bothers me
Like school is already hard enough with everything going on
Why make it worse
hullo hullo
How are you?
@fast gyro go to a c or cpp server to start from scratch
also don't dm me
that was the last thing I did, before going back to work
confused me
I run ethernet wire too
but its not called ethernet cable, its something else
something funny
maybe today I'll set up my desktop so I can stop using wifi on my laptop...
wee-fee
paymoneywubby is louis ck's lost son
hihi
hiiiii
jake no shots 4 u
and some are built lucky
!voice @obtuse geyser
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
good you?
Pretty good just working on my projects trello page
Yeah Ig its just a todo list but its very smart
and thought i should join this server
how dose mit work?\
wowo nice wall @hollow haven
whats mit?
this
its a todo list online I didn't make it I am just using it to keep me organized.
If that makes sense.
ohhh
thats cxool
cool
lol i wanna learn how to make small games
and stuff
lol
The temperature range is ergh here

20°C to 35°C
.wa s 35 c to f
95 degrees Fahrenheit
.wa s 35 c to f
95 degrees Fahrenheit
.wa s -0 c to f
32 degrees Fahrenheit
ayyaaya
.wa plot x^3 - 6x^2 + 4x + 12
wow thats cool
More eggs.... Yay?
That took a dark turn Jake
The actors on their videos too
Hemlock, did you know they took the word Gullible out of the dictionary?
Buzzfeed is eh
Huff 😄
The day that I fall for that is the day that I cut myself off from society
can anyone explain the reason, cause I forgot 😞
so == checks for just value part?
yeah, caching
mhm, == is just checking if they have the same value, not if they are the same object
I couldn't get it to work with your example, but same idea: http://pythontutor.com/visualize.html#code=a %3D (1,) b %3D (1,) print(a %3D%3D b) print(a is b)&cumulative=false&curInstr=4&heapPrimitives=true&mode=display&origin=opt-frontend.js&py=3&rawInputLstJSON=[]&textReferences=false
a is not b
does python have concept of properties, values and fields on an object?
or does everything's called a property
except for methods
They're called attributes typically
all of em, together called attributes?
Yep. Attributes are like variables but specific to a class and its objects, methods are like functions but are specific to a class and its objects
!e
from sympy import symbols
from sympy.plotting import textplot
import numpy as np
x = symbols('x')
textplot(x**2,-4,4)
@remote kettle :white_check_mark: Your eval job has completed with return code 0.
001 | 16 |\ /
002 | | . .
003 | |
004 | | . .
005 | | \ /
006 | | . .
007 | |
008 | | . .
009 | | \ /
010 | | \ /
011 | 8 |--------\-------------------------------------/--------
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/iyolayasul.txt
!e
from sympy import symbols
from sympy.plotting import textplot
import numpy as np
x = symbols('x')
textplot(-x**2,-4,4)
@remote kettle Typically you'll want to do those commands in #bot-commands instead
@remote kettle :white_check_mark: Your eval job has completed with return code 0.
001 | 0 | .........
002 | | ... ...
003 | | .. ..
004 | | .. ..
005 | | / \
006 | | .. ..
007 | | / \
008 | | / \
009 | | / \
010 | | / \
011 | -8 |--------/-------------------------------------\--------
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/gukabiluru.txt
If you don't mind
sorry
@dense ibex give up, just use electrical tape
No worries, just letting you know
thx man
voice-chat, aka soldering-help-channel
7 votes and 2 comments so far on Reddit
brave electrician would use tape for everything
also a crazy one
do a google lens on it
That's pretty cool though! Didn't know about textplot.
The Harris Products Group is a world leader in the design, development and manufacture of brazing, soldering and welding alloys and equipment, cutting and heating equipment, and gas distribution systems.
@gentle flint such a delay you got
mr sounds like he's on a megaphone lol
Are you in your Pringles tube again?
I feel like you should end every message with "over"
whisky tango foxtrot over
@rugged root can you say, "Huston........, ,The eagle has landed"
Soldering in your car? 😄
Oh, for repairs to the car.
I thought you meant you just want to solder electronics on-the-go.
@gentle flint so should I also get these? https://amzn.to/2OaUk9J
would these be useful at all?
7 votes and 2 comments so far on Reddit
or more like a radio announcer
ahh..
Also, I need to be able to wear them the whole day
who much did you pay for them
I didn't buy those
you stole then?
What do I need to type there
The ones which don't have a mic, the one accelerator posted, I did not buy
I do not own them
I have not received them
etc
etc
etc
Jaaaaaaa
thanx man
@dense ibex this is literally you
Ik 😦
driving is such a pain in the butt
who is dat??
yes
@flat sentinel Is that necessary? I don't think it's relevant to the current convo
what
yo ✌
what up
we really need kiko voice reveal
👀
helo
haven't seen you in this channel in a while
lol
imagine doxxing everyone on the planet just cause you got offended by someone in mwf lobby
well that is great
PTT is my fave
how to get 100% cpu usage with python?
but i only get 20%
well just make 5 more
i don't think that would be possible with python...
oh
iirc it has happened to me before 😳
how complex should it be made?
wery
faktorials
Discord needs to update its push-to-talk ui layout and behaviour before ptt would be anything but vexing to me.
like very very complex
yes
like render pictures?
are any Austrian here?
no
I've watched the sound of music, so I'm basically austrian /s
Austria or Germany
We may have some Austrian's. Not sure though
ohh
I can't tell the difference between monchi and PSVM 😄
where can i test my random-facts-spam-bot
On your own test server
We don't invite bots we don't make or we haven't verified heavily
Hi everyone
royalty family sounds toxic
its more like a script
Eh.... it's more a figure head position anymore
I want work for goverment
They'd catch hell if they exercised it
They have the same kind of just woke up and can't be assed tone 😄
@rugged root Are you a software engineer?

?
Oh ok
lol fair enough
he is an accountant
Oh nice
I'm not an accountant

Wait what
I think the UK is about to have a constitutional crisis 
@rugged root How did you get an admin?
But I am not an accountant
Oh ok
By spending far too much time here
@stuck furnace Are you living in uk?
Yep
Can anyone hire me
Nice
ok
Lol
no
F
Finding job is so difficult
kivy
Kivy is an open source library for developing multi-touch applications. It is cross-platform (Linux/OSX/Windows/Android/iOS) and released under the terms of the MIT License.
It comes with native support for many multi-touch input devices, a growing library of multi-touch aware widgets and hardware accelerated OpenGL drawing. Kivy is designed to let you focus on building custom and highly interactive applications as quickly and easily as possible.
With Kivy, you can take full advantage of the dynamic nature of Python. There are thousands of high-quality, free libraries that can be integrated in your application. At the same time, performance-critical parts are implemented using Cython.
See http://kivy.org for more information.
@stuck furnace I like the UK because Uk's education certification is so valuable any country like that is one of the best thing about developed country
C# > Java
C/C++ > C#
yes
same!
Have they ever been online at the same time? 🤔
C/C++ < 1
ooooh, good point
Just like myself and superman have never been in the same room
@flat sentinel C#, done properly would take about 2 years (they all say)
well
Depends on what languages you have under your belt, Acc
I do not understand pointers. I get confused .
but still
Called it
but once you get used to em, its just too simple
then comes references 😂
pointers are kinda easy to understand in my opinion
advanced c++ syntax, close to C#
what language isn't project oriented?
when you use namespaces in C++
Project oriented or object oriented, Heisen?
We get too many well meaning "you should learn assembly before you learn any coding language because you need to understand from the ground up"
any help guys? xDDDDDDDDDDD
obkect
But like.... I'm not going to learn how to build a car to drive/own one. Sure it would help eventually, but it's not necessary
object
I read but I forget. Perhaps if I start using it I'll remember
I know for Python specifically, Fluent Python is GREAT
Are you asking for help with this, or is this someone bothering you via DM? In the former case, we will not help with this. In the latter case, report it to @rapid crown
No but good statically typed language like Kotlin/Java or C# is good idea
oh yeah, I agree. This is a slightly controversial opinion but I think starting with a language that doesn't abstract so much away is beneficial for someone who wants to pursue coding/cs/etc as a career or significant part of their life.
Hey, see #voice-verification
k
Haskell, Lisp, Clojure, all of those are considered functional languages
I think the important thing when learning a programming language is to develop a really solid mental execution model for the language. Practically, this means writing short programs and trying to predict what happens when you run them.
I learned Python by working my way through the documentation and watching tutorials along the way. I think. It's been a while.
yes! Not the "well I have no idea what this code does, let's just run it" but being able to understand how it might execute is vital
👌
I can get into more detail when I get back to my desk
for real, you leaned it through the docs, since the beginning?
Yeah, actually making a prediction is the important part. Then if the prediction doesn't match what actually happens, you need to revise your understanding.
@flat sentinel with gui, " what you see, is what you get " , so fu** GUI, terminal's awesome
@wise glade I remember going through the docs fairly early on. I came from BASIC, so coding wasn't alien to me. I remember indentation being the first thing I had to wrap my brain around.
you cool Opal
he was always cool
Agreed as well, I think Python is bad first language for older student wanting to do Software
It’s fine for those who are not software engineers like data or SREs
ooh, what would you recommend then?
any statically typed
Java/Kotlin or C#
maybe C
C seems a bit too complex as a starter language in my opinion
just the basics?
yeah, I would recommend js/ts as well
It’s low level enough to teach you basics but not fiddling enough to drive you crazy
I find I pick up languages much faster if they have an interactive interpreter/REPL, as the experimentation loop is shorter. Learning a compiled language is like learning to play a piano where you have to perform an entire piece of music before it plays back the sound 😄
till you can solve some data structs questions in C
trust me, it's more simpler than c++
Like if someone just wants a tool to help them automate or just build a fun game, python away my friend. But for someone who seriously wants to dive into cs/programming I usually recommend a static language
JS/TS isn’t statically typed. TS tries to be but compiler can miss
you're right
JS, is awesome, it goes like this does this, and that does that, but, this one is an exception also ES community call this error 😂 , so don't think about it much
JS is fine language for doing web things
but for someone wanting to start software quickly i think js is a good start
because you can get up and running with it very easily
And attractive to teach because VSCode without extensions and browser is all you need to code
Typing is important, you need to blow your leg off due to it couple of times
In long run, you will be better off
I found java easier since it didn't had pointers
OBS (Open Broadcaster Software) is free and open source software for video recording and live streaming. Stream to Twitch, YouTube and many other providers or record your own videos with high quality H264 / AAC encoding.
@spiral monolith
@flat sentinel what are you talking about?
@amber raptor Blowing your legs off and doing a long run...those two things, bar exception, are not typically compatible.
thats not racist
well it is now
it would be if it was a black face logo
Let's assume your legs can fully heal
@flat sentinel when you use endl it flushes the buffer too, so its not recommended
with \n it caches stuff, and makes it fast
\n
yeah, I forgot exact thing
std
ok accelerator basically said the same thing
here's what your typical Hello World program would look like in C++:
#include <iostream>
int main(int argv, const char *argc[]) {
std::cout << "Hello World!" << std::endl;
return 0;
}
yes
Have 60 seconds to learn something cool? We've made a bite sized intro the #CSS – the markup language that makes the web look good. You can learn more about CSS (for free!) on Codecademy: https://www.codecademy.com/learn/web
Gtg for a bit, cya 👋
!voiceverified
!voice @prisma nymph this should tell you what you need to know
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@prisma nymph It'll be a lot better if you ask me in here as opposed to DM
I feel like rust has quite a high barrier of entry
And if you want to use your mic, you have to go through the voice verification system
every time i try to learn it/build something with it, it feels like i always have to learn something new within the language
It does
https://www.youtube.com/watch?v=eqtgZM3AwNM&ab_channel=Fireship This video is great for choosing a language for a particular use case
Top Ten Programming Languages 🔥 for 2019 based on your goals as a developer. https://medium.com/@jeffdelaney/top-ten-programming-languages-of-2019-a8dd5bc6f3bc
Learn more at https://fireship.io
fireship is, well, fire
ikr
You using a tiling window manager?
Ah right. I'm on Mac too.
You should check out Amethyst.
@lusty marsh Nah, maybe in the olden days.
Weird
Ah right. I've been using it for a few months now and it's great.
Yeah, Mac really gets those thing right.
The MacBook trackpads are really nice to use.
Yeah, really
happy MAR10 day
the what??
mario
ok but you didn't have to write mario with 10
today is march 10th
oh
Sitting outside with my laptop doing work. It's soooo nice out today
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@prisma nymph look above
I, three, nine eggs.
yeah, that's it
@rugged root Demoned egg.
haven't tried it, it looks nasty
G'Day everybody!
motu m2
This channel is dedicated to the tech of at-home, professional voice over. I review microphones, studio equipment and help new voice actors set up their studios from hardware to software so they can make the next great recording!
Do you have a product you'd like me to review on this channel? Here is everything you need to know:
https://geni.us/...
@dense ibex You stream? Which platform?
Curtis and Bandrew talking Mics (Thanks for the shout out guys!): https://www.youtube.com/watch?v=9pMS6UOGYl4
Subscribe to: Curtis Judd - Learn Light and Sound: https://www.youtube.com/channel/UC9Tyxi96fEu0ho4mlxOEdOQ
Subscribe to Bandrew Scott - Podcastage
https://www.youtube.com/channel/UCvOU-zTlankT-JjN3ZzvuKA
Improvised Vocal Booths: htt...
this is that maths thing i saw on your github isn't it
Yep!
I thought it was a really nice idea
@dense ibex Which games?
😄
The :is() pseudo-class is relatively new, but browser support is pretty good now! It's a nice way to dry up your CSS and turn some otherwise complex selectors into something much more managable!
Codepen: https://codepen.io/kevinpowell/pen/RwojMKB
Step up your game with advanced CSS selectors and combinators: https://www.youtube.com/watch?v=B...
:is(good)
isn't this guy the css king?
maybe, i don't watch his videos alot
what the hell
no thanks
ooooh, fiance just got notice he's getting the vaccine because he has to work on-site so frequently
that's exciting
👀
Hey, we were discussing the meme
whats better discord?
:O
that is a download button
no way
!otn vester doesn't update
that is so smart
hm?
Update what?
discord
Oh
They release like 10+ updates per day, so I just update whenever I open Discord
I'm using Canary
when discord crashes "lets go to Skype"
then team speak
yes
prob microsoft
is has good plugins
me too
'cuz I only opened the client 20 minutes ago
Noice
idk
like that is so flawed lmao
when twitter ceases
lol
i only use the vc chats
nawh... they prob trolling
you can become admin in any meet if you join first before anyone else
Please don't keep doing that
ok
It's going to get really annoying, REALLY fast
why is this so important with googel
damn when you scroll down rip the member list lol
Discord is great for community building
I'm curious if they get a boost from smaller creators and larger companies trying to replicate the community feel/interaction
Maybe
this chat is sponsored by war gaming
I just have this lingering anxiety about them potentially not being able to turn a profit and then this all just goes up in smoke
I think the core of what we do can pivot at this point, especially with our recent growth and expanded horizons
zulip here we go?
this topic is dragging
yes
There's always the option of moving to the other voice chat and if anyone else isn't super interested they'll likely follow
haha
Ah, I got confused
but rider loads longer then vs
but, with a powerful computer it is only about 10sec

Discord needs to make nitro more attractive or they need to find a revenue stream
They provide a lot for free
their marketing is damn good if that's the vibe they give off
$5 for supporting a platform that enables community building and the like seems reasonable to me
but not for a wide range of users
maybe, if they will reduce cost to $1, there will be more people
That would not be worth it to discord at all
Plus shipping
and fhd video streaming
And the profit they'd make from stickers is pennies on the dollar
They'd have to sell a metric fuckton in order to make a decent profit
Some people make money so easily
I was just surfing fiver it says I'll wish happy birthday from a Jamaican beach
@cobalt fractal it's only 11pm in my timezone
shus
are u from india?
I come from Mars
I was born in a sea of orange
under a great white shatterdome
hehehe
I still think monchi is secretly psvm
should I be using a vice to tighten this bolt? probs not. Am I doing it anyway? Yeah
@hollow haven OK it's not just me i thought they had the same voice too
If I'm not looking at who's talking I think monchi is actually psvmm
@gentle flint what was the error?
probs easier to write
unless you wanna go code/help 0
I pip installed a local module with pip install .
it installed fine
when I opened the REPL and tried to import it said it was not found
pip install . ?
so my fiance packed all the cables for my commputer.... I wonder where they ended up
@stray scarab I'm having a really hard time hearing you for some reason. Like you're sounding pretty far away
huzzah!
Niiiiiice
😔
LMFAO
we ended like, 3+ minutes early, it was amazing
@alpine path you read webtoons 👀
Disagree Hemlock, you like me
Well i read some
Mostly Tower of God
😔 want recommendations 😔
Hey everyone
Do you guys have any experience in using Unicode under python? Was thinking of making a program transforming characters of a text from one alphabet to another
I really do
It's nice having someone around who says the cynical bitter things that I have to keep buried in here
I really want to forget the "First" comments
Yeah same here
I just wanted to see what this is all about.
Yeah i feel like being here will encourage and make me stronger in programming
The human side is motivating
haha me neither
I came here because of recommendations from my father. I'm here to build my skill at Python and attempt at building better video games.
need 50 messages ig
@alpine path what are you coding right now?
a simple react page for some of my bot stuff
That's a discord bot i take it
pretty good! how about you?
@rugged root is it easy to go from one language to another ? Are they really similar sometimes? Can you get false confidence in a language like C++ if you know C for example?
@alpine path like it? 
Hey hemlock can you give @stray scarab video perms?
did i just a hear a person that needs help
looks like a similar style that we did with spoods
@dense ibex Done
Alright i see
Thanks!
idk man
java still i think
Rust threw me off after learning another 2 previously 
@flat sentinel maybe the ones you know of use cpp, but there are many more that don't use cpp
yes
tis vv hard to see le text
why learn C if you're already learning cpp tho..
50% of this (right now) is lorem ipsum lul
yes entirely, according to spec
Although you shouldn't really think of C++ as an extension of C nowadays.
And by same stance you mean?
https://javascript.info/ <- This is by far the best site to learn JavaScript
and they're very easy to get into if you're familiar with python
the syntax is a bit different, but there aren't super new concepts to learn
"No it's not" 😄
Back in a bit
what kind of car is a bit
#PHP
He's off to his pringles tube again.
you mean the chewb
chewsday
😔 you youngsters, staying up past 11pm 😔
dont listen to him
sleep is an acquired taste
go be productive you're right
huh?
no, that
's bad. sleep is highly important
@dense ibex you're gonna love high school. standardized tests out the wazoo
@flat sentinel just because they don't count towards your high school grade doesn't mean they don't matter lul
l
i feel like everyone from virgina sounds high all the time
Ik
or maybe they are
yeah for sure, i'm way better at math and science than language and history 😔
=O do I sound high?
uhhh
did you smoke jingle jangle 🤔 🤔 🤔
i got that friend from virginia beach and he sounds the same :p
Avicii Tribute Concert celebrates the life and music of Tim Bergling - AVICII - live at Friends Arena in Stockholm, Sweden together with +50,000 fans from all over the world. Click here to make a donation to mental health awareness: https://www.aviciitributeconcert.com/stream/

s
If any of you want to come help me out with a problem real quick you can jump in #help-bagel or #code-help-voice-text
yes
Where are the scary musics????
🤔
does makes sense
knife party
urgh, I guess I've procrastinated enough. Time to do my midterm.
😔 turbulent flow 😔
Are you from Turkey? @flat sentinel
🙃 This Is Fine 🙃 Turbulent flow is fun 🙃
OOh okay
Felling good inc
splatoon 2 music
😃 you can do it 😃
maybe its GPU just fried haha
did you try turning it off and on again?
HAHAHA
What about on another computer? (If moving the GPU is not a big trouble)
LMao
You like Germany in Macedonia? :p
Night guys 
I would have laugh if i could @flat sentinel
goodnight
don't feel bad
goodnight
That's illegal
i can see
SpaceX is targeting Thursday, March 11 for launch of 60 Starlink satellites from Space Launch Complex 40 (SLC-40) at Cape Canaveral Space Force Station in Florida. The instantaneous window is at 3:13 a.m. EST or 8:13 UTC.
The Falcon 9 first stage rocket booster supporting this mission previously supported launch of NASA astronauts Bob Behnken ...
i wait for sn11
do u know when will it lunch?
no starlink
hello
im making a pokmemon generation one clone in python
what are you up to.
hey dream
OMG
Hello @gentle flint
I actually completed my a* finding algo
o naiç
@last ivy ah ive struggled to implement a*.
im on other chanells as well so thats why it looks like im typing alot
oh cool
oh thats how you get a nice printed book from a pdf how much did that cost you?
@last ivy I read CODE and thats a good book as an introduction to electrical engineering.
but im sure this book is alot more detailed
I mean @gentle flint
Hey @last ivy!
It looks like you tried to attach a Python file - please use a code-pasting service such as https://paste.pythondiscord.com
Australia is awesome!
the land of oz
I really like the accent
until you get eaten by a shark
I would be more worried by spiders and stuff
in Australia they call cats pussies
I don't care about bears
in parts of the uk too
ik, I was jk lol
if self.row < self.total_rows - 1 and not grid[self.row + 1][self.col].is_barrier(): # DOWN
self.neighbors.append(grid[self.row + 1][self.col])
@last ivy your creating chess right?
yea
THanks
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@last ivy did you watch the coding train on a* algorithm?
my discord and internet has been acting funny too
thats why i keep disconecting
@last ivy nah not right now
hi
Im doing hw rn
alright
probably
everybody is better with cheating 
Long time ago, I wrote a cheating bot for a platform, which is called typeracer
you had to type a text as fast as you can
usally you needed like 1 min for a text
but my bot
did it in like 5 sec
when it was faster, the program said i cheated
My Highscore was like 1300 words per minute
anyone here really good with classes?
You can go to Woeben in #off-topic-lounge-text
Code help
me or you??^^
:D
I'm working on a discord.py chat bot
which lets you play monopoly
Dream, you have to stream





