#voice-chat-text-0

1 messages · Page 787 of 1

simple ledge
#

i always thought it was THE biggest haha

#

but it seems it's La Gironde

fast umbra
#

For sure it is La Guyanne

#

This geography lesson is sponsored by the French Ministry of Tourism

simple ledge
#

damn bro

#

it seems Seine et marne isnt even that big actually

#

right in the middle of the ranking

fast umbra
#

I see

#

thank you for helping me to get to 50 messages

simple ledge
#

you're welcome bro

#

i know the pain

#

blue is seine et marne

fast umbra
#

but do you work for la startup nation, inside un incubateur innovateur and disruptif?

simple ledge
#

MDR

#

No i'm just casually learning, but i might make it a profession eventually

fast umbra
#

what do you in do la vrai vie?

simple ledge
#

in la vrai vie i'm a chinese civilization and language student

fast umbra
#

at Inalco?

simple ledge
#

nah, across the street

#

paris diderot 😂

fast umbra
#

a university of prolo?

simple ledge
#

i'll join a mechanical degree next year though

#

a university of "just get in and try to survive"

fast umbra
#

mdr

simple ledge
#

what about you?

fast umbra
#

why not a degree of applied math and informatics?

simple ledge
fast umbra
simple ledge
#

i wanna head towars robotics

#

HAHAHA

fast umbra
whole bear
#

Me 2

simple ledge
#

but you know, university of the prolo can give you solid degree anyway i think

fast umbra
whole bear
#

prolo?

fast umbra
simple ledge
# whole bear prolo?

heard of the proletariat? we gonna establish such a dictatorship soon in France

simple ledge
whole bear
#

Never underestimate the (combined?) power of the blue collar!

fast umbra
#

lol

gentle flint
#

!code

wise cargoBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

whole bear
#

Hi guys

#

@gentle flint Wait, learning python is a hobby?

gentle flint
#

for sure

whole bear
#

Not for college education?

gentle flint
gentle flint
whole bear
#

ok

#

next time: 4 days

unborn storm
#

i found a way to print images in vim !!!!!

#

vim power

gentle flint
#

nice

unborn storm
#

yes

#

only with Iterm2

#

(also mac os power)

buoyant hazel
#

hello

versed island
#

beunos dias

runic forum
versed island
#

noice

runic forum
#

yess siirrr

versed island
#

i'm having a hard time figuring out the java web development landscape

#

hey @runic forum what project is that

runic forum
#

ps1

#

game project

versed island
#

ooh

#

are u using any framework

runic forum
#

yeah

tropic robin
#

yo lp why you in there by yourself

#

@zenith radish

#

ok nvm

zenith radish
#

vibing

humble geyser
#

Godot

runic forum
#

sorry

#

i speak in audio clips

#

why can't i

#

i don't use tts

wind cobalt
#

he's bumblebee

#

robots in disguise

runic forum
#

my voice sounds horrible

uncut meteor
humble geyser
#

How does one get sharing screen privileges

wind cobalt
#

but not really

runic forum
humble geyser
#

Oh

#

Is that ubuntu?

#

evil = emacs wrapped with vi

gentle flint
wind cobalt
#

oh yeah

#

in my language it's just kronisme

humble geyser
#

That is done with LSP

#

code actions

#

Local server you donwload inside your machine and have language clients connect to it

wind cobalt
strong arch
#
pub fn adder<A: std::ops::Add<Output = A>>(a: impl Into<Option<A>>, b: impl Into<Option<A>>) -> Option<A> {
    let b = b.into()?;
    a.into().map(|x| x + b)
}
#
impl<T> From<T> for Option<T> {
  fn from(val: T) -> Self {
    Some(val)
  }
}
#
impl<A, B: From<A>> Into<B> for A { ... }
#
println!("{}", if x > 0 { "true".to_owned() } else { "false".to_owned() })
wind cobalt
strong arch
#
for<'a>
buoyant hazel
#

hey guys

strong arch
#
Box<dyn for<'a> FnMut(&'a str) -> &'a str>>
buoyant hazel
#

guys can you help me with a simple code?

#

ok guys i have to create a game

#

from turtle import *
from random import *
screen = getscreen()
screen.register_shape("Korteles_Forma", ( (80,-50), (-80,-50), (-80, 50), (80, 50) ))

kas_atversta = None
kas_paspausta = []
colors = ["orange", "black"]
kortos = [ ]
for n in range(2):
hideturtle()
korta = Turtle()
korta.fillcolor("red")
korta.shape("Korteles_Forma")
korta.penup()
korta.goto(randint(-400, 400), randint(-400, 400))
kortos.append(korta)
for n in range(2):
hideturtle()
korta = Turtle()
korta.fillcolor("blue")
korta.shape("Korteles_Forma")
korta.penup()
korta.goto(randint(-400, 400), randint(-400, 400))
kortos.append(korta)

for n in range(2):
hideturtle()
korta = Turtle()
korta.fillcolor("green")
korta.shape("Korteles_Forma")
korta.penup()
korta.goto(randint(-400, 400), randint(-400, 400))
kortos.append(korta)
for n in range(2):
hideturtle()
korta = Turtle()
korta.fillcolor("yellow")
korta.shape("Korteles_Forma")
korta.penup()
korta.goto(randint(-400, 400), randint(-400, 400))
kortos.append(korta)

for n in range(2):
hideturtle()
korta = Turtle()
korta.fillcolor("grey")
korta.shape("Korteles_Forma")
korta.penup()
korta.goto(randint(-400, 400), randint(-400, 400))
kortos.append(korta)
def spust(x,y):
for korta in kortos:
Kx = korta.xcor()
Ky = korta.ycor()
if Kx-50 < x < Kx+50 and Ky-80 < y < Ky+80:
if kas_atversta == None:
kas_atversta
kas_atversta = korta

screen.onclick(spust)

uncut meteor
#

!code

wise cargoBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

buoyant hazel
#

yes it is

uncut meteor
#
print('Hello world!')
#

```
print("Hello World!")
```

buoyant hazel
#

just paste the code in python u will see

#

wait i will tanslate

#

then ill ask

#

Create a pencil (card) in the shape of a square,

card = ...

Make that by clicking on it with the mouse,
its color would change / switch between black and orange.

Note the switching color (orange) as a "color" property of the pencil:
card.color = ..

Generate a list of 10 such "cards" - and place them in full screen (neat or shuffle randomly):

cards = []
....

Make 2 cards of the same color: red, green, blue, yellow, gray.
If necessary, the values ​​in the list can be mixed: random.shuffle (list)

Make it possible to keep only 1 card open at a time. When opening a new one - the current one would be inverted.

The opened one can be remembered in the new pencil variable "what_opened":

kas_open = card

at the beginning of the game can be

kas_open = None # None - a special value that means "nothing"

If you open the 2nd card, its color matches the color of the first - write "guessed ..x ... color"

Guess the overlapping cards to mark so that they do not fold over.
This can be done in several ways (choose the one that suits you best):

Make a separate list - "repellent",
and put cards in it, and then check if the card is in that list, you no longer need to flip it over.
According to the length of the list, it will be convenient to check if all the cards have already been guessed;).

or assign an additional feature to the cards:

korta.atspteta = False # at the beginning

korta.atspteta = True # when guessing

Make to guess 7 times,
and when guessed, the times are not depleted (or inflated back).

Guessing all the pairs written "Happy End", otherwise - "Unfortunately, the guesses are over.

#

ok so this is my task

uncut meteor
#

can you shorten your question down

#

rather than just showing us your entire task

buoyant hazel
#

its the whole task that i have to do

uncut meteor
#

okay, what are you struggling with?

buoyant hazel
#

my question is how do i Make it possible to keep only 1 card open at a time. When opening a new one - the current one would be inverted.

The opened one can be remembered in the new pencil variable "what_opened":

what_open = card

at the beginning of the game can be

what_open = None # None - a special value that means "nothing"

#

yes i have tried that

#

i realy dont know how to display it

#

yes

#

i think so

#

damm i wish i cud speak it wud be so much easyer

spiral jay
#

i need your help @uncut meteor with backend for my website

#

lol

stoic ore
#

chat here

#

dont have much time but 'll help if can

spiral jay
#

Django

buoyant hazel
#

pen testing

#

oh im sorry i didint mean it in that way

spiral jay
#

dont blocl me

#

ok wont bother u

stoic ore
#

@uncut meteor THX for your time dude see u arround

buoyant hazel
#

griff you cant go in to a privite call?

hushed frost
#

hi guys

buoyant hazel
#

i mean i realy need help and i cant speak

hushed frost
#

can anyone help me with lists / tuples / sets ?

#

if , elifs , elses

uncut meteor
#

Sure, what about them are you struggling with?

hushed frost
#

i want someone to somehow guide me

#

im new to python

#

it would be helpful if i had someone to guide me

uncut meteor
#

ah, right. So you want a demo on data types and where they can be used?

hushed frost
#

im more of a practical person

#

that would help me , yes

#

can i share my screen with you for a sec ?

uncut meteor
#

unfortunately no

hushed frost
#

:/

uncut meteor
#

@hushed frost you can copy paste it here, i'd recommend doing it as a code block

#

!code

wise cargoBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

uncut meteor
#

if it is too long, you can use a paste bin

#

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

hushed frost
#

import os
import sys



income =[25,20,15,102,55]
expenses =[20,55,28,16,220]


print(sum(income)-sum(expenses),"$ Is your balance")

if sum(income) < sum(expenses):
    print("You should start earing that $")
elif sum(income) = sum(expenses):
    print("Your balance is 0 $")
else:
    print("You're good , for now")
#

my elif statement is wrong somehow

#

it says it's expecting ":"

buoyant hazel
#

==

hushed frost
#

yes

uncut meteor
#

!comparison

wise cargoBOT
#

Assignment vs. Comparison

The assignment operator (=) is used to assign variables.

x = 5
print(x)  # Prints 5

The equality operator (==) is used to compare values.

if x == 5:
    print("The value of x is 5")
hushed frost
#

🙂

#

i agree

uncut meteor
#

!list

wise cargoBOT
#

Do you ever find yourself writing something like this?

>>> squares = []
>>> for n in range(5):
...    squares.append(n ** 2)
[0, 1, 4, 9, 16]

Using list comprehensions can make this both shorter and more readable. As a list comprehension, the same code would look like this:

>>> [n ** 2 for n in range(5)]
[0, 1, 4, 9, 16]

List comprehensions also get an if statement:

>>> [n ** 2 for n in range(5) if n % 2 == 0]
[0, 4, 16]

For more info, see this pythonforbeginners.com post.

uncut meteor
#

#bot-commands

hushed frost
#

i don't fully understand the value of == compared to =

buoyant hazel
#

if u say = u use that for variuble

uncut meteor
#

= equals
== is equal to

hushed frost
#
print(x == True)
#

would it give me flase ?

#

1 == True

#

2 == False

buoyant hazel
#

whos playing rainbow?

hushed frost
#

sets are the same thing as dictionaries ?

buoyant hazel
#

``py

hushed frost
#

lists == dictionaries ?

#

oh wait

#

i mean

#

set == dictionary ?

#

ikik

#

list = [0 , 1 , 2 , 3 ,4]

#

set = {0:a , 1:b , 2:c} ?

#

aight

buoyant hazel
#
from turtle import *
from random import *
screen = getscreen()
screen.register_shape("Korteles_Forma", ( (80,-50), (-80,-50),  (-80, 50), (80, 50) ))

kas_atversta = None
kas_paspausta = []
colors = ["orange", "black"]
kortos = [ ]
for n in range(2):
    hideturtle()
    korta = Turtle()
    korta.fillcolor("red")
    korta.shape("Korteles_Forma")
    korta.penup()
    korta.goto(randint(-400, 400), randint(-400, 400))
    kortos.append(korta)
for n in range(2):
    hideturtle()
    korta = Turtle()
    korta.fillcolor("blue")
    korta.shape("Korteles_Forma")
    korta.penup()
    korta.goto(randint(-400, 400), randint(-400, 400))
    kortos.append(korta)

for n in range(2):
    hideturtle()
    korta = Turtle()
    korta.fillcolor("green")
    korta.shape("Korteles_Forma")
    korta.penup()
    korta.goto(randint(-400, 400), randint(-400, 400))
    kortos.append(korta)
for n in range(2):
    hideturtle()
    korta = Turtle()
    korta.fillcolor("yellow")
    korta.shape("Korteles_Forma")
    korta.penup()
    korta.goto(randint(-400, 400), randint(-400, 400))
    kortos.append(korta)

for n in range(2):
    hideturtle()
    korta = Turtle()
    korta.fillcolor("grey")
    korta.shape("Korteles_Forma")
    korta.penup()
    korta.goto(randint(-400, 400), randint(-400, 400))
    kortos.append(korta)
def spust(x,y):
    for korta in kortos:
        Kx = korta.xcor()
        Ky = korta.ycor()
        if Kx-50 < x < Kx+50 and Ky-80 < y < Ky+80:
            if kas_atversta == None:
                
            
            
            
    
screen.onclick(spust)

uncut meteor
#

!e

my_list = [1,2,3,4,5,5,4,3,2,1]
print(my_list)

my_set = set(my_list)
print(my_set)
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

001 | [1, 2, 3, 4, 5, 5, 4, 3, 2, 1]
002 | {1, 2, 3, 4, 5}
hushed frost
#

sets can not have duplicates ?

#

so sets , tuples = immutable ?

#

while lists , dictionaries = mutable ?

#

also im having a hard time importing the "prompt" function

#

i think os or sys

#

os most likely

buoyant hazel
#

I have a question i assained 2 card to be red how can i display them as white but when i click on them it will turn red but if i click on a blue card it wud turn blue

hushed frost
#

def.prompt1 :

#

wait

#

nah

#

it aint right :))

#

it makes you press a certain key in order to progress

#

shouldn't you be advanced pythonger ?

#

y can't i use voice ? 😢

buoyant hazel
#

griff can u view my question?

#

yes i did that

#

i did that too

#

no

#

red blue yellow grey green

#

i quite dont undarstand that

#

def spust(x,y):
for korta in kortos:
Kx = korta.xcor()
Ky = korta.ycor()
if Kx-50 < x < Kx+50 and Ky-80 < y < Ky+80:

#

this part knows what i clicked on and the exact card but how can i make a card red but display it as white?

uncut meteor
#

!e

from dataclasses import dataclass

@dataclass
class Card:
  colour: str
  hidden: bool

  def print_colour(self):
    if self.hidden:
      print("White")
    else:
      print(self.colour)

my_card = Card(colour="Red", hidden=True)
my_card.print_colour()
my_card.hidden = False
my_card.print_colour()
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

001 | White
002 | Red
buoyant hazel
#

so i shud do it in my function?

uncut meteor
hushed frost
#

griff

#

can you explain this please ?

#
    for y in range(10):
        if x*y > 50:
            print(x,y, end=', ')
            break```
uncut meteor
#
for x in range(10):
    for y in range(10):
        if x*y > 50:
            print(x,y, end=', ')
            break
hushed frost
#

🙂

uncut meteor
#

```py
for x in range(10):
for y in range(10):
if x*y > 50:
print(x,y, end=', ')
break
```

hushed frost
#

comma string ?

uncut meteor
#

!e

x = 1
y = 2
print(f"{x}, {y}")
hushed frost
#

ugly

#

messy code

wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

1, 2
hushed frost
#

oh so it works as basically (1,2,3....,9) * (1,2,3....,9) ?

#

the way it's multiplying

#

what's the function for multiplication ?

#

like sum

#

prod ?

solid wolf
#

hi Griff

hushed frost
#

i will print the prod of x in range (10) with y in range (10)

solid wolf
#

rember me

uncut meteor
#

!doc math.prod

wise cargoBOT
#
math.prod(iterable, *, start=1)```
Calculate the product of all the elements in the input *iterable*. The default *start* value for the product is `1`.

When the iterable is empty, return the start value. This function is intended specifically for use with numeric values and may reject non-numeric types.

New in version 3.8.
hushed frost
#

mth = meth ?

#

:))

solid wolf
#

Griff it is me SpticYT

hushed frost
#

D:

solid wolf
#

i am 13 now

hushed frost
#

inches ?

#

im using pycharm

#

do i need to import math ?

uncut meteor
#

!e

import math
print(math.prod([1,2,5,2,3,1]))
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

60
hushed frost
#

in math import prod works as well ?

#

oh

#

from

uncut meteor
#

!e

from math import prod
print(prod([1,2,5,2,3,1]))
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

60
hushed frost
#
from math import prod
#

how do these imports affect my code ?

#

yes

#

any good file management tutorial for python ?

solid wolf
#

does anyone here know how to script a bot

hushed frost
#

uhhhhhh

#

grabbing .pys

#

saving

#

creating pys

#

idk

#

yeah

uncut meteor
#
folder >
  main.py # Run this to start
#
src/
hushed frost
#

what IDEs do you guys use ?

#

same

rich cloud
#

π charm

hushed frost
#

@uncut meteor

#

thanks for the help

#

much appreciated

#

😉

#

im out for now , can i ping you in case i run into more trouble ?

solid wolf
#

Np @hushed frost

#

or you can ping me

hushed frost
#

alrighty then

solid wolf
#

Griff when did you get into scirpting

hushed frost
uncut meteor
#

gg wp

solid wolf
#

do yall listen to Alrght by Stuck in the Sound

uncut meteor
#

wdym

solid wolf
#

XD

#

Everyone this is a sneak peek for my new server

#

i am working on it all day

#

oh Griff

#

can you script a bot for me

#

Ok 😦

#

ok i will learn

#

let me go and search on yt

gentle flint
solid wolf
#

XD

#

oh it is you

uncut meteor
solid wolf
#

i remeber yu

gentle flint
#

It is me

solid wolf
#

on SpticYt

gentle flint
solid wolf
#

i got ban

gentle flint
solid wolf
#

SpticYt

#

my other acount

#

on discord

gentle flint
#

I see.

solid wolf
#

cause of my age

#

but when i turn 13

#

we;lll i am 13

gentle flint
#

ban slowly walks away again

solid wolf
#

but when i had turn 13 i went to do it

#

and i couldn't get my account back

#

😦

gentle flint
#

I must confess I can't remember you.

solid wolf
#

i remeber the day at the bak of my head

solid wolf
gentle flint
#

remember

solid wolf
#

you and eivl

gentle flint
#

I know eivl

#

but I don't know you

#

but then I've met rather a lot of people in here

solid wolf
#

you and eivl wause trying to help me

#

get my account back

gentle flint
#

dude
I've helped hundreds of people in here

solid wolf
#

wow XD

gentle flint
#

I spend my living days in here

solid wolf
#

Ello USE-TO

gentle flint
#

I'm not gonna remember a single person I helped

solid wolf
#

Xd

#

not even Griff

uncut meteor
solid wolf
#

true

uncut meteor
#

i what you could call a G

solid wolf
#

XD

#

did anyone ever heard eivl's voice

#

???

#

Can yall screenshare Pls

uncut meteor
#

PI ?

gentle flint
#

Als Torfstich oder Torfstechen wird der oberirdische Abbau von Torf bezeichnet. Dieses organische Material, das in Mooren durch beginnende Inkohlung aus abgestorbenen Pflanzen entsteht, dient als niederenergetischer Brennstoff, zur Verbesserung der Bodendurchlüftung im Gartenbau und in geringem Umfang auch zur Herstellung von Textilfasern und fü...

rich cloud
#

rule 4 has been murdered lol

uncut meteor
#

!rule -4

wise cargoBOT
#

:x: Invalid rule indices: -4

uncut meteor
solid wolf
rich cloud
#

-4 *-1

solid wolf
#

acctuly that looks like where world war 2 was

#

Hallo

#

mein Name ist jake

versed island
#

halo

solid wolf
#

Ich habe keine Sprachüberprüfung

runic forum
#

yikes

rich cloud
#

schadenfreude

versed island
#

thats german

#

i guess

solid wolf
#

yh

gentle flint
solid wolf
#

it means i dont have voice verify

#

XD

#

i have 2 more days

gentle flint
#

sprachverifikation

versed island
solid wolf
#

Xd

solid wolf
versed island
#

u'll live longer

solid wolf
#

yh

#

i speak german and english

#

and aslo a bit of spanish

versed island
#

what if you are using google translate

solid wolf
#

Ich mag Spanisch und Deutsch mehr

versed island
#

0_0

solid wolf
versed island
#

oooh

solid wolf
#

i am half german

uncut meteor
#

so you are 4.5?

versed island
#

germans were aryans

uncut meteor
#

Nein

versed island
#

i am also aryan

solid wolf
#

ok

gentle flint
#

not to be confused with multiple ryans

solid wolf
#

arisch

versed island
#

so im half german too

#

from india

solid wolf
#

Cool

versed island
#

we all are africans

solid wolf
#

er lügt

gentle flint
solid wolf
#

Ich denke

versed island
solid wolf
copper jolt
#

when and wehre can you used tuples

solid wolf
#

IDK

versed island
#

we all were sea animals

solid wolf
#

is this duth or no Amsterdamian

versed island
#

our great ancestors

copper jolt
#

wait but tuples cannot be change right

gentle flint
solid wolf
#

i am asking

#

if you are Amsterdamian

gentle flint
#

I am Amsterdamian.

solid wolf
#

and what laungue

#

is that

copper jolt
#

dutchman

solid wolf
#

XD

copper jolt
#

hello dutch man

gentle flint
solid wolf
#

Cool

#

it is catching

gentle flint
#

but yes, we have our own language too

#

with phrases like "krijg de kolere"

versed island
#

ohh yeah Amsterdam is a city with rivers i guess

#

boats

solid wolf
#

fr no cap

copper jolt
#

isnt it called dutch

hollow plank
#

Amsterdam (, UK also , Dutch: [ˌɑmstərˈdɑm] (listen)) is the capital and most populous city of the Netherlands with a population of 872,680 within the city proper, 1,558,755 in the urban area and 2,480,394 in the metropolitan area. Found within the province of North Holland, Amsterdam is colloquially referred to as the "Venice of the North", att...

#

Venice ( VEH-niss; Italian: Venezia [veˈnɛttsja] (listen); Venetian: Venesia or Venexia [veˈnɛsja]) is a city in northeastern Italy and the capital of the Veneto region. It is on a group of 118 small islands that are separated by canals and linked by over 400 bridges. The islands are in the shallow Venetian Lagoon, an enclosed bay lying between ...

solid wolf
swift valley
#

Evenin'

hollow plank
#

See no difference

copper jolt
#

ive heard in amsterdam is pretty liberal

gentle flint
solid wolf
#

ohh cool

gentle flint
rich cloud
#

bruuhh

solid wolf
gentle flint
#

occasionally they do
like in james bond

copper jolt
solid wolf
#

Ojalá la gente de aquí hablara español

copper jolt
#

apakah kamu sedang bercakap dengan saya ini

solid wolf
#

Están todos usando Python

swift valley
#

Keep it English please

solid wolf
#

why

#

that is not cool

#

but i like speaking spanish and german

#

😦

copper jolt
solid wolf
swift valley
#

It makes it difficult to moderate multiple languages

swift valley
solid wolf
versed island
#

holy crap can you code in german

solid wolf
#

i think so

#

???

swift valley
#

I assume we're all waiting for Hemlock

#

lol

solid wolf
#

proably

uncut meteor
copper jolt
#

have you seen coding in chinese its a nightmare

solid wolf
#

XD

hollow plank
solid wolf
#

it's a avacando

#

omg

#

i love it

versed island
#

its vacavado

solid wolf
#

banna

#

banna

copper jolt
#

bananana

solid wolf
#

i got a banna

versed island
copper jolt
copper jolt
#

@hollow plank ive heard german is a long language

solid wolf
#

it

#

is

versed island
#

my führer

gentle flint
#

frí shevâkedü

hollow plank
#

!e
console.log([]+[]);

wise cargoBOT
#

@hollow plank :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | NameError: name 'console' is not defined
hollow plank
#

😦

copper jolt
#

have you people ever heard og tagalong

hollow plank
#

!e javascript
console.log([]+[]);

wise cargoBOT
#

@hollow plank :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | NameError: name 'javascript' is not defined
solid wolf
#

Ich esse gerne Kekse

hollow plank
#

Ich auch.

copper jolt
#

print("hello world")

rich cloud
#

dis dude still laughing about free shvakado lmaoo

versed island
#

bunch of people sitting here ... whats your reason for not living a healthier life

swift valley
#

Vines are too funny

solid wolf
gentle flint
versed island
#

ohh

hollow plank
gentle flint
#

true

hollow plank
#

Use the plural form

versed island
#

ohh great

gentle flint
#

but that doesn't rhyme

solid wolf
#

thats wierd

copper jolt
#

what is diffrence between VS code and VS 2019

versed island
#

vs code is editor

#

visual studio is ide

copper jolt
#

wait wut lol

solid wolf
#

poste Leute hier wie Hunde, ich mag Affen

copper jolt
#

i thought vs code was the ide

rich cloud
#

"bottle of water"

copper jolt
#

alabama people r hilarious

versed island
copper jolt
versed island
#

hmm

gentle flint
#

this ain't #general

swift valley
#

Right, let's not spam GIFs

solid wolf
#

ok

hollow plank
solid wolf
#

am panzer

versed island
#

panzer sounds kewler

hollow plank
#

PANDA!

#

from pandas import PANDA!

solid wolf
#

it says

runic forum
#

sherlock

solid wolf
#

yh

hollow plank
#

@gentle flint WHERE YOU GOING!!!!

rich cloud
#

he went "oooff"

gentle flint
#

class

unborn storm
#

oh 😦

#

sad 😦

hollow plank
#

Have fun with electric!

gentle flint
#

thanks

#

busy with superhets

solid wolf
#

Cool

uncut meteor
wise cargoBOT
#

@uncut meteor :warning: Your eval job has completed with return code 0.

[No output]
uncut meteor
#

now you can stay

#

you have class

gentle flint
#

naming your class Class is such a terrible thing that I wouldn't stay for that anyway

solid wolf
#

Stop sayin Pandas

swift valley
#
class Class:
    def __init__(self, class_):
        self._class = class_
solid wolf
#

is eivl online

#

he is

swift valley
#

I've finished Fire Red years ago

solid wolf
#

Pokémon

swift valley
#

Emerald is still best Gen 3 though

#

Still grinding through the battle frontier

solid wolf
swift valley
#

I won't

solid wolf
#

why not

solid wolf
#

is it wierd

#

???

runic forum
#

i can hear clicking from the bg

uncut meteor
#

!e

class Class:
    def __call__(self, *args, **kwargs):
        class YourClass:
            __dict__ = {"args": args, "kwargs": kwargs}
            
        return YourClass

classer = Class()
my_class = classer("Testing", stuff="Okay")
print(my_class())
solid wolf
swift valley
#

I just don't want to honestly

#

Too tired

wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

<__main__.Class.__call__.<locals>.YourClass object at 0x7f8398046eb0>
solid wolf
#

yall have a switch

#

i have one

#

i have minecraft

#

and zelda

#

calcraft

#

anyone here watches ssundee

swift valley
#

Hi @rugged root

solid wolf
#

mr.HemLock songs perfissonal

swift valley
#

2007 lemon_eyes

solid wolf
#

song sttealer

runic forum
solid wolf
runic forum
#

never asked you about it @solid wolf

solid wolf
#

Ok 😦

#

Iron Biscuit talk now

#

in Voice chat 1

runic forum
#

Don't take it personally

unborn storm
solid wolf
#

but your so mean

runic forum
#

sorry

solid wolf
#

it is fine

hollow plank
solid wolf
#

Puref never talks

swift valley
#

Maybe, maybe not

solid wolf
#

ok

swift valley
#

Maybe tomorrow lemon_thinking

solid wolf
#

@rugged root he check my bio Omg

#

do you wannna build a snow man

viral heron
#

why is noone sharing their screen today?

swift valley
#

I mean, I can

solid wolf
#

yh share

#

i feeling bored

swift valley
#

Although I don't have a lot to do

solid wolf
#

are you a girl??

unborn storm
#

@swift valley : why emacs ?

swift valley
#

Why not?

solid wolf
#

index looks good

swift valley
#

Emacs is a full-on development environment

stuck furnace
#

I heard some people switch from Emacs to Vim because of RSI

uncut meteor
#

i prefer iMacs

solid wolf
#

why'

stuck furnace
#

It has a load of features built in that people don't know about 😄

#

It has a file manager!

solid wolf
#

iohh thats why

swift valley
#

Omnicomplete still requires extensions doesn't it?

short gate
#

Hello.

rugged root
#

Yo

swift valley
#

Yeah, the Markdown parser/renderer

#

Although thinking about it, I'll probably work on the typelevel-lists instead

uncut meteor
#

I just restart my computer when I accidentally open Vim

quasi mesa
#

lol

stuck furnace
zenith radish
#

logo_emacs wlogo_emacs

stuck furnace
#

Nah, I'm a Vim user 😄

unborn storm
zenith radish
#

logo_emacswlogo_emacs what's this??

scarlet drift
#

Nano Gang Arise

uncut meteor
swift valley
#

Uhhhhhhhhhhhhhhh

quasi mesa
#

resembles a face ig

zenith radish
#

logo_emacs > logo_neovim > logo_vim > logo_vscode > all else

stuck furnace
#

Can you edit the same file in three windows at the same time? 😄

quasi mesa
#

logo_vscode > all other editors in existence (dont roast me pls)

runic forum
#

vim & VSCode > emacs

zenith radish
#

vscode is literally emacs but instead of lisp uses js

swift valley
#

I palm CTRL

#

and shift

scarlet drift
#

I use caps lock 😡

zenith radish
#

having caps lock

#

I recommend setting caps lock to be a ctrl key

scarlet drift
stuck furnace
#

Have you heard the Ukele Orchestra's cover of this song Griff?

uncut meteor
#

nah

#

speaking of that

#

let me get Manchester Orch on

stuck furnace
#

Get the full concert from http://www.ukuleleorchestra.com !

This is the Orchestra's version of Talking Heads' Psycho Killer, performed at the Royal Albert Hall. On Tuesday 18th August 2009, with every seat and all standing room occupied, the Ukulele Orchestra of Great Britain played to a sold-out Royal Albert Hall in London, with over 6000 aud...

▶ Play video
swift valley
#

Can confirm, raw HTML/CSS/JS is a massive waste of time

viral heron
#

how to do face recognition / pose recognition in python??

quasi mesa
#

lmfao ms word

humble geyser
#

Angular is batteries included

solid wolf
#

so why speak about if you are scared of it

scarlet drift
#

Microsoft word the best IDE 100%

swift valley
#

Especially CSS, seriously though just use Tailwind

#

and there's a lot of non-JS languages that compile to JS

#

Elm for one

solid wolf
#

is Griff still there

humble geyser
#

Fk vscode all my homies use pen and paper

whole bear
#

ok then which IDE/editor u guys recommend then?
except VSCode?

quasi mesa
#

except vscode... I dont have any idea

whole bear
#

or any electron-based editors

#

sublime messing up with RTL

humble geyser
#

sublime text 4 is in dev

#

It will be out soon

solid wolf
#

@swift valley do you have 2 monitors

humble geyser
#

They changed the pricing plan

quasi mesa
rugged root
humble geyser
#

Now every license will last 3 years

quasi mesa
solid wolf
humble geyser
#

Updates will be faster now

solid wolf
#

cool

humble geyser
#

They'll change the license duration when st4 comes out

solid wolf
#

ohh

#

i have to ask

#

do yall ever play games

#

yall just stay here and script al day

whole bear
#

as a game dev? no lol

humble geyser
#

Electron apps big no no

solid wolf
#

ohh ok

#

yall dont play like amoung us or something

quasi mesa
#

not mee

solid wolf
#

omg

#

yal have no life

humble geyser
#

amongus

solid wolf
#

your life is just about scripting

#

that isnt fun

whole bear
#

no we take lives lol

humble geyser
#

It is trust me

#

Try sublime

#

It isn't that big

solid wolf
#

any here have a cyberpower pc

humble geyser
#

I don't agree

whole bear
#

command line is super extensible

#

but not for macOS

solid wolf
#

ohh cool

#

ohh i dont have mac so yh

whole bear
#

Apple is making macOS just a big bloat

humble geyser
#

Those are edge cases

quasi mesa
humble geyser
#

You can evaluate as much time as you want

quasi mesa
#

when you gonna get this message everytime you save a file (almost everytime)

humble geyser
#

Hence the license

#

That is the vimium extension

zenith radish
#

yep

#

vimium c

whole bear
#

is that ubuntu?

zenith radish
#

y

whole bear
#

r u ok with old packages?

humble geyser
#

Vim and emacs are 2 different ideas

whole bear
#

Surf?

solid wolf
#

safaia is not better than google

whole bear
#

lightweight?

humble geyser
#

brave

whole bear
#

EDGE ON LINUX?!

solid wolf
#

wsw

whole bear
#

THE WHAT LOL

quasi mesa
#

isnt that like... illegal

solid wolf
whole bear
quasi mesa
#

hm.

whole bear
#

Viva la brave

humble geyser
#

safari

solid wolf
#

like almost every websit

#

google chrome can use

#

like facebook

#

instagram

#

and many more

unborn storm
solid wolf
#

this @unborn storm

humble geyser
#

Everybody gangsta till apple preinstalls internet explorer

whole bear
#

ubuntu stands for Dependency hell

quasi mesa
#

I'll check it out

solid wolf
#

Xd look

quasi mesa
#

cool

humble geyser
#

Gentoo ftw

whole bear
#

YESS FINALLY MINIMAL GANG!

solid wolf
#

@unborn storm did you create this

unborn storm
#

no

solid wolf
#

ohh

unborn storm
#

a friend of mine

solid wolf
#

cool

#

tell him it is good

quasi mesa
#

btw is it common for os to crash and be slow if you're live booting from a usb?

unborn storm
#

usb il sooo slow

whole bear
#

yes it is

unborn storm
#

it is probably why

quasi mesa
#

linuxmint is too slow for me. and I'm livebooting

#

ye

#

I'm back on windows 🥴 lemon_angrysad

humble geyser
#

ubuntu bloated

solid wolf
#

ohh i have a pc

#

so i have no problems

#

i have 2 monitors

whole bear
#

LOL

quasi mesa
#

candy crush is necessary 🤣

solid wolf
#

CANDY CRUSH 😆

whole bear
#

INSTALL CANDY CRUSH FROM SNAP CRAP

solid wolf
#

guys can you dies from sugar

whole bear
#

like just use arch, AUR BOIZ

solid wolf
#

@zenith radish can you die from sugar

quasi mesa
#

proclaimed windows 10 user myself.

solid wolf
#

@unborn storm did you ever create game

solid wolf
#

cool website

unborn storm
#

about the mathematician John Horton Conway

solid wolf
#

yh

quasi mesa
#

the legend that made the game of life?

unborn storm
#

yes

solid wolf
#

@supple apex do you know ho is Dani

quasi mesa
#

o ic

unborn storm
#

but it is french 😦

solid wolf
#

OO[ i dont know french

#

Oop

#

@copper jolt do you know ho is Dani the youtuber

#

DOes anyone know ho is Dani

whole bear
#

@unborn storm did u ever tried linux?

#

go ahead then

#

try a VM

solid wolf
#

u can hack with python

whole bear
#

cause u r so intersted for terminal based programs

whole bear
#

lol

solid wolf
#

thats bad

whole bear
#

verry baad

solid wolf
#

yh

#

@dire folio

whole bear
#

Arch linux on ur rasp pi?!

#

@zenith radish Agreed

#

@unborn storm it's just another terminal emulator

#

Yaboui

#

LOL

swift valley
#

Yabai -> Yikes

zenith radish
swift valley
#

!otn s notice-me

wise cargoBOT
#
Query results

• notice-me-sympy

swift valley
#

lol

severe pulsar
#

DAMN

quasi mesa
#

lol

#

sympai

swift valley
#

I do not know what I'm doing

#

Flashbang time

unborn storm
#

XD

whole bear
#

Guys should I switch 2 emacs?

severe pulsar
#

what are you making @ PureF

whole bear
#

from VIM?

solid wolf
whole bear
#

NO VSCODE

stuck furnace
#

Love this song Griff lemon_pleased

whole bear
#

NO ELECTRON

solid wolf
whole bear
#

Okay then recommend a c/c++ completion plugin for VIM

unborn storm
#

TabNine

#

for all languages

whole bear
#

lemme check

unborn storm
#

even english

quasi mesa
#

tabnine is available for vim?

#

o ic

unborn storm
#

Plugin 'zxqfl/tabnine-vim'

whole bear
#

I use vundle too

#

it's ok

#

i use luke vimrc

#

@zenith radish ok now i'm looking 4 TabNine alternative XD

#

i looking 4 more lightweight plugin

zenith radish
#

lsp with clangd

whole bear
#

lemme check

swift valley
#

Haskell Language Server is RAM hungry as-is on my system lol

#

Tabnine on top of that is just, eh

#

Ever wanted type-level structures

whole bear
zenith radish
#

yeah ofc

swift valley
#

Scheme?

#

I think I'm gonna learn Clojure

#

I have a year and a half programming in Haskell/PureScript

whole bear
#

ITS SO SIMPLE

#

only thing u need is a shell

#

ipython without jupyter is just highlighter

unborn storm
#

yes

#

but it is too heavy

#

i mean, i'd like a light one

whole bear
#

yeah it's just a bloat if u use it without preferred proposes

unborn storm
#

i just want a light python shell

#

i actually found ptpython

#

and bpython (quite heavy)

#

but i just ask for other ones

whole bear
#

o ic

#

why not default one?

swift valley
#

Screenkey works

#

Restarting stream, give me a sec

stuck furnace
#

Ah noo 😄

#

@unborn storm have you checked out Amethyst?

#

Erm, it's a tiling window manager for MacOS

whole bear
#

LIGHT THEME!! lol

#

@zenith radish Agreed as a vim user

swift valley
#

Doom Emacs has a bunch of sensible defaults, keybindings for extensions just work™

whole bear
#

debugging succks w/vim

honest pier
#

nah

whole bear
#

lool

lament hinge
#

xd

whole bear
#

imagine using vscode

unborn storm
#

i can't imagine

whole bear
#

no1 can xd

lament hinge
#

laughs in pycharm

whole bear
#

:x

swift valley
#

C-x C-c lemon_swag

#

Most folks in Haskelland use Emacs

#

Polybar

#

I'm on Linux

whole bear
#

Light theme is good with night vision

#

/s

swift valley
#

My room is well-lit lol

whole bear
#

jk

swift valley
#

But for courtesy

#

I haven't used this in a while

whole bear
#

Welcome to Dark gang lol

swift valley
#

I have night light set to 3500k

#

5500k at day

#

Hi @honest pier

honest pier
#

👋

whole bear
#

I were learning language as a hobby as a teen

#

do u count lolcode

#

lol no

#

brainfck yes

#

/s

#

oki, then ik 1 lang

#

uh

#

XD

#

@zenith radish agreed

#

but fck JS lol

#

It's weird

swift valley
#

No pls

#

JS is hell

whole bear
#

stawp shitting on langs

swift valley
#

Use TS

whole bear
#

I prefer kick in balls than doing JS

swift valley
#

Tensorflow.js

whole bear
#

JS performance is great

#

but it's weird still

swift valley
#

Web-based machine learning lemon_swag

#

Run models on browsers

#

Also done working for now, gonna open PRs

#

Also, I could argue that while JS has nice tooling

#

npm is utter shit

#

Bundlers are ergh

whole bear
#

FINALLY SOME1 WHO HATES JS

whole bear
swift valley
#

I don't dislike JS, just npm and node_modules

whole bear
#

I missed good old days of JS

swift valley
#

@dense ibex Hipster language names weren't a thing back then

#

Yeah let's just name our languages A B C

dense ibex
#

Oh lol

swift valley
#

Coffee time

dense ibex
#

have fun

swift valley
#

@zenith radish Nim is still a thing lol

#

If we're talking hipster, Haxe maybe

#

or Vlang

#

Ned's one of the oldest in the server I believe

dense ibex
#

Yeah prob

swift valley
runic forum
#

or Assembly asm

stuck furnace
#

I want C with generics lemon_pensive

swift valley
#

All my homies hate Go

whole bear
#

use TOR

#

hacking without hacking

#

Sa

swift valley
whole bear
#

Yşasın ırkımız

#

çine bedel ırkımız

#

söylenir türkümüz

#

çağlardan çağlara

swift valley
#

@whole bear Please talk in English to the best of your ability

dense ibex
#

The server is primarily English so please try your best!

whole bear
#

and i'm from iran and i'm still talking english :/

#

that's not a thing

runic forum
#

and im from mars

whole bear
#

İ dont under stand
İ now lidle english

swift valley
#

!rule 4

wise cargoBOT
#

4. This is an English-speaking server, so please speak English to the best of your ability.

runic forum
#

!rules

wise cargoBOT
#

The rules and guidelines that apply to this community can be found on our rules page. We expect all members of the community to have read and understood these.

runic forum
#

how many rules are there?

whole bear
dense ibex
#

idk click the link @runic forum 🙂

whole bear
#

İ dont under stand
İ now lidle english

#

,

brave spear
#

hello

dense ibex
#

hello

whole bear
#

Aleyküm selam

runic forum
#

just 7

dense ibex
whole bear
#

!rule

wise cargoBOT
#

The rules and guidelines that apply to this community can be found on our rules page. We expect all members of the community to have read and understood these.

brave spear
#

!rule 4

wise cargoBOT
#

4. This is an English-speaking server, so please speak English to the best of your ability.

whole bear
stuck furnace
whole bear
#

i dont under stand

stuck furnace
#

Funnily enough

whole bear
#

wait pls

swift valley
#

@wise cargo help rule

wise cargoBOT
#
Command Help

!site rules [rules]...
Can also use: rule, rules, site r, site rule

Provides a link to all rules or, if specified, displays specific rule(s).

swift valley
#

lol

whole bear
dense ibex
#

how are you @wise cargo ?

wise cargoBOT
#

Good evening.

whole bear
#

Speaking English is fun. Can anyone teach me?

brave spear
#

yoooo bot is speaking

swift valley
#

Also speaking of bad attitudes

dense ibex
#

whats your timezone @wise cargo where you hosted?

lunar pendant
#

what is going on ????????

swift valley
#

I really hate people who advocate shitty "entrepreneur" mindsets

lunar pendant
#

dipsy design????

whole bear
#

Speaking English is fun. Can anyone teach me please ?

lunar pendant
#

what is going on?

whole bear
#

lol

whole bear
lunar pendant
whole bear
swift valley
#

an immutable variable is a term

lunar pendant
stuck furnace
wise cargoBOT
#

@stuck furnace :white_check_mark: Your eval job has completed with return code 0.

2021-03-18 14:07:37.600059
whole bear
swift valley
#

Bot has no concept of time

dense ibex
honest pier
#

i thought now gave it in utc

stuck furnace
whole bear
#

I'm looking at these sentences in translation
there may be mistakes

honest pier
#

🤔

#

!d datetime.datetime.now

wise cargoBOT
#
classmethod datetime.now(tz=None)```
Return the current local date and time.

If optional argument *tz* is `None` or not specified, this is like [`today()`](#datetime.datetime.today "datetime.datetime.today"), but, if possible, supplies more precision than can be gotten from going through a [`time.time()`](time.html#time.time "time.time") timestamp (for example, this may be possible on platforms supplying the C `gettimeofday()` function).

If *tz* is not `None`, it must be an instance of a [`tzinfo`](#datetime.tzinfo "datetime.tzinfo") subclass, and the current date and time are converted to *tz*’s time zone.

This function is preferred over [`today()`](#datetime.datetime.today "datetime.datetime.today") and [`utcnow()`](#datetime.datetime.utcnow "datetime.datetime.utcnow").
honest pier
#

ah

whole bear
#

I'm looking at these sentences in translation
there may be mistakes

dense ibex
#

!e ```rs
fn main() {
println!("Hello World!");
}

wise cargoBOT
#

@dense ibex :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     fn main() {
003 |        ^
004 | SyntaxError: invalid syntax
dense ibex
#

bruh

#

oh

#

wait no

stuck furnace
#

Er, remember which server you're in 😄

whole bear
#

Can you follow me on instagram

lunar pendant
#

My IP is suspended for doing malicious activities against my college website😥

dense ibex
#

Im not surprised lol

whole bear
#

Can you follow me on instagram
please

swift valley
#

PyDis staff has a disproportionate amount of non-Python programmers