#voice-chat-text-0

1 messages ยท Page 971 of 1

rugged tundra
#

Enjoy ๐Ÿ™‚

cunning lake
#

yes thx lemon_blush

#

hemshake love you ๐Ÿ˜†

#

@rugged root

#

nice emoji

shut hill
#

@somber heath

cunning lake
#

My dudeee

shut hill
#

huh

#

bazinga

#

u know python well?

cunning lake
#

not well but I am ready to learn

shut hill
#

oh

willow light
#
package main

import (
  "fmt"
  "net/http"
  "io/ioutil"
)

func main() {

  url := "https://api.weather.gov/stations/kash/observations/latest"
  method := "GET"

  client := &http.Client {
  }
  req, err := http.NewRequest(method, url, nil)

  if err != nil {
    fmt.Println(err)
    return
  }
  res, err := client.Do(req)
  if err != nil {
    fmt.Println(err)
    return
  }
  defer res.Body.Close()

  body, err := ioutil.ReadAll(res.Body)
  if err != nil {
    fmt.Println(err)
    return
  }
  fmt.Println(string(body))
}

Always could just do this kinda thing lol

#
import requests

station = "KASH"
try:
  r = requests.get(f"https://api.weather.gov/stations/{station}/observations/latest")
  r.raise_for_status()
  return r.json()
except requests.HTTPError:
  print(f"Error exists between keyboard and chair")
#

This way if you get anything other than 200 OK, it'll handle it.

zenith radish
gentle flint
timber brook
#

๐Ÿ”ฅ

gentle flint
#

The greater white-toothed shrew (Crocidura russula) is a small insectivorous mammal found in Europe and North Africa. It is the most common of the white-toothed shrews. This species is found along the Mediterranean, Netherlands, Belgium, Ireland, Germany and Portugal; in addition, the Osorio shrew of the Canary island of Gran Canaria, originally...

oak sorrel
#
json_from_url={'targets': {'t': ['x3', 'x4', 'x1']}, 'output': 'G=d_($H+'}
amber raptor
#

!fstring

wise cargoBOT
#
Did you mean ...

ยป sql-fstring
ยป f-strings

oak sorrel
#
raw_url = f'{url_base}func_{route}?{x_argument}={string_args}{f"&request_id={request_id}" if request_id else ""}'
queen plaza
gentle flint
undone idol
#

eh?

whole bear
vast ridge
#

Howdy fam

shut hill
#

anyone wanna help me with this?

#

;-;

queen plaza
vivid palm
#

if that's what you're attempting

#

!rule 5 see below

wise cargoBOT
#

5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.

queen plaza
#

aa ok it breaks law

#

I'm sorry didnt know

vivid palm
#

usually not law, but terms of service yes

queen plaza
#

Ok ok no problem

vivid palm
#

as those sites specifically designed it to force its users to pass a captcha

#

tyty

queen plaza
#

I know but the sadest thing is that they are not giving a normal api

#

where I can veryfy a user

#

for my system

#

meh idk why but thank u still

rugged root
gloomy vigil
#

!pypi PyMusic-Instrument

wise cargoBOT
gloomy vigil
#

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

gloomy vigil
wind raptor
rugged root
pallid hazel
#

is this related to whinney the pooh?

whole bear
lyric pawn
#

@molten pewter who you got in the superbowl dad?

molten pewter
#

what do you mean?

lyric pawn
#

the bengals or the rams

#

๐Ÿคฃ

#

wow detect you had a VPN?

#

Damn taiiwan aint playing...

#

๐Ÿ‘Œ got you

pallid hazel
#

is the inhaled form called a covid-oven, and its made by the dutch?

thorn magnet
#

?

pallid hazel
#

sometimes i dont know what I'm saying :/

thorn magnet
#

lol

#

I like how there's noone talking in the vc even though there's 7 people

pallid hazel
#

so you like it.. or ?

thorn magnet
#

don't know yet

#

so py.noob are you learning python as a hobby for a job

pallid hazel
#

hobby, to use at work

terse needle
#

my code ๐Ÿคฎ

fn negative_numbers_fix(data: Result<Vec<Token>, String>) -> Result<Vec<Token>, String> {
    let mut result = data.unwrap();

    match result.len() {
        0 => Ok(result),
        _ => {
            let mut successful_iteration = false;
            while !successful_iteration {
                for i in 0..result.len() - 2 {
                    if result[i].token_type == TokenType::Operator
                        && result[i + 1].content == "-"
                        && result[i + 2].token_type == TokenType::Operand
                    {
                        result[i + 2].content =
                            if result[i + 2].content.chars().nth(0).unwrap() == '-' {
                                result[i + 2].content[1..].to_string()
                            } else {
                                format!("-{}", result[i + 2].content)
                            };

                        result.remove(i + 1);
                        break;
                    }
                    if i == result.len() - 3 {
                        successful_iteration = true;
                    }
                }

                if result.len() < 3 {
                    successful_iteration = true;
                }
            }

            if result[0].content == "-" && result[1].token_type == TokenType::Operand {
                result[1].content = format!("-{}", result[1].content);
                result.remove(0);
            }

            Ok(result)
        }
    }
}
gentle flint
gentle flint
zenith radish
gentle flint
zenith radish
dense ibex
#

@zenith radish This is my homelab

zenith radish
rugged root
#

!e

spam = [1, 2, 3]
ham = [i * 2 for i in spam]
print(ham)
wise cargoBOT
#

@rugged root :white_check_mark: Your eval job has completed with return code 0.

[2, 4, 6]
rugged root
#

@zenith radish

zenith radish
#

That is so lispy

rugged root
#

It's nice, I liked it

whole bear
#

!e

list_2d = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
flattened = [element for l in list_2d for element in l]
print(flattened)
wise cargoBOT
#

@whole bear :white_check_mark: Your eval job has completed with return code 0.

[1, 2, 3, 4, 5, 6, 7, 8, 9]
rugged root
zenith radish
#
(+ 1 2 3 4 5)
=> 15```
dense ibex
#
func _physics_process(delta):
    # we keep this in line with our camera but we remove the tilt
    var new_transform = get_node("../ARVRCamera").transform
    
    var new_basis = Basis()
    new_basis.z = Vector3(new_transform.basis.z.x, 0.0, new_transform.basis.z.z).normalized()
    if new_basis.z.length() > 0.5:
        new_basis.y - Vector3(0.0, 1.0, 0.0)
        new_basis.x = new_basis.y.cross(new_basis.z)
        new_transform.basis = new_basis
    
        transform = new_transform
    else:
        # we're looking straight up or down, ignore this
        pass
zenith radish
#

krita

#

blender

#

laigter

whole bear
zenith radish
shut hill
#

someone share their screen

#

adn start coding

#

plesase

#

YESS

#

codeeeeeeee

#

im a new beginner so i just wannasee

gloomy vigil
shut hill
#

i mean you ghet fired and get 3 months of pay

#

hoiw much is salary there atm?

#

tytytyty

#

with the company

#

or old compony

#

how did you BRIO

#

THE M1

#

OML

#

HOLY SHAT

#

ITS NEVER LOUD

#

OML

#

ITS 20 HOURS OF BATTERY AND LITERALKLKY

#

SOOOO GOOOOOOD

#

i work at best buy so i know alot of it

#

where do u work LP?

#

what do yuo do in the compony?

#

what do u do

#

;-;

#

how did you get the job

#

???

#

wheree uy applied?

#

how about google

#

lol

#

send me ur resumeee lol

#

dont swear ;;;-;

gloomy vigil
#

i gtg go guys

#

bye

#

and goodluck LP

shut hill
#

aii

shut hill
#

how did u do that

stable axle
#

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

stable axle
#
{
  "row1":[1,0,1],
  "row2":[1,0,1],
  "row3":[1,0,1]
}
shut hill
#

Imma go ill be back in a bit

somber heath
#

venomous

#

If you bite it and you die, it's poisonous.

It it bites you and you die, it's venomous.

mortal crystal
#

@somber heath

willow light
wind raptor
stable axle
mortal crystal
#

thanks a lot to all the peoples' efforts to bring this analog-only release together online.
i've personally enjoyed the songs on this album a lot, hence why i decided to put all the tracks together into one video.
/!\ i get that the nature of the release type itself is there to allow the album to remain a lot less publicized as his other works.
...

โ–ถ Play video
stable axle
#

ใปใ‚“ใจใซ

mortal crystal
#

ใฏใ„ใƒกใ‚คใƒˆ

mortal crystal
vivid palm
#

!stream 335393324573655043 10M

wise cargoBOT
#

โœ… @cunning lake can now stream until <t:1644556714:f>.

vivid palm
#

@cunning lake sorry you can re-start your stream

willow lynx
#

!e n=input('name') n=='Sheldon'?n+'Cooper': 'Not Sheldon'

vivid palm
#

@cunning lake i will have to go in about 5~10 minutes though, and you'll have to end the stream before then

willow lynx
#

!e n='name'
n=='Sheldon'?n+'Cooper': 'not shelly'

shut hill
#

hello

#

Opal you are back

#

non

#

no

#

non

#

first way

#

is fine

#

How was dinner? lol

#

i might go sleep its 1:16 AM rn i have school and i neeeda wake up at 5 am

#

;-;

#

please help meh

#

and i have homework lol

#

yummy

#

hows ur day?

#

idk

#

but i cant

#

i have school work

#

and i have work tomorrow

#

after school : P

#

English

#

lol

#

About native peiople ;-;

#

hsi

#

this

#

some of it

#

i have to watch a documentary

#

;-;

#

40minutes loing

#

and there are 2 documentary so 80 miunutes of time wasted

#

on watching ;-;

#

yea ;-;

#

i need to watch

#

not watched yet....

#

;-;

#

nope.

#

so im dead

#

lmao

#

if you want buti dont think you would like it lol.

#

its really boring

#

lol

#

none

#

it would be in class

#

but then no time for teacher

#

so now we have to watch it at home...

#

yea ofc rn i do

#

lol

#

yea

#

its due yesterday at 12...

#

;-;

#

lol

#

i know

#

just lyk

#

immma probably defen

#

and bmaybe start hammering it

#

Ok, I will be back in god knows how long.

#

lol

#

comprehension questions

#

be back in 2-3 hours whenits like school time ig.

#

lmao

#

truye

#

XD

#

most likely

#

lol

#

its english for indigenous people

#

who does it

#

and if i dont do it they wil call my parents

#

so dumb

#

opal are you bored for40 minuteS?

#

crap lol.

#

i was gonna say i can multitask and give u a document and questions to do and i do one

#

so then bam

#

done

#

ykykyk

#

lol

#

yea true makes sense lol

#

ok imma bbe back until like 4-5 am my time in like 2-3 hours gonna grabcoffe or something

#

ill be here tho

#

dwdw

#

if u need something ping me ๐Ÿ™‚

#

andi have work tomorrow

#

after school

#

and its till night

#

so....

#

im screwed

#

ok be back!

#

Let me know when you are about to leave

#

๐Ÿ˜‚

#

true true lol.

#

im here in call defening

#

lmk when u leave

#

ly ๐Ÿ™‚

somber heath
#

Now.

shut hill
#

bruh

#

lol

#

@somber heath il misss you ;-;

shut hill
#

yea

#

im here

#

@whole bear

#

but i dont have voice yet

whole bear
#

oh

#

i left

shut hill
#

lmao dw

#

lol

hidden lion
#

lmao

shut hill
#

@somber heath Somehow im done : P

#

it was the worst type of english written but it worked out lol.

wide pike
#

Guys please help me

#

Help with the python task

#

Sorry

#

One min

#

The theater stage is a rectangular field measuring n ร— m. The director of the theater has given you a plan of the stage, according to which the actors will be located on it. On the plan, it is marked in which cells the actors will stand, and in which they will not. The spotlight installed on the stage will shine in one of four directions (if you look at the scene plan from above) - left, up, right or down. Thus, the position of the spotlight is understood as the cell in which it is installed, as well as the direction in which it shines. Your task is to put a spotlight on the stage in a good position. A position is called good if two conditions are met simultaneously: โ— There is no actor in the corresponding cell; โ— There is at least one actor in the direction in which the spotlight is shining . Your task is to calculate the number of good positions for installing a spotlight. Two positions of the searchlight installation are considered different if the cells of the location of the searchlight differ, or the direction in which

cunning lake
wide pike
#

Heeelp

gentle flint
cunning lake
gentle flint
zenith radish
#

I got the SSD, today is gonna be C and some more vue รฒwรณ

pallid hazel
#

kind of makes it sound all mission impossible... did at some point, you had to hang from a ceiling to aquire this ssd?

sick dew
#
list = [345, None, 524, 123, None, None, None, 90]
filter(None, list)
somber heath
#

!e py print(*filter(None, [None, 0, 1]))

wise cargoBOT
#

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

1
woeful salmon
#

!e

print(*filter(lambda x: x is not None, [None, 0, 1]))
wise cargoBOT
#

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

0 1
somber heath
#

!e py my_list = [None, 0, 1] my_list = [v for v in my_list if v is not None] print(my_list)

wise cargoBOT
#

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

[0, 1]
somber heath
#

!e py print(1, 2, 3)

wise cargoBOT
#

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

1 2 3
woeful salmon
#

None is a singleton so there's only 1 None object in each python process xD thus we use is to check if the object we're checking is that None object rather than checking its value

#

which is a bit faster

somber heath
#

!e py print(*[1,2,3])

wise cargoBOT
#

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

1 2 3
somber heath
#

!e py print(*range(10))

wise cargoBOT
#

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

0 1 2 3 4 5 6 7 8 9
woeful salmon
#

!e

def foo(num1, num2):
    print(num1, num2)
args = {"num1": 69, "num2": 420}
foo(**args)

you can also use ** to unpack dictionaries into keyword arguments xD

wise cargoBOT
#

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

69 420
somber heath
#

!e py a = 1, 2, 3 b = [*a] print(b)

wise cargoBOT
#

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

[1, 2, 3]
somber heath
#
[*range(10)]```
sick dew
#
users = [await reaction.users().flatten() for reaction in message.reactions]

user_list = []
for ulist in users:
  for u in ulist:
    user_list.append(u)

users = list(set(user_list))
random.shuffle(users)

for index, user in enumerate(users):
  order += f"{index + 1} {user.mention}\n"
woeful salmon
#

!e

foo = []
foo.append([1, 2, 3])
foo.extend([3, 4, 5])
print(foo)
wise cargoBOT
#

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

[[1, 2, 3], 3, 4, 5]
woeful salmon
#

i've been working with c for the past 2 days already miss the simplicity of C#, js and python xD

#

i like c but its still a pain to get shit done :x specially when ocd kicks in and you wanna do everything perfectly optimal

sick dew
woeful salmon
#

need to go now cya guys later ๐Ÿ™‚

sick dew
somber heath
#

!e py import itertools users = [[877226912014020701], [348158690353872917], [348158690353872917]] result = itertools.chain.from_iterable(users) print([*result])

wise cargoBOT
#

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

[877226912014020701, 348158690353872917, 348158690353872917]
sick dew
#
import random
import itertools

users = [await reaction.users().flatten() for reaction in message.reactions]

result = itertools.chain.from_iterable(users)

users = list(set(result))
random.shuffle(users)

for index, user in enumerate(users):
  order += f"{index + 1} {user.mention}\n"
stuck sky
#

yo!

sick dew
stuck sky
#

im good wbu

#

i hate frontend

sick dew
#

good thanks man

stuck sky
#

@woeful salmon i'm trying to learn some frontend

#

the tailwind css framework

#

wtf is this stuff

#

px

#

py

woeful salmon
#

?

#

padding x and padding y?

#

so inline and block padding

stuck sky
#

yes frontend is fkin' hard

#

the css is hard

#

html n js are op

woeful salmon
#

padding-inline and padding-block are fairly new properties so its normal if you're confused by em

#

before we had to do both padding-left and padding-right when we had to do an inline padding now just padding-inline and that's what px does too

stuck sky
zenith radish
pallid hazel
#

still tho, i imagine the mission impossible theme

somber heath
#

!e ```py
import itertools

result = []
for x in range(3):
for y in range(3):
result.append((x,y))
print(result)

result = [*itertools.product(range(3), repeat = 2)]
print(result)```

wise cargoBOT
#

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

001 | [(0, 0), (0, 1), (0, 2), (1, 0), (1, 1), (1, 2), (2, 0), (2, 1), (2, 2)]
002 | [(0, 0), (0, 1), (0, 2), (1, 0), (1, 1), (1, 2), (2, 0), (2, 1), (2, 2)]
woeful salmon
#

@stuck sky also i forgot to say before but if you're using vs code you can just hover over the tailwind class and it will tell you the raw css that class applies

#

i don't remember if you need to have the tailwind extension for it or not

#

i'd recommend adding it anyway tho for the auto complete

shut hill
#

OPaaaaaaallllllllll

#

@somber heath

somber heath
#

!zen

wise cargoBOT
#
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

shut hill
#

then whats good code....

somber heath
#

!pep8

wise cargoBOT
#

PEP 8 is the official style guide for Python. It includes comprehensive guidelines for code formatting, variable naming, and making your code easy to read. Professional Python developers are usually required to follow the guidelines, and will often use code-linters like flake8 to verify that the code they're writing complies with the style guide.

More information:
โ€ข PEP 8 document
โ€ข Our PEP 8 song! :notes:

somber heath
#

Stochastic depth first search.

#

Pixel neighbourhood channel averaging and mutation.

rugged root
#

Sarcastic depth search

whole bear
#

cellular

#

automata

somber heath
#

!e py rules = str.maketrans({"R": "RL", "L": "LR"}) axiom = "R" for _ in range(5): axiom = axiom.translate(rules) print(axiom)

whole bear
#

A little experimental game I've been working on recently, where you fly around a tiny version of the world and deliver packages to various cities. Would love to hear any ideas you might have about how this could be taken further!

The next episode about this project's development is now available here: https://www.youtube.com/watch?v=UXD97l7ZT0w...

โ–ถ Play video
#

you might like that

#

channel

#

he simulates a lot of irl

#

physics

lyric pawn
#

the gangs back together again

wise cargoBOT
#

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

RLLRLRRLLRRLRLLRLRRLRLLRRLLRLRRL
lyric pawn
#

@sick dew "the words On My brain is Struggling to ...come out. Sorry..." ๐Ÿคฃ

#

'On My brain'

whole bear
#

i mean it's not that difficult i think

#

those things usually have basic rules and a lot of units

#

which make it interesting to watch

lyric pawn
#

@somber heath is a very intelligent human

molten pewter
#

true story

lyric pawn
#

the world really is vibrations

#

Ask chris

#

mr meditation

shut hill
#

Someone shre screen

#

i wanna see some code

#

;-;

thorn magnet
#

no

shut hill
#

ok

lyric pawn
#

i dont know how opal got to talking about vibrations

molten pewter
#

fluid dynamics

whole bear
#

words

thorn magnet
lyric pawn
#

and why the hell is a choatic system?

#

or just something that changes unpredictably?

whole bear
molten pewter
#

chaos theory

lyric pawn
#

like the name suggests?

lyric pawn
whole bear
molten pewter
#

Chaos: Making a New Science is a debut non-fiction book by James Gleick that initially introduced the principles and early development of the chaos theory to the public. It was a finalist for the National Book Award and the Pulitzer Prize in 1987, and was shortlisted for the Science Book Prize in 1989. The book was published on October 29, 1987 ...

lyric pawn
#

anytime i need information on something

#

i get him to research

#

and send me a link

molten pewter
#

a good history of Chaos theory.

willow light
#

In that case furyo do you have anything on the psychology of too many warnings means the warning gets ignored more?

#

Case in point: people tend to ignore tornado warnings unless it interrupts their favorite tv show

molten pewter
lyric pawn
#

i dont know if he can go as specific as studies

#

but dont count this man out

#

hes one of the best

lyric pawn
#

like if people trust something more, does that mean they're more likely to put more money into something than they normally do with something which isnt as transparent and upfront. Im pretty sure its proven in the workplace when people think things are transparent and everyone is upfront and accountable, that employees work harder

#

why arent you interested in that kind of stuff @somber heath

#

Like the reasons why humans make decisions

#

or why they dont make them

willow light
#

Thereโ€™s also that some very influential people which may or may not include a former us president have been telling the public that the weather service are liars

lyric pawn
#

๐Ÿ˜†

#

so then you do like that stuff?

#

you said dry paint lol

#

youre a man of culture i see @willow light ๐Ÿคฃ

somber heath
# lyric pawn you said dry paint lol

Well, everyone is going to avoid touching something that says wet paint. Put a sign that says dry paint and you provoke their curiosity and they'll be tempted to touch it to make sure. It's hacking, but of people.

lyric pawn
#

@zenith radish you're the davinci of coding

whole bear
#

it is bad that i just use vscode

lyric pawn
#

thats just mean you're a very classical person

#

you like to keep things simple

clever zodiac
#

hello

lyric pawn
#

@willow light im going to go outside for 3 hours, but ill be back

clever zodiac
#

how to write code where x^-1 can be mesured and i wanna keep $int(input('Type your value - ')$

lyric pawn
#

can we continue this conversation then?

#

will you still be on ?

#

Alright guys brb, i hope to see you all on here when im back

clever zodiac
#

||int(input('Type your value - ')||

#

how to write code where x^-1 can be mesured and i wanna keep int(input('Type your value - ')

cunning lake
#

||hi||

quasi condor
#

@rugged root do you understand monoids?

rugged root
#

I think I have multiple times at different times but I can't remember at the moment

#

I'd have to look it up again

quasi condor
#

The concept doesn't want to enter my head. If you happen to remember one specific thing that helped you grok it, a link would be helpful

rugged root
#

I'll try and re-read it

quasi condor
#

Don't go through any real effort on my behalf - this is essentially a vanity for me

rugged root
#

What're you needing it for?

#

Getting into functional/declarative programming?

#

Oh no wait, I knew about monads

#

Not monoids

quasi condor
#

There's this Scala program at work, mostly procedural/Oop, but there's one key bit that relies on monoids

#

And the person who wrote it this way is no longer here

#

And no one has a good claim of understanding it well

mild quartz
whole bear
#

writing databases is pain.

#

that too for the first time.

primal yacht
rugged root
swift valley
#

Re: monoids

You have a thing, you have an associative operation that combines two of these things, you have a thing that serves as an "identity" value

primal yacht
swift valley
#

@quasi condor Maybe this^ could help?

#

Lists, list concatenation, and an empty list also forms a monoid

stuck furnace
#

๐Ÿ‘‹

#

Erm, not much ๐Ÿ˜„

#

Linear algebra is like vectors and matrices.

swift valley
#

yep

#

also taking symbolic logic soon, which is booleans and such

#

fun stuff

#

can't wait to get to the good stuff

stuck furnace
#

@calm cypress could you provide some more details about your problem here?

#

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

stuck furnace
calm cypress
amber raptor
quasi condor
#

The problem here isn't the language though, it's the concept. The monoid is solving an inherently complex problem, and I'll take it on faith that it really is the best solution and that repeating that solution in any other language would be just as, or more, complex

quasi condor
#

That being said, I understand why companies would mandate one/few languages, you don't want to end up with v floating about because one person liked it

molten pewter
#

Monoid: a monoid is a set equipped with an associative binary operation and an identity element. Huh?

stuck furnace
#

Not me ๐Ÿ‘€

#

Bluenix?

sweet lodge
#

Probably VCO or Bluenix

stuck furnace
#

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

shut hill
#

Katie you play val?

#

i doubt....

primal yacht
shut hill
#

so you play val....

primal yacht
#

But if you mean Valorant or whatever, no.

shut hill
#

oh lol

#

yea

primal yacht
#

I am not that good at such games

shut hill
#

lol then what u do

#

do u play anythhjing

#

does anyone here play val?

rugged root
#

Val Kilmer?

shut hill
#

;-;

rugged root
#

I don't really play multiplayer stuff anymore

primal yacht
#

For multiplayer ... Rec Room, Minecraft (Java / Bedrock; but rarely these days for either) ...

shut hill
#

oh.

#

ok...

swift valley
#

I do and I'm hardstuck Bronze

rugged root
#

Pure, are monoids and monads the same thing?

primal yacht
#

Rec Room, like VRChat, started as VR-only.
Now both of them allow screen (non-VR) users.

swift valley
molten pewter
# quasi condor I agree

do you agree with the monoid definition, or with the "huh?" indicating that I have no idea what that means.

calm cypress
molten pewter
#

Monoid: A monoid is a set that is closed under an associative binary operation and has an identity element I in S such that for all a in S, Ia=aI=a. What?

quasi condor
#

Yes. Further agreement from me

rugged root
quasi condor
#

I believe I have grokked the monoid in practical terms

sweet lodge
#

I wish we could do that

pallid hazel
#

centralized is better

sweet lodge
#

MS Teams is best

#

If only for the office integrations

pallid hazel
#

lol i always seem to join right before a meeting.. bah

zenith radish
sweet lodge
#

My boss tells me what to work on

stuck furnace
#

๐Ÿค”

rugged root
#

@sturdy wadi You had your video or what have you coming through

#

It's why I muted you

molten pewter
#

brain storming session?

sturdy wadi
#

when will i get it back?

#

@rugged root

#

sir

rugged root
#

I just unmuted you. It was just so I could stop the audio then let you know so you could fix it

sturdy wadi
#

oh ok

molten pewter
#

anonymous currency like cash?

#

factually not true

#

but sure

#

not true

#

nope

#

nope

#

you can buy plenty of stuff, like a hot dog, but most of those places are outside the US and EU

#

you can still buy a hot dog, which I have done, with crypto, at costco

#

sure

#

using vida

#

visa

#

still works.

#

then the your argument would be the same for USD.

sweet lodge
#

VISA is an exchange now?

molten pewter
#

same if I have Euro in my bank accont.

#

already exists

#

it is similar.

#

2-4% increased benefit on the side of the store, and the ability to "self-bank"

#

or "remote bank"

#

I don't want to upend the system

#

that is a straw man argument.

#

you can have different payment methods, without upending the system

#

sure they can

#

you can have both

#

it is like having visa, and mastercard.

signal sand
#

for losing money, we can have some kinda insurance system

molten pewter
#

No system is perfect. All the system have their issues. Crypto have an issue with getting locked out of one's wallet. Non-crypto systems have issue with counterfeiting or "double spend"

amber raptor
molten pewter
#

not all crypto.

#

there is no way to do that with Bitcoin.

#

we should only have one internet protocol.

#

it doesn't make any sense to have more than one internet protocol

signal sand
molten pewter
#

We can, and should have both centralized, and distributed systems.

#

FDIC insured

signal sand
#

We can figure out like rate, like this is the prob(losing access), so this is the rate of insurance....

molten pewter
#

as long as your are not doing business across country

#

cryto makes it easy to create markets across countries.

#

90% garbage

#

10% interesting

#

the hype

amber raptor
molten pewter
#

I will wager that in 20 years, the nft market will be a 100 - 200 billion dollar market

#

authentication in the art world is a problem regardless of if it is an NFT or not.

versed raptor
#

centralisation might will bring much of verification issues on the user end

molten pewter
#

most people thought that about mp3

rugged root
#

How do you mean, Ghosh?

molten pewter
#

and you can still buy tulips

versed raptor
#

means centralisation of nft will bring in dominance of marketplace due to someone

molten pewter
#

don't buy tulips in during the tulip bubble, but it doesn't mean that tulips will be worthless in the future.

versed raptor
#

exactly

molten pewter
#

that is hyperbolic

versed raptor
#

veg or non veg?

molten pewter
#

saying that "most sales of NFT are violating copyright" is hyperbolic. I am sure some sale of NFT void copyright, or a scam, but I doubt that all of them, or even most of them are.

#

the biggest scam is in NFT flipping.

rugged root
#

A major bulk of money acquired

versed raptor
molten pewter
#

All the analysis I have seen from people actually looking at blockchains indicate that the majority of transaction are for legitimate non illegal activities.

quasi condor
rugged root
#

For something that is supposed to protect the artists and give them power, it's not

#

It's really, REALLY not

molten pewter
#

have you seen any an analysis of etherium, cardano, or solana?

quasi condor
rugged root
#

Not really

molten pewter
#

show me this level of analysis in another fiat currency...

#

exactly

versed raptor
#

are guys safe from covid shit?

molten pewter
#

digital currencies are the way of the future.

#

not currently in Taiwan

wooden heath
#

Poland: you can pay using debet/credit card without any problem in every store (even villages far away from cities)

stuck furnace
#

LP, is that your cat I can hear? ๐Ÿ˜„

molten pewter
#

taiwan, is mostly cash, but they have a good bank transferring system, where you can transfer cash to anyone's bank account from any atm.

wooden heath
#

I have heard that, in Germany physic currency is popular, because wireless payments are rare

molten pewter
#

China, everything is digital.

wooden heath
#

Lithuania โค๏ธ

molten pewter
#

though, Taipei, has a robust NFC system.

wooden heath
#

in poland i have never seen check

molten pewter
#

You can pay with your Subway card at most stores in Taipei

#

which is an NFC system.

#

No more checks in the EU, correct?

wooden heath
#

Taipei? in what part of China is this city?

molten pewter
#

not in China

#

Taiwan

wooden heath
#

aaa

#

ok

molten pewter
#

It is interesting how Rabbit rationalizes check fraud, but doesn't give the same benefit of the doubt to crypto or NFTs.

devout heath
#

most banks have a provision stating they will deposit post-dated checks before they're dated for

molten pewter
#

For the record, I think that both Checks and Crypto are valid systems.

amber raptor
devout heath
#

yeah

#

I just didn't know until now that the banks don't respect the date

#

it's basically another memo line

amber raptor
#

Are their scum companies that abuse this like payday loans, sure

wooden heath
#

this guy sounds like Alastator (Hazbin hotel radio demon)

#

โค๏ธ

molten pewter
#

Hear how Hemlock is willing to accept check fraud as normal, but any fraud with a crypto makes crypto unacceptable?

#

I also agree that check fraud is mostly not a big deal, however, I also think that fraud on block-chains is mostly sensationalized.

stuck furnace
#

Oh yeah, although I think those things are just for counting traffic?

molten pewter
primal yacht
amber raptor
molten pewter
#

it depends on the blockchain.

#

trust is the most important thing.

#

Governments are imaginary.

#

Without trust we wouldn't have governments.

#

It greatly increases the cost of the system.... greatly increasing the tech debt.

#

probably, several years in prison.

#

Mailboxes stick out and can be easily hit with a bat, but it doesn't mean that you should hit every mail box you drive by.

quasi condor
molten pewter
#

Benchwarmers?

#

I thought Rabbit didn't go to college.

primal yacht
molten pewter
#

Interestingly e-gift card botnet fraud, seems to be the largest type of fraud.

primal yacht
#

yes, makes sense

#

@rugged root ^ (car unlock / blinker aka turn signal)

gloomy vigil
amber raptor
primal yacht
#

maybe dumb or trying to stall you because they can, @rugged root

#

oh โ€ฆ i have that too, -.-'

#

it's a pain in the a**!

hidden flower
#

o/

primal yacht
#

hi

#

VivEEEEEEEK!!! >w<

#

"Dinosaur Comics" is the name of one

molten pewter
#

The Financial Cost of Fraud Report, developed by national audit, tax, advisory and risk firm, Crowe found that global fraud was about $5.127 trillion

gloomy vigil
#

I remember vivek from when he unmuted me when i was trying out names in #sir-lancebot-playground and sent the commands too fast

primal yacht
#

But that app is not updated anymore since Mojang removed debugging symbols

#

C# โ€ฆ is that used by SourceMod (L4D2 / etc.)?

molten pewter
#

the FTC had 2.2 million fraud reports in 2020: 1. identity theft 2. imposter scams 3. online shopping reviews

#

identity theft seems to be the common thread

quasi condor
#

is anyone arguing that fraud isn't a problem?

primal yacht
#

Cats are very intelligent

molten pewter
#

If we could solve identity theft, we could "solve fraud"

quasi condor
#

the argument you need to make is that crypto leads to less fraud than the current system

molten pewter
#

and by "solve fraud" I mean push those fraudsters into some other type of fruad.

primal yacht
#

Bitcoin cannot be reverted

molten pewter
#

if you are a registered business, then the government can still force you to make payments.

quasi condor
primal yacht
#

as in paying for ransomware recovery

molten pewter
#

I'm still interested in trying understand what the global fraud market looks like.

primal yacht
#

cant undo bitcoin to recover

signal sand
#

For small frauds, most of the time, it is more expensive for the "system" to recover than what it's worth..

molten pewter
#

is that a feature or a bug?

primal yacht
#

once you transfer the bitcoin, it is gone

molten pewter
primal yacht
#

its like a paintball gun, once fired, the paint is not going back in the pellet

quasi condor
molten pewter
quasi condor
#

attempted or actual = just irrelevant

#

if 99% of those go to spam

#

who gives a toss

amber raptor
#

Iโ€™m still confused the point here

molten pewter
primal yacht
#

[inb4 we mention Minecraft kids doing stupid piracy & needing help getting their account back, and complain about wait times]

molten pewter
#

BEC = Business Email Compromise

#

correct

#

academic

#

I don't want to make a point

primal yacht
#

[or don't know how to read basic instructions on how to provide a Hijack This log / etc. and still complain]

quasi condor
primal yacht
#

and / or they assume the "community support" Discord is ran by actual Mojang staff -.-'

quasi condor
molten pewter
#

What does centralized vs decentralized mean in this chart?

primal yacht
#

keeping it active and with help from the bank / police, they can catch the thief if it is in-person charges

primal yacht
#

not even if the card is set to "out of money" and the police get told to check a location's cameras?

molten pewter
#

it is also a hastle to report things

amber raptor
molten pewter
#

also complain loudly in discord

primal yacht
#

i don't like contact-less โ€ฆ can be detected from some wallets by NFC phones

amber raptor
#

and even then, it's misdemeanor unless it's massive amount

molten pewter
#

I would complain loudly in discord, if I had been subjected to fraud.

#

I would also~~ wine ~~ whine to my friends.

primal yacht
#

NFC-capable *

molten pewter
#

please don't ๐Ÿ˜ญ

primal yacht
#

WINE ?

molten pewter
#

whine?\

primal yacht
#

whine = cry / complain

#

i might help fury lemme finish up

quasi condor
primal yacht
#

each device in playback & recording โ€ฆ

#

advanced tab โ€ฆ

#

disable the "exclusive" checkbox

#

then communications tab, have no audio changing

molten pewter
#

"Asset misappropriation, which involves
an employee stealing or misusing the employing orga-
nizationโ€™s resources, "

primal yacht
lyric pawn
#

incorrect clothing to work?

#

a bikini?

primal yacht
#

Thanks, @ebon python >w<

lyric pawn
#

a sausage?

#

those people are so lame

#

classic case of rich people wasting money

#

Every companies ethics are screwed up

#

at that level

molten pewter
#

the problem with the broken windows theory, is that it has largely been dismissed as an effective law enforcement technique

amber raptor
light python
#

@quasi condor which type of professional are you talking about ?

amber raptor
#

Itโ€™s sounds good in practice and perfect โ€œsome upper manager is thrilled. โ€œ

quasi condor
#

sausage thief

lyric pawn
#

this is why we cant give white people power

#

they launch sausage investigations

#

charlie would be the type of person to launch a sausage investigation

#

and deem it as for 'tax reasons'

#

we need to keep certain people Out of Power

#

talking to charlie is like listening to Harry Potter

light python
#

@zenith radish what is this language that you are coding ?

zenith radish
#

typescript

quasi condor
#

programming socks ^

zenith radish
#

^ me

lyric pawn
#

๐Ÿคฃ

quasi condor
#
willow light
#

What the

rugged root
#

ME

molten pewter
willow light
#

JavaScript is like English: there arenโ€™t really any rules, just a whole bunch of exceptions you need to memorize.

primal yacht
#
const foo = (value) => {
    return
    value
}

That becomes:

const foo = (value) => {
    return;
    value;
};
light python
#

@amber raptor so, you think languages that uses semicollon, are better to writte a code ?

amber raptor
molten pewter
willow light
#

JavaScript: FUBAR instead of Foo and Bar

lyric pawn
#

gammon?

rugged root
#

?

willow light
#

?

molten pewter
light python
#

commit what ?

molten pewter
willow light
#

Fraud? I donโ€™t see any fraud. Just smart people taking advantage of a weak system.

primal yacht
#

It's still fraud. Stealing money from the company for personal gain.

willow light
#

Exactly

#

Or capitalism, as it is popularly known to the upper executives.

lyric pawn
#

with

molten pewter
willow light
#

Now what are the numbers based on whether they ask for pineapple on pizza?

#

Thatโ€™s where we get into morals and/or ethics.

light python
#

theres a huge difference between wisdom and intelligence

#

think about guys

molten pewter
willow light
#

Intelligence is knowing that a tomato is a fruit. Wisdom is not including it in a fruit salad. Philosophy is asking whether ketchup is a smoothie.

#

I mean, we do have a donut budget for morning scrum.

lyric pawn
#

it depends on the woman and man furyo

primal yacht
#

Male: 108,000
Female: 23,800
(Approx)

lyric pawn
#

the problem is theirs so many power hungry men like Charlie

light python
#

i thinks tha woman are less trusthable

lyric pawn
#

where as soon as they get power, theyre going to screw everyone over

light python
#

than man

rugged root
#

Why?

willow light
#

Is there anything relating to a personโ€™s choice in programming language and fraud?

rugged root
#

Well that's blatantly sexist

light python
#

because they are more emotionally unstable

light python
willow light
#

You clearly havenโ€™t met many men on the road then.

molten pewter
light python
#

sorry for my english

rugged root
#

Sure but that isn't actually accurate or a thing

primal yacht
#

I find that offensive. Women have a little-more-than-monthly cycle while men don't have it.

willow light
#

Women are once a month, men are continuous.

rugged root
#

Men actually have that cycle as well

primal yacht
#

Menstration?

rugged root
#

It's just nowhere near

thorny hinge
willow light
#

Everyone who has driven on I-95 at 5pm knows that men are very unstable.

primal yacht
#

Ah.

rugged root
#

No a hormone cycle

thorny hinge
#

seems like theft is 70 billion in the USA and embezzlement is 50 billion in the USA roughly

molten pewter
light python
rugged root
#

Again, that's factually incorrect

willow light
#

Keep digging Yuri

lyric pawn
#

@molten pewter can you send the link where youre getting all this stuff from? I could use it. Thank you

molten pewter
#

"most organizations (54%) in our study did not recover any of their
losses. "

rugged root
#

I'd really appreciate it if you stop commenting on this, Yuri. What you're saying is coming off as sexist and offensive.

willow light
#

Yuri needs to learn the most important rule: donโ€™t dig yourself into a hole you canโ€™t get out of.

vivid palm
#

it's not coming "off" as sexist and offensive, it is @light python
if you wish to stay here please read our #rules and #code-of-conduct

rugged root
#

You're right

willow light
#

It absolutely is offensive and also factually incorrect.

molten pewter
#

most statement were demonstrably false

#

tip #1 way of getting caught

#

IT controls, just above confession.

#

for last place

#

Corruption #1, followed by billing

willow light
#

I'm in a finance firm. We recently lost some senior devs because they got into NFTs, despite corporate policy strictly forbidding non-traders working with crypto.

molten pewter
#

financial statement fraud though has the highest mean.

#

either this study is undermeasuring fraud in the non-industrialized world, or the industrialized world is a much greater target.

quasi condor
molten pewter
#

In 2017 a department in the United Kingdom undertook a
fraud measurement exercise to quantify patient
prescription fraud.
Some groups of people are exempt from paying for
prescriptions based on their income and age. The exercise
wanted to identify those who were fraudulently claiming for
free prescriptions.
The measurement exercise identified 2.8% of fraud and
error combined, equating to ยฃ167.8 million lost to fraud.

quasi condor
#

for reference - prescriptions cost a flat fee of ยฃ10 regardless of the drug

#

The measurement exercise identified 2.8% of fraud and
error combined,
I imagine that and error is doing a lot of heavy lifting

lyric pawn
#

me and @rugged tundra are watching the Superbowl on sunday

molten pewter
#

I don't really understand that the prescription fraud is... are they selling it overseas to non UK citizens for profit?

quasi condor
#

lots of people are exempt from paying for subscriptions

#

I think all you need to prove that is a little paper card thing

rugged tundra
#

Super Bowl!

#

Go _______!

quasi condor
#

or maybe just saying to the pharmacist that you are exempt

#

so I'm guessing it's just taking drugs for yourself and not paying for them

lyric pawn
#

key word 'douche'

#

in fidouchiary

molten pewter
rugged root
#

@molten pewter Come back my friend

quasi condor
#

digital fraud is a big issue

rugged root
#

I'll just judge you silently

willow light
#

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

#

Is vegan bacon made from vegans?

lyric pawn
#

@spring kraken ๐Ÿคฃ

#

its basic food

#

i dont know whats so impressive to you

#

its maybe not nasty ass diner food, but its not as good as what youre saying. Its just regular normal food

spring kraken
#

nah its good food I get its basic

lyric pawn
#

salt and no pepper

#

no seasoning

#

i used to eat that food everyday growing up

#

trust me, its not good(as good as youre reaction)

#

youre going to have people flying out just to get that food, and its going to be a Dissapoinment

quasi condor
#

@molten pewter I looked into the lobster stuff before - never found a reasonable conclusion about the "right" way to kill lobsters

lyric pawn
#

its nowhere near what your reaction indicated

quasi condor
#

if you can find it without too much effort, I'm curious to see something about the right way

molten pewter
#

lets try looking again ๐Ÿ‘€

#

I believe the method of killing involves chilling or freezing

quasi condor
#

yes actually

#

that's what I'd heard as well

#

deep freeze them

#

then they go into a shut down mode

spring kraken
quasi condor
#

and it doesn't matter how you kill them really

willow light
#

The better way is just eat them whole

molten pewter
#

I did it with a science experiment with cockroaches...

lyric pawn
#

i want to sit down with a bottle of wine with @zenith radish and discuss life.

zenith radish
#

Borscht (English: (listen)) is a sour soup common in Eastern Europe and Northern Asia. In English, the word "borscht" is most often associated with the soup's variant of Ukrainian origin, made with red beetroots as one of the main ingredients, which give the dish its distinctive red color. The same name, however, is also used for a wide select...

#

Cepelinai (lit. "zeppelins"; singular: cepelinas) or didลพkukuliai are potato dumplings made from grated and riced potatoes and stuffed with ground meat, dry curd cheese or mushrooms. It has been described as a national dish of Lithuania, and is typically served as a main dish.The name of Cepelinai come from their shape that resembles of a Zeppe...

#

Kugelis, also known as bulviลณ plokลกtainis ("potato pudding"), is a potato dish from Lithuania. Potatoes, bacon, milk, onions, and eggs are seasoned with salt and pepper and flavoured, for example with bay leaves and/or marjoram, then oven-baked. It is usually eaten with sour cream or pork rind with diced onions.Similar dishes include the Jewish...

molten pewter
#

New Zeland and Norway have banned the boiling of lobsters

idle mica
lyric pawn
molten pewter
#

Animal Welfare (Sentience Bill), currently in the House of Lords, is exploring the ethics

willow light
#

what do they do instead? shove them in the crock pot?

lyric pawn
#

lithuianian cuisine is better than british food

#

theyre using marjoram and bay leaves...

#

england would use 0.1 ounces of salt

#

and that would be for 1 meal, in a week

#

7 foot 2???

molten pewter
#
quasi condor
lyric pawn
#

7 foot 2 and youre a programmer?

#

youre life must be a failure

#

imagine having those gifts

#

and doing a regular thing/regular task

willow light
#

I mean, there are plants that respond to pain stimuli as well
https://en.wikipedia.org/wiki/Mimosa_pudica

Mimosa pudica (from Latin: pudica "shy, bashful or shrinking"; also called sensitive plant, sleepy plant, action plant, touch-me-not, shameplant) is a creeping annual or perennial flowering plant of the pea/legume family Fabaceae. It is often grown for its curiosity value: the compound leaves fold inward and droop when touched or shaken, defendi...

lyric pawn
zenith radish
#

at my previous company yea

#

we went to boot camp together

#

played vidya

#

ate kebabs

molten pewter
#

di gua qiu

lyric pawn
#

'they love balls'๐Ÿ˜†

#

@zenith radish what tea? Oolong tea? what type of oolong?

#

tea master

#

depart knowledge on me

zenith radish
#

jin xuan

lyric pawn
zenith radish
#

sukiyaki

lyric pawn
#

'most british people i know, they have no since of cuisine...they just eat bread and chicken breasts all day.' -Charlie

#

my point proven about british food

#

see people try to defend their food

#

but the truth comes out eventually guys...

molten pewter
#

brb

worldly maple
#

hey guys

zenith radish
olive cedar
#

hey uhh can anyone help me with a coding error i have? XD

quasi condor
olive cedar
#

ohh

vestal mason
zenith radish
#

caldav

molten pewter
#

Thirty-two percent of U.S. adults say they personally own a gun, while a larger percentage, 44%, report living in a gun household.

light python
#

please guys dont talk about

#

politics

#

its boring

#

and controverse

quasi condor
molten pewter
quasi condor
quasi condor
honest pier
#

brightness so low ๐Ÿ˜ฌ

quasi condor
#

that's because it's greyed the page out asking me to log in

molten pewter
quasi condor
#

Effective altruism (EA) is a philosophical and social movement that advocates "using evidence and reason to figure out how to benefit others as much as possible, and taking action on that basis".People who embrace effective altruism are labeled effective altruists. Common practices of effective altruists include significant charitable donation t...

molten pewter
#

Carl Celian Icahn (; born February 16, 1936) is an American financier. He is the founder and controlling shareholder of Icahn Enterprises, a public company and diversified conglomerate holding company based in New York City. Icahn takes large stakes in companies that he believes will appreciate via changes to corporate policy and he then pressur...

#

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

quasi condor
#

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

molten pewter
#

@pseudo nebula

#

" Once they took aim at a company, they bought the minimum number of shares that would allow them to submit resolutions at that companyโ€™s annual shareholder meeting. (Securities laws require shareholders to own at least $2,000 of stock before submitting resolutions.) That gave them a nuclear option, in the event the companyโ€™s executives refused to meet with them."

#

@quasi condor

quasi condor
molten pewter
quasi condor
molten pewter
#

boo

whole bear
#

behold, some bizarre spritesheets...minecraft ascii dirt

    def Dirt():
        return Tile('Dirt',
                    [',', ',.\n'
                          '.,', ',.,\n'
                                '.,.\n'
                                ',.,'],
                    {0.99: Items.Rock(),
                     0.01: Items.Gold_Nugget()})
whole bear
molten pewter
#

I think it was UK only, from 1983-1988 or so...

quasi condor
#

#bot-commands

honest pier
#

!user

wise cargoBOT
#

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

honest pier
#

bruh

molten pewter
#

Scallion Pancake

#

่”ฅๆฒน้ค…

quasi condor
molten pewter
whole bear
light python
#

hey, good night, which are the requeriments to receive permissions to talk in this channel ?

molten pewter
quasi condor
quasi condor
whole bear
#

professional CodePosting

#

posting weird code is fun

whole bear
past peak
cunning lake
#

I can get a video promotion ?

#

For a few minutes this will be good to

past peak
#

promotion about what

cunning lake
#

video t stream

past peak
#

oh you want the video role

cunning lake
#

right

#

๐Ÿคทโ€โ™‚๏ธ