#voice-chat-text-0

1 messages · Page 941 of 1

mild agate
#

idk why we're forced to study Chem btw

#

it isnt supposed fr CSE's

#

Hehee

#

u hv to study like equilibrium

#

LOL

haughty idol
#

well we have AI running in all fields

mild agate
#

hmm

mild agate
#

i love PHYSICS but Chem is like 🤪

#

if u did study bio then tell me the scientific name of cockroach without googling

#

sotoru its fr u

#

😆

#

btw what was ur most embarrasin moment?

#

guys

#

a gal

#

OHHHHHHHH!

#

hmm LOL

#

mine was when i was dancin with my dudes @my class stage bcs my teacher{most strict 1} didnt arrive in the class @ time so i thought he wz gonna be absent bt he was watchin me from the window!

#

🤪

#

LOL

#

LOL

#

btw gojo u frm india!

#

hmm

#

TRUE

haughty idol
mild agate
#

i did ctrl+R for no reason
LOL

#

Ahh cool

#

hey man i didnt went like that

#

yea

#

TRUE

#

btw i know some reverse engineering

#

btw he can use GitHub to host his page too!

woeful salmon
woeful salmon
#

!e

foo = [1, 2, 3, 4, 5, 6, 7]
print(foo[:])
print(foo[::-1])
print(foo[1:3])
wise cargoBOT
#

@woeful salmon :white_check_mark: Your eval job has completed with return code 0.

001 | [1, 2, 3, 4, 5, 6, 7]
002 | [7, 6, 5, 4, 3, 2, 1]
003 | [2, 3]
molten pewter
pastel linden
#

['199', 'A', '200', 'A', 'B', '208', 'A', 'B', 'C', '210', 'B', 'C', 'D', '200', 'E', 'C', 'D', '207', 'E', 'F', 'D', '240', 'E', 'F', 'G', '269', 'F', 'G', 'H', '260', 'G', 'H', '263', 'H']

primal yacht
#

Refrained from sending in a different Discord:

Maybe using a dict could be helpful?
Also can simplify the logic of winning / losing.

# By assigning negative values as special commands, it helps with handling them separately.
# Using positive values will help for the game.
>>> moves = { 'r': 1, 'p': 2, 's': 3, 'q': -1 }
# Moveset that the CPU / AI can use
>>> cpu_moveset = ( 'r', 'p', 's' )
# Grab user input like normal
...
# Pick the AI's move
>>> cpu = random.choice(cpu_moveset)

# We know a tie is when:
>>> # Same pick ('p'aper is 2; 2-2==0; etc.)
>>> moves[player] - moves[cpu] == 0

# We also know it is a player victor if:
>>> # (P->p & C->r; 2 - 1 == 1) OR
>>> # (P->s & C->p; 3 - 2 == 1)
>>> moves[player] - moves[cpu] == 1
>>> # (P->r & C->s; 1 - 3 == -2)
>>> moves[player] - moves[cpu] == -2

# If neither 1, -2, nor 0, then the computer player won (meaning the value is either -1 or 2; a flip of the player win values if you check the math)
molten pewter
#

The Indian subcontinent, or simply the subcontinent, is a physiographical region in South Asia. It is situated on the Indian Plate and projecting southwards into the Indian Ocean from the Himalayas. It generally includes the countries: Bangladesh, Bhutan, India, Maldives, Nepal, Pakistan, and Sri Lanka. The terms Indian subcontinent and South As...

#

The Indian Plate or India Plate is a minor tectonic plate straddling the Equator in the Eastern Hemisphere. Originally a part of the ancient continent of Gondwana, India broke away from the other fragments of Gondwana 100 million years ago and began moving north. Once fused with the adjacent Australian Plate to form a single Indo-Australian Plat...

primal yacht
#

!e ```py
class A:
def getitem(self, x, /):
return repr(x)
a = A()
print(a[123], a['abc'])
print(a['start':], a[:'stop'], a[::-1])
print(a[1:2, 3:4], a[7, 8, 9])

wise cargoBOT
#

@primal yacht :white_check_mark: Your eval job has completed with return code 0.

001 | 123 'abc'
002 | slice('start', None, None) slice(None, 'stop', None) slice(None, None, -1)
003 | (slice(1, 2, None), slice(3, 4, None)) (7, 8, 9)
pastel linden
#

thanks guys!

primal yacht
#

?

wise cargoBOT
#

@whole bear :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     print(“I’m just testing this function”)
003 |           ^
004 | SyntaxError: invalid character '“' (U+201C)
#

@whole bear :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 1
002 |     print(‘I am just testing this function’)
003 |           ^
004 | SyntaxError: invalid character '‘' (U+2018)
primal yacht
#

oops

#

but still to you

#

and the issue you had is you used a "smart quote" style

#

you need the normal ASCII ' / " for strings

#

Also:
!e ```py
put your
code here
```

#

That is the "backtick" / grave symbol.
Type the bot command !code to figure out how to do a code block on Discord.

primal yacht
primal yacht
#

!e ```py
print(sum(map(int, (1,2,3,4,5))))

wise cargoBOT
#

@primal yacht :white_check_mark: Your eval job has completed with return code 0.

15
woeful salmon
#

!e

foo = ["1", "2", "3"]
bar = map(int, foo)
print(sum(bar))
print(list(bar))
wise cargoBOT
#

@woeful salmon :white_check_mark: Your eval job has completed with return code 0.

001 | 6
002 | []
woeful salmon
#
if executable('black')
    setlocal formatprg=black\ -q\ -\ 2>\ nul
    setlocal formatexpr=
endif
#

@primal yacht think i'm just gonna solve the part 2 now -> look at your configs and just goto sleep now 🙂 i slept at 5 am yesterday don't wanna repeat that

#

goodnight 👋

primal yacht
#

you can look at it another time

runic forum
#

@white hamlet what are you typing?

#

i can hear it

unique jasper
#

Does someone have experience with mySQL?

#

(using python ofcourse)

#

when I create a table, it works, but when I insert, it doesn't 🙈

#

man I have no idea

#

3 hours on it haha

#

the database is online, so maybe it's paart of the problem

#

no, it's online, but if I can creat, why can't I insert

#

create*

#

because, If I try to create twice it says error

#

and I can check inside database, it shows the table that I made

#

but if I try to insert, nothing happens

#

like that?

#

yeah

#

it didnt work, i tried before

#

yeah

#

thanks anyway, frick

#

I guess I can't curse here haha

#

aren't we all

#

ayo

#

thank you brother

#

ill try

#

nope

crimson tide
#

!voiceverify

#

e

#

oh

somber heath
#

Yahoy.

whole bear
#

yohoy

#

what's up

somber heath
#

Arting.

whole bear
#

aha, but what

somber heath
#

Still on interference patterns.

#

More what I can do with them post generation.

whole bear
#

oo isee

#

i will be back

somber heath
#

Howdy howdy.

fast sparrow
#

@somber heath hey you are still here from 6 hrs?

somber heath
#

No.

fast sparrow
#

Ohhh

somber heath
#

Hoya.

#

He returns.

whole bear
#

yo i am back

#

hey @round prawn

round prawn
#

hi

whole bear
#

what's up

round prawn
#

ok

#

you?

whole bear
#

nothing fancy but thermometer 🌡️ under my arm

round prawn
#

death

#

xD

whole bear
#

haha I am bored isolated

somber heath
#

Better under your arm than some alternatives.

somber heath
#

Hey, Reap.

#

At somewhat of a nadir.

whole bear
#

i am bored man

somber heath
#

Diligence, man!

#

Ah, well.

#

I know.

#

I want to want to do things.

#

But I don't want to do things.

whole bear
#

see u guys by byye

round prawn
#

bye

quaint oyster
#

hi

#

can i watch u code?

rugged root
#

This suuuuuuuuucks

#

Boss is making me start filling out a spreadsheet for all the IT things I resolve

#

That includes quick emails

#

I really really don't want to use a friggin' spreadsheet for this

sweet lodge
#

What's wrong with tickets?

rugged root
#

The setup

quaint oyster
#

just write a script to create the spreadsheet lol

rugged root
#

Yeah I'm really tempted

sweet lodge
#

What are you going to send someone instead of their ticket number?

#

The row number of the Excel row?

rugged root
#

I'm guessing no change

#

I mean it's all internal

#

It's just to report at the end of the month all the stuff I've fixed

#

Would I prefer a ticket system?

#

Fuck yes

#

But I'll probably just write up a little program for my sanity

quaint oyster
#

LOL

#

ngl he got rekt but that was funny

rugged root
#

!tvban 813341106384273429 2w Inappropriate yelling and use of a soundboard in VC is unacceptable. If you decide to return after the voice ban and continue this behavior, you will lose voice permissions permanently.

wise cargoBOT
#

failmail :ok_hand: applied voice ban to @fading mason until <t:1640010563:f> (13 days and 23 hours).

somber heath
#

"And I want a physical copy on my desk"
"...are you particularly attached to it?"
"What?"
"Your desk."
"No, why?"
"Just checking."
later
THUNKCHRAKKK!
"I suppose I asked for this, didn't I?"
"I think so, sir, yes."

sweet lodge
#

An iterator?

#

!d map

wise cargoBOT
#
map

map(function, iterable, ...)```
Return an iterator that applies *function* to every item of *iterable*, yielding the results. If additional *iterable* arguments are passed, *function* must take that many arguments and is applied to the items from all iterables in parallel. With multiple iterables, the iterator stops when the shortest iterable is exhausted. For cases where the function inputs are already arranged into argument tuples, see [`itertools.starmap()`](https://docs.python.org/3/library/itertools.html#itertools.starmap "itertools.starmap").
woeful salmon
#

like an iterable object

#

that uses a generator in the __iter__

#

or __next__ thinkmon

sweet lodge
#

!e

print(["x","y","z"].pop())
wise cargoBOT
#

@sweet lodge :white_check_mark: Your eval job has completed with return code 0.

z
sweet lodge
#

I always forget that list.pop() can be used without an index

rugged root
#

Performs best without

sweet lodge
#

What's wrong with a database?

#

Start small, SQLite with a Python CLI

#

Then make a web frontend with Flask

#

Then switch to Postgres so you can have multiple concurrent users, because now your boss wants to be able to see too

#

Before you know it, you're on your fourth rewrite in 3 years, wondering what the hell you're doing with your life

#

Definitely not speaking from experience BTW

#

What's wrong with C#?
Boiler plate or lack of experience?

#

Aren't we all

#

I'm afraid I can't do that

#

It really doesn't though

#

What datapoints do you need to record?

#

Yeah
Just keep an Excel file of all of the random crap
And have a script pull all the tickets for the month and append them to the file before submitting it

rugged root
#

Maybe, but could do all of that with filtering in Excel proper

#

The only thing that is going to eat at me are the notes

#

Since I don't like spreadsheets that suddenly have really fat rows

sweet lodge
#

Yes

#

You do

#

But you can just use =ROW() for the walk-ins, assuming you don't need distinct values

#

Yeah

#

I'm actually working on Advent of Code in Excel

#

No

#

My dad said "That's not so hard, I bet I could even do that in Excel"

#

And I got curious, so now I'm actually trying it

#

No - he's essentially operations manager for over 200 people

#

No VBA here, it just confuses me

#

Yeah, he actually manages his weekly production schedule in Excel, he spends half his day in that damn thing

somber heath
#

Lower capacity for energy expenditure right now. Talk later.

south current
#

hey

#

what ya guys talking about?

#

@rugged root

#

can't you just reduce the size of whole column?

#

ohh, using google sheets

#

yeah test it once on gs maybe it will do what you want

#

he creates games

#

great games

#

@whole bear

#

@molten pewter voice is so clear

#

my internet will not allow me this even with same headphone

rugged root
#

Weird

sweet lodge
sweet lodge
#

Entertaiment?
Stupidity?
All of the above?

#

Day two I got

#

After that, I have no idea

whole bear
#

.

woeful salmon
rugged root
molten pewter
rugged root
sturdy panther
#

Also need insurance. A really expensive insurance.

#

I have a um... slightly embarassing question.

#

What does one need to do after pushing an email password into a public repo?

#

Asking for a friend.

#

Other than changing the email password.

rugged root
#

Make sure that the password isn't used anywhere else

#

You may have to start hunting quite a bit. You can revert the commit so long as it's not too deep

#

But the only really important step is a mass password change of any accounts that share that password

sturdy panther
#

Password was unique. So that bit is covered!

#

The commit was noticed immediately, so I force pushed to overwrite it.

#

It is just... Git repo keeps past commits for a while

rugged root
#

Yeeeep

#

Which is why there isn't a lot you can do

sturdy panther
#

My friend wants me to play PoE. My poor 4GB laptop cannot handle games though S:

rugged root
#

It's weird not having bad breath for once

#

Like

#

For years I did because of the plaque built up between the teeth and gums. It was like rocks in there

#

But since I got all that taken care of, it's such a weird difference

#

No headaches, no tooth aches, no awful breath

#

I guess I never realized how much it bothered me before

#

I was always really self conscious about it

#

Sorry, just came to mind

sturdy panther
#

If you are not used to it, I can suggest garlic!

#

You were... having headaches?

#

Blimey..

#

Was the dentist visit expensive?

#

That's.. not too bad I guess.

#

Mm. I haven't been to a dentist for over a decade.

#

Really? No donations to the tooth fairy?

#

That is really unfortunate...

#

Yea. Those can get really nasty.

rugged root
#

!projects

wise cargoBOT
#

Kindling Projects

The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.

rugged root
stuck sky
#

thx alot guyz

#

u guyz r damn good

molten pewter
#
Khan Academy

Learn for free about math, art, computer programming, economics, physics, chemistry, biology, medicine, finance, history, and more. Khan Academy is a nonprofit with the mission of providing a free, world-class education for anyone, anywhere.

sturdy panther
#

That's quite a range: "US$32K-US$77K"!

rugged root
#

Yep

molten pewter
sturdy panther
#

Does anyone know what usually happens in a "non-technical" job interview?

#

It adds that "no preparations required".

dusk imp
#

they usually ask about your previous experiences.

#

like "what was the hardest project you ever done?"

#

your proudest projects,

#

and questions like "how would u approach to a problem like blah blah...."

sturdy panther
#

Sounds almost like normal chit-chat!

#

Except that last one.

brave steppe
dusk imp
#

yeah, as a technical artist, my experience could be a little different than the others

#

our job is a "bridge" position and even recruiters don't really know what they should ask to us XD

sturdy panther
#

I am guessing it is not the same as tooling for artists.

dusk imp
#

generally, in a "non technical" interview even if they ask a question about a technical thing, they expect a point of view from you. Not a technical solution or code.

sturdy panther
#

Mm. I would probably tunnel vision anyway. But thank you, I will keep that in mind!

dusk imp
#

sure

hexed vault
#

guys what syntax to remove ' from a string

haughty pier
rugged root
#

!stream 128363483828977664

wise cargoBOT
#

✅ @woeful salmon can now stream until <t:1638814550:f>.

rugged root
hexed vault
#

do you guys have an idea how to remove this ' character from a string?

rugged root
#

This for class?

#

And what have you tried thus far?

molten pewter
#

' is called an apostrophe.

#

You can do it by using .replace.

#
mystring = mystring.replace("'", "")
mystring = mystring.replace('"', "")
woeful salmon
haughty pier
#
replace(self, old, new, count=-1, /)
    Return a copy with all occurrences of substring old replaced by new.

      count
        Maximum number of occurrences to replace.
        -1 (the default value) means replace all occurrences.

    If the optional argument count is given, only the first count occurrences are
    replaced.
#

@molten pewter what do you do if you have multiple characters to delete?

#
translate(self, table, /)
    Replace each character in the string using the given translation table.

      table
        Translation table, which must be a mapping of Unicode ordinals to
        Unicode ordinals, strings, or None.

    The table must implement lookup/indexing via __getitem__, for instance a
    dictionary or list.  If this operation raises LookupError, the character is
    left untouched.  Characters mapped to None are deleted.
gentle flint
slate kindle
#

i

#

must

#

send

#

50

#

messages

#

thats

#

so

#

annoying

#

@gentle flint is this already blender3?

gentle flint
#

2.83

slate kindle
#

ok

#

because of the mesages above im sended now more than 50 messages

#

where can i see how long im on the server?

#

how many hours are missing?

sturdy panther
#

86400 seconds!

slate kindle
#

oh

#

im thought im already about three days on the server

rugged root
#

Close but not quite

slate kindle
#

ah ok

rugged root
#

Over halfway there

slate kindle
#

:(

rugged root
#

It serves a good purpose. We had a lot of hit and run trolls who would join the server, join voice chat, scream, and then leave. This was happening multiple times a day

#

The voice gate has reduced it to maybe one or two a month

slate kindle
#

ok

#

i understand

rugged root
#

And if you plan on being in the server for a while, it's a drop in the bucket

slate kindle
#

true

#

!user

wise cargoBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

slate kindle
#

i can here you all

rugged root
#

I know, but they were talking at that time

#

Didn't want to interrupt

slate kindle
#

this is true

#

ah ok

sturdy panther
#

Oh my gosh. That's a lot of tabs.

rugged root
#

He makes..... interesting choices

fast sparrow
#

good night

sly hedge
#

gn

amber raptor
#

Is Aaron showing us the beauty of NixOS?

rugged root
#

@elfin bloom No I don't want to watch you play Fortnite

gentle flint
unique jasper
#

@whole bear freakin fixed it holy hell

primal yacht
#

Is my laptop requiring to be rebooted already?

#

I cannot hear anyone

#

and it does not light up when I speak

woeful salmon
#

may be :x we can't hear you either

primal yacht
#

yep it was acting up

#

had to leave then alt-f4

gloomy vigil
#

sup guys

torn raven
#

git push -u origin [branchname]

whole bear
torn raven
#

git add .

#

git commit -m "whatever message you want"

toxic niche
#

git commit -m ""

torn raven
#

git push -u origin [branchname]

toxic niche
#

git push origin

whole bear
torn raven
#

git fetch

#

git push -u origin [branchname]

gentle flint
#

git branch -vv

whole bear
gentle flint
#

git log --oneline

whole bear
gentle flint
#

git clone https://bitbucket.org/atlanticcasualty/interview_angularjs.git

whole bear
gentle flint
#

git checkout Ohassan9

whole bear
glass forge
frozen jetty
#

can anyone see my phone number in discord when I verified it?

gentle flint
#

not that I know of

#

like, if others can see it, then discord had a data leak

#

git add .

frozen jetty
whole bear
#

Magic

vivid palm
#

prove: 1

#

done

haughty pier
red vessel
#

hey are you a github user

#

@somber heath i wanna store my code online and i am confused how

somber heath
#

GitHub

red vessel
#

like i heard some people use blogspot

somber heath
#

Sourceforge

red vessel
#

i am litterally new to it is there anything that i should know like how can i upload the stuff

#

i have a lot of folders of code

somber heath
red vessel
#

ohkk

#

they use it blogspot as they can see it litterally anytime they want to

#

it will be a website

#

ohkk

#

for me both of them is new

#

do i have to put every file manually in github

#

ohk ill look it online

#

oh cool

#

k byee

#

gn

arctic owl
#

!voiceverify

somber heath
#

!d secrets

wise cargoBOT
#

New in version 3.6.

Source code: Lib/secrets.py

The secrets module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets.

In particular, secrets should be used in preference to the default pseudo-random number generator in the random module, which is designed for modelling and simulation, not security or cryptography.

somber heath
#

!d random

wise cargoBOT
#

Source code: Lib/random.py

This module implements pseudo-random number generators for various distributions.

For integers, there is uniform selection from a range. For sequences, there is uniform selection of a random element, a function to generate a random permutation of a list in-place, and a function for random sampling without replacement.

On the real line, there are functions to compute uniform, normal (Gaussian), lognormal, negative exponential, gamma, and beta distributions. For generating distributions of angles, the von Mises distribution is available.

somber heath
#

!d str.join

wise cargoBOT
#

str.join(iterable)```
Return a string which is the concatenation of the strings in *iterable*. A [`TypeError`](https://docs.python.org/3/library/exceptions.html#TypeError "TypeError") will be raised if there are any non-string values in *iterable*, including [`bytes`](https://docs.python.org/3/library/stdtypes.html#bytes "bytes") objects. The separator between elements is the string providing this method.
red vessel
#
while True:
    print(MENU)
    len_of_pass = int(input('Enter the length of password > '))
    if len_of_pass = 
    choice = input("Enter your choice: ")```
somber heath
#

!e py import secrets, string legal_characters = string.ascii_letters + string.ascii_digits #plus whatever else length = 12 print("".join(secrets.choice(legal_characters) for _ in range(length))

wise cargoBOT
#

Sorry, an unexpected error occurred. Please let us know!

ClientResponseError: 500, message='Internal Server Error', url=URL('http://snekbox.default.svc.cluster.local/eval')

somber heath
#

Huh.

#

Okay, then.

wise cargoBOT
#

Sorry, an unexpected error occurred. Please let us know!

ClientResponseError: 500, message='Internal Server Error', url=URL('http://snekbox.default.svc.cluster.local/eval')

somber heath
#

!e py import random, string legal_characters = string.ascii_letters + string.ascii_digits #plus whatever else length = 12 print("".join(random.choice(legal_characters) for _ in range(length))

wise cargoBOT
#

Sorry, an unexpected error occurred. Please let us know!

ClientResponseError: 500, message='Internal Server Error', url=URL('http://snekbox.default.svc.cluster.local/eval')

red vessel
#

can i just press enter in int(input())?

somber heath
#
import random
length = 10
print(''.join(random.choices(legal_characters, k=length)))```But don't do this, because it's not cryptographically secure.
#

I just know that when doing secure stuff and you don't want it easily predictable, secrets is the module you want to be using, not random.

red vessel
#

ohk i havent used this secrets module

somber heath
#

Besides, input and snekbox don't mix.

#

Which is why I don't tend to use input for examples in here.

red vessel
#

ohkk

#
ValueError: invalid literal for int() with base 10: ''```
#

when i press enter

somber heath
#
user_input = input("...")
if user_input == "": #User pressed only enter
    ...
else:
    ...```
red vessel
#

in this line

red vessel
somber heath
#

Or...something.

#

You can't expect that the user will always enter in something that makes sense.

#

Users are stupid and unpredictable.

#

You may also like to look into try and except.

red vessel
somber heath
#

Combining a while loop, try/except and input and maybe if/elif/else is a good way of validating input and asking the question again if required, not letting the user proceed until good input has been given.

#

!e ```py
"Python code goes here"```

#

Don't copy paste that.

#

!e print("Snekbox, are you okay, yet?")

wise cargoBOT
#

Sorry, an unexpected error occurred. Please let us know!

ClientResponseError: 500, message='Internal Server Error', url=URL('http://snekbox.default.svc.cluster.local/eval')

red vessel
#
import string
print(string.ascii_letters)
#

why dont i need to put ()

#

after ascii_letters

somber heath
#

Because the object referenced is a string.

#

Not a function or class.

red vessel
#

ohk

fast sparrow
#

everyone sleeping here?

fair palm
#

!random

#

!d random

wise cargoBOT
#

Source code: Lib/random.py

This module implements pseudo-random number generators for various distributions.

For integers, there is uniform selection from a range. For sequences, there is uniform selection of a random element, a function to generate a random permutation of a list in-place, and a function for random sampling without replacement.

On the real line, there are functions to compute uniform, normal (Gaussian), lognormal, negative exponential, gamma, and beta distributions. For generating distributions of angles, the von Mises distribution is available.

fair palm
#

!d secrets

wise cargoBOT
#

New in version 3.6.

Source code: Lib/secrets.py

The secrets module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets.

In particular, secrets should be used in preference to the default pseudo-random number generator in the random module, which is designed for modelling and simulation, not security or cryptography.

fair palm
#

!d tkinter

wise cargoBOT
#

Source code: Lib/tkinter/__init__.py

The tkinter package (“Tk interface”) is the standard Python interface to the Tcl/Tk GUI toolkit. Both Tk and tkinter are available on most Unix platforms, including macOS, as well as on Windows systems.

Running python -m tkinter from the command line should open a window demonstrating a simple Tk interface, letting you know that tkinter is properly installed on your system, and also showing what version of Tcl/Tk is installed, so you can read the Tcl/Tk documentation specific to that version.

fair palm
#

!d pyqt

wise cargoBOT
#

pyqt provides python wrappers for the Qt widgets library and is required by the matplotlib Qt5Agg and Qt4Agg backends. Widely used on linux and windows; many linux distributions package this as 'python-qt5' or 'python-qt4'.

fair palm
#

anybody here has used tkinter or pyqt? could u pls suggest which would be easier to use for someone who hasnt used a gui method yet?

gentle flint
#

tkinter is easier I think

#

although pyqt looks nicer

visual pumice
#

hey

left plume
visual pumice
#

i cant talk 😦

#

ooF

somber heath
#

!voice

wise cargoBOT
#

Voice verification

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

visual pumice
#

yeaa, i just joined, i still have a checklist to complete

#

do you know django by anychance????

left plume
#

I think the most delightful possible visual aesthetic we can pull off right now is a combination of the Renaissance, Art Deco and cyberpunk: the grandeur and humanism of Renaissance, the beautifully articulate ornamentation of Art Deco and the infinite possibilities of cyberpunk.

Imagine if nudity was no longer relegated to porn, but instead was idealized to the point of absolute perfection, where it directly affects the religious centers of your brain because you're looking at something divine and impossibly amazing. That's what I wanna bring. Imagine the beautiful statues of Michelangelo coming to life. We can do this now with CGI.

Imagine if the surroundings in any frame are absolutely resplendent to look at. Beautiful colors, proportions and ornamentation. Something that people took hours to design, every single time. That's maximum value for time spent by your eyeball.

Imagine technologies that you've never seen before letting you do more than you could ever do before.

Beauty is extremely beneficial. It fills us with joy and makes us feel the world is alright, and it really is. The world is our friend, not our enemy. We are part of it and it is part of us.

#

separate generation from judgment

somber heath
#

I prefer to speak in euphamisms.

#

The longer the better.

#

Stochastic. Having a property of randomness.

#

Or, at the least, unpredictability.

left plume
#

nothing is random if you're looking at it or thinking about it

#

it's part of your code

#

The simulation hypothesis is a proposal regarding the nature of existence which posits that all of existence is an artificial simulation, such as a computer simulation. Some versions rely on the development of a simulated reality, a proposed technology that would be able to convince its inhabitants that the simulation was "real".
The simulation ...

somber heath
#

@whole bear Good luck...

whole bear
#

what happen

#

why

somber heath
#

You said you have a question, yes?

whole bear
#

nah i got it m voice verf wasnt working

#

but now it works

somber heath
#

Righto.

whole bear
#

thank u tho

left plume
#

“God likes to play hide-and-seek, but because there is nothing outside of God, he has no one but himself to play with! But he gets over this difficulty by pretending that he is not himself. This is his way of hiding from himself. He pretends that he is you and I and all the people in the world, all the animals, plants, all the rocks, and all the stars. In this way he has strange and wonderful adventures, some of which are terrible and frightening. But these are just like bad dreams, for when he wakes up they will disappear.

Now when God plays "hide" and pretends that he is you and I, he does it so well that it takes him a long time to remember where and how he hid himself! But that's the whole fun of it-just what he wanted to do. He doesn't want to find himself too quickly, for that would spoil the game. That is why it is so difficult for you and me to find out that we are God in disguise, pretending not to be himself. But- when the game has gone on long enough, all of us will WAKE UP, stop pretending, and REMEMBER that we are all one single Self- the God who is all that there is and who lives forever and ever.
You may ask why God sometimes hides in the form of horrible people, or pretends to be people who suffer great disease and pain. Remember, first, that he isn't really doing this to anyone but himself. Remember too, that in almost all the stories you enjoy there have to be bad people as well as good people, for the thrill of the tale is to find out how the good people will get the better of the bad. It's the same as when we play cards. At the beginning of the game we shuffle them all into a mess, which is like the bad things in the world, but the point of the game put the mess into good order, and the one who does it best is the winner. Then we shuffle the cards and play again, and so it goes with the world.”

whole bear
#

google?

#

maybe

somber heath
#

re: Crustacean gods.

left plume
#

Lobsters do not stop growing and do not die of old age. They die when they become too large to properly molt.
We are going to take a lobster, help it molt it’s shell over several generations, and create a leviathan god. Here we will plan our gods birth and rise to divinity.
Their acolytes are at risk and must be protected. Any creature with magic blood is obviously descended from the gods.

somber heath
#

I treat Facebook like dog poo.

#

I avoid stepping in it.

whole bear
left plume
#

"idea is the clue of human"

#

bye!! @frozen jetty

somber heath
#

o/

#

Canbra

#

Now you're speaking Australians.

#

I suppose it's like the difference between Holland and Holland.

#

Pardon?

#

ehnd

#

yes

#

ind feels weird

#

Maybe if you're from New Zealand.

#

What's the data in question?

frozen jetty
#

str or int

stuck sky
#

why so much silence

somber heath
#

Pardon?

#

Cockney rhyming slang.

#

Sauce horse

#

I'm not sure many of them are truly notable.

#

Yeah, I wouldn't say that's a very good list.

#

Haven't seen a kangaroo in a while, actuallly.

woeful salmon
#

@cedar briar ^ look at it from half way

#

its so good 🙂

cedar briar
somber heath
#

hoy hi

whole bear
somber heath
#

!e py v = [[1,2,3], [4,5,6], [7,8,9]] print([*zip(*v)])

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

[(1, 4, 7), (2, 5, 8), (3, 6, 9)]
somber heath
#

!e py from collections import Counter v = [1,2,2,3,3,3] print(Counter(v))

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

Counter({3: 3, 2: 2, 1: 1})
somber heath
#

!e py d = {3: 3, 2: 2, 1: 1} print(max(d)) #d.keys()

wise cargoBOT
#

@somber heath :white_check_mark: Your eval job has completed with return code 0.

3
stuck sky
#

any1 exp with web d

#

@whole bear @molten pewter hm

whole bear
#

perhaps

stuck sky
whole bear
#

i cant guarantee you assistance but sure

#

i am in the vc

somber heath
#

Screen sharing is a privilege and one only granted at moderator/admin discretion and usually only on a temporary basis and generally only with good reason.

#

Though it's possible it's someone's lucky day.

stuck furnace
#

@stuck sky Do you need streaming permissions to get help with something?

#

Sorry, what did you want to stream?

stuck sky
#

i just need help

#

plz

stuck furnace
#

Alright 👍

whole bear
stuck furnace
#

!stream 446207619837984777

wise cargoBOT
#

✅ @stuck sky can now stream until <t:1638885154:f>.

stuck furnace
#

Stream is fine. But your microphone is varying quite a lot in volume.

sweet lodge
#

Databases are cool

swift needle
#

We can use ajax for that right

sweet lodge
#

Which one do you want to use?
How about Oracle?

swift needle
#

We can transfer data of database from django to ajax data in js

swift needle
#

Can we do that

stuck furnace
#

👋

swift needle
#

Hi

#

Can we use ajax

#

For that

stuck sky
#

how can i fetch my queried post in js via django for loop (on .js file)

somber heath
#

"Say thank-you. AJAX Spray and Wipe. Do do do do do." 🎶

swift needle
#

What?

sweet lodge
#

Hm... No Oracle then. How about using AWS Lamba to save the notes as objects in S3?

stuck sky
somber heath
#

Fracking - Bad for the environment.

stuck sky
stuck furnace
#

Er, hello 😄

somber heath
#

Better than yesterday.

rugged root
#

Good!

somber heath
#

I got boostered the day before yesterday, so I was a bit flat the day after.

#

Well, I had a similar experience the previous time as well.

stuck sky
somber heath
#

Justify your employment, Hemlock.

#

JUSTIFY!

stuck sky
#

hemlock owns a Rolls-Royce

somber heath
#

Everything works fine: "Why do we even pay you?"
Something breaks: "Why do we even pay you?"

rugged root
#

No no, I own rolls of rice

olive narwhal
#

!voiceverify

rugged root
sturdy panther
olive narwhal
#

can anny one join call and help me

stuck sky
sweet lodge
#

@rugged root - Normalize all the things!

Look at winget's database (SQLite) - Even the names and IDs get their own tables

somber heath
#

I knew a Royce.

#

Also a Roque.

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.

olive narwhal
#
import random
import os
import random
import sys
import time
WIDTH, HEIGHT = 1080,720
SCREEN = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption(("Space Invaders!"))


run = True
while run:

    class game:
        def __init__ (self):
            pass

        def main_game():
            for event in pygame.event.get():
                if event.type == pygame.QUIT:
                    run = False




if __name__ == "__main__":
    tmp = game
    tmp.main_game()
```py
stuck furnace
#

```py
Your code here
```

rugged root
#

!stream 564839376916447233

wise cargoBOT
#

✅ @olive narwhal can now stream until <t:1638887391:f>.

wind raptor
#
running = True
while running:
  for event in pygame.event.get():
    if event.type == pygame.QUIT:
      running = False
stuck sky
#

error

wind raptor
#
        def main_game():
            run = True
            while run:
                for event in pygame.event.get():
                    if event.type == pygame.QUIT:
                        run = False
somber heath
#

PULL!

#

Oh, speaking of.

#

Had one of my pigeons hop up onto my knee, today.

#

I say my. They're not mine.

#

They're theirs.

#

It's watchable.

#

It's a romp.

#

The animated Watchmen was good. The movie...some part of it were okay.

#

Some nice CGI.

#

Knife.

runic forum
#

Omo

somber heath
#

Washing powder?

runic forum
#

No

somber heath
#

Too real.

#

Too real.

sweet lodge
#

But that can't be right?

#

This?

#

👍

#

Has PyDis decided on a migration path away from Rapptz/discord.py yet?

somber heath
#

Politics? Avoiding favouritism?

#

Hm.

sweet lodge
#

Just rewrite the whole thing

#

How hard could it be?

#

I'm looking at rebuilding my Flask app in Rust

#

I'm not looking forward to redoing the last three years of work

somber heath
sweet lodge
#

I know understand why everyone says they regret not starting with statically typed languages

#

Probably
I started with Java
But then I went to Ruby, which as far as I remember, has no typing whatsoever
And then I went to Python, and by that point I had already forgotten everything about typing

And now I spend an hour or two every few days trying to figure out with of the methods called is forgetting to convert the string to an int before returning

#

Yep

#

Huh, looks like they finally got it

#

Years

somber heath
#

It'd be about the audio encoding.

#

and what compresses that best.

#

mp3 is container

#

not content

#

Hm.

sweet lodge
#

I'm the only dev at my company, so I get to pick everything. I also started right out of high school, so I had no experience.
I started in Jawa Swing, because that's what I learned in high school
Then multiple people needed to be able to use the app, so I needed a website. Rails looked the easiest to my inexperienced self, so I picked it.
Then I started getting frustrated with the magicalness of Ruby, so I started looking for something less complicated, and I found Flask
And now I'm on the fourth iteration of the Flask version

#

I bought WinRar

#

Yes?

#

A few years ago

somber heath
#

WinRar is based in Sydney Australia?

#

ah

sweet lodge
#

I used to use it a lot

timber venture
#

rawr file 😳

sweet lodge
#

Now I just use the builtin on Windows, and tar on Linux

rugged root
#

compwession compweted!~~~ ^w^

sweet lodge
#

Did LP's PR ever get merged?

rugged root
#

.owo Compression completed!

#

.uwu Compression completed!

viscid lagoonBOT
#

Compwession compweted!

sweet lodge
#

Still open

#

We should finish it for him

#

Can I get the Contributors role if I finish that?

#

I hate it so much

#

But it would be an amazing story if that's how I got the role

#

I mean, why not?

#

New ticket: "please stop by my office"
... fine

Alright, I'll be back

timber venture
#

The average slack message I get: "My computer is broken."

#

rm /* moment

#

was referring to your moment lol

sturdy panther
#

Tha'tis.

rugged root
#

Dats

somber heath
#

The solid block sighs. What does it mean?

rugged root
quaint oyster
#

7zip > winrar

#

true

somber heath
#

"Ron for mayor! Elect Ron!"

quaint wharf
#

hey guys

#

cant talk yet 😦

#

but what i wanted to ask u guys is, do u guys know any good videos explaining object orientated programming, or could someone explaing it please?

inland sable
#

anyine talking here?

stuck furnace
quaint wharf
#

jus youtube

#

so at uni i got taught coding and classes, i did aerospace, but they never went ito it so i have an interview im prepping for and they useoop with embedded c++

stuck furnace
#

Oh right. Do you understand the basic idea of what a class is?

quaint wharf
#

kind off, it holds a fundtion right?

stuck furnace
#

If you imagine all the objects that could possibly exist in your program, a class groups together a set of objects that have similar structure/functionality.

#

The class itself also serves kind of as a blueprint for its instances.

#

!eval ```py
class Person:

def __init__(self, name):
    self.name = name

def greet(self):
    print("Hello, my name is", self.name)

alice = Person("Alice")
bob = Person("Bob")

alice.greet()
bob.greet()

wise cargoBOT
#

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

001 | Hello, my name is Alice
002 | Hello, my name is Bob
stuck furnace
#

So, alice and bob are both objects, and are instances of the Person class.

#

It makes sense for them to be instances of the same class because they are very similar objects. Both objects have one attribute name, and one method greet. The two objects differ only in the value of name.

quaint wharf
#

okay

#

thanks that was really in depth i appreaicte it

stuck furnace
#

👍

#

It gets more interesting when you start talking about the relationships between classes.

quaint wharf
#

so the job istself is saying its sabout c+

#

the actualy OOP ideas can be transfered right?

stuck furnace
#

Essentially, yes.

quaint wharf
#

nive i thought so

#

thank you

stable axle
rugged root
olive hedge
#

!stream 737321460435124285

wise cargoBOT
#

✅ @flint hill can now stream until <t:1638895568:f>.

rugged root
sweet turtle
#

Hi

#

what u guys up to

#

Oh nice lmao, im doing some osdev but i cant talk yet cause ive sent less than 50 msgs here

sweet turtle
#

u grabbing the data from the excel file?

#

wouldnt json files be more efficient?

#

oh ok that makes sense

stuck furnace
sweet turtle
#

building gcc is taking ages

stuck furnace
#

Nooo, you're not.

sweet lodge
#

Who needs notes?

stuck furnace
#

Mixolydian mode 🤔

sweet turtle
#

yeah lmao im building gcc 11.2

#

that took ages to send wtf

rugged root
#
"ticket" INTEGER NOT NULL REFERENCES "Ticket" ("id") ON DELETE CASCADE
sweet lodge
#

Cascade all the deletes

stuck furnace
#

Yeah pretty much

sweet lodge
#

essentially

sweet turtle
#

How do you specify the number of threads used with make

#

oh sorry caps

sweet lodge
#

The cmake(1) Build Tool Mode (cmake –build) gained --parallel [<jobs>] and -j [<jobs>] options to specify a parallel build level. They map to corresponding options of the native build tool.

#

?

sweet lodge
#

Pony looks fancy - how does it compare to SQLAlchemy?

#

According to all the gender reveal parties, it's actually not even that much effort

sweet turtle
#

20 mins all for make to encounter errors

rugged root
#

Sounds right

sweet turtle
#

pain

sweet lodge
#

Being patriotic is cancelled too now?

#

What am I supposed to be now then?

sweet turtle
#

ok finally

$HOME/opt/cross/bin/$TARGET-gcc --version
i686-elf-gcc (GCC) 11.2.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
rugged root
#

Gassy

sweet turtle
#

thats not gonna happen

#

realisticly

#

that is not gonna happen-

#

they arent gonna print more money to pay off debts

#

it changes too sporadically

#

bitcoin went from 45k to 38k in the past couple weeks

#

its not 60k rn-

#

crypto isnt stable

#

Bitcoin inventor Satoshi Nakamoto capped the number of bitcoin at 21 million, meaning there will only ever be 21 million bitcoins in existence. On average, these bitcoins are introduced to the Bitcoin supply at a fixed rate of one block every 10 minutes. ... As Bitcoin reaches its capped supply, its economics will alter.

#

ive traded crypto and right now with how it is its way too unstable to be used as a normal currency

#

besides remember if things crash and people start to use crypto miner prices (gpus and asic miners) will skyrocket.

rugged root
#

@west lionhttps://github.com/SeleniumHQ/selenium/wiki/ChromeDriver

GitHub

A browser automation framework and ecosystem. Contribute to SeleniumHQ/selenium development by creating an account on GitHub.

sweet turtle
#
connor@Inside#9643whale72:~/insideOS$ i686-elf-as boot.s -o boot.oboot.s: Assembler messages:
boot.s: Warning: end of file not at end of a line; newline inserted
#

anyone know what to do?

sweet lodge
#

What's wrong with stealing?

sweet turtle
#

north korea 😏

sweet lodge
#

It added a blank line to the end of the file for you because you didn't have one

sweet turtle
#

ohhhh ok that makes sense

#

bitcoin mining is taxed over here as far as im aware

#

@rugged root

rugged root
#

Not per transaction

#

So there's no sales tax

#

I think it's strictly listed on income

#

And it's like...... property I think?

#

We looked it up a while back

sweet lodge
sweet turtle
#

nope not transactions although wallets do usually have transaction fees and if bitcoin got to that point (which it wont in my opinion) the government will probably try to profit off it that way

#

u can with asics

#

depends on power costs and shit though

sweet lodge
#

Who needs chips anyways?

#

Too many carbs

rugged root
#

Better than too many crabs

sweet turtle
#
connor@Insidewhale72:~/insideOS$ i686-elf-gcc -T linker.ld -o myos.bin -ffreestanding -O2 -nostdlib boot.o kernel.o -lgcc
/home/connor/opt/cross/lib/gcc/i686-elf/11.2.0/../../../../i686-elf/bin/ld: cannot find -lgcc
collect2: error: ld returned 1 exit status
sweet lodge
#

Hmm... so you need to add your own GCCs path to ld's search path?

stuck furnace
rugged root
sweet lodge
#

Happens daily at small business levels

sweet turtle
#

Thats the point of social engineering-

#

it happens all the time

#

its easy to learn too

sweet lodge
#

People don't learn

sweet turtle
#

anyone who can pay attention to a book for 2 hours and has basic social skills can try social engineering

#

its easy too spoof numbers too

#

the original point of this conversation was crypto becoming a standard currency which means everyone no matter how dumb or incompetent will have to use it

#

even if u dont fall for social engineering whats to say they wont?

#

@ruby wind

#

yeah they can....

#

what if it was ur grandma?

#

grandpa

#

@rugged root i beg u tell him to check mute chat

sweet lodge
#

Sorry, I was away
Someone asked to see my private key?
Here it is -

-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW
QyNTUxOQAAACDrXg7lmdwDCm+mPpui+3Rpos5Bucr2RWepxp9j9h5cywAAAJjcC/+F3Av/
hQAAAAtzc2gtZWQyNTUxOQAAACDrXg7lmdwDCm+mPpui+3Rpos5Bucr2RWepxp9j9h5cyw
AAAEDeXUMFynhZZ3pHV1XufK4KWk51itZ+B5URu7vtYvEHUeteDuWZ3AMKb6Y+m6L7dGmi
zkG5yvZFZ6nGn2P2HlzLAAAAEURPIE5PVCBTSEFSRSBUSElTAQIDBA==
-----END OPENSSH PRIVATE KEY-----
#

Social Security does everything

sweet lodge
#

Happens literally daily

rugged root
#

Wait, is that Shaggy's account?

sweet turtle
#

then youll get ur beers in 2 decades

sweet lodge
#

Long story short - Everyone gets compromised eventually

sweet lodge
#

Can I get in on this free beer?

sweet turtle
#

i will buy everyone in the voice chat a round if that happens

sweet lodge
rugged root
#

Amazing

#

Also interesting that we had bots scraping for it here

sweet lodge
#

Haven't used them in years anyways

rugged root
#

Doesn't surprise me

sweet lodge
sweet turtle
#

nfts are bs

#

change my mind

rugged root
#

NTFS however....

sweet lodge
#

@olive hedge - send me your wallet

ruby wind
sweet lodge
#

I'll send you your money

#

After taxes

rugged root
#

Sure, but the joke doesn't work with that

sweet turtle
#

only good purpose of nfts imo is making your own and selling them to some dumb mfs that think they mean something

#

my friend made 86$ off of 1

rugged root
#

@brisk turret

sweet turtle
brisk turret
#

ok im guessing here is the right place?

#

yeah the conversation just now is really interesting

sweet turtle
brisk turret
#

theres recently a lazy minting

#

but not sure if it actually means anything

rugged root
#

Hadn't heard of that

brisk turret
#

like rarible can get buyers to pay for the minting part?

sweet lodge
#

What happened? - I left for five minutes and I come back and it's all quiet

sweet turtle
olive hedge
sweet turtle
sweet lodge
#

You said please copy paste?
Hold my beer

molten pewter
#

If it's an IPA no guarantee you are getting it back.

olive hedge
rugged root
sweet lodge
#

I'm seeing how many days of AoC I can do in Excel

rugged root
woeful salmon
#

do it in html canvas
ez

#

(if you meant the game in the gif) cuz now i'm not sure if you did

haughty pier
#

no not the game - game unrelated

olive hedge
#

@uncut meteor

sweet lodge
rugged root
#

@hard spruce Wave

hard spruce
#

that jingle noise is so annoying omg

#

is from: and stuff working fine for everyone?

rugged root
#

Works fine for me. What's it doing?

hard spruce
#

working now ¯_(ツ)_/¯

#

fisher's a hater

#

try everything 2x

woeful salmon
#

. ┬─┬ ノ( ゜-゜ノ)

molten pewter
hard spruce
#

hm do you think threads will be rolled out for DMs?

rugged root
#

I... huh

#

I don't know how useful that'd be

#

But I guess I could see it

#

Might if enough people request it

olive hedge
#

djent

rugged root
terse needle
olive hedge
woeful salmon
#

it did the same to me again
disconnected -> unable to reconnect to this voice channel until i joined afk and joined back

terse needle
woeful salmon
#

😪 discord need to fix their stuff

rugged root
#

It's really weird, yeah

whole bear
#

wanna play tetris?

woeful salmon
#

just hire me lmao (next day discord employees are locked out because a junior did something horrendous)

#

jk

hard spruce
#

fancy mic griff

rugged root
molten pewter
whole bear
uncut meteor
amber raptor
#

I just posting my handiwork

umbral girder
#

dows anyone know how to program a

#

with buttons

#

my bad

#

thoguht no one wanted to read it

#

o

#

my bad

#

yea

#

i mena like a umm

#

let em see

#

like a menu

#

im new and want to make a menu

#

not sure how to code it

#

ok

#

thx

rugged root
gentle flint
terse needle
gentle flint
#

@molten pewter you were sitting in vc for 24 hours without speaking
what happened

umbral girder
#

is it possible to program something that automatically puts ur information into a website so you don't have to go to proceed checkout and that so u can just hit one button?

terse needle
umbral girder
#

o

#

ok

gentle flint
#

what's the difference

umbral girder
#

how do i talk?

wise cargoBOT
#

Voice verification

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

amber raptor
#

Guido gets a neck

rugged root
umbral girder
#

i did voice thing it sdyas under 50 words

#

oh

#

my bad

#

ok

#

can i screen share?

#

or is that not allowed

rugged root
#

I typically only grant it for when people need assistance

umbral girder
#

oh im just programing for a class

#

python

#

and if anyone wanted to see it

rugged root
#

Fair

gentle flint
#

@umbral girder you have 50 messages now

umbral girder
#

i do

#

yay

gentle flint
#

try verifying again

hard spruce
#

arcane is good!

gentle flint
#

see what it says now

hard spruce
#

i don't care about league either

uncut meteor
gentle flint
#

wtf

#

oh

#

nitro

#

I was wondering why it wasn't in the stickers

hard spruce
#

123-456-7890

#

call me maybe

olive hedge
hardy belfry
#

33

terse needle
sweet lodge
#

When we'd first get calls at 2 or 3 in the morning, my husband would answer the phone. He can't hear too well. They'd ask for Jenny, and he'd say "Jimmy doesn't live here any more." ... Tommy Tutone was the one who had the record. I'd like to get hold of his neck and choke him.

— Lorene Burns, an Alabama householder formerly at +1-205-867-5309; she changed her number in 1982.[14]
https://en.wikipedia.org/wiki/867-5309/Jenny

#

Self respect?

#

Who can afford that these days?

rugged root
#

I don't know, but if you can find a good price let me know

sweet lodge
#

"blew your nose"

#

right

fast sparrow
#

Blender stream?

umbral girder
molten pewter
woeful salmon
#

explains it better with visuals

umbral girder
gentle flint
#

!e

foo = 1
if foo == 1:
    print("hi there")
else:
    print("you kinda smell")
wise cargoBOT
#

@gentle flint :white_check_mark: Your eval job has completed with return code 0.

hi there
sturdy panther
#

Need linters!

haughty pier
#

In software engineering, rubber duck debugging is a method of debugging code by articulating a problem in spoken or written natural language. The name is a reference to a story in the book The Pragmatic Programmer in which a programmer would carry around a rubber duck and debug their code by forcing themselves to explain it, line-by-line, to the...

brisk finch
#

@sinful tapir

hardy karma
#

how do i bring up the paste bin thing

#

If any of you want to copy and paste and try the simple game I made

#

Let me know if I should improve in some things

#

Its my project for school

#

Thank you

sinful tapir
gentle flint
glass forge
#

brb. phone issues

#

really bad phone issues …

scenic wind
gentle flint
scenic wind
#

string

#

float

#

int

#

bool

potent flicker
#

Why do I not have the permission to speak? (Sorry, new here)

rugged root
#

That'll tell you what you need to know

potent flicker
#

Wow, 50 non-bot messages, ig I will just leave for now

near ocean
#

😄

#

thanks

#

i cant see who is talking

proven geyser
#

Plenty of nice people on the server. Just join a conversation in a text channel. 50 messages will come fast.

rugged root
#

Zucce! Dude, how've you been?

proven geyser
#

Doing well!
I saw you were in a voice chat from my friends list thing, so came to just hop in and listen when I found out I haven't spoken enough here since the verification for voice was added. Now I'm forced to talk to people... ;)

How are you??

rugged root
#

Actually crap, I have to do shred here at work. I'll have to be back later. I promise to make time to play catch up

I'm doing well, just work and home, rinse and repeat, but I prefer it boring.

proven geyser
#

I guess it's getting to the busy season for you at work anyway, right?

near ocean
#

hey

proven geyser
#

Don't spam.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @humble oracle until <t:1638914436:f> (9 minutes and 59 seconds) (reason: burst rule: sent 8 messages in 10s).