#voice-chat-text-0

1 messages ยท Page 883 of 1

real widget
#

brruh

proud forum
loud karma
#

i accidentally played a rick roll on my mic

whole bear
#

lemme fix it

loud karma
#

sorry about that.

gentle flint
#

hai

loud karma
#

oh so i can't use text to speech to chat ๐Ÿ˜ฆ

flat sentinel
#

vebsoski

gentle flint
#

kemlalski

flat sentinel
#

look at the goutp

zenith radish
#

ripboof

whole bear
#

ok

loud karma
#

do you mean mingw

waxen radish
#

dude how long till i can talk

loud karma
waxen radish
#

but why every time i join people are fighting

loud karma
#

read this

waxen radish
#

ceebs

loud karma
#

you can go to that channel and verify

waxen radish
#

i need 50 messages

#

1

#

2

#

3

#

hahaha

loud karma
#

no please don't spam

waxen radish
#

im joking lol

#

then ban me

#

but i need messages

#

lets chat

loud karma
#

is outputting google text to speech to mic ok. quite worried that'll get voice banned

rugged root
#

That didn't sound too bad

#

It's the Microsoft Sam one that grates on my nerves

waxen radish
#

what is this about

#

history ok

#

was long

#

so you guys done the turtle?

rugged root
#

As in messed with the library? Not really

#

Well not in Python

#

I did years ago

waxen radish
#

nah made a turtle run around

#

i made a turtle run like 100 meters

loud karma
rugged root
#

Turbo Pascal

waxen radish
#

hey can you guys tell me how noob i am?

#

no i mean ill show my code

#

wait till i can speak

#

cool lip ring

#

so you guys wanna give me feed back?

#

or talk about smoking

#

how?

#

screen shots?

rugged root
#

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

rugged root
#

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

loud karma
#

!paste

waxen radish
#

from function import *

Setup varibles: todo and done lists

todo = []
done = []

Get system arguments

arg = sys.argv
rec = "-r" in arg

move = "-m" in arg

log = "-l" in arg
src = isValidDir(arg[-2])
dst = isValidDir(arg[-1])

Intro

print("\n")
print("-FiLLS STARTED-")
print("\n")
print("Opened path:", src)

Sorting start

todo = sorting(src, dst, rec, move, log, todo, done)

Add completed directory to done list

done.append(src)

Run sorting into child directories if recursive option is True

if rec == True:
for src in todo:
if src not in done:
if (log == True):
print("Opened path:", src)
todo = sorting(src, dst, rec, move, log, todo, done)
done.append(src)

Outro

print("\n")
print("Items have been sorted into:", dst)
print("\n")
print("-FiLLS FINISHED-")
exit()

loud karma
#
from pydub import AudioSegment
import sounddevice as sd
import soundfile as sf
from gtts import gTTS

sd.default.device = 6
tld = 'com'
lang = 'en'
slow = False

while True:
    i = input()

    if i.startswith("."):
        try:
            tts = gTTS(i[1:], tld=tld, lang=lang, slow=slow)
            tts.save('hello.mp3')

            src = "hello.mp3"
            dst = "test.wav"

            sound = AudioSegment.from_mp3(src)
            sound.export(dst, format="wav")

            data, fs = sf.read('test.wav')
            sd.play(data, fs)
            sd.wait()
        except Exception as e:
            print("Error Occured on command 'f'")
            print(f"Error:{type(e).__name__}:{e}")
    elif i.startswith("e"):
        try:
            exec(i[1:])
        except Exception as e:
            print("Error Occured on command 'e'")
            print(f"Error:{type(e).__name__}:{e}")
    elif i.startswith("f"):
        try:
            src = i[1:]
            dst = "test.wav"

            sound = AudioSegment.from_file(src, format=src[src.find(".")+1:])
            sound.export(dst, format="wav")

            data, fs = sf.read('test.wav')
            sd.play(data, fs)
            sd.wait()
        except Exception as e:
            print("Error Occured on command 'f'")
            print(f"Error:{type(e).__name__}:{e}")
```judge mines too thanks
sinful bramble
#

:((

waxen radish
#

i cant paste the other file

gentle flint
#

code goes here

sinful bramble
#
some code
waxen radish
#

i cant paste other file....

sinful bramble
#
from function import *  # do not do this. this is bad practice
loud karma
#

pylint is rating me 7.14 ๐Ÿ˜ฆ

waxen radish
#

dont steal my code im amazing

#

haha

loud karma
#

i'm such a bad programmer

gentle flint
sinful bramble
loud karma
waxen radish
#

?

#

am i private?

gentle flint
#

you sent an edit link

#

I'm looking at your code

#

this isn't actually very bad

waxen radish
#

edit link

gentle flint
#

feedback:
generally, stick to snake_case for function names and camelCase for class names
instead of

if (log == True):

you can just do

if log:
waxen radish
#

so you can edit from a link?

gentle flint
#

so it'll just complain if you sign in as someone else
your link wasn't going to work

waxen radish
#

so its ok

gentle flint
#

so your link wouldn't have worked for anyone except you, so I sent you the right one which we can all use
it's fine

waxen radish
#

oh i get ya

#

cheers

rugged root
#

Because log could be any value, and doing is True implies that log will be the value True

#

Rather than evaluate to True

loud karma
#

alright

waxen radish
#

so what was my feedback...

rugged root
#

So it's made to sort what specifically?

waxen radish
#

images

#

.jpg', '.jpeg', '.tiff', '.raw'

#

all i added

rugged root
#

That makes dealing with paths and file locations so much cleaner

waxen radish
#

cross platform

#

ok

rugged root
#

Rather than having to do it all through os

amber raptor
#

What is going on?

#

What?

rugged root
#

So the uwu thing that LP found yesterday

#

He's working on implementing it into a Python package

#

So

#

Yeah

amber raptor
#

Did LP suffer trauma and forget how to program python?

waxen radish
#

i wrote this ages ago, but want to pickup again. just wanna know if im doomed or have a chance hahaha

rugged root
#

You've got more than a chance.

waxen radish
#

yew thanks bruv

rugged root
#

Let me give it another once over, see if there's specific like style things I can suggest.

#

The right style can help with code clarity and help you write better code

waxen radish
#

yes JS

#

PHP

rugged root
#

So for things like

return(True)
```It's better to leave off the `()`.  It doesn't hurt anything, but it doesn't add anything either.  Only time you really need to worry about having the `()` on returns like that is if you're wanting to return a tuple
faint ermine
#

!e ```py
def f():
return 1, 2, 3
print(type(f()), f())

wise cargoBOT
#

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

<class 'tuple'> (1, 2, 3)
waxen radish
#

alrighty

rugged root
waxen radish
#

see if i cn break the habit

rugged root
#

If you're going to be unpacking those, then yeah how you have it makes sense

#

But if you're wanting it returned as a packet of information, say some coordinates, having the () makes more sense

#

At least to me

whole bear
#

hlo @rugged root

waxen radish
#

cheers hemlock

rugged root
#

I'm always happy to help with stuff like this

waxen radish
#

feel beter

#

alot of shit goes over my head when you guys talking

rugged root
#

Despite how snippy some of our folks are at times -coughcough@gentle flintcoughcough-, we love to help people become the best they can be

faint ermine
rugged root
#

You start to pick it up

rugged root
#

Honestly just being on the server, watching help sessions, or even hanging out here and asking questions about what we're talking about can make a huge difference

faint ermine
#

what's the issue LP

rugged root
#

I've learned so much since I joined the server years ago

faint ermine
#

members if on server users of speaking in global context

waxen radish
#

yeah keen, i wanted to do web dev but got put off, thinking getting back into some sort of dev and python seems dope

rugged root
#

Where as I'm trying to relearn JS

#

End game being me making a couple games that I just want out of my head

waxen radish
#

in python?

rugged root
#

It's out of love

waxen radish
#

nice

rugged root
waxen radish
#

i made a tamagotchi text based hahaha

rugged root
#

Although I guess I coul - god damn it- d do the RPG I have in mind in Python

waxen radish
#

oh yeah js

#

you seen the gameboy emulator in js

rugged root
#

But the Mahjong game is going to have to be in JS

waxen radish
#

fucked

rugged root
#

Oh yeah, that was wild to see

waxen radish
#

old but still

rugged root
#

It's scary what JS can do

waxen radish
#

yeah never got into node but

#

love js

rugged root
#

Still haven't messed with Node

#

Like I get the concept but...

waxen radish
#

hate java, doesnt deserve being named after java

rugged root
#

God JS has such an intimidatingly large ecosystem

rugged root
#

Name recognition and all that

waxen radish
#

yeah probs worked but i hate when people mistake it even today

#

ive started working on an IBM i, now they are fucked

rugged root
#

Java was my first language, so I get the irritation toward it

waxen radish
#

my concept of computer changed

rugged root
#

It'll be interesting to see if they manage to become relevant again. IBM I mean

#

How so?

waxen radish
#

just the basics i mean, like the terms i knew are not what they used....

#

im like wtf

#

this is all wrong

rugged root
#

How old are you, if you don't mind me asking?

waxen radish
#

library is kinda a directory

#

haha

#

30

rugged root
#

Ah okay, we're close in age then. I'm 31. So yeah, I get your pain

waxen radish
#

my dad works with them, programs in RPG

#

his trying get me into it

#

im like wtf dude

#

this is not normal

rugged root
#

Oh god I forgot that existed

waxen radish
#

HAHAHA there is randomly still alot of work

#

with IBM i

#

i dunno why

rugged root
#

I mean COBOL still exists

waxen radish
#

but work places dont wanna change

rugged root
#

"If it ain't broke, don't fix it"

waxen radish
#

yeah... sad

rugged root
#

It's a short sighted decision for sure

#

"Eh, we'll look at it again next year"

#

"Nope, it'll cost too much and this still works"

forest zodiac
#

can someone explain to me what is love fest

waxen radish
#

its a small niche i think no one knows it but old schools peeps

rugged root
#

It's our Valentine's event

forest zodiac
waxen radish
#

but hey it does SQL

rugged root
forest zodiac
#

when is the next py hacktoberfest happening?

rugged root
#

When the old guard dies out, there won't be anyone to train the new people to even begin converting to new systems

rugged root
waxen radish
#

i think thats why papa wants me to get into it lol

#

but dude they just gonna swap

#

by then

#

i prefer linux

#

so nice to use

rugged root
#

I'm still a Windows junkie, but I really have no true preference

#

I just like Windows because it's familiar and I know how to break it and fix it

#

Not to mention with WSL, anything you need to develop in Linux can now just be done in Windows

#

Scooting down to VC1 so that it's easier for other conversations

waxen radish
#

windows good to get work hahaha

whole bear
#

this is fun altough I do not understand a thing

gloomy vigil
rugged root
#

I'm honestly impressed how dedicated you guys are on this

gloomy vigil
vagrant roost
#

@faint ermine hey quick question you know how to set up my minecraft server to keep running and start on startup of my server?

faint ermine
vagrant roost
#

its not in docker its just on a server running

#

i want to run it in background and run it on startuo

#

i dont use a docker container on this one

whole bear
#

๐Ÿ˜ฆ

faint ermine
#
from itertools import zip_longest

def blockwise(t, size=2, fillvalue=None):
    it = iter(t)
    return zip_longest(*[it]*size, fillvalue=fillvalue)
green bone
#

stackoverflow-driven development ๐Ÿ˜ณ

faint ermine
green bone
#

imagine debugging when Python provides a built-in print ๐Ÿคฆ

green bone
#

lmao yk imho xmlrpc hateoas

gloomy vigil
whole bear
#

lmao this is incredible

gloomy vigil
#

yea after this is complete we will make it as issue in lancebot

whole bear
#

that was weird ngl

sick dew
#

Hey, I'ma just leave this here xD

gloomy vigil
sick dew
#

lel

whole bear
#

F

zenith radish
dreamy star
#

py_sun :pydis:

drowsy cove
#

@dreamy starwelcome

dreamy star
#

@drowsy cove

drowsy cove
#

efm

dreamy star
gentle flint
#

@zenith radish remember to list the pip package on the github page

#

as the project URL or smth

gloomy vigil
#

!pypi slowo

wise cargoBOT
#

A python implentaciรณn of advanced uwuification.

gloomy vigil
#

@dense ibex look at that

gentle flint
#

also
why isn't this outputting hewwo

gloomy vigil
#

its random

#

we studied it

gentle flint
#

l + r โ†’ w shouldn't be

#

no hewwo

forest zodiac
#

๐Ÿ˜†

gentle flint
#

the fuck

#

it only works on some words

gloomy vigil
#

wait

gentle flint
#

hello consistently is not converted

forest zodiac
gloomy vigil
#
uwugex = re.compile(r"(?<![wrl])[lr](?![wrl])") # Laundmo certified UwUgex

def char_replace(input_string: str) -> str:
    return uwugex.sub("w", input_string)
gentle flint
#

@zenith radish

#

pls fix

gloomy vigil
#

it should work for all cases

#

right?

gentle flint
#

it should

#

but it doesn't

gloomy vigil
#

let me look at the site packages

gentle flint
#

it's debugger time!

forest zodiac
#

time to sleep

gloomy vigil
#

the code is correct

#

i just checked

gentle flint
#

did you run it on hello

#

and check what which values are set to

arctic meadow
#

am hacking

gloomy vigil
#

alright i found the bug

gentle flint
#

well?

gloomy vigil
#

r"(?<![wrl])[lr](?![wrl])"

gentle flint
#

what's the issue

gloomy vigil
#

it check if L is after L

gentle flint
#

bruh

#

it shouldn't

#

hewwo is cool

#

or should I say

#

coow

gloomy vigil
#

like hello = eLl

gentle flint
#

yeah I get it

gloomy vigil
#

let me make a issue

gentle flint
#

but I think it's a bad idea

#

Yeah you do that

gloomy vigil
#

yep

gentle flint
#

I'll upvote it

gloomy vigil
#

its even in the source code

zenith radish
#

I saw, the fix is a bit more complex than that, will do tomorrow

#

The regex needs to capture when two ls or rs are there

gloomy vigil
#

r"(?<![wrl])[lr](?![wrl])|(?<![wr])ll(?![wr])|(?<![wl])rr(?![wl])"

#

this @gentle flint ?

#

i meant this

#

@gentle flint

gentle flint
#

doesn't work when docs are spread over multiple pages

gloomy vigil
#

well i am gonna go bye!

gentle flint
#

In cryptography, a nonce (number once) is an arbitrary number that can be used just once in a cryptographic communication. It is often a random or pseudo-random number issued in an authentication protocol to ensure that old communications cannot be reused in replay attacks. They can also be useful as initialization vectors and in cryptographic h...

whole bear
#
.imgz {
    margin-left: auto;
    margin-right: auto;
    width: 400px;
    height:400px;
    object-fit: cover;
    padding: 33px;
}
.imgz::before{
  filter: grayscale(100%);
  transition: .5s linear;
}
gentle flint
#

vlammenwerper

#

werpen = old-fashioned word for tossing or throwing

#

gooien

#

ik gooi

#

ik werp

zenith radish
#

BABY

gentle flint
#

semiSphinx

#

these two came from my sis

gloomy vigil
#

why do you always wear white shirt @gentle flint

gentle flint
wind cobalt
gentle flint
#

sorry @strong arch

#

gn

wind cobalt
#

bye

past oracle
#

Hi there!

whole rover
#

๐Ÿ‘‹

#

\๐Ÿ› ๏ธ

#

arthur cj

grand lionBOT
#
arthur [cronjob|cronjobs|cj] 

Commands for working with Kubernetes CronJobs.

Commands:
  trigger Command to trigger a Kubernetes cronjob now.

Type arthur help command for more info on a command.
You can also type arthur help category for more info on a category.
whole rover
#

arthur cj trigger

grand lionBOT
#

:no_entry_sign: 'Tis but a scratch! Command raised an error: TypeError: list_cronjobs() missing 1 required positional argument: 'namespace'

whole rover
#

arthur cj trigger

grand lionBOT
#

:no_entry_sign: 'Tis but a scratch! Command raised an error: TypeError: 'V1beta1CronJobList' object is not iterable

whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to triggger

grand lionBOT
rocky kiln
#

arthur cj trigger

#

bot borke

whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to triggger

grand lionBOT
whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to trigger

past oracle
#

I think I saw in one of the issues that slash commands might not even be ready in dpy 2

rocky kiln
whole rover
#

arthur help

grand lionBOT
#
Certificates:
  certificates Commands for working with TLS certificates.
Deployments:
  deployments  Commands for working with Kubernetes Deployments.
Ed:
  ed           Ed is the standard text editor.
Nodes:
  nodes        Commands for working with Kubernetes nodes.
Zones:
  zones        Commands for working with Cloudflare zones.
โ€‹No Category:
  help         Shows this message

Type arthur help command for more info on a command.
You can also type arthur help category for more info on a category.
#
Certificates:
  certificates Commands for working with TLS certificates.
Deployments:
  deployments  Commands for working with Kubernetes Deployments.
Ed:
  ed           Ed is the standard text editor.
Jishaku:
  jishaku      The Jishaku debug and diagnostic commands.
Jobs:
  cronjob      Commands for working with Kubernetes CronJobs.
Nodes:
  nodes        Commands for working with Kubernetes nodes.
Zones:
  zones        Commands for working with Cloudflare zones.
โ€‹No Category:
  help         Shows this message

Type arthur help command for more info on a command.
You can also type arthur help category for more info on a category.
whole rover
#

arthur help jishaku

grand lionBOT
#
arthur [jishaku|jsk] 

The Jishaku debug and diagnostic commands.

This command on its own gives a status brief.
All other functionality is within its subcommands.

Commands:
  cancel     Cancels a task with the given index.
  cat        Read out a file, using syntax highlighting if detected.
  curl       Download and display a text file from the internet.
  debug      Run a command timing execution and catching exceptions.
  dis        Disassemble Python code into bytecode.
  git        Shortcut for 'jsk sh git'. Invokes the system shell.
  hide       Hides Jishaku from the help command.
  invite     Retrieve the invite URL for this bot.
  load       Loads or reloads the given extension names.
  override   Run a command with a different user, channel, or thread, optiona...
  permtrace  Calculates the source of granted or rejected permissions.
  pip        Shortcut for 'jsk sh pip'. Invokes the system shell.
  py         Direct evaluation of Python code.
  py_inspect Evaluation of Python code with inspect information.
  repeat     Runs a command multiple times in a row.
  retain     Turn variable retention for REPL on or off.
  rtt        Calculates Round-Trip Time to the API.
  shell      Executes statements in the system shell.
  show       Shows Jishaku in the help command.
  shutdown   Logs this bot out.
  source     Displays the source code for a command.
  tasks      Shows the currently running jishaku tasks.
  unload     Unloads the given extension names.
  voice      Voice-related commands.

Type arthur help command for more info on a command.
You can also type arthur help category for more info on a category.
#

No command called "jishaku" found.

whole rover
#

arthur jsk load arthur.ext.cloudflare.zones

grand lionBOT
#

๐Ÿ“ฅโš  arthur.ext.cloudflare.zones

Traceback (most recent call last):
  File "/Users/joseph/Library/Caches/pypoetry/virtualenvs/king-arthur-zBwg6lV--py3.9/lib/python3.9/site-packages/jishaku/features/management.py", line 56, in jsk_load
    method(extension)
ModuleNotFoundError: No module named 'arthur.ext'

whole rover
#

arthur jsk load arthur.exts.cloudflare.zones

grand lionBOT
#

๐Ÿ” arthur.exts.cloudflare.zones

rocky kiln
sly jolt
#

oi what's all this then

whole rover
#

\๐ŸŒฌ๏ธ

#

๐ŸŒฌ๏ธ

paper tendon
whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to trigger

whole rover
#

arthur jsk reload arthur.exts.kubernetes.jobs

grand lionBOT
#

๐Ÿ” arthur.exts.kubernetes.jobs

whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to trigger

paper tendon
#

SNS

whole rover
#

arthur jsk reload arthur.exts.kubernetes.jobs

grand lionBOT
#

๐Ÿ” arthur.exts.kubernetes.jobs

whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to trigger

paper tendon
whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to trigger

dense ibex
#

arthur

grand wyvern
#

Can we get the drop-down in cornflower blue?

whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to trigger

whole rover
#

arthur jsk reload arthur.exts.kubernetes.jobs

grand lionBOT
#

๐Ÿ” arthur.exts.kubernetes.jobs

paper tendon
#

Enjoy

tiny socket
#

context: the bot pinged everyone

grand wyvern
#

This image captures an average day at my job. Walk into the room, see a button, push the button, and learn what the button does by watching everyone panic.

whole rover
#

arthur jsk load arthur.exts.kubernetes.jobs

grand lionBOT
#

๐Ÿ” arthur.exts.kubernetes.jobs

whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to trigger

stuck furnace
#

members - db_members

#

!eval ```py
print({1, 2, 3, 4} - {1, 2})

wise cargoBOT
#

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

{3, 4}
whole rover
#

arthur jsk load arthur.exts.kubernetes.jobs

grand lionBOT
#

๐Ÿ” arthur.exts.kubernetes.jobs

whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to trigger

grand lionBOT
rocky kiln
dense ibex
#

@whole rover I sent you a voice mail regarding the JBISP

past oracle
#

I have no idea what's going on ๐Ÿ˜„
This upstreaming , downstreaming is new for me. ๐Ÿ˜‚
(Can someone help me out with some blog or something so that I can sort of get a grasp what is going on here? ๐Ÿ˜„ )

sweet lodge
grand wyvern
#

!xkcd 927

rocky kiln
past oracle
#

Very well then, it was good while it lasted. ๐Ÿ˜‚

rocky kiln
#

i cant really explain it right now, but if you want to look it up the articles on "Autonomous System" and "BGP"/"Border Gateway Protocol" are a good place to get started, if you're interested

past oracle
#

I am, thank you ๐Ÿ˜„

rocky kiln
#

hi. @vivid palm

#

how you doin?

dense ibex
#

hi @vivid palm

vivid palm
#

omo 2 hellos

#

hi

rocky kiln
#

๐Ÿ‘‹

vivid palm
#

i'm currently eating grape tomatoes

rocky kiln
vivid palm
#

omona

dense ibex
vivid palm
rocky kiln
# vivid palm omona

์•ˆ๋…•ํ•˜์„ธ์š” ์ €๋Š” ๋ฐฉํƒ„์†Œ๋…„๋‹จ ํ™ฉ๊ธˆ๋ง‰๋‚ด ์ „์ •๊ตญ์ž…๋‹ˆ๋‹ค

vivid palm
#

does he actually say that lmao

rocky kiln
#

he did once

dense ibex
#

you can read that...

#

wow

rocky kiln
#

and it became a fanchant

vivid palm
#

lmaoooo

dense ibex
#

I am impressed

vivid palm
#

catsmart i smart

#

and almost bilingual

dense ibex
#

muy muy smart

vivid palm
#

jake i'll trade you python for korean

rocky kiln
dense ibex
#

na

rugged root
#

What'd I miss?

dense ibex
#

Everything

#

Elon musk joined the call

rugged root
#

Fair. Carry on then

rocky kiln
rocky kiln
dense ibex
#

Yeah, just joe talking about his ISP

rocky kiln
#

and drop some funiture

tiny socket
#

"I was telling the truth the entire time... I'm impressed"

vivid palm
#

(โ•ฏยฐโ–กยฐ๏ผ‰โ•ฏ๏ธต โ”ปโ”โ”ป

dense ibex
#

smh

#

mina

rocky kiln
#

lol

dense ibex
#

that was out of pocket

rocky kiln
#

that was gold

vivid palm
#

what, it's a table

rocky kiln
#

correction

#

that was a table

#

until someone dropped it

whole rover
#

Co-authored-by: Rob Pike <r@golang.org>

#

arthur deploy restart postgres

grand lionBOT
#

:warning: Please confirm you want to restart deploy/postgres in default

#

:warning: Please confirm you want to restart deploy/postgres in default

grand lionBOT
grand lionBOT
dense ibex
#

arthur help

tiny socket
#

arthur ed ?

grand lionBOT
#

?

#

?

dense ibex
#

arthur help ?

#

arthur ed ?

grand lionBOT
#

?

tiny socket
#

!pypi ohnodb

wise cargoBOT
tiny socket
rocky kiln
#

lol

#

just replace dyno with statbot

tiny socket
rocky kiln
#

fuck off

#

bruh

#

no

#

god no

dense ibex
#

best bot

whole rover
#

!superstar @dense ibex 1M

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied superstar to @dense ibex until <t:1629421951:f> (58 seconds).

#
Superstarified!

Your previous nickname, jake, was so bad that we have decided to change it. Your new nickname will be Santana.

You will be unable to change your nickname until <t:1629421951:f>. If you're confused by this, please read our official nickname policy.

dense ibex
#

!u

wise cargoBOT
#
Santana (_jake#0169)

hypesquad_bravery

User information

Created: <t:1580002257:R>
Profile: @dense ibex
ID: 670802831678373908

Member information

Joined: <t:1609774606:R>
Roles: <@&787816728474288181>, <@&267630620367257601>, <@&585529568383860737>, <@&764245844798079016>, <@&764802720779337729>, <@&463658397560995840>, <@&542431903886606399>

Infractions

Total: 4
Active: 1

whole rover
#

!stream @devout mountain 5h

wise cargoBOT
#

โœ… @devout mountain can now stream until <t:1629440015:f>.

tiny socket
devout mountain
#
  required_providers {
    vsphere = {
      source = "hashicorp/vsphere"
      version = "2.0.2"
    }
  }
}
module "vm" {
  source  = "Terraform-VMWare-Modules/vm/vsphere"
  version = "3.3.0"
  # insert the 49 required variables here
}

provider "vsphere" {
  user           = "Administrator@vsphere.local"
  password       = "somthin"
  vsphere_server = "vcsa.internal.hoedab.tech"

  # If you have a self-signed cert
  allow_unverified_ssl = true
}

# Deploy 2 linux VMs
module "example-server-linuxvm" {
  source    = "Terraform-VMWare-Modules/vm/vsphere"
  version   = "X.X.X"
  vmtemp    = "NN14-Template-Ubuntu20.04"
  instances = 2
  vmname    = "example-server-linux"
  vmrp      = "185.215.215.219"
  network = {
    "Infastructure" = ["", ""] # To use DHCP create Empty list ["",""]; You can also use a CIDR annotation;
  }
  vmgateway = "10.11.17.1"
  dc        = "E14 Datacenter"
  datastore = "RAID_GROUP1"
}```
whole rover
#

arthur cj trigger

grand lionBOT
#

:tools: Pick a CronJob to trigger

grand lionBOT
tiny socket
rocky kiln
#

You can't parse [X]HTML with regex. Because HTML can't be parsed by regex. Regex is not a tool that can be used to correctly parse HTML. As I have answered in HTML-and-regex questions here so many times before, the use of regex will not allow you to consume HTML. Regular expressions are a tool that is insufficiently sophisticated to understand the constructs employed by HTML. HTML is not a regular language and hence cannot be parsed by regular expressions. Regex queries are not equipped to break down HTML into its meaningful parts. so many times but it is not getting to me. Even enhanced irregular regular expressions as used by Perl are not up to the task of parsing HTML. You will never make me crack. HTML is a language of sufficient complexity that it cannot be parsed by regular expressions. Even Jon Skeet cannot parse HTML using regular expressions. Every time you attempt to parse HTML with regular expressions, the unholy child weeps the blood of virgins, and Russian hackers pwn your webapp. Parsing HTML with regex summons tainted souls into the realm of the living. HTML and regex go together like love, marriage, and ritual infanticide. The <center> cannot hold it is too late. The force of regex and HTML together in the same conceptual space will destroy your mind like so much watery putty. If you parse HTML with regex you are giving in to Them and their blasphemous ways which doom us all to inhuman toil for the One whose Name cannot be expressed in the Basic Multilingual Plane, he comes. HTML-plus-regexp will liquify the nโ€‹erves of the sentient whilst you observe, your psyche withering in the onslaught of horror. Regeฬฟฬ”ฬ‰x-based HTML parsers are the cancer that is killing StackOverflow it is too late it is too late we cannot be saved the transgression of a chiอกld ensures regex will consume all living tissue (except for HTML which it cannot, as previously prophesied) dear lord help us how can anyone survive this scourge using regex to parse HTML has doomed humanity to an eternity of dread torture and security holes using regex as a tool to process HTML establishes a breach between this world and the dread realm of cอ’อชoอ›อซrrupt entities (like SGML entities, but more corrupt) a mere glimpse of the world of regโ€‹ex parsers for HTML will insโ€‹tantly transport a programmer's consciousness into a world of ceaseless screaming, he comes, the pestilent slithy regex-infection wilโ€‹l devour your HTโ€‹ML parser, application and existence for all time like Visual Basic only worse he comes he comes do not fiโ€‹ght he comฬกeฬถs, ฬ•hฬตiโ€‹s unฬจhoอžly radianอceอ destroา‰ying all enliฬอ„ฬ‚ghtenment, HTML tags leaอ kiฬงnอ˜g frฬถoฬจm ฬกyoโ€‹อŸur eyeอขsฬธ ฬ›lฬ•ikอe liqโ€‹uid pain, the song of reฬธgular expโ€‹ression parsing will extiโ€‹nguish the voices of morโ€‹tal man from the spโ€‹here I can see it can you see ฬฒอšฬ–iฬ‚อฬฉtฬฬ‹อ€ it is beautiful tโ€‹he final snuffing of the lieโ€‹s of Man ALL IS LOSฬฬอ„T ALL Iโ€‹S LOST the ponฬทy he comes he cฬถฬฎomes he comes the ichโ€‹or permeates all MY FACE MY FACE แต’h god no NO NOOฬผOโ€‹O Nฮ˜ stop the anโ€‹*อ‘ฬพฬพโ€‹ฬ…อซอgอ›อ†ฬพlฬอซอฅeฬ…ฬ s อŽaฬงอˆอ–rฬฝฬพอ„e nโ€‹ot reฬ€ฬ‘องaอจlฬƒอคอ‚ ZAอ ฬกอŠLGฮŒ ISอฎฬ‚า‰ฬฏอˆอ• TOอ…อ‡ฬนฦฬดศณฬณ THฬ˜Eอ„ฬ‰อ– อ PฬฏอฬญOฬšโ€‹NฬYฬก HอจอŠฬฝEฬพอ›อช องฬพอฌCอญฬอฅOอฎอฬฎMอŠฬ’ฬšEฬ‘อฉอŒSอฏฬฟฬ”

Have you tried using an XML parser instead?

tiny socket
#

!otn a zalgo is tony the pony he comes @whole rover please

strong arch
rocky kiln
#

fair

whole rover
#

!otn a zalgo is tony the pony he comes

wise cargoBOT
#

:ok_hand: Added zalgo-is-tony-the-pony-he-comes to the names list.

rocky kiln
#

it was vc related tho

rocky kiln
dense ibex
#

@hollow haven

#

don't look at what joe did

rocky kiln
#

@dense ibex be careful, someone here has a redundant video role

devout mountain
#

zalgo-is-tony-the-pony-he-comes

whole rover
#

arthur help

grand lionBOT
#

:no_entry_sign: 'Tis but a scratch! Command raised an error: AttributeError: 'Member' object has no attribute 'guild_id'

whole rover
#

wow

#

arthur help

grand lionBOT
#
Certificates:
  certificates Commands for working with TLS certificates.
Deployments:
  deployments  Commands for working with Kubernetes Deployments.
Ed:
  ed           Ed is the standard text editor.
Jishaku:
  jishaku      The Jishaku debug and diagnostic commands.
Jobs:
  cronjob      Commands for working with Kubernetes CronJobs.
Nodes:
  nodes        Commands for working with Kubernetes nodes.
Zones:
  zones        Commands for working with Cloudflare zones.
โ€‹No Category:
  help         Shows this message

Type arthur help command for more info on a command.
You can also type arthur help category for more info on a category.
whole rover
#

arthur jsk

grand lionBOT
#

Jishaku v2.2.0, discord.py 2.0.0a0, Python 3.9.6 (default, Aug 17 2021, 02:29:16) [GCC 10.2.1 20210110] on linux
Module was loaded <t:1629422979:R>, cog was loaded <t:1629422980:R>.

This bot is not sharded and can see 1 guild(s) and 0 user(s).
Message cache capped at 1000, presence intent is disabled and members intent is disabled.
Average websocket latency: 98.08ms

whole rover
#

arthur help jsk

grand lionBOT
#
arthur [jishaku|jsk] 

The Jishaku debug and diagnostic commands.

This command on its own gives a status brief.
All other functionality is within its subcommands.

Commands:
  cancel     Cancels a task with the given index.
  cat        Read out a file, using syntax highlighting if detected.
  curl       Download and display a text file from the internet.
  debug      Run a command timing execution and catching exceptions.
  dis        Disassemble Python code into bytecode.
  git        Shortcut for 'jsk sh git'. Invokes the system shell.
  hide       Hides Jishaku from the help command.
  invite     Retrieve the invite URL for this bot.
  load       Loads or reloads the given extension names.
  override   Run a command with a different user, channel, or thread, optiona...
  permtrace  Calculates the source of granted or rejected permissions.
  pip        Shortcut for 'jsk sh pip'. Invokes the system shell.
  py         Direct evaluation of Python code.
  py_inspect Evaluation of Python code with inspect information.
  repeat     Runs a command multiple times in a row.
  retain     Turn variable retention for REPL on or off.
  rtt        Calculates Round-Trip Time to the API.
  shell      Executes statements in the system shell.
  show       Shows Jishaku in the help command.
  shutdown   Logs this bot out.
  source     Displays the source code for a command.
  tasks      Shows the currently running jishaku tasks.
  unload     Unloads the given extension names.
  voice      Voice-related commands.

Type arthur help command for more info on a command.
You can also type arthur help category for more info on a category.
whole rover
#

arthur jsk git

grand lionBOT
#
arthur jishaku git <argument>

Shortcut for 'jsk sh git'. Invokes the system shell.

whole rover
#

arthur jsk git status

tiny socket
#

arthur jsk py

for i in range(3):
  await _ctx.send('h')
whole rover
#

arthur jsk py ```py
for i in range(3):
await _ctx.send('h')

grand lionBOT
#

h

#

h

#

h

whole rover
#

arthur repeat 3 ed

#

arthur jsk repeat 3 ed

grand lionBOT
#
arthur jishaku repeat <times> <command_string>

Runs a command multiple times in a row.

This acts like the command was invoked several times manually, so it obeys cooldowns.
You can use this in conjunction with `jsk sudo` to bypass this.

whole rover
#

arthur jsk repeat 3 "ed"

grand lionBOT
#

Command ""ed"" is not found

whole rover
#

arthur jsk repeat 3 "arthur ed"

grand lionBOT
#

Command ""arthur" is not found

rugged root
#

#bot-commands

dense ibex
#

LMAO

#

I TOLD HIM

whole rover
#

lol

rocky kiln
#

lol

#

gold

tiny socket
#

lol

devout mountain
rugged root
#

Hard to do on mobile

devout mountain
rugged root
#

He's getting off with a stern look of Hemlock disapproval

tiny socket
devout mountain
whole rover
#

most of the usage before was testing because i was streaming arthur code lol

rugged root
whole rover
#

this was just me learning what jishaku was from vcco lol

rugged root
#

I'm just giving you shit

dense ibex
#

lol

#

#shit-posting

tiny socket
rocky kiln
#

join vc

rugged root
dense ibex
#

Kinda

tiny socket
#

nah

#

staff voice during meeting

rugged root
rocky kiln
#

fair

whole rover
#

imma head out, ๐Ÿ‘‹

rocky kiln
#

gn

tiny socket
#

on second thoights im weak and am gonna sleep

#

like literally weak i got 2nd dose covid vaccine and feel like shit lol

dense ibex
#

damn, feel better

#

and gn

rocky kiln
#

gn

#

and get well

graceful grail
#

!voice @whole bear

wise cargoBOT
#

Voice verification

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

brave steppe
#

Love me some 1575 line files

whole bear
#

why i cant talk?

#

it said suppressed

somber heath
# whole bear why i cant talk?

The voice gate system was implemented in order to tackle the regrettable phenomenon of people coming in, screaming and otherwise making a horrific nuisance of themselves. In that purpose, it has been successful and to the overall benefit to user experience.

#

It is inconvenient to people who have legitimate participatory intent, but not insurmountable.

gloomy vigil
#

@zenith radish you like hip-hop right?

zenith radish
gloomy vigil
real widget
#

anyone have any good jazz songs

forest zodiac
#

@somber heath

somber heath
#

yahoy

forest zodiac
#

can you help me with something?

somber heath
#

Perhaps.

forest zodiac
#

why dont you join vc1

vagrant roost
#

@zenith radish you finished the cog? ๐Ÿ˜‰

tiny socket
#

!pypi owout

wise cargoBOT
zenith radish
#

UwU.ify("str")

#

"beautifuw is bettew t-than ugwy. รฒฯ‰รณ expwicit i-is (ห˜ฯ‰ห˜) bettew than impwicit.\nsimpwe is bettew than compwex.\ncompwex UwU is b-bettew (ห† ๏ปŒ ห†)โ™ก than c-compwicated. ๐Ÿฅบ fwat i-is b-bettew than nyested. ^^ spawse is bettew than dense.\nweadabiwity counts.\nspeciaw cases XD awen't speciaw e-enough to mya bweak rawr t-the wuwes.\na-awthough pwacticawity beats puwity.\newwows shouwd nyevew >_< pass siwentwy.\nu-unwess expwicitwy XD siwenced.\ni-in t-the face of (โœฟoฯ‰o) ambiguity, wefuse the temptation to guess.\nthewe shouwd be o-onye-- and rawr x3 pwefewabwy onwy onye --obvious w-way to do it.\na-awthough (โœฟoฯ‰o) that way may nyot be ^^;; o-obvious a-at fiwst u-unwess you'we dutch.\nn-nyow i-is bettew than nyevew.\nawthough nyevew is o.O often bettew t-than *wight* nyow. (ห† ๏ปŒ ห†)โ™ก if the -.- impwementation is hawd (///หฌ///โœฟ) t-to expwain, it's a bad i-idea.\nif the impwementation is e-easy t-to (โœฟoฯ‰o) expwain, it may >w< be a-a good ฯƒฯ‰ฯƒ idea.\nnyamespaces (///หฌ///โœฟ) awe ^โ€ข๏ปŒโ€ข^ onye honking g-gweat i-idea -- wet's ^^;; d-do mowe of those!"

tiny socket
#

Nyamespaces awe onye honking gweat idea -- wet's do mowe of those!

icy axle
#

@brave steppe I feel like it should be possible to do this part with less repetition

#

Not bashing on your code. Just wondering if thereโ€™s any reason you did it like this ๐Ÿ˜„

#

Haha yeah, gotcha

#

I mostly meant the previous function you were working on

#

Yeahhh

#

If you did something like options = [name for name in args if name is not MISSING]

forest zodiac
#

what are you making?

icy axle
#

Something like that, but with valid code? Haha

sinful bramble
#

thats a lot of ifs hahah

icy axle
#

Not totally sure ๐Ÿ˜„

brave steppe
icy axle
#

Yeahh

sinful bramble
#

it is fine. not totally sure too as well but if that works well that works.

icy axle
#

The function signature seems like itโ€™ll be kind of needed, but maybe the body would be able to be shortened

brave steppe
#
    async def create_guild(
        self,
        name: str,
        *,
        icon: str = MISSING,
        verification_level: int = MISSING,
        notification_level: int = MISSING,
        content_filter: int = MISSING,
        roles: Sequence[Any] = MISSING,
        channels: Sequence[Any] = MISSING,
        afk_channel: int = MISSING,
        afk_timeout: int = MISSING,
        system_channel: int = MISSING,
        system_channel_flags: int = MISSING
    ) -> Dict[str, Any]:
        """Create a new guild, making the bot the owner."""
        options: Dict[str, Any] = {'name': name}
        if icon is not MISSING:
            options['icon'] = icon

        if verification_level is not MISSING:
            options['verification_level'] = verification_level

        if notification_level is not MISSING:
            options['default_message_notifications'] = notification_level

        if content_filter is not MISSING:
            options['explicit_content_filter'] = content_filter

        if roles is not MISSING:
            options['roles'] = roles

        if channels is not MISSING:
            options['channels'] = channels

        if afk_channel is not MISSING:
            options['afk_channel_id'] = int(afk_channel)

        if afk_timeout is not MISSING:
            options['afk_timeout'] = afk_timeout

        if system_channel is not MISSING:
            options['system_channel_id'] = system_channel

        if system_channel_flags is not MISSING:
            options['system_channel_flags'] = system_channel_flags

        return await self.request(Route('POST', '/guilds'), json=options)
#
    async def create_guild(
        self,
        name: str,
        *,
        icon: str = MISSING,
        verification_level: int = MISSING,
        notification_level: int = MISSING,
        content_filter: int = MISSING,
        roles: Sequence[Any] = MISSING,
        channels: Sequence[Any] = MISSING,
        afk_channel: int = MISSING,
        afk_timeout: int = MISSING,
        system_channel: int = MISSING,
        system_channel_flags: int = MISSING
    ) -> Dict[str, Any]:
        """Create a new guild, making the bot the owner."""
        options: Dict[str, Any] = {
                'name': name,
                'icon': icon,
                ...
        }
        options = {k: v for k, v in options.items() if v is not MISSING}
        return await self.request(Route('POST', '/guilds'), json=options)
icy axle
#

That does look quite nice

#

Just note that the names arenโ€™t 100% same for the arguments and option names

#

Cool

sinful bramble
#

i was thinking of dictionary too and then get those keys and values and for loop

stoic ore
#

Hi

#

quick question

#

what is iced mean ?

#

like '' she iced him''

brave steppe
#

I don't really know, English isn't my first language

stoic ore
#

mine eitiher ๐Ÿ˜„

#

but i hoped to find some one to ask

brave steppe
#

@icy axle ๐Ÿ‘‹

sweet lodge
#

"iced" is slang for "murdered"

#

The phrase 'to ice' or 'icing' comes from the phrase 'to put on ice', which is a reference to literally putting a corpse on a block of ice to preserve it prior to burial.

  • Reddit
#

@stoic ore

stoic ore
faint jungle
brave steppe
#

Swedish

faint jungle
#

Nice

sinful bramble
#

oh so u know vester i see

faint jungle
#

I was hoping itยดs german

brave steppe
#

So, not very close

#

But a few hours by car I think

zenith radish
sinful bramble
#

@reef fractal how heckeble are u

rugged root
brave steppe
#

10/10 doc-string

#
    async def delete_role(self, guild: int, role: int, *, reason: str = MISSING) -> None:
        """Delete a guild role."""
        await self.request(
            Route(
                'DELETE', '/guilds/{guild_id}/roles/{role_id}',
                guild_id=int(guild), role_id=int(role)
            ), reason=reason
        )
dense ibex
#

wtf did pycharm do lol

#

why does the logo look like that on my taskbar

zenith radish
#

try these

#

pomelo grapefruit

#

not bitter

#

only sweet

rugged root
dense ibex
rugged root
#

@next temple If you're wondering why you can't talk, check out the #voice-verification channel. That'll tell you what you need to know

next temple
rugged root
#

Sounds good! Sorry, just force of habit to mention it

stuck furnace
#

๐Ÿ‘‹

whole bear
#

I just wanna be like kimdotcom

#

fr

#

lmaoo

sweet lodge
#

Originally from our benevolent dictator, Joe

whole bear
#

are u guys vaccinated?

#

ive sinovac

#

lmao

#

rip

stuck furnace
#

Well nowadays bubonic plague can be treated with some anti-biotics.

rugged root
#

True

stuck furnace
#

For now...

whole bear
#

you can make the vaccine obligatory

stuck furnace
#

I still don't understand why Facebook makes a VR headset ๐Ÿค”

whole bear
#

yes

#

i cannot with vinegar

#

lmao

#

marc os

#

hahahahaha

#

MU online

#

thats it

paper tendon
#

.moo

whole bear
errant hare
#

how will i get voice verification

stuck furnace
#

Actually, after a couple more messages, you should be able to verify.

whole bear
#

whoever is without sin cast the first stone

#

๐Ÿ˜ฆ

#

20

#

how is the male version

#

hahahahaha

#

im new guysss๐Ÿ™๐Ÿ™๐Ÿ˜ณ๐Ÿ˜ณ๐Ÿ™ˆ๐Ÿ™ˆ

#

you cannot even mention

zenith radish
errant hare
#

@trail tusk sir big fan sir

whole bear
#

are you like in a bathroom

#

show us lithuaninan mmusic

#

๐Ÿ˜ฆ

#

but

#

what u listen

#

people

#

seems right with my stereotypes

#

I mean, i think all those countries listen to metal

celest pecan
#

das model

zenith radish
#

The roaring 20s

#

The rawrring 20s xD

whole bear
#

In popular psychology, a quarter-life crisis is a crisis "involving anxiety over the direction and quality of one's life" which is most commonly experienced in a period ranging from a person's early twenties up to their mid-thirties (although a quarter-life crisis can begin as early as 18). It is defined by clinical psychologist Alex Fowke as "a...

#

I dont

celest pecan
#

there is a python script that translate my voice in english

#

bill gaytes

#

that's scary af

#

wtf dude

whole bear
#

mmm

celest pecan
#

and people beating up each other

#

therapeutic of course

rugged root
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

whole bear
#

Im doing the atbs

celest pecan
#

ggo

whole bear
#

2 times a day is enough

#

morning and night

#

im devoted to ganesha

#

ganesha the best

#

ohm ganapataye namaha sharanam ganesha

#

| god is |
| n 1 |

rugged root
#

I don't think I get that one

whole bear
#

thats moses table

rugged root
#

Ah, gotcha

#

Gotcha as in I understand

#

Not like HA, GOTCHA

#

@zenith radish What kind of project did you have in mind anyway?

whole bear
#

teology class

zenith radish
#

@rugged root not sure yet, but I'm sure we can think of something

rugged root
#

Fair

#

Still working on understanding DOM interaction currently

dense ibex
#

@alpine path is sql alchemy async though?

alpine path
#

yes

#

since 1.5.1

dense ibex
#

oh

somber heath
#

@rugged root Ankheg of beer.

rugged root
#

Oooo

#

I like that

paper tendon
#
Welcome to the MicroOS Portal 
As a modern Linux operating system openSUSE MicroOS is
Small: Lightweight images designed to be deployed for a specific use case
Scalable: Optimized for large deployments while capable as a single machine OS
Always up-to-date: Updates are automatically applied without impacting the running system
Resilient: In case of trouble the system automatically rolls back to last working state
Fast: Doesn't ship with baggage that slows it down
In other words openSUSE MicroOS is an operating system you don't have to worry about. It's designed for but not limited to container hosts and edge devices. Due to the focus on unattended operation it's especially suited for large deployments. openSUSE MicroOS inherits the openSUSE Tumbleweed and SUSE Linux Enterprise knowledge while redefining the operating system into a small, efficient and reliable distribution.

openSUSE MicroOS is a variant of openSUSE Tumbleweed and serves as a base of openSUSE Kubic, a Container as a Service platform.
Experimental images based on openSUSE Leap are available.
Features 
Microos-inline.png
Read-only root filesystem to avoid accidental modifications of the OS
The Transactional Updates technology leverages btrfs snapshots to apply package updates without interfering with the running system
health-checker to verify the OS is operational after updates. Automatically rolls back in case of trouble.
cloud-init for initial system configuration during first boot on Cloud (includes OpenStack)
Combustion and Ignition for initial system configuration during first boot on all other images.
Designed to fit perfectly into existing openSUSE or SUSE Linux Enterprise environments
Podman Container Runtime available
Rolling Release: Every new openSUSE Tumbleweed snapshot also automatically produces a new openSUSE MicroOS release. The Leap based version automatically updates when maintenance updates for Leap are published.
zinc ocean
#

frikin hell

#

u guys are olddd

#

lol

rugged root
#

Well

#

Yes

#

Age happens

dense ibex
#

i'm only 16 lol

rugged root
#

At least I am

#

I'm 31

zenith radish
zinc ocean
#

sry lol

alpine path
#

I am between hemlock and jake

rugged root
#

I enjoy my getting oldness

vivid palm
#

ohh mino

zenith radish
#

all these words they make no sense

#

I find bliss in ignorence

zinc ocean
#

lol

rugged root
#

Fair

#

With age comes experience

#

And achy joints

stuck furnace
#

Still waiting for them to add generics to C lemon_pensive

somber heath
#

I think it's the extra processing load from the video. Drops the echo cancellation processing capacity.

dense ibex
zinc ocean
zenith radish
rugged root
#

I hate it and love it

somber heath
#

My solution to being restricted by the GIL.

#

๐ŸŸ ๐ŸŸ

zenith radish
#

hemshake
๐Ÿ‘—
programmingsocks

zinc ocean
#

nice

rugged root
#
new Promise(function(resolve, reject) {

  setTimeout(() => resolve(1), 1000); // (*)

}).then(function(result) { // (**)

  alert(result); // 1
  return result * 2;

}).then(function(result) { // (***)

  alert(result); // 2
  return result * 2;

}).then(function(result) {

  alert(result); // 4
  return result * 2;

});
stuck furnace
#

Oh, I was waiting for you to say something ๐Ÿ˜„

#

But you meant this

paper tendon
#

how I feel about the stupid JS name for async await functions. So spoiled JS beginners just use axios and start a promise but if you dont handle promise things error. And also that is a point of view of library "As long as you dont break this promises."
Stupidly coincided in the time frame with actual implementations of async in node. ๐Ÿ™‚
https://www.youtube.com/watch?v=llDikI2hTtk

BETWEEN II WORLDS is available now: po.st/iTB2W

Buy now: http://smarturl.it/WelcomeReality
The official video for Nero's forthcoming single, "Promises", out now on iTunes: http://zaphod.uk.vvhp.net/v-v/110711083011

Taken from the debut album "Welcome Reality", out 15th August 2011
Pre-order the album in standard and deluxe formats from iTunes:...

โ–ถ Play video
rugged root
#

Trying to see where they implement dictionaries in the cpython repo

#

@tiny socket Aleeeeeecccccccccccccccc

#

You've had your hands in the CPython code lately

#

Do you have any idea where they have int implemented?

whole bear
#

ciao

somber heath
#

Some Romanian dude.

#

Probably.

rugged root
#

Well played

somber heath
#
vapors = True```
wise cargoBOT
#

Python/bltinmodule.c line 3032

SETBUILTIN("int",                   &PyLong_Type);```
somber heath
#

Sad trombone noises.

rugged root
zenith radish
paper tendon
#

NiH

past oracle
#

๐Ÿ‘‹

rugged root
paper tendon
#

oops

#

not oof

tiny socket
rugged root
#

I appreciate it

tiny socket
#

Lol no it's not on its way out

rugged root
#

Wait, so which of the longobject files are more important to look at, the .h or the .c

#

Or do you have to look at both to get the true breadth of it

tiny socket
#

Which state

rugged root
#

Nevada

tiny socket
rugged root
#

Yeesh

#

Okay, never mind then

#

I'm not that curious

tiny socket
#

Cpython is a complex beast with many many layers

rugged root
#

Fair

#

Only reason I got curious was because CF8 was mentioning how efficient and powerful Python's ints are compared to JS's BigInt

tiny socket
#

Oh they're epic

#

I have dug into them before and they're cool

#

Well if Google totally kills firefox

#

Someone can just raise a Monopoly lawsuit against google

tiny socket
#

Facebook not Amazon kek

tiny socket
#

No

vagrant roost
#

is he done interupting?

whole bear
#

lol

vagrant roost
#

so can i finish

rugged root
#

But it's not a Python thing

#

Not really sure

#

@vagrant roost The Help System is specifically for Python. There's also the option of asking in the off-topic channels. Since it's really not Python stuff, it's going to be more difficult to get help on these things

#

And when we're in here, we're typically just shooting the shit.

#

But if you want to ask questions, typically it's better to type out the question here, and people will see if they can assist

vagrant roost
#

i was here on many occasions and always i got help in one of these channels. even when it took a few hours.

#

and you guys started to help me and then someone just asks a different question

rugged root
#

Right, which he apologized for right after you bailed the channel

#

When I said "what's up" to him, I had no way of knowing if he had a question or just a quick comment

vagrant roost
#

he probably wouldnt have realized it if i hadnt left

rugged root
#

It's a voice channel full of people, these things happen

#

You have to be more patient

vagrant roost
#

i was

#

i waited until everything was finished

rugged root
#

I'm saying even if there's an interruption

vagrant roost
#

then when i though i could get help you started and i got interrupted 3 times

rugged root
#

Can you remind me what the setting is you were talking about

#

It was on CloudFlare, right?

vagrant roost
#

cloudflare yes its about a mx record

whole rover
#

cloudflare yeah

vagrant roost
#

so i have my domain where i also get my mail from

rugged root
#

Actually Joe would be better help than I

#

And since he's here, I'm roping him into this

vagrant roost
#

whos joe

whole rover
#

let me empty my room and I'll join voice

rugged root
#

This joe

vagrant roost
#

ah you missed it

#

๐Ÿ˜ญ

#

ok thx ill wait

rugged root
#

No, I didn't. The joke has been said so much

vagrant roost
#

oh ok

whole rover
#

i have arrived

dense ibex
#

Bruh

#

pls tell me no one saw that

rugged root
#

Was it a quickly deleted message?

dense ibex
#

yep

rugged root
#

Because I didn't, but I will in a second

#

Did... did you have a stroke?

dense ibex
#

I had my hands in the wrong place on my keyboard

#

So yeah it looked like I had a stroke

rugged root
#

!stream 354271355069267980 30M

wise cargoBOT
#

โœ… @vagrant roost can now stream until <t:1629480108:f>.

rugged root
meager ridge
#

Discord could of course adopt the very common practice of pandering heavily to corporations, and charging these corporations money for some sort of licensing/hosting/support while letting the average Joe Schmoe use the application for free.

alpine path
zenith radish
versed sapphire
#

@tiny socket C-a C-k

#

in terminal

rugged root
#

I will be back, just attending the IT meeting

forest zodiac
#

hi

rugged root
#

Just in case this hasn't been mentioned

gloomy vigil
#

@rugged root is there any way like in the Windows Media creation tool(win 10) installs completly good in usb, but like dosen't installs correctly when booted in a pc/laptop

amber raptor
#
Democracy Now!

The Biden administration has revived an antitrust lawsuit against Facebook. On Thursday, the Federal Trade Commission asked a U.S. district court to force Facebook to divest from WhatsApp and Instagram, arguing the social media giant had erected a monopoly that illegally crushed its competition. In June, the same court threw out a lawsuit by the...

rugged root
#

@gloomy vigil That's always possible

#

What's going on with it?

forest zodiac
#

hi guys

#

what's the topic?

gloomy vigil
rugged root
#

I think how crappy tech companies and stuff are, Human

gloomy vigil
#

but he said he has tried 3 three times but it is not installing correctly

rugged root
#

Any other details other than that?

gloomy vigil
#

i messaged him for more details he hasnt replied

rugged root
#

Righto

#

It's hard to know without that.

gloomy vigil
#

so he might would have messed up right?

rugged root
#

Entirely possible

gloomy vigil
#

hmm

forest zodiac
#

in our country a prime minster stays for 8-12 months

#

our political situation is very unstable

rugged root
#

Wait, months?

#

Where is this?

forest zodiac
#

Nepal :/

forest zodiac
gloomy vigil
#

re.findall(r"(?<=hey )[a-zA-Z](?=\!)", "hey John!")
it returns this [] but I wanted it to return John what is wrong with this regex

#

i missed +

rugged root
#

Racking up tons of debt
They're college students

#

Man I really had to think about that

gloomy vigil
#

yea me too lol

amber raptor
gloomy vigil
#

haha lol

gloomy vigil
rugged root
#

This is weird to me:

function* generateSequence() {
  yield 1;
  yield 2;
  return 3;
}

Like.... why does it need the * to indicate that it's a generator function

honest pier
#

js bad

rugged root
#

Would the yield not be enough to indicate that?

gloomy vigil
#

why do you need to specify int

honest pier
#

you don't, you have auto

rugged root
#

I don't mind the typing

#

And most languages have type inference anymore

#

Like what auto does

gloomy vigil
rugged root
#

Not complaining, just finding it weird

#

I don't mind doing it

gloomy vigil
rugged root
#

Just wondering if there's a specific reason for that design decision

honest pier
rugged root
#

Sure, but that helps dictate whether it's going to be signed, unsigned, whether it needs more than 8 bits, etc

#

It covers more than just saying it's a blanket int

#

I think

#

I might be wrong

gloomy vigil
#

hmm python doesn't do that

honest pier
#

because all python ints are the same. not in other languages

gloomy vigil
#

lets just not compare

rugged root
gloomy vigil
rugged root
#

I wonder if it's a decision because of the JIT

#

Quickly able to tell that it's going to be a generator, doesn't matter what's inside

#

Huh

slate viper
#

hellooo

#

how is everyoneee

gloomy vigil
#

good

rugged root
#

Good, you?

slate viper
#

good but not good

#

we have exams in 38 days

rugged root
#

Okay, another interesting thing:

function* generateSequence() {
  yield 1;
  yield 2;
  return 3;
}

let generator = generatorSequence();
for (let num of generator) {
  console.log(num);
}
```That will output `1` and `2`, but not 3
slate viper
#

Board CAIE exams and i have only done like not even one subject

brave steppe
rugged root
#

Instead of the loop?

honest pier
#

@rugged root that happens in python too

rugged root
#

Oh wait does it?

#

Huh, I don't think I've ever noticed that

honest pier
#

yeah, the return gives a StopIteration, the value in the StopIteration is the return value

brave steppe
#

!e ```py
def generate():
yield 1
yield 2
return 3

gen = generate()
try:
while True:
print(next(gen))
except StopIteration as e:
print('STOP!', e)

wise cargoBOT
#

@brave steppe :white_check_mark: Your eval job has completed with return code 0.

001 | 1
002 | 2
003 | STOP! 3