#voice-chat-text-0

1 messages ยท Page 766 of 1

honest pier
#

!pep 3122

wise cargoBOT
#
**PEP 3122 - Delineation of the main module**
Status

Rejected

Created

27-Apr-2007

Type

Standards Track

honest pier
#

!pepe 3132

strong arch
#

!pep 8

wise cargoBOT
#
**PEP 8 - Style Guide for Python Code**
Status

Active

Created

05-Jul-2001

Type

Process

honest pier
#

!pep 3132

wise cargoBOT
#
**PEP 3132 - Extended Iterable Unpacking**
Status

Final

Python-Version

3.0

Created

30-Apr-2007

Type

Standards Track

honest pier
#

^

terse needle
#
x = [1,2,3] # 1-2-3
strong arch
#

arr[0] - sum(arr[1:])

honest pier
#

!d functools.reduce

terse needle
#

!e

x = [1,2]
print(~sum(x)+1)
wise cargoBOT
#

@terse needle :white_check_mark: Your eval job has completed with return code 0.

-3
strong arch
#

arr[0] - sum(arr[1:])

amber raptor
#
-2```
honest pier
#

!e

from functools import reduce
L = [4, 3, 2, 1]
print(reduce(lambda x, y: x - y, L))
uncut meteor
#

!e

from functools import reduce

x = reduce(lambda num1, num2: num1 - num2, [4,3,2,1])
print(x)
wise cargoBOT
#

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

-2
#

@honest pier :white_check_mark: Your eval job has completed with return code 0.

-2
terse needle
#

!e

from functools import reduce

def solution(roman):
    result = []
    
    table = {
      'I': 1,
      'V': 5,
      'X': 10,
      'L': 50,
      'C': 100,
      'D': 500,
      'M': 1000
    }
    
    slice_number_eval = []
    
    for index, i in enumerate(roman):
        r_numeral_number = table.get(i)
        
        for o, z in enumerate(roman[index:]):
            if table.get(z) > r_numeral_number:
                slice_number_eval.append(roman[index:o+index+1])
                roman = roman[:index] + roman[o+index+1:]
                
    result += [~reduce(lambda x, y: x - y, [table.get(r) for r in i])+1 for i in slice_number_eval]
    
    result += (table.get(i) for i in roman)
    
    return sum(result)

# ------------------------------------------------------------

print(solution('VI')) # 6
print(solution('IV')) # 4
print(solution('XVII')) # 17
print(solution('MDCLXVI')) # 1666
print(solution('MDCLXIV')) # 1664
print(solution('MMMCDLXXIV')) # 3474
wise cargoBOT
#

@terse needle :white_check_mark: Your eval job has completed with return code 0.

001 | 6
002 | 4
003 | 17
004 | 1666
005 | 1664
006 | 3476
zealous wave
#
from discord import Colour, Embed
from datetime import datetime

from typing import Optional, Union, Iterable


class EmbedHelper(Embed):

def __init__(self, *fields: Iterable[str, bool], *, title: Optional[str] = None,
                description: Optional[str] = None,
                colour: Optional[Union[Colour, int]] = None,
                thumbnail_url: Optional[str] = None,
                author_url: Optional[str] = None,
                author_name: Optional[str] = None,
                footer_url: Optional[str] = None,
                image_url: Optional[str] = None,
                footer_text: Optional[str] = None,
                timestamp: Optional[datetime] = None):

    # TODO: ADD DOCSTRING

    super().__init__()

    self.title = title or None

    self.description = description or None

    self.colour = colour or None

    self.timestamp = timestamp or None

    if footer_text:
        if footer_url or footer_text:
            if footer_url and footer_text:
                self.set_footer(text=footer_text, icon_url=footer_url)
            else:
                if footer_text:
                    self.set_footer(text=footer_text)
                else:
                    self.set_footer(con_url=footer_url)

    if image_url:
        self.set_image(url=image_url)

    if author_url or author_name:
        if author_url and author_name:
            self.set_author(name=author_name, icon_url=author_url)
        else:
            if author_url:
                self.set_author(icon_url=author_url)
            else:
                self.set_author(name=author_name)
    if thumbnail_url:
        self.set_thumbnail(url=thumbnail_url)
honest pier
#
if footer_text:
        if footer_url or footer_text:
            if footer_url and footer_text:
#

let x = optional ?? 0

strong arch
#

d = lambda x, y: x if x != None else y

#

d(val, "")

flat sentinel
#

gess who is back

icy axle
#

Hemlock isn't back yet? /s

honest pier
#

ยฏ_(ใƒ„)_/ยฏ

strong arch
#
DispatchQueue.main.async { <stuff> }
uncut meteor
#
from discord import Colour, Embed
from datetime import datetime

from typing import Optional, Union, Dict


class EmbedHelper(Embed):

def __init__(self, *, title: Optional[str] = None, description: Optional[str] = None, colour: Optional[Union[Colour, int]] = None,
             thumbnail_url: Optional[str] = None, author_url: Optional[str] = None, author_name: Optional[str] = None,
             footer_url: Optional[str] = None, image_url: Optional[str] = None, footer_text: Optional[str] = None, 
             fields: Optional[Dict[str, str], timestamp: Optional[datetime] = None):
    """
    This sucks, used discord.Embed.from_dict()
    """
    super().__init__()
    self.title = title or None
    self.description = description or None
    self.colour = colour or None
    self.timestamp = timestamp or None
    self.set_footer(text=footer_text or self.Empty, icon_url=footer_url or self.Empty)
    self.set_image(url=image_url or self.Empty)
    self.set_author(name=author_name or self.Empty, icon_url=author_url or self.Empty)
    self.set_thumbnail(url=thumbnail_url or self.Empty)
    for name, value in fields:
      self.add_field(name, value)
#

@zealous wave u make me sick

zealous wave
#
class EmbedHelper(discord.Embed):
    def __init__(self, *fields: Union[str, bool], title: Optional[str] = None,
                    description: Optional[str] = None,
                    colour: Optional[Union[Colour, int]] = None,
                    thumbnail_url: Optional[str] = None,
                    author_url: Optional[str] = None,
                    author_name: Optional[str] = None,
                    footer_url: Optional[str] = None,
                    image_url: Optional[str] = None,
                    footer_text: Optional[str] = None,
                    timestamp: Optional[datetime] = None):

        # TODO: ADD DOCSTRING

        super().__init__()

        self.title = title or None

        self.description = description or None

        self.colour = colour or None

        self.timestamp = timestamp or None

        if footer_url or footer_text:
            if footer_url and footer_text:
                self.set_footer(text=footer_text, icon_url=footer_url)
            else:
                if footer_text:
                    self.set_footer(text=footer_text)
                else:
                    self.set_footer(con_url=footer_url)

        if image_url:
            self.set_image(url=image_url)

        if author_url or author_name:
            if author_url and author_name:
                self.set_author(name=author_name, icon_url=author_url)
            else:
                if author_url:
                    self.set_author(icon_url=author_url)
                else:
                    self.set_author(name=author_name)
        if thumbnail_url:
            self.set_thumbnail(url=thumbnail_url)
honest pier
#
        if author_url or author_name:
            if author_url and author_name:
strong arch
#
            if footer_url and footer_text:
                self.set_footer(text=footer_text, icon_url=footer_url)
            elif footer_text:
                self.set_footer(text=footer_text)
            elif footer_url:
                self.set_footer(con_url=footer_url)
amber raptor
strong arch
#

choices = np.concatenate([np.random.choice(np.where(temps < 2.2)[0], size=2), np.random.choice(np.where((temps > 2.2) & (temps < 2.3))[0], size=1), np.random.choice(np.where(temps > 2.3)[0], size=2)])

#

chi = [(np.mean(np.sum(i, axis=(1, 2))**2) - np.mean(np.sum(i, axis=(1, 2)))**2)/t for i, t in zip(movies, temps)]

honest pier
#

black ...

#

!pypi black

wise cargoBOT
#
Author

ลukasz Langa

Requires Python

=3.6

Summary

The uncompromising code formatter.

License

MIT

strong arch
#
a = [1, 2, ...]
b = [(1, 2), (3, 4), ...]

zip(a, zip(*b)) == [(1, 1, 2), (2, 3, 4), ...]
honest pier
#

itertools.chain ๐Ÿ˜”

whole bear
#

back again

#

i wonder if stock is worth it\

#

lint

terse needle
#

result += [~reduce(lambda x, y: x - y, [table.get(r) for r in i])+1 for i in slice_number_eval]

whole bear
#

banna rice is good

uncut meteor
#

!e
print(~4+1 )

wise cargoBOT
#

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

-4
whole bear
#

yes

uncut meteor
#

!e
x = -4

print(-x)

wise cargoBOT
#

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

4
whole bear
#

x = - 4

#
    • is +
#

yup\

#

9

#

10

#

11 pyton

#

12 change sigh

#

ya

uncut meteor
#

!doc functools.reduce

wise cargoBOT
#
functools.reduce(function, iterable[, initializer])```
Apply *function* of two arguments cumulatively to the items of *iterable*, from left to right, so as to reduce the iterable to a single value. For example, `reduce(lambda x, y: x+y, [1, 2, 3, 4, 5])` calculates `((((1+2)+3)+4)+5)`. The left argument, *x*, is the accumulated value and the right argument, *y*, is the update value from the *iterable*. If the optional *initializer* is present, it is placed before the items of the iterable in the calculation, and serves as a default when the iterable is empty. If *initializer* is not given and *iterable* contains only one item, the first item is returned.

Roughly equivalent to:... [read more](https://docs.python.org/3/library/functools.html#functools.reduce)
whole bear
#

15

#

16

#

psst

#

18

#

19

#

20

#

sorry im just trying to type

#

yes this is a bad idea

#

take while?

#

what is that

#

define a funtion

#

takes a prim (number)

#

going to return ??

#

im listening to you

#

LOL

#

use 7

uncut meteor
#

!e

from itertools import takewhile

for x in takewhile(lambda x: x < 7, [3,1,4,2,6,9,1,23,4,3]):
  print(x)
wise cargoBOT
#

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

001 | 3
002 | 1
003 | 4
004 | 2
005 | 6
terse needle
#

!docs itertools.takewhile

wise cargoBOT
#
itertools.takewhile(predicate, iterable)```
Make an iterator that returns elements from the iterable as long as the predicate is true. Roughly equivalent to:

```py
def takewhile(predicate, iterable):
    # takewhile(lambda x: x<5, [1,4,6,4,1]) --> 1 4
    for x in iterable:
        if predicate(x):
            yield x
        else:
            break
whole bear
#

that make sense

#

brb 3 secounds

terse needle
#

!e

print([1,2][0])
print(*[1,2])
wise cargoBOT
#

@terse needle :white_check_mark: Your eval job has completed with return code 0.

001 | 1
002 | 1 2
terse needle
quaint night
#

lol what

whole bear
#

i know right

quaint night
#

probably you ate soap

whole bear
#

ate soap

quaint night
#

liquid

#

we would not be born

#

at all

uncut meteor
#

Major. Hemlock

reporting for duty pepesalute

quaint night
#

yes

#

do they have different switches

#

or you just simple buy them cause you like design

daring orbit
#

Hello all

uncut meteor
#
import balding
jaunty falcon
#

@whole bear same ๐Ÿ˜„

daring orbit
jaunty falcon
#

I am in 8th as well @whole bear is correct ๐Ÿ˜„

#

@whole bear Where did everyone go...

daring orbit
#

i miss an area for hardware ๐Ÿ–ฅ๏ธ โŒจ๏ธ ๐Ÿ“Ÿ ๐Ÿ–ฑ๏ธ

jaunty falcon
#

@rugged root Everyone vanished....

#

true ๐Ÿ˜„

rugged root
#

@uncut meteor @terse needle @vivid palm Come hither

jaunty falcon
#

@rugged root That's why I don't speak I'm 14 I don't wanna be the annoying 14 yr old ๐Ÿ˜„

#

Ty ๐Ÿ˜„

vivid palm
#

^ do you say monkaS outloud?

daring orbit
#

Me 43

jaunty falcon
#

@vivid palm I fake needing to get my laptop charger... I don't use a laptop

#

@dense ibex YES I REMEMBER THAT

#

@rugged root Call to mommy o-o

uncut meteor
jaunty falcon
#

@rugged root got very nice hair

vivid palm
candid venture
#

@rugged root

#

code help 1

jaunty falcon
#

@vivid palm Online

terse needle
jaunty falcon
#

@dense ibex ok quick question are you doing terrible in school as well?

terse needle
jaunty falcon
#

@vivid palm I got one of my perv gym teachers in trouble they were making kids do squats on camera (record it and submit it) shit was weird asfff

#

I got a 10% first quarter just participation grade ๐Ÿ˜„

terse needle
vivid palm
#

@jaunty falcon ??????????????????????

terse needle
jaunty falcon
terse needle
jaunty falcon
#

The guy also happened to be the girls volley ball coach...

vivid palm
#

was he fired?

jaunty falcon
#

Is so dumb how hard it is to fire a teacher

#

The reason they didn't was "They couldn't prove anything" or something along those lines

vivid palm
#

and the recorded video footage and asssignment intsructions weren't enough?

jaunty falcon
#

@rugged root What was you address I want coding lessons...

jaunty falcon
vivid palm
jaunty falcon
#

@vivid palm Do you live in the US?

vivid palm
#

yes

jaunty falcon
#

O I guess its not as common as I thought in the US

#

alright ill stop sorry

vivid palm
jaunty falcon
#

@rugged root can we get a chart command to autogenerate fake charts?

#

...

#

florida?

uncut meteor
#

chart?

jaunty falcon
#

Restart pycharm if you havent yet

rugged root
#

See you guys later

jaunty falcon
#

Wth?

#

I've never heard of this?

#

@uncut meteor did you develop pycharm \s

#

this man knows all the tricks

whole bear
#

whats the difference between git and github

#

no

#

ahh i see aight

jaunty falcon
#

@olive hedge how did you do it?

calm swallow
#

Hey @uncut meteor! I'm back again don't know if you remember me. Is there any way you could help me with a script I have been struggling with? I'm pretty stupid but I got to this last part of what I need to do something really cool but it just isn't working

uncut meteor
#

what is the issue?

#

i might be able to help

jaunty falcon
#

I got issues with using my desktop

#

I have atleast 2 folders where I just dragged everything in my desktop into the folder

calm swallow
#

First I'm trying to get my program to read a screen and the image is a variable (which I have been struggling with...) and the second is I think just a really dumb mistake on the loop I created because I still have limited knowledge..

#
import glob
import cv2
import pyautogui


for i in range(1,10):
    templates = [cv2.imread(file) for file in glob.glob("Documents/Enroute/ImageDetection/"+ i + ".png")]
    d=pyautogui.locateCenterOnScreen( i + ".png", confidence=.9)
    if d is True:
        i = str() #I was told changing this to a string would help but it is still having issues...
        import  var(i) + ".py"
            

        break ```
jaunty falcon
#

@olive hedge I know your locally hosted something's login details ima hack you now

calm swallow
#

Please I am basically a 3rd grader with crayons when it comes to coding >.<

#

So basically what I want is for it to read the name which would be a # and import a script with a file named with the same #

#

Sorry a number

#

Basically I'm trying to get it to look at the screen match the image if there and then report with the next script if possible

jaunty falcon
#

@olive hedge What are you coding?

calm swallow
#

Does that make sense?

#

I'm new and I've been basically bashing my head against the wall till 2am trying to figure this out. Kinda mind melted lol

#

I'm not used to all of it lol

uncut meteor
#
import glob
import cv2
import pyautogui

def one():
  print("One")

def two():
  print("Two")

# Basically a switch statement
functionality = {
  1: one,
  2: two,
}


for i in range(1, 3):
  img = cv2.imread(f"Documents/Enroute/ImageDetection/{i}.png")
  if pyautogui.locateCenterOnScreen(image, confidence=0.9):
    functionality[i]

calm swallow
#

You are a genius @uncut meteor I appreciate you so much my guy

uncut meteor
#

no

#

but np

calm swallow
#

Do you have any sort of recommendations to better understand cv2/pyautogui?

uncut meteor
#

keep playing

calm swallow
#

Fair. Thank you again this just finished exactly what I need

jaunty falcon
#

@uncut meteor The multi tab terminal thing?

#

I hate it

#

I dunno

#

I don't have the effort to change to it

uncut meteor
#

fairs

stuck furnace
#

Hey ๐Ÿ˜„

#

Whachu streaming?

zealous wave
#
fields: Optional[list[dict]] = None
jaunty falcon
#

@zealous wave I mean that isn't bad compared to what I've done before

honest pier
#

what's happening?

amber raptor
#

Fisher coding

#

Well was

honest pier
#

oh

#

now he is gone

amber raptor
#

Horray JS SPAs....

umbral rivet
#

cringe

proud tangle
#

Eyo

honest pier
#

@proud tangle ๐Ÿ‘€

proud tangle
#

This is me updating code I wrote when I was 13

#

to work on python3, from python 2.3

fluid hornet
#

is py2 deprecated now ๐Ÿ‘€ ?

tidal salmon
honest pier
tidal salmon
proud tangle
#

ow my ears it went boom

honest pier
#

fuck python 2

fluid hornet
proud tangle
#

It had my name in the file

#

fixing that

#

lmao

#

That's unfortunately how it is

#

this screen si 2k and I can only stream 1080

honest pier
#

๐Ÿ˜”

proud tangle
#

Pil.image.fromstring removed in 8.0, deprecated in 20

#

I wrote this for 1.1.4 lmao

honest pier
#

bruh 2.3 is literally older than me

tidal salmon
honest pier
dire oriole
honest pier
#

i-

dire oriole
#

you-

proud tangle
#

ah fuck

#

map() in py2 wasnt a generator

honest pier
#

xrange ๐Ÿ˜”

proud tangle
#

lmao

#

I ran into this before

#

and I didnt assign after doing int

#

def scale_image(image, x_scale, y_scale=None):
    if y_scale is None:
        y_scale = x_scale
    (x_size, y_size) = image.get_size()
    x_size = x_size * x_scale
    y_size = y_size * y_scale
    int(y_scale)
    int(x_scale)
    return pygame.transform.scale(image, (x_size, y_size))
honest pier
#

๐Ÿ˜”

somber heath
#

Stylidium (also known as triggerplants or trigger plants) is a genus of dicotyledonous plants that belong to the family Stylidiaceae. The genus name Stylidium is derived from the Greek ฯƒฯ„ฯฮปฮฟฯ‚ or stylos (column or pillar), which refers to the distinctive reproductive structure that its flowers possess. Pollination is achieved through the use of t...

proud tangle
#

my poor ears

#

I dont know what this code is supposed to do

#
    c = 0
    while True:
        for event in pygame.event.get(pygame.KEYDOWN):
            if event.key == K_RETURN:
                return ''.join(txt)
            elif event.key == K_BACKSPACE:
                try:
                    del txt[len(txt)-1]
                except:
                    pass
            elif event.key == K_ESCAPE:
                sys.exit()
            else:
                txt.append(event.unicode)
        a = font.render(''.join(txt), 1, (255,255,255), (0,0,0))
        e = c
        c = a.get_rect()
        if e > c:
            c = e
#

maybe some kind of centering?

#

help appreciated lol

#

right

#
                txt.append(event.unicode)
        a = font.render(''.join(txt), True, (255,255,255), (0,0,0))
        # e holds the max width this text has ever been so we can paint over it for backspace logic
        # This was originally written in python 2.3 where this logic actually worked
        old_rect = erase_rect
        erase_rect = a.get_rect()
        if old_rect > erase_rect:
            erase_rect = old_rect
        d = pygame.Surface((erase_rect.width, erase_rect.height)).convert()
#

figured it out ThumbsUp

#

current crash is because this is expecting an old version of pickle

#

and its writing the wrong protocol to the file

#

this code is fucky

#
    def quit(self):
        #highscoretxtbar = Highscoretxtbar(self.hsname, self)
        self.hsname = gettxt(games.screen._display)
        highscore = self.astrocrash.score.value
        print('Getting High Score...')
        try:
            hfile = open('highscores.scores', 'r')
            adata = pickle.load(hfile)
            hfile.close()
        except:
            adata = []
        scoreright = {}
        scoreright['score'] = str(highscore) + ':' + '\n'
        scoreright['time'] = dtime + "\n"
        scoreright['person'] = self.hsname + '\n'
        if Ship.lives <= 0:
            scoreright['lives'] = str(Ship.lives) + "\n"
        else:
            scoreright['lives'] = '0\n'
        scoreright['world'] = str(self.astrocrash.world) + '\n'
        scoreright['level'] = str(self.astrocrash.level) + '\n'
        highfile = open('highscores.scores', 'w')
        highfile.write('')
        highfile.close()
        highfile = open('highscores.scores', 'a')
        adata.append(scoreright)
        pickle.dump(adata, highfile, 0) #write to readable NOT BINARY, or you will get an EOFError
        highfile.close()
#

interesting, so I did have a high scores option here

#

why did I remove it

#

ok, so the aim targetting is also broken

#

whihc is no surprise because getting 13/14yro me to do trig was hard

#

Ok so

#

important detail here

#

this code is told to run at 60fps

#

but it never actually did so at the tijme,. it did like 15

#

so the velocity leaps are all wrong

#

and I turned them down buit apppppparently not hte gravity

#

so gonna fix that

#

mmk, so the black holes lever crashes

#

Oh fun

#

so, the deal here, is that apparently somethings wrong with my sizes

whole bear
#

wat type of game is it @proud tangle

proud tangle
#

asteroids

#

old arcade game style

whole bear
#

oh nice

proud tangle
#

Trying to figure out why this is tyring to scale an image to a width of zero

whole bear
#

well hope u figure it

proud tangle
#

I seee

#

This code is lucky to have worked

#

it basically tries to scale the sprite down to tiny but does not check if it would hit zero right

#

so it tries to scale to zero and goes boom

#

current issue: explosions collide with other explosions

#

they shouldnt

#

ok, I think I fixed the explosion issue, mostly

#

next issue is the score screen locks up sometimes, which is very confusing

#

Ok, well, I threw in some debug code for that, fixed a crash related to reaching part of the game that was never finished

#

and now I've realized the source of some of this stutter, its loadingn the explosion images off disk each time one goes off

#

time to fix that

#

and bug found: if I only filter for keydown events if another event happens itll lock me out, I think

pine ledge
#

Hi

#

Anyone would like to talk

#

I want to talk

umbral rivet
#

cringe

silk heart
#

am good

#

what u mean

runic forum
#

morning everyone

hallow warren
#

Hi!

runic forum
#

man... only a few people are talking here rn ๐Ÿ˜…

somber heath
#

This room is here as an adjunct to the matching voice chat. If they're not in that, then there's usually less point, vs, say, the ot channels.

spiral jay
#

gm

#

u should really go on Ted Talk Opal

#

no

#

havent touched python in a while

#

making basic programs xd

#

yeah

#

xd

wind jewel
leaden arch
#

Hi @somber heath

runic forum
#

someone's voice is echoing

#

ok lemme join back...

wise glade
#

brb after a restart

#

and dinner ๐Ÿ™‚

gusty hatch
#
username, password = data.split("-", 1)
#

username-password

#

king-pass123

leaden arch
#

Okay imma listen to the vc as a podcast

rugged root
#

Not a terrible idea

leaden arch
#

but suddenly got something to work on

gusty hatch
#
            for line in file.readlines():
                if username in line and password in line:
                    print("LOGGED IN")
                    client.send("ACCESS".encode())
                    threading.Thread(target=handle, args=(client,)).start()
                else:
                    print("LOGIN DENIED")
                    client.close()
                    break
somber heath
#
username_from_file, password_from_file = line.strip().split('-', 1)
if username == username_from_file and password == password_from_file:```
gusty hatch
#
        if "LOGIN" in data:
            print("ATTEMPT TO LOGIN")
            info = client.recv(2048).decode()
            username, password = info.split("-", 1)
            for line in file.readlines():
                if username in line and password in line:
                    print("LOGGED IN")
                    client.send("ACCESS".encode())
                    threading.Thread(target=handle, args=(client,)).start()
                else:
                    print("LOGIN DENIED")
                    client.close()
                    break
runic forum
#

@rugged root for a one second you sounded like a goofy ๐Ÿ˜‘

#

when you said "wHo wAnts tO pArtY?"

fiery juniper
#

Hemlock what's with your mic?

#

it's kinda weird, before it was better

#

I know that a week ago it sounded better

#

Now it's better

#

@somber heath I'm confused, I'm afraid to ask

#

broo

#

the magic word

zealous wave
#

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

gusty hatch
#
        if "LOGIN" in data:
            print("ATTEMPT TO LOGIN")
            file = open("users.txt", "r")
            info = client.recv(2048).decode()
            username, password = info.split("-", 1)
            for line in file.readlines():
                username_from_file, password_from_file = line.strip().split('-', 1)
                print("username: " + username + "\n username from file: " + username_from_file)
                print("password: " + password + "\n password from file: " + password_from_file)
                if username == username_from_file and password == password_from_file:
                    print("LOGGED IN")
                    client.send("ACCESS".encode())
                    threading.Thread(target=handle, args=(client,)).start()
                else:
                    print("LOGIN DENIED")
                    client.close()
                    break
swift valley
#

Evenin'

#

So the 100% CPU usage fixed itself

zealous wave
#
def getembeds(_embed : discord.Embed, embeds: Union[list[dict], dict]):
    for embed in embeds:
        try:
            name, value, inline = embed.values()

            return _embed.add_field(name=name, value=value, inline=inline)
        except ValueError:
            name, value = embed.values()

            return _embed.add_field(name=name, value=value)
``` why isnt the third embed being picked up? https://paste.pythondiscord.com/veseboquze.py
swift valley
#

Probably has something to do with the cache

#

Same

somber heath
#
from math import sin, cos, radians, pi
from numpy import linspace, array
import turtle
turtle.mode('logo')
turtle.speed(0)
turtle.hideturtle()
turtle.tracer(0)
turtle.delay(0)
turtle.width(5)

def uvec(d):
    r = radians(d)
    return array([sin(r), cos(r)])

funcs = [(lambda t: sin(t)) for s in range(20)]

adj = 0
while True:
    for t in linspace(-pi*2, pi*2, 300, endpoint=False):
        turtle.clear()

        for h in linspace(0,360,3, endpoint=False):
            turtle.penup()
            turtle.goto(0,0)
            turtle.setheading(h+adj)
            adj -= sin(t)

            turtle.pendown()
            for func, width in zip(funcs, linspace(10,2,len(funcs), endpoint=True)):
                turtle.width(width)
                turtle.right(func(t)*10)
                turtle.forward(10)
        turtle.update()```
#

Tentacles. ๐Ÿ˜

fiery juniper
#

@zealous wave I'm sorry to bother you, but you seem experienced with discord.py
Do you know to check if a user has the permissions to bypass voice channel locks? (can connect even if it shows he can't in the channel permissions)

zealous wave
#

well, they cant join the vc if they dont have permission to lol

rugged root
#

Yeah, 3.9.2

leaden arch
#

Hi

fiery juniper
#

I ran the code and it crushed :'(

leaden arch
#

Not voice verified, not 50 msgs yet

swift valley
#

I'm back

fiery juniper
#

Brot

swift valley
#

These ambiance vids on YouTube are a really nice compromise vs podcasts

#

Funnily enough, more stimuli helps me focus

#

So like, I can have the TV on the background, then music on YouTube, while still programming properly

late arrow
vivid palm
#

GMGM

fiery juniper
#

Gutten Morgen - German

#

Dobreya Utra - Russian

#

Boker Tov - Hebrew

late arrow
swift valley
vivid compass
swift valley
fiery juniper
#

also

#

Sabach Alcher - Arabic

swift valley
#

4 GBs

vivid compass
#

oof

fiery juniper
#

I have 16 GB of RAM

vivid compass
#

damn

#

i have 6 gb

fiery juniper
#

and like 400 GB of computer storage

#

for me it crushes

vivid compass
#

i have a dell laptop

fiery juniper
#

I don't have a laptop

vivid compass
fiery juniper
#

lol

somber heath
#

I'll recopy it over verbatim from the functioning copy. Hold on.

fiery juniper
wise glade
#

which key you use for push-to-talk, if you use push to talk?

rugged root
#

Left CTRL

fiery juniper
wise glade
#

yup, nice Left Ctrl

wise glade
fiery juniper
wise glade
#

left ctrl is fine, doesn't mess with browser, editor etc

swift valley
#

Why do I have to fight dependency resolution lemon_pensive

fiery juniper
swift valley
#

JS tooling is pain

vivid compass
swift valley
#

Deprecated JS tooling is pain

wise glade
#

a question for job people
if your company has no bonds, can you leave whenever you like or does it require two-weeks notice or something like that?

fiery juniper
#

A fish? Never heard of it

somber heath
#

@fiery juniper @glacial grail Reedited from known functioning.

late arrow
#

ooh nice

fiery juniper
#

I love the optical illusion

#

if you look at the middle, it moves really fast

#

if you look at the edges, it slows down

somber heath
#

It is rotating.

fiery juniper
somber heath
#

But yes. It has a nice movement to it.

vivid compass
#

this is crazy

late arrow
#

lol nice

#

btw, out of context question: any opinions on tkinter?

somber heath
#

What are you running it with?

swift valley
#

why

fiery juniper
late arrow
#

and the file is pretty big when you use a lot of libraries

somber heath
#

...huh. It shouldn't do that.

swift valley
fiery juniper
#

When you import a file, what really happens is just the file is ran, and in it it defines the functions, right?

somber heath
#

I'm running it on 3.8 and IDLE. 32 bit and on a potato.

fiery juniper
#

I'm talking about import <module>

somber heath
#

It shouldn't matter.

fiery juniper
#

I'm ok

somber heath
#

Run the py directly from terminal?

wise cargoBOT
#

Hey @glacial grail!

It looks like you tried to attach file type(s) that we do not allow (.exe). We currently allow the following file types: .3gp, .3g2, .avi, .bmp, .gif, .h264, .jpg, .jpeg, .mov, .mp4, .mpeg, .mpg, .png, .tiff, .wmv, .psd, .ai, .aep, .xcf, .mp3, .wav, .ogg, .webm, .webp, .flac, .afdesign, .m4a, .csv.

Feel free to ask in #community-meta if you think this is a mistake.

fiery juniper
#

btw, when you import a file it just runs it

frozen oasis
#

this actually exists dayum

rugged root
#

Discord as Dicsord

fiery juniper
#

Nice

fiery juniper
#

oh wait

#

what

#

now it doesn't show anything

#

I'm confused

late arrow
#

still shows for me

fiery juniper
#

so once it worked, and after that it didn't

late arrow
#

btw lichter is lights in german, he basically named his website lights.io .-.

fiery juniper
#

Is it github?

rugged root
#

That's a good question

frozen oasis
#

i wonder

runic forum
#

๐Ÿค”

late arrow
rugged root
fiery juniper
#

How to grab sites?

late arrow
#

i meant like buying the domain

#

/ renting

fiery juniper
#

it's the internet, who created it?

late arrow
#

aliens

fiery juniper
#

I agree

somber heath
#

Woo!

fiery juniper
#

I really love/hate the fact that you worked really hard on something and then you found out that there is already a function for that

#

You hate that you only found now

rugged root
#

But now you know how to do it

#

It's still important knowledge

fiery juniper
#

of course

tall latch
#

are you guys talking

rugged root
#

Can you not hear us?

tall latch
#

i cant hear anything

somber heath
#

@rugged root Kali ma! Kali ma!

wise glade
#

Hemlock, is there a range in C#?

tall latch
rugged root
#

We're for sure talking

#

I think so, Acc

#

Let me double check

fiery juniper
#

I need to leave, cya

late arrow
late arrow
somber heath
#

Curious.

runic forum
#

bro i cant hear none!!

tall latch
rugged root
#

Hold on...

runic forum
swift valley
#

Much better actually

#

I was cutting off earlier as well

vivid palm
#

@whole bear USA

swift valley
#

Ye

wise glade
#

Hemlock ```csharp
using System.Linq;
foreach (var v in Enumerable.Range(0,100)) // Range
Write(v)

much better
swift valley
#

LINQ is inspired by FP btw

vivid palm
#

US east MiyanoYay

rugged root
#

sdafsadfsdafasdfsdfsdw3ei7';uy

swift valley
#

Yeah nah I hear nothing

#

Pip Installs Packages

#

It's recursive iirc

tall latch
#

npx create-react-app my-app
cd my-app
npm start

vivid palm
#

@whole bear no DMs pls

swift valley
#

God I love Emacs

#

Git integration is a killer app

whole bear
vivid palm
#

yes i learned that mina is a persian name recently. it's also a japanese, korean, and hindi name too

swift valley
#

I swear if this is a rickroll @whole rover

swift valley
#

Hasn't loaded for me yet lol

hoary inlet
#

lol

whole bear
vivid palm
#

yes i learned that last week too lol

swift valley
#

There can be a lot of overlap between phonetic languages

wise glade
#

hey, I can't stop it ๐Ÿ˜‚ , joe's video is a forced to watch

whole bear
swift valley
#

Joe's back

#

Pet the cat

wise glade
#

I love those videos when they drop cats on their back, and they swish turn their bodies to land on their legs

#

oh my god, I need pen-paper for this SLL

#

C# ๐Ÿ˜ฉ

hoary inlet
#

the only reason, I don't want one

swift valley
#

ngl I'm feeling like learning C#

#

Or F# at least

amber raptor
#

Itโ€™s like Java but not as awful

tall latch
#

@whole bear you know anything about my name: Fabin

hoary inlet
#

what's the difference b/w c# and c++ ??

swift valley
#

I'm too lazy to set up tooling though ducky_dave

tall latch
tall latch
whole bear
runic forum
#

@whole rover why are you streaming your video but it doesn't seem to show anything?

tall latch
#

well i dont know anything either about my name

pale dagger
#

Nice home @whole rover

whole rover
#

Thanks

whole bear
whole rover
#

I'm gone now anyway

tall latch
whole bear
wise glade
#

what's the pastebin link?

tall latch
#

i guess

tall latch
wise glade
tall latch
#

well its Fabin

whole bear
tall latch
#

ok

#

what is is

whole bear
tall latch
tall latch
whole bear
rugged root
#

English only, please

#

Thank you

whole bear
hoary inlet
#

12 tabs

wise glade
#

my new internet
goes up to 140
but dad's using some bandwidth rn

hoary inlet
#

google has aced the UI

wise glade
#

I use bing ๐Ÿ˜ž

#

its default with Edge

#

didn't bother changing

hoary inlet
#

oh yeah, got to fight the big tech

wise glade
#

I don't like that popping message from google.com "try using chrome"

#

fuc*** annoying

hoary inlet
#

I need some help on this, one site opens up automatically everyday at the same time

#

I have no idea why or how ?

vivid palm
#

my friend at msft says they can't use google search ๐Ÿ˜†

tiny socket
hoary inlet
amber raptor
hoary inlet
#

awfully quiet in here

#

sockit module

swift valley
#

!pypi fuckit

wise cargoBOT
#
Author

AJ Alt

Summary

The Python Error Steamroller

License

WTFPL

swift valley
wise glade
#

in C#, default constructors have to be public?
Hemlock, Rabbit?

swift valley
#

Also the License

#

WTFPL

tiny socket
wise glade
#

who?

amber raptor
wise glade
#

I mean, I can't initialise my class

#

can't create class instance

amber raptor
#

C# has Protection Levels

wise glade
#

it says 'LinkedList.LinkedList()' is inaccessible due to its protection level

#

Namespace.Constructor โ˜๏ธ

amber raptor
#

Unlike Python which exposes everything, in C#, you must explicitly say this should be exposed

wise glade
#

eh.. fu** it, I'm gonna do Algos
not data-structs tonight

hoary inlet
wise glade
#

brb, gonna take a short break

amber raptor
tall latch
#

is there a edge web driver

#

for selenium

amber raptor
#

Pretty sure C# PEP8 equivlent says everything should be declared with protection level

hoary inlet
#

that's dark

tall latch
#

@amber raptor why dont you have helper role

amber raptor
tiny socket
rugged root
#

Interesting

exotic coral
hoary inlet
#

totally out of context, but damn.

somber heath
#

That's a lot of junk in the trunk.

wise glade
#

you guys heard of Cognizant?

amber raptor
somber heath
tall latch
tiny socket
runic forum
#

really?

tiny socket
exotic coral
runic forum
#

if he had glasses...

swift valley
#

What the hell

rocky kiln
swift valley
tiny socket
swift valley
vivid palm
#

lol

swift valley
#

The JS module system is ergh

#

Well, node/npm's at least

#

Yeah I migrated my app to yarn

#

Just recently too

wise glade
#

I heard something on youtube about Next.js

rocky kiln
#

nuxt.js not next

swift valley
#

I'll never touch bare CSS

rocky kiln
#

scss goes brr

wise glade
swift valley
#

Tailwind is nice

#

Tailwind is flexible

hoary inlet
#

anyone here can explain like how all the programming languages are interconnected, like html and css are front end but how do swift or a couple of other languages like kotlin, scala do

#

like grouped by oop, what else ??

paper tendon
#

less honestly no I used some scss

swift valley
#

I'm more of a languages person than a web dev guy so I can't be bothered to learn CSS

#

Yeah but like, I'm already too preoccupied with FP haha

tall latch
#

this done nothing for a lot of mins

swift valley
#

I am, yeah

paper tendon
#

You dont need that much a Frontend. but honestly I think that GPT3 things and similar stuff will move Frotend in only UI. So if you care about UI/UX then yes learn all that if backend and functonality better learn python java kotlin.

swift valley
#

Yeah no I only really know how to center divs and do flexbox but I practically have zero UX experience

tall latch
rugged root
#

No, just wishing that it didn't

swift valley
#

Back end is, well, tedious. But maybe that's just a consequence of me using a tedious library

wise glade
paper tendon
hoary inlet
#

exactly explain that statement mr.hemlock

wise glade
#

is Kotlin like Java, in syntax?
verbose,

rugged root
#

What the Kotlin v Python thing?

#

No it's not, Acc

#

It's much cleaner

hoary inlet
swift valley
#

@hoary inlet It's not that languages are interconnected with each other, it's just that they can have a symbiotic relationship e.g. the trio of HTML/CSS/JS

#

Maybe something like indirect relationships e.g. JS calling into a Python back end through HTTP requests, which can be pre-processed through a C program like NGINX

hoary inlet
tall latch
#

service_args = ['--verbose']
driver = Edge(service_args = service_args)

#

so this is where verbose got his name

swift valley
#

Object-orientedness and the like are paradigms, they're styles or abstractions for solving similar problems

umbral rivet
#

nag nag nag

swift valley
#

Rust assumes that you trust the compiler enough

rugged root
#

Classy

paper tendon
#

C- C++ - Java --- from the OOP side they are origins to most languages in that order exactly. Functional side LISP - ML - Haskell. And then independent like Prolog.

rugged root
jagged thorn
swift valley
#

Which honestly you should, because it's almost right all the time

wise glade
#

is F# good?

#

its functional right?

jagged thorn
swift valley
#

F# is niche

paper tendon
wise glade
umbral rivet
#

browndj

jagged thorn
#

functional => OCAML !

paper tendon
#

COBOL ๐Ÿ˜„

jagged thorn
#

only true one

amber raptor
swift valley
#

I believe there's quite a few FP researchers working at Microsoft Research

jagged thorn
paper tendon
#

vlang anyone?

swift valley
hoary inlet
#

I have heard of clang

wise glade
#

ok, I'm gonna call it a day, have a meeting early in mor tommrow
night everyone or have a good day (whichever)

swift valley
#

It's Go, but Rust

swift valley
paper tendon
#

its rusty

umbral rivet
#

browndj @rugged root

fiery juniper
#

Who's talking? Rabbit or scoop?

umbral rivet
#

me

rugged root
#

!voice @fathom meteor 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
#

@umbral rivet Is there a reason you're attempting to waste my time?

umbral rivet
#

ur mad

jagged thorn
#

kotlin is for android only right ?

swift valley
#

Are generics absolutely necessary nowadays? For higher-level, more abstracted languages anyways.

paper tendon
swift valley
rugged root
#

True

umbral rivet
#

great answer

fathom meteor
#

thx Mr.Hemlcok

rugged root
#

Yeppers

umbral rivet
#

oh wait its bc u have no answer

fiery juniper
#

SoulGem what?

rugged root
#

He's attempting to hassle me

fiery juniper
#

oh

#

lol

umbral rivet
#

and hows that

fiery juniper
#

good luck I guess lmFao

umbral rivet
#

still never gave a answer

jagged thorn
#

it's called MES

umbral rivet
#

what a clown

#

mans a admin in a discord server n thinks hes better than everyone now

rugged root
#

Love that gif

umbral rivet
#

haha he trying to ignore me bc im right

#

what a little bitch

vivid palm
#

lol we are all trying to ignore you

swift valley
#

!ban 813281024922484767 If you're only here to annoy staff members then I suppose you don't really have a place here in the server

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied ban to @umbral rivet permanently.

fiery juniper
#

rip

#

thx :)

rugged root
#

Cheers

hoary inlet
rugged root
#

In fairness I encouraged him to do it

swift valley
#

I'm not either lol

hoary inlet
#

yeah, no completely agree with the decision

fiery juniper
#

Hemlock is a god, you can't hassle him

rugged root
#

Hardly

swift valley
#

But yes, trolls do stupid shit when they don't get the attention that they want

rugged root
#

I'm just trying to teach and keep people happy

fiery juniper
#

GOD this

rugged root
#

Nip it in the bud

fiery juniper
#

I guess pure is a god too

#

Hemlock that's dark ;-;

hoary inlet
#

yeah, he gets emotional when discussing something

vivid palm
#

loll

swift valley
#

*coughs*

fiery juniper
#

lol

#

dope

#

coolest

swift valley
#

Not a fan until my SO dragged me into it

jagged thorn
#

dope like cocain ?

fiery juniper
#

@rugged root kpop confirmed??

#

do Australian accent

swift valley
#

I just like anything not mainstream

jagged thorn
#

same shit ? no lol

fiery juniper
#

:'(

#

mate

#

fairy bread

rocky kiln
#

@swift valley is that momo like i know its twice but im not sure

hoary inlet
#

it is

#

worldwide

jagged thorn
#

k-pop is for teens

swift valley
#

Nah I was talking about the music that I do listen to on a regular basis

fiery juniper
#

nutterbutter

#

lol

swift valley
#

@rocky kiln ye

vivid palm
#

hmm, never heard the term outcome before

#

in finance

#

but it makes sense what

jagged thorn
#

"all that jazz" that's a dope phrasing

hoary inlet
#

razmatazz

swift valley
#

I need to find a breakcore playlist

candid venture
#

@fiery juniper dms

fiery juniper
#

lol

swift valley
#

Huh, we have that on allow list?

#

I could check

fiery juniper
#

I once was there actually

candid venture
#

we are from there

jagged thorn
#

not at all

#

you can live whatever you want :

swift valley
candid venture
#
docker run --name some-mysql -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mysql:tag```
#

docker run --name some-mysql -d mysql:tag

honest pier
#

hmmm

tall latch
#

hey can anyone help me

rugged root
#

With?

tall latch
#

i cant install packages in sublime

rugged root
#

Is it giving you errors?

tall latch
#

no i cant even see that in command palette

rugged root
#

Oh you have to install it

runic forum
#

can i post youtube links here?

rugged root
#

You can

jagged thorn
#

radish ?

runic forum
#

okay!

rugged root
#

So long as it's not something terrible

rugged root
tall latch
hoary inlet
fiery juniper
#

AGREED

rocky kiln
hoary inlet
#

that's deep

jagged thorn
#

database is for noobs, we use excel !

severe pulsar
#

he speaks the truth

severe pulsar
jagged thorn
#

sometime access

rugged root
#

!voice @crystal yacht If you're wondering why you can't talk, this should help

wise cargoBOT
#

Voice verification

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

honest pier
#

@swift valley ๐Ÿ‘‹

rocky kiln
candid venture
#

Your email address does not belong to any university that we know. You can apply with another method (see tabs above) or add your school to JetBrains' list.

rugged root
#

Are you in Uni?

#

I mean the Community versions are still good

#

Most of the pro stuff you don't need

candid venture
fiery juniper
#

@candid venture look at dms when you can pls

hoary inlet
#

clion has 30 day trial only

tall latch
#

@rugged root i cant hear

rugged root
#

You might have to restart your client

#

I think some other people had that issue a bit ago

tall latch
#

what does that mean

rugged root
#

Close Discord and then reopen it

jagged thorn
#

no they did

#

flash was on End of life since few years now

rugged root
#

Can you hear us?

tall latch
amber raptor
rugged root
#

Check your settings to make sure it's looking at the right devices

#

And if that doesn't work, unplug and replug your headset/microphone thingy. And if you can't do that, I have no idea. Maybe restart your computer?

#

We can hear you

hoary inlet
#

once they buy, they can access, just have to figure out a way they can't share the code further

candid venture
hoary inlet
#

I can see people picking up and then leaving in the middle and someone else picks up

#

just how long the game is at bleeding edge of tech

candid venture
#

@rugged root i need a favor

rugged root
#

Not sure I like where this is going

candid venture
#

my dumbass downloaded the macos version and they blocked it

#

Wait, did you say โ€œFREE?โ€

#

Yes, I did! RedisInsight is 100% complimentary! We want every Redis user to be able to take advantage of RedisInsight. We hope it will make Redis easier to use, with better visibility of your data. Eventually, youโ€™ll be able to use RedisInsight as a single place for both GUI- and CLI-based interactions with your Redis database.

jagged thorn
#

recurrent revenue is way profitable then selling a single one time PLC

rocky kiln
tall latch
#

im gonna bring this up again

#

i cant install package control in sublime

#

its not showing up

hoary inlet
rugged root
#

Uninstall and reinstall Sublime and then try to click the Tools > Install Command Pallette thing again

runic forum
tall latch
#

i mean sublime package control

jagged thorn
#

radish is not a DB

tall latch
#

it didn't change anything

rugged root
#

Maybe run Sublime as admin?

hoary inlet
tall latch
tall latch
jagged thorn
swift valley
unborn storm
#

i never had any such problems with sublime...
i also never installed it on windows (I guess you are on windows)

#

there are cracks for sublime...

#

i know it is forbidden to put them here

#

the problem is not tu use "anything you want"

tall latch
somber heath
#

@rugged root "The only thing you have to deal with is the fact that it bugs you." As well as the gnawing, soul-crushing guilt.

unborn storm
#

using vim is important because it makes the communication with the machine soooo fluid

#

so you stop thinking while editing

#

like one month ?

swift valley
#

I just like the keybindings

#

Also terminal editors

unborn storm
#

i understand you can say "vim is long to learn"

#

but the time you spend, you get it back

#

well

#

debugging exists in terminal

#

i simply use pudb

swift valley
#

You could always sprinkle prints here and there

unborn storm
#

the difference is that vim is light

swift valley
#

The superior debugging method

#

I've never actually touched a debugger before

rocky kiln
#

tho spending time to learn how a debugger works pays tho

unborn storm
#

tell me something that st has and that vim does not

swift valley
#

Ye, I'm just lazy

rugged root
#

@tall latch Press CTRL + Shift + P. That should open up the palette. From there you should type in "Install Package Control"

swift valley
unborn storm
#

for plugins, vimscript is quite easy and better than python for plugins (for me at least)

hoary inlet
swift valley
#

coc.nvim, LanguageClient-neovim, Neovim's native LSP

tall latch
unborn storm
#

oh yeay i include nvim in vim ^^

unborn storm
rugged root
unborn storm
#

but vim is the only of the kind (with nvim)

swift valley
#

Mornin' @faint ermine

faint ermine
#

evenin' pure

rugged root
hoary inlet
unborn storm
#

i used sublime for a long time, but now, i use vim for every project

rugged root
#

Fair

swift valley
#

Howdy @olive hedge

#

Free day today so I'm up late

unborn storm
#

the point with vim is that :

  1. you stop using your mouse (and who seriously thinks that mouse is as quick as keyboard)
  2. you divide by at least 3 the number of keys you press in order to do somthing
swift valley
#

Hanging out at VC lol

rugged root
unborn storm
#

yes sorry

swift valley
#

I used to use VSC but code navigation with the mouse was getting cumbersome; and I'm too lazy to learn the keybinds

unborn storm
#

well, i don't understand : what are you doing with your mouse ?

swift valley
#

Jumping between files, but I grew out of that

unborn storm
#

for documentation : alt-tab to your browser !

swift valley
#

I use Emacs nowadays and it works well

unborn storm
#

my browser is qutebrowser

hoary inlet
unborn storm
#

this browser is qutebrowser

#

what ?

#

vim has bugs ?

#

well, i anyway use a trackpad XD

#

i use an external trackpad

swift valley
#

huh

#

wat

unborn storm
#

cause it is just for my pinkie

#

so i can drive my mouse without moving my hands from my keyboard

#

or only of 3cm

pine ledge
#

How to get voice verified

unborn storm
#

well, if you use vim a lot, it gets one bottleneck to move your fingers

#

especially from keyboard to mouse

rugged root
#

!voice @pine ledge That'll 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.

pine ledge
#

How many MSG's I need to send in channel

#

It's 50

whole bear
#

I see

unborn storm
#

your sublime problem is very strange

whole bear
#

Reminds me of sublime text ๐Ÿ˜ญ

hoary inlet
#

nothing works in sublime without plugins

whole bear
#

fax

hoary inlet
#

atoms has everything pre-installed

unborn storm
#

atom is kind of a mix of sublime and VSC but with an awsome git integration

#

well the VSC github integration is also cool yes

#

and sublime also quite cool

hoary inlet
#

vsc is the best I have found

swift valley
#

Crispy compression

whole bear
#

How did you guys learn py?

#

we didnt

#

sorry, actually i didnt

hoary inlet
#

that's a great course

unborn storm
#

the main problem is that, on my computer, anything more heavy than atom is lagging

pine ledge
#

My i3 processor is very slow

unborn storm
#

so i sometimes use atom for html because i can get live preview

#

but i still prefer vim, mainly for the window and tab navigation

whole bear
#

Should I use VISUAL studio for machine learning or pycharm

#

either one

#

which one is better

hoary inlet
#

vsc is a text editor

whole bear
#

I see

unborn storm
#

vsc is quite cool

#

but too long to boot on my machine

tall latch
#

vscode lags on my laptop

unborn storm
#

and there is no vsc on IOS

#

XD

#

(there is iVim)

#

anyway i use ssh to my computer ^^

pine ledge
hoary inlet
#

night โœŒ๏ธ โœŒ๏ธ

unborn storm
#

i like having my editor on ios when i'm not at home and i get an idea about a program

#

and then i could write it down but it is still better to make a draft on phone...

#

(i know it is a very special case, and it is really more funny than usefull)

swift valley
#

Seriously?

summer jackal
#

Why are there so many people in VC0?

faint ermine
#

hey, while i appreciate the joke its inappropriate for the server thanks

unborn storm
#

A Programming Instance

#

API

whole bear
#

Ok thanks

pine ledge
#

Is it possible to get job

#

I am not able to learn programming or get job

whole bear
#

How old r u?

#

buddhu

pine ledge
#

Why

runic forum
whole bear
#

Because if your too young you cannot get a job

pine ledge
#

I am pretty old

whole bear
#

you can get a job apply for google free enter

pine ledge
#

Google free enter?

whole bear
#

basically they give you a project

#

and if you complete it

#

then you are inh

#

they call it google crash course I believe

pine ledge
#

It must be very difficult

whole bear
#

its not that bad

#

I have friends who are children who made it past the course

pine ledge
#

But I am adult

whole bear
#

True so it should be easier for you is what im implying

unborn storm
#

but @rugged root , what editor are you using ?

pine ledge
#

When to use threading

whole bear
#

print("Hello World!")

swift valley
#

Dependency resolution is a pain

pine ledge
#

Can anyone hire me

whole bear
#

bruh

runic forum
swift valley
#

Although yes, requirements.txt is often more than enough

whole bear
#

Button do you want to here my secret if so click here

#

print("I rob children")

unborn storm
#

so i didn't really understood...

runic forum
pine ledge
#

Can anyone take me in as a intern

whole bear
#

print("Bruh")

unborn storm
#

but probably if you say it

whole bear
#

Buddhu what is your favourite IDE

pine ledge
#

I use vscode

whole bear
#

Most people in this server are individualists

#

so I doubt they would intern you