#voice-chat-text-0

1 messages · Page 779 of 1

olive hedge
#

wtf is this?! this is meaningless to me

dire folio
#

whats that in fluid ounces?

honest pier
#

4 cubic liters

olive hedge
#

this is a 0.004 gallon engine

#

wanna see something terrible?

lethal fox
#

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

olive hedge
#

.formof

viscid lagoonBOT
#

Form of a wall of snow!

olive hedge
#

boom

#

hi psvm

honest pier
#

@olive hedge 👀

gentle flint
#

4th definition

#

An act of withdrawing.

hoary dirge
#

anyone has any idea how to make the rule channel with the book icon #rules ?

gentle flint
lusty marsh
#

418 I'm a teapot

uncut meteor
#

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.
strong arch
#
pub struct IcedElement<D, T: Program<Renderer = Renderer> + 'static, F: FnMut(&mut program::State<T>, &mut D)>
dense ibex
strong arch
#
fn render<'a: 'rp, 'rp>(
        &'a mut self,
        engine: &mut Engine,
        data: &mut Self::Data,
        frame: &wgpu::SwapChainFrame,
        render_pass: &mut wgpu::RenderPass<'rp>,
    )
dense ibex
#

Night!

gentle flint
#

I'm off for bed

#

g'night

pale marsh
#

night smelly dutchman @gentle flint

dense ibex
#

Alright I am gonna head off to bed since you got it handled g'night all

faint ermine
#

!paste

wise cargoBOT
#

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.

slate pier
#
"""
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()```
faint ermine
#

!paste

wise cargoBOT
#

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.

slate pier
amber raptor
#

sudo apt update

faint ermine
#

!e ```py
def func(arg):
return f"the arg is {arg}"

val = func(15)
print(val)

wise cargoBOT
#

@faint ermine :white_check_mark: Your eval job has completed with return code 0.

the arg is 15
faint ermine
#

grid = [
  ["a", "b"],
  ["c", "d"]
]
#
grid[1][1]
#

!e print("hello world".split(" "))

wise cargoBOT
#

@faint ermine :white_check_mark: Your eval job has completed with return code 0.

['hello', 'world']
faint ermine
#

!e print("hello world".split("o"))

wise cargoBOT
#

@faint ermine :white_check_mark: Your eval job has completed with return code 0.

['hell', ' w', 'rld']
faint ermine
#
  1. figure out output of get_game_solution
  2. figure out how to split the result
  3. figure out how to make a grid from that
wise cargoBOT
#

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:

https://paste.pythondiscord.com

eternal bough
lethal thunder
#

``

#
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```
amber raptor
#

think about your program flow, your try: except won't do what you expect

eternal bough
#

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 + /

wise cargoBOT
#

@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]
eternal bough
#

!e

    try:
        num1 = x
        num2 = y
    except ZeroDivisionError:
        print("Zero is not a number!\n")
        result = num1/num2
        return result
calculator1(3,0)```
wise cargoBOT
#

@eternal bough :warning: Your eval job has completed with return code 0.

[No output]
amber raptor
#

you need to move around where you are doing operations

eternal bough
#

!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)
wise cargoBOT
#

@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]
eternal bough
thin breach
lethal thunder
#

wow nix you coded that yourself??

#

WOWOW

#

the soup

#

you coded soup??!

#

nice

thin breach
wise cargoBOT
#

@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

lethal thunder
#

``

#

`

#
num2 = float(input("enter your second number : ")```
thin breach
wise cargoBOT
#

@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'
thin breach
#

F

amber raptor
#

eval bot also doesn't have internet access

crisp sparrow
#

trying to get help in scandium channel

thin breach
strong arch
last ivy
#

look at the terminal

cursive minnow
#

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

winged marsh
solar oxide
#

hell

last ivy
#

lol

solar oxide
#

anyone is 15 here?

magic yew
#

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

vivid compass
rugged root
#

Morning folks

swift valley
#

Evenin'

#

My server-side rendering madness has come to fruition

#

My site, ye

wise glade
#

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

swift valley
#

!wa s 20 miles to km

#

.wa s 20 miles to km

viscid lagoonBOT
swift valley
#

Quite far

wise glade
#

yeah, seems hyperbole, what he said

rugged root
#

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

dense ibex
#

Windows updates happen at the worst time

#

I swear

rugged root
#

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

wise glade
#

unless, you make a web app 😏

dense ibex
#

lmao

wise glade
#

why does this makes me laugh

rugged root
#

@dim wagon You're cutting in and out really badly

swift valley
#

I wouldn't be surprised if native JS matures enough to be viable for writing a DE in

wise glade
#

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

swift valley
#

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

wise glade
#

so, you didn't end the call

swift valley
#

Yep

fast gyro
wise glade
#

you using f5 to run it?

fast gyro
wise glade
#

add configurations @fast gyro

#

it'll create launch.json

#

the missing file

fast gyro
#

I am trying to compile C

fast gyro
wise glade
#

you need this

rich cloud
#

you'll be sent to the gulag

#

:)

rugged root
#

@wise glade Should be able to now

runic forum
#

some troll came to interrupt our meet-class

rugged root
#

See that kind of stuff bothers me

#

Like school is already hard enough with everything going on

#

Why make it worse

hollow haven
#

hullo hullo

dense ibex
#

How are you?

wise glade
#

@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

hollow haven
#

maybe today I'll set up my desktop so I can stop using wifi on my laptop...

#

wee-fee

wise glade
#

😂 super funny

rich cloud
#

paymoneywubby is louis ck's lost son

vivid palm
#

hihi

rich cloud
#

hiiiii

vivid palm
#

jake no shots 4 u

dense ibex
#

I knwo

#

yes ma'am

#

salutes

vivid palm
#

err

runic forum
#

and some are built lucky

vivid palm
#

i got it from topclack

#

idk if it's their design tho

rugged root
#

!voice @obtuse geyser

wise cargoBOT
#

Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

obtuse geyser
#

oh ok

#

yea

#

ok

#

thanks

#

oh ok

#

thats cool

dense ibex
#

Ye

#

How are you?

obtuse geyser
#

good you?

dense ibex
#

Pretty good just working on my projects trello page

obtuse geyser
#

wow thats cool

#

i recently just started getting intrested ion pythin

dense ibex
#

Yeah Ig its just a todo list but its very smart

obtuse geyser
#

and thought i should join this server

obtuse geyser
#

wowo nice wall @hollow haven

dense ibex
#

whats mit?

obtuse geyser
#

sorry

#

i meant to say how dose it work

obtuse geyser
dense ibex
#

its a todo list online I didn't make it I am just using it to keep me organized.

#

If that makes sense.

obtuse geyser
#

ohhh

#

thats cxool

#

cool

#

lol i wanna learn how to make small games

#

and stuff

#

lol

swift valley
#

The temperature range is ergh here

vivid palm
swift valley
#

20°C to 35°C

rugged root
#

.wa s 35 c to f

viscid lagoonBOT
obtuse geyser
#

lol

#

what is that command lol?

dense ibex
#

.wa s 35 c to f

viscid lagoonBOT
obtuse geyser
#

.wa s -0 c to f

viscid lagoonBOT
obtuse geyser
#

ayyaaya

wise glade
#

.wa plot x^3 - 6x^2 + 4x + 12

viscid lagoonBOT
obtuse geyser
#

wow thats cool

swift valley
#

My audio cut off for some reason

#

Weird

rugged root
swift valley
#

Surprise chimken?

#

It's a su- well, yeah

stuck furnace
#

Maybe it's not actually a chicken

#

and that's the surprise...

swift valley
#

More eggs.... Yay?

stuck furnace
#

That took a dark turn Jake

swift valley
#

The actors on their videos too

stuck furnace
#

Hemlock, did you know they took the word Gullible out of the dictionary?

swift valley
#

Buzzfeed is eh

stuck furnace
#

Huff 😄

rugged root
wise glade
#

can anyone explain the reason, cause I forgot 😞

#

so == checks for just value part?

#

yeah, caching

hollow haven
#

mhm, == is just checking if they have the same value, not if they are the same object

wise glade
#

wait, aligator clips?

#

in rasberry

#

I thought it was usb

dense ibex
thin breach
wise glade
#

does python have concept of properties, values and fields on an object?

#

or does everything's called a property

#

except for methods

rugged root
#

They're called attributes typically

wise glade
#

all of em, together called attributes?

rugged root
#

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

remote kettle
#

!e

from sympy import symbols
from sympy.plotting import textplot
import numpy as np
x = symbols('x')
textplot(x**2,-4,4)

wise cargoBOT
#

@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

remote kettle
#

!e
from sympy import symbols
from sympy.plotting import textplot
import numpy as np
x = symbols('x')
textplot(-x**2,-4,4)

rugged root
#

@remote kettle Typically you'll want to do those commands in #bot-commands instead

wise cargoBOT
#

@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

rugged root
#

If you don't mind

remote kettle
#

sorry

wise glade
#

@dense ibex give up, just use electrical tape

rugged root
#

No worries, just letting you know

remote kettle
#

thx man

hollow haven
#

voice-chat, aka soldering-help-channel

rugged root
#

It's had worse uses

#

Back in a bit, delivery run

wise glade
#

@gentle flint it might even have bluetooth

#

you never know

wise glade
#

brave electrician would use tape for everything
also a crazy one

#

do a google lens on it

dense ibex
stuck furnace
vivid palm
#

Melting temperature of 430° F/ 221.1° C

gentle flint
runic forum
#

@gentle flint such a delay you got

wise glade
#

he's just slow

#

with all that weight on his head

#

massive headphones

gentle flint
#

shut

#

it's comfortable

rich cloud
#

mr sounds like he's on a megaphone lol

stuck furnace
#

Are you in your Pringles tube again?

#

I feel like you should end every message with "over"

#

whisky tango foxtrot over

wise glade
#

@rugged root can you say, "Huston........, ,The eagle has landed"

stuck furnace
#

Soldering in your car? 😄

#

Oh, for repairs to the car.

#

I thought you meant you just want to solder electronics on-the-go.

dense ibex
#

would these be useful at all?

gentle flint
#

Terrible

#

Absolutely terrible

runic forum
dense ibex
gentle flint
#

They don't even have a microphone @wise glade

#

I need a headset

wise glade
#

ahh..

gentle flint
#

Also, I need to be able to wear them the whole day

wise glade
#

I was thinking, weight wise

#

😂

pine ledge
#

Hi

#

How do I know how long have I been on server

runic forum
gentle flint
#

I didn't buy those

runic forum
#

you stole then?

pine ledge
#

What do I need to type there

gentle flint
#

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

runic forum
gentle flint
#

@dense ibex this is literally you

dense ibex
rich cloud
#

driving is such a pain in the butt

dense ibex
runic forum
flat sentinel
#

yes

hollow haven
#

@flat sentinel Is that necessary? I don't think it's relevant to the current convo

dense ibex
flat sentinel
#

what

rich cloud
#

playing againts squad is the toughest

#

they got comms

#

@severe pulsar hiiii

severe pulsar
#

what up

#

we really need kiko voice reveal

#

👀

flat sentinel
rich cloud
#

haven't seen you in this channel in a while

rich cloud
runic forum
#

imagine doxxing everyone on the planet just cause you got offended by someone in mwf lobby

flat sentinel
#

well that is great

hollow haven
#

PTT is my fave

flat sentinel
#

no

#

there is two problems in that message

remote kettle
#

how to get 100% cpu usage with python?

flat sentinel
#

just

#

make a while loop that is complex

remote kettle
#

but i only get 20%

flat sentinel
#

well just make 5 more

runic forum
remote kettle
#

oh

dire oriole
runic forum
flat sentinel
#

wery

remote kettle
#

faktorials

somber heath
#

Discord needs to update its push-to-talk ui layout and behaviour before ptt would be anything but vexing to me.

runic forum
flat sentinel
#

yes

remote kettle
#

like render pictures?

flat sentinel
#

and then is you only get 20%

#

then you do it

#

5x

remote kettle
#

are any Austrian here?

flat sentinel
#

no

dire oriole
#

I've watched the sound of music, so I'm basically austrian /s

remote kettle
#

Austria or Germany

flat sentinel
#

well

#

germans we have

rugged root
#

We may have some Austrian's. Not sure though

remote kettle
#

ohh

rich cloud
#

currently reading noam chomsky about palestine

#

biased shapiro

stuck furnace
#

I can't tell the difference between monchi and PSVM 😄

remote kettle
#

where can i test my random-facts-spam-bot

rugged root
#

On your own test server

#

We don't invite bots we don't make or we haven't verified heavily

dire oriole
#

wait really

#

i feel like psvm's voice is pretty distinct

whole bear
#

Hi everyone

rich cloud
#

royalty family sounds toxic

remote kettle
#

its more like a script

rugged root
#

Eh.... it's more a figure head position anymore

whole bear
#

I want work for goverment

rugged root
#

They'd catch hell if they exercised it

stuck furnace
whole bear
#

@rugged root Are you a software engineer?

pine ledge
rugged root
#

I am not

#

I code as a hobby

remote kettle
#

python ?

whole bear
#

Oh ok

flat sentinel
#

he is an accountant

whole bear
#

Oh nice

rugged root
#

I'm not an accountant

pine ledge
whole bear
#

Wait what

stuck furnace
#

I think the UK is about to have a constitutional crisis lemon_pensive

rugged root
#

He lied about what I am

#

I'm administrative support for an accounting firm

remote kettle
#

@rugged root How did you get an admin?

rugged root
#

But I am not an accountant

whole bear
#

Oh ok

rugged root
whole bear
#

@stuck furnace Are you living in uk?

stuck furnace
pine ledge
#

Can anyone hire me

whole bear
#

Nice

remote kettle
pine ledge
#

Lol

flat sentinel
severe pulsar
#

F

pine ledge
#

Finding job is so difficult

somber heath
#

kivy

pine ledge
#

!kivy

#

!docs kivy

wise cargoBOT
#

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.

whole bear
#

@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

wise glade
#

C# > Java

runic forum
#

C/C++ > C#

flat sentinel
#

yes

stuck furnace
remote kettle
#

C/C++ < 1

hollow haven
#

Just like myself and superman have never been in the same room

wise glade
#

@flat sentinel C#, done properly would take about 2 years (they all say)

flat sentinel
#

well

rugged root
#

Depends on what languages you have under your belt, Acc

wise glade
#

c++

#

super similar

#

syntax

pine ledge
#

I do not understand pointers. I get confused .

wise glade
#

but still

wise glade
#

then comes references 😂

runic forum
wise glade
#

advanced c++ syntax, close to C#

remote kettle
#

what language isn't project oriented?

wise glade
#

when you use namespaces in C++

rugged root
#

Project oriented or object oriented, Heisen?

hollow haven
#

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"

whole bear
#

any help guys? xDDDDDDDDDDD

remote kettle
#

obkect

hollow haven
#

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

remote kettle
pine ledge
#

I read but I forget. Perhaps if I start using it I'll remember

hollow haven
#

I know for Python specifically, Fluent Python is GREAT

stuck furnace
# whole bear any help guys? xDDDDDDDDDDD

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

amber raptor
remote kettle
#

i want to talk...

#

→ use my voice

hollow haven
stuck furnace
remote kettle
#

k

wise glade
#

does anyone knows how can I add a url in my firewall to block it?

#

in windows 10

rugged root
stuck furnace
#

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.

somber heath
#

I learned Python by working my way through the documentation and watching tutorials along the way. I think. It's been a while.

hollow haven
rugged root
#

I can get into more detail when I get back to my desk

wise glade
stuck furnace
flat sentinel
wise glade
#

@flat sentinel with gui, " what you see, is what you get " , so fu** GUI, terminal's awesome

somber heath
#

@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.

wise glade
#

you cool Opal

severe pulsar
#

he was always cool

amber raptor
#

It’s fine for those who are not software engineers like data or SREs

severe pulsar
#

ooh, what would you recommend then?

wise glade
#

any statically typed

amber raptor
wise glade
#

maybe C

severe pulsar
#

C seems a bit too complex as a starter language in my opinion

wise glade
#

just the basics?

severe pulsar
amber raptor
#

It’s low level enough to teach you basics but not fiddling enough to drive you crazy

stuck furnace
#

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 😄

wise glade
#

till you can solve some data structs questions in C

runic forum
hollow haven
#

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

amber raptor
severe pulsar
#

you're right

wise glade
#

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

severe pulsar
#

plus you can opt out of typing system in typescript

#

lmao

amber raptor
#

JS is fine language for doing web things

wise glade
#

hmm, direct web browser integration

#

what more do you want

severe pulsar
#

because you can get up and running with it very easily

amber raptor
#

And attractive to teach because VSCode without extensions and browser is all you need to code

severe pulsar
#

yep

#

but java/kotlin is a great starter too

amber raptor
#

In long run, you will be better off

severe pulsar
#

yeah typescript for sure

#

i rarely use js anymore

pine ledge
#

I found java easier since it didn't had pointers

severe pulsar
#
#

@spiral monolith

runic forum
#

@flat sentinel what are you talking about?

somber heath
#

@amber raptor Blowing your legs off and doing a long run...those two things, bar exception, are not typically compatible.

runic forum
#

thats not racist

flat sentinel
#

well it is now

runic forum
#

it would be if it was a black face logo

amber raptor
wise glade
#

@flat sentinel when you use endl it flushes the buffer too, so its not recommended

#

with \n it caches stuff, and makes it fast

flat sentinel
#

\n

wise glade
#

yeah, I forgot exact thing

flat sentinel
#

std

severe pulsar
#

ok accelerator basically said the same thing

runic forum
#

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;
}
flat sentinel
#

yes

stuck furnace
#

Gtg for a bit, cya 👋

meager crow
#

!voiceverified

rugged root
#

!voice @prisma nymph this should tell you what you need to know

wise cargoBOT
#

Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

rugged root
#

@prisma nymph It'll be a lot better if you ask me in here as opposed to DM

severe pulsar
#

I feel like rust has quite a high barrier of entry

rugged root
#

And if you want to use your mic, you have to go through the voice verification system

severe pulsar
#

every time i try to learn it/build something with it, it feels like i always have to learn something new within the language

icy axle
severe pulsar
meager crow
#

fireship is, well, fire

meager crow
icy axle
stuck furnace
#

Hey 😄

#

Yep

stuck furnace
#

Ah right. I'm on Mac too.

#

You should check out Amethyst.

#

@lusty marsh Nah, maybe in the olden days.

#

Weird

icy axle
#

Found it, thanks!

#

I'll give it a shot

stuck furnace
#

Ah right. I've been using it for a few months now and it's great.

icy axle
#

That's nice 😄

stuck furnace
#

Yeah, Mac really gets those thing right.

#

The MacBook trackpads are really nice to use.

icy axle
#

Yeah, really

rugged root
vivid palm
#

happy MAR10 day

runic forum
vivid palm
#

mario

runic forum
#

ok but you didn't have to write mario with 10

vivid palm
#

today is march 10th

runic forum
#

oh

hollow haven
#

Sitting outside with my laptop doing work. It's soooo nice out today

vivid palm
#

!voice

wise cargoBOT
#

Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

vivid palm
#

@prisma nymph look above

rugged root
#

Because we're chilling and chatting

#

In that order

somber heath
#

I, three, nine eggs.

rich cloud
#

in my country we eat egg embryo

#

lol

rugged root
#

Balut?

#

I probably spelled that wrong

rich cloud
#

yeah, that's it

somber heath
#

@rugged root Demoned egg.

rich cloud
#

haven't tried it, it looks nasty

cursive minnow
#

G'Day everybody!

vivid palm
#

motu m2

#
cursive minnow
#

@dense ibex You stream? Which platform?

vivid palm
icy axle
terse needle
icy axle
#

Yep!

terse needle
#

I thought it was a really nice idea

cursive minnow
#

@dense ibex Which games?

icy axle
#

😄

runic forum
uncut meteor
#

:is(good)

cursive minnow
dense ibex
runic forum
rugged root
#

Yep, muted

#

Sorry

#

Forgot how sensitive it is

uncut meteor
#

i'm not sensitive :c

icy axle
uncut meteor
#

@graceful grail

dense ibex
#

My mom has that car lmao

#

well a similar model

gentle flint
uncut meteor
#

its a riddle

#

i'm sure you'll figure it out

gentle flint
#

no thanks

hollow haven
#

ooooh, fiance just got notice he's getting the vaccine because he has to work on-site so frequently

#

that's exciting

rugged root
#

Very cool

#

In theory I should be able to get one for being an "IT Professional"

tribal ocean
honest pier
#

👀

icy axle
tribal ocean
#

:D

#

it's a good meme

icy axle
runic forum
#

whats better discord?

tribal ocean
flat sentinel
#

that is a download button

tribal ocean
#

i click the update button every chance I get

#

vester hasn't updated :c

flat sentinel
#

no way

tribal ocean
#

!otn vester doesn't update

flat sentinel
#

that is so smart

tribal ocean
#

hm?

icy axle
tribal ocean
#

discord

icy axle
#

Oh

tribal ocean
#

Yeah

icy axle
#

They release like 10+ updates per day, so I just update whenever I open Discord

#

I'm using Canary

tribal ocean
#

ah

#

I see

flat sentinel
#

when discord crashes "lets go to Skype"

dense ibex
#

Oof skype

#

They changed the ringtone

flat sentinel
#

then team speak

dense ibex
#

so I stopped using it

#

Teamspeak is good

flat sentinel
#

yes

dense ibex
#

good audio quality

#

just not as clean as discord

runic forum
#

prob microsoft

flat sentinel
#

is has good plugins

gentle flint
#

I actually don't have updates avilable rn

flat sentinel
#

me too

gentle flint
#

'cuz I only opened the client 20 minutes ago

icy axle
#

Noice

flat sentinel
#

i open is like a 10h

dense ibex
#

lol

#

when do they determine the last person...

flat sentinel
#

idk

dense ibex
#

like that is so flawed lmao

flat sentinel
#

never

#

so

#

no one gets it

gentle flint
#

when twitter ceases

dense ibex
#

lol

flat sentinel
#

i only use the vc chats

runic forum
flat sentinel
#

they are

runic forum
#

oh

#

what password in meet?

flat sentinel
runic forum
#

you can become admin in any meet if you join first before anyone else

flat sentinel
#

||lets do this||

#

||with the spoiler||

rugged root
#

Please don't keep doing that

flat sentinel
#

ok

rugged root
#

It's going to get really annoying, REALLY fast

flat sentinel
#

why is this so important with googel

dense ibex
#

damn when you scroll down rip the member list lol

flat sentinel
#

lol

#

oof that guy has

#

the thing

#

with the name

hollow haven
#

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

rugged root
#

Maybe

flat sentinel
#

this chat is sponsored by war gaming

rugged root
#

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

hollow haven
#

zulip here we go?

rugged root
#

Yeah I guess so

#

Still keeps me up at night

flat sentinel
#

this topic is dragging

rugged root
#

For you

#

The rest of us are enjoying the discussion

flat sentinel
rugged root
#

There's always the option of moving to the other voice chat and if anyone else isn't super interested they'll likely follow

flat sentinel
#

no

#

its not annoying

frigid shard
#

haha

rugged root
#

Ah, I got confused

frigid shard
#

but rider loads longer then vs

#

but, with a powerful computer it is only about 10sec

olive hedge
hollow haven
#

Discord needs to make nitro more attractive or they need to find a revenue stream

#

They provide a lot for free

frigid shard
#

nitro is too expensive

hollow haven
#

their marketing is damn good if that's the vibe they give off

frigid shard
#

$5 is to many for just a messenger

#

i pay $3 for yt premium

hollow haven
#

$5 for supporting a platform that enables community building and the like seems reasonable to me

frigid shard
#

but not for a wide range of users

#

maybe, if they will reduce cost to $1, there will be more people

hollow haven
frigid shard
#

why

#

i would pay $1 for stickers

rugged root
#

Plus shipping

frigid shard
#

and fhd video streaming

rugged root
#

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

pine ledge
#

Some people make money so easily

#

I was just surfing fiver it says I'll wish happy birthday from a Jamaican beach

frigid shard
#

@cobalt fractal it's only 11pm in my timezone

warped saffron
#

shus

frigid shard
#

are u from india?

warped saffron
#

I come from Mars

#

I was born in a sea of orange

#

under a great white shatterdome

#

hehehe

hollow haven
#

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

vivid palm
#

@hollow haven OK it's not just me i thought they had the same voice too

hollow haven
#

If I'm not looking at who's talking I think monchi is actually psvmm

sly jolt
uncut meteor
#

@gentle flint what was the error?

#

probs easier to write

#

unless you wanna go code/help 0

gentle flint
#

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

uncut meteor
#

pip install . ?

gentle flint
#

I'll go to code help 0

#

then I can stream

hollow haven
#

so my fiance packed all the cables for my commputer.... I wonder where they ended up

alpine path
rugged root
#

@stray scarab I'm having a really hard time hearing you for some reason. Like you're sounding pretty far away

olive hedge
hollow haven
#

eeeey I'm back!

#

My desktop is setup, my keyboard is back. Whoooo

olive hedge
#

huzzah!

rugged root
#

Niiiiiice

hollow haven
#

oh wow I forgot how ergonomic I set my monitors up to be

#

I'm not used to this

honest pier
#

😔

#

LMFAO

#

we ended like, 3+ minutes early, it was amazing

#

@alpine path you read webtoons 👀

amber raptor
#

Disagree Hemlock, you like me

alpine path
#

Mostly Tower of God

honest pier
#

😔 want recommendations 😔

simple ledge
#

Hey everyone

alpine path
#

100% tower of god

#

its amazing

simple ledge
#

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

rugged root
#

It's nice having someone around who says the cynical bitter things that I have to keep buried in here

glad badger
#

I really want to forget the "First" comments

rugged root
#

Yeah same here

honest pier
#

PyKutie

#

@hollow haven wait i thought you were just a pre-adolescent boy

glad badger
#

I just wanted to see what this is all about.

simple ledge
#

Yeah i feel like being here will encourage and make me stronger in programming

#

The human side is motivating

whole bear
#

yikes i can't talk

#

imagine

simple ledge
#

haha me neither

glad badger
#

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.

whole bear
#

need 50 messages ig

simple ledge
#

@alpine path what are you coding right now?

alpine path
#

a simple react page for some of my bot stuff

alpine path
#

hows it going bud?

simple ledge
#

That's a discord bot i take it

whole bear
#

pretty good! how about you?

alpine path
#

im good

#

yer gotta be more active here

whole bear
#

yup sadge

#

will be probably

simple ledge
#

@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?

whole bear
#

@alpine path like it? dboatsMmlol

dense ibex
#

Hey hemlock can you give @stray scarab video perms?

flat sentinel
#

did i just a hear a person that needs help

alpine path
#

looks like a similar style that we did with spoods

rugged root
#

@dense ibex Done

simple ledge
#

Alright i see

alpine path
dense ibex
whole bear
#

spoods?

#

oh i see

honest pier
#

kemal is not correct about that

#

it's obviously rust !

alpine path
#

idk man

honest pier
#

java still i think

alpine path
#

Rust threw me off after learning another 2 previously bloblul

honest pier
#

@flat sentinel maybe the ones you know of use cpp, but there are many more that don't use cpp

flat sentinel
#

yes

alpine path
#

tis vv hard to see le text

honest pier
#

why learn C if you're already learning cpp tho..

whole bear
honest pier
#

yes entirely, according to spec

stuck furnace
#

Although you shouldn't really think of C++ as an extension of C nowadays.

honest pier
#

^

#

c# is basically just microsoft java

glad badger
#

And by same stance you mean?

rugged root
honest pier
#

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

stuck furnace
#

"No it's not" 😄

rugged root
#

Back in a bit

honest pier
#

what kind of car is a bit

whole bear
#

#PHP

stuck furnace
#

He's off to his pringles tube again.

honest pier
#

you mean the chewb

glad badger
#

I'm gonna be leaving now.

#

Later!

honest pier
#

😔 you youngsters, staying up past 11pm 😔

simple ledge
#

dont listen to him

honest pier
#

sleep is an acquired taste

simple ledge
#

go be productive you're right

honest pier
#

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

winged fjord
#

Im terrible at writing

#

im good at math

flat sentinel
#

l

simple ledge
#

i feel like everyone from virgina sounds high all the time

simple ledge
#

or maybe they are

honest pier
#

yeah for sure, i'm way better at math and science than language and history 😔

hollow haven
#

=O do I sound high?

honest pier
#

uhhh

simple ledge
#

i'm not sure i heard you

#

but was speaking of Jake haha

honest pier
dense ibex
#

People say I sound high sometimes

#

like in the mornings tho

simple ledge
#

i got that friend from virginia beach and he sounds the same :p

honest pier
#

@hollow haven 👀👀👀

#

got a meeting later? lol

alpine path
whole bear
flat sentinel
#

s

analog plaza
whole bear
#

@flat sentinel feel you

#

same lol

flat sentinel
#

yes

simple ledge
#

Where are the scary musics????

honest pier
#

🤔

simple ledge
#

does makes sense

flat sentinel
winged fjord
#

knife party

simple ledge
#

What's your country?

#

Kemal

hollow haven
#

urgh, I guess I've procrastinated enough. Time to do my midterm.

alpine path
#

my vibes

honest pier
flat sentinel
simple ledge
#

Are you from Turkey? @flat sentinel

flat sentinel
#

no

#

macedonia

whole bear
#

they're good

#

yea

hollow haven
#

🙃 This Is Fine 🙃 Turbulent flow is fun 🙃

simple ledge
#

OOh okay

whole bear
#

Felling good inc

winged fjord
#

splatoon 2 music

honest pier
simple ledge
#

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

whole bear
#

Night guys zzz

simple ledge
#

I would have laugh if i could @flat sentinel

winged fjord
#

goodnight

simple ledge
#

don't feel bad

flat sentinel
#

goodnight

warped saffron
#

That's illegal

flat sentinel
#

i can see

obtuse tree
#

the problem is that you can't unsee it

flat sentinel
frigid shard
#

do u know when will it lunch?

flat sentinel
#

no starlink

winged fjord
#

hello

#

im making a pokmemon generation one clone in python

#

what are you up to.

#

hey dream

last ivy
#

OMG

winged fjord
#

Hello @gentle flint

last ivy
#

SPRRY

#

sorry guys

gentle flint
#

lol np

#

can you chat in voice rn, or are you busy?

last ivy
#

I actually completed my a* finding algo

gentle flint
#

o naiç

winged fjord
#

@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?

gentle flint
#

22 euros with postage

winged fjord
#

@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

gentle flint
#

this is more of a reference than a study book

#

for looking up quick things

wise cargoBOT
cursive minnow
#

Australia is awesome!

winged fjord
#

the land of oz

cursive minnow
#

I really like the accent

gentle flint
#

until you get eaten by a shark

last ivy
pale marsh
#

I would be more worried by spiders and stuff

winged fjord
#

in Australia they call cats pussies

cursive minnow
#

I don't care about bears

gentle flint
gentle flint
pale marsh
#

Its like living in arizona

#

ew

gentle flint
#
        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
#

@pale marsh tru

#

e

pale marsh
#

@last ivy your creating chess right?

last ivy
#

yea

pale marsh
last ivy
#

THanks

gentle flint
warm swallow
#

:(

gentle flint
#

!voice

wise cargoBOT
#

Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

pale marsh
winged fjord
#

@last ivy did you watch the coding train on a* algorithm?

last ivy
#

No

#

I tried it myself

winged fjord
#

my discord and internet has been acting funny too

#

thats why i keep disconecting

#

@last ivy nah not right now

mortal quiver
#

hi

last ivy
#

anyone chess?

#

@pale marsh wanna play?

pale marsh
#

Im doing hw rn

last ivy
#

alright

last ivy
atomic willow
cursive minnow
#

probably

#

everybody is better with cheating ducky_devil

#

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

violet oasis
#

anyone here really good with classes?

cursive minnow
#

Code help

#

me or you??^^

#

:D

#

which lets you play monopoly

#

Dream, you have to stream