#voice-chat-text-1

1 messages ยท Page 92 of 1

misty sinew
#

what do you mean?

#

i am a noob at coding

#

windows cmd is extreamly limited

#

i had windows like 5 months ago and i have be doing batch files like you

#

i made batch files that can steal data and all the bad stuff

#

but i am not doing this anymore

#

alright bet send proof i bet you cant

#

i did it to see what my friends has on his pc

merry mica
#

TOS

misty sinew
misty sinew
misty sinew
#

TOS

#

wtf

#

no malware

#

wtf

#

bruh

#

i am bad at explaining

#

u put the usb in a pc the n u run it

misty sinew
#

and it copys the folders and data

#

its a batch file!!!!!

#

no

#

there is a code

#

wtf thats not mal ware

#

yes it is

#

you want the code? to see it lol

merry mica
misty sinew
#

look i made a screenshot

#

@merry mica is this a malware lol?

merry mica
#

yes

misty sinew
#

what how

#

its not a malware it just copys the data

misty sinew
#

i am in germany

#

lol

#

this tutorial exists on yt guys

#

its not a malware

#

malware is like wannacry or noescape

#

does it say "entertainment persoses only"

#

wait

misty sinew
#

you happy now??

#

Its not a malware wtf

#

look it up at youtubeeee

#

wtf

#

i know

#

but how do you wanna know i am using it for illegal ???

#

what i dont

#

i can do what i want on my pc until i do it to someone

#

because i bought my pc or laptop

#

yes but if you share it to someone you are deleted

#

i know and i am not gonna do it

#

even if you say it is malware its still illegel

#

because as said i am not doing this anymore

#

lol sure

#

it s not malware wtf

#

please stop this convo

#

i just said i can do whatever i want until i do something illegal then its my bad @merry mica

#

i would like to exit convo

#

ok lets stop the convo

#

Indian lifes matter ๐Ÿ˜ฆ

#

AHAHAHA

#

i know

#

LOL

#

its a meme

#

as i said i am cringe af

#

wait lemme change my avatar to python

#

@merry mica what are you eating?

#

why u said lunch?

#

ohhh

#

@merry mica you linux right?

#

@woven hemlock aight hearning anime music

#

@merry mica i need help

misty sinew
#

@merry mica how can i put the donut in the middle?

#

wtf

#

its jsut a screenshot

#

@merry mica can you help???

#

@merry mica i like mac os

#

i have high sierra

#

2011

#

what? fr

#

how

#

how ever i am happy with my system

#

@merry mica lol i cant resize the window with the donut

#

how

#

wait lemme send a screen shot of the code

#

is it with the thing width or height

#

ok i fixed it

#

i will use this donut as a screen saver lol @misty sinew

#

@misty sinew go live i wanna know what you are codeing

grand storm
#

@misty sinew @misty sinew Let's maybe not talk about malicious scripts on this server again, yeah? Thanks.

misty sinew
#

ok

misty sinew
#

he gonna give you all his venom

#

woo

#

@misty sinew what is the best that you have ever coded

#

you = ๐Ÿฅด

#

i cannot tell because ^^^^^^^

#

oh

sleek parrot
#
sleek parrot
#

@ocean remnant @spring finch https://www.youtube.com/watch?v=_jA8k4YDzlo

This film shows you the central shocking secrets about the global climate crisis - but also solutions we already have to avoid disaster. Everyone wants a better, brighter future, and through smart storytelling, this film opens up the climate emergency for all to take effective actions.

Producers Paul Maple and Dr. James Dyke have brought toge...

โ–ถ Play video
peak frigate
#

oh i just saw this lol & good!!!!!!! clap

azure knoll
#

less

weary hemlock
#

my flutter setup

cursive rover
#

note:[{"id":1},{}]

#
collection.update_one(
        {'_id': user_id},
        {"$addToSet":{"notes": note}},
    upsert=True)```
charred creek
#

!e

from dataclasses import dataclass

@dataclass
class Note:
  id: str
  title: str
  description: str
  media: str



current = [
    None,
    Note("123145023154", title="asd", description="xcv", media="").__dict__
]

print(current)
print()

new = {
    "123145023154": Note("123145023154", title="asd", description="xcv", media="").__dict__
}

print(new)
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

001 | [None, {'id': '123145023154', 'title': 'asd', 'description': 'xcv', 'media': ''}]
002 | 
003 | {'123145023154': {'id': '123145023154', 'title': 'asd', 'description': 'xcv', 'media': ''}}
warm tendon
#

just use mysql ๐Ÿ˜”

charred creek
#

!e

from dataclasses import dataclass

@dataclass
class Note:
  id: str
  title: str
  description: str
  media: str
 


current = [
    None,
    vars(Note("123145023154", title="asd", description="xcv", media=""))
]

print(current)
print()

new = {
    "123145023154": vars(Note("123145023154", title="asd", description="xcv", media=""))
}

print(new)
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

001 | [None, {'id': '123145023154', 'title': 'asd', 'description': 'xcv', 'media': ''}]
002 | 
003 | {'123145023154': {'id': '123145023154', 'title': 'asd', 'description': 'xcv', 'media': ''}}
charred creek
#

!docs vars

coarse hearthBOT
#
vars([object])```
Return the [`__dict__`](stdtypes.html#object.__dict__ "object.__dict__") attribute for a module, class, instance, or any other object with a [`__dict__`](stdtypes.html#object.__dict__ "object.__dict__") attribute.

Objects such as modules and instances have an updateable [`__dict__`](stdtypes.html#object.__dict__ "object.__dict__") attribute; however, other objects may have write restrictions on their [`__dict__`](stdtypes.html#object.__dict__ "object.__dict__") attributes (for example, classes use a [`types.MappingProxyType`](types.html#types.MappingProxyType "types.MappingProxyType") to prevent direct dictionary updates).

Without an argument, [`vars()`](#vars "vars") acts like [`locals()`](#locals "locals"). Note, the locals dictionary is only useful for reads since updates to the locals dictionary are ignored.... [read more](https://docs.python.org/3/library/functions.html#vars)
cursive rover
#
        {'_id': user_id},
        {"$addToSet":{"notes": note}},
    upsert=True)
charred creek
#
from dataclasses import dataclass

@dataclass
class User:
  id: str
  notes: list[str] # List of all Note Ids for this user

@dataclass
class Note:
  id: str
  user_id: str # UserId for the note
  title: str
  description: str
  media: str
#
from dataclasses import dataclass

@dataclass
class User:
  id: str
  notes: dict[str, Note] 

@dataclass
class Note:
  id: str
  title: str
  description: str
  media: str

peak frigate
#

HUAWEI

charred creek
peak frigate
#

hawaii?

warm tendon
charred creek
#
import pyaudio
p = pyaudio.PyAudio()

input_devices = []
output_devices = []

for i in range(p.get_device_count()):
  device_info = p.get_device_info_by_index(i)

  if device_info.get("maxInputChannels", 0) > 0:
    input_devices.append(device_info)

  if device_info.get("maxOutputChannels", 0) > 0:
    output_devices .append(device_info)
  
print(f"Input Devices: {input_devices}")
print(f"Output Devices: {output_devices}")
gray marlin
warm tendon
#

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

misty sinew
#

@raw wren how did you make this cool game lol convert it too an mac app i wanna play it lol

warm tendon
misty sinew
#

@warm tendon can you tell me pls how can i convert a python code onto an app?

warm tendon
#

like to an exe?

misty sinew
#

what is an app called in mac ?? idk

warm tendon
#

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

misty sinew
#

wait lemme se

last wren
#

i need help please

#

its this one

lost cypress
#

whats the name of the game?

warm tendon
#

flawless

misty sinew
lost cypress
#

you can disable deaths ๐Ÿ˜‚

misty sinew
warm tendon
lost cypress
#

so like using a python script to beat it is not cheating ๐Ÿ˜‚

misty sinew
warm tendon
#

pyinstaller maybe

misty sinew
#

and how does it work?

warm tendon
#

never used it, check out their docs ยฏ_(ใƒ„)_/ยฏ

lost cypress
misty sinew
#

can you give me the code pls?

lost cypress
#

@raw wren speedrun that game

misty sinew
lost cypress
#

but that will count spaces too

charred creek
#

!docs str.split

coarse hearthBOT
#
str.split(sep=None, maxsplit=-1)```
Return a list of the words in the string, using *sep* as the delimiter string. If *maxsplit* is given, at most *maxsplit* splits are done (thus, the list will have at most `maxsplit+1` elements). If *maxsplit* is not specified or `-1`, then there is no limit on the number of splits (all possible splits are made).

If *sep* is given, consecutive delimiters are not grouped together and are deemed to delimit empty strings (for example, `'1,,2'.split(',')` returns `['1', '', '2']`). The *sep* argument may consist of multiple characters (for example, `'1<>2<>3'.split('<>')` returns `['1', '2', '3']`). Splitting an empty string with a specified separator returns `['']`.

For example:... [read more](https://docs.python.org/3/library/stdtypes.html#str.split)
lost cypress
misty sinew
#

ok

lost cypress
#

@strong nymph you can use nltk too

#

its a library for Natural language Tool Kit

#

Hey i have a question

#

how did among us did the server hosting for their game

#

like they didnt have that much capital to invest in like AWS

misty sinew
#

@warm tendon i am converting a donut to an exe do you want it ?

#

i can send you a file were the donut spins

warm tendon
#

no thanks

misty sinew
#

ok

#

because i use it as a screen saver

#

someone help me

#

i cant find the output of my programm

#

@strong nymph help?

#

@raw wren

warm tendon
#

stop pinging random people

misty sinew
#

sory

#

i just want to know were the output is

#

hey any of you got python jobs?

#

im just not sure what to focus in on

charred creek
misty sinew
#

who we talking about?

#

this ludwig lad?

misty sinew
#

bless you lol

#

ive tried watching those

#

learned nothing

raw wren
#

;

#

:

charred creek
#

!e

print("Hello World")
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

Hello World
charred creek
#

@warm tendon ^

warm tendon
#

?

lime grove
misty sinew
#

hey im terrible at programming too. ill take your job offer and pass it on to someone else to do it for me

warm tendon
azure knoll
misty sinew
#

you lost me at derivatives

#

7?

#

700?

charred creek
#

the word derivatives makes me hungry

#

I think its cos of digestives

warm tendon
#

๐Ÿค”

charred creek
#

๐Ÿช

misty sinew
charred creek
#

no

misty sinew
#

oh my bad

#

lol

#

those have laxatives in them

#

"in 1839 two Scottish doctors developed these to help with the aid of the digestive system because they've got sodium bicarbonate in them, which is a laxative"

peak frigate
#

the fact that brits eat a wheat product to better digest is weird lol

misty sinew
#

bisquite

#

"i really want to find a woman online"

#

๐Ÿ˜†

#

are you making this game?

peak frigate
#

deja vu

twilit sphinx
misty sinew
#

wow those look kinda tasty though

true valley
#

US wheat products that are for digestion.

misty sinew
peak frigate
#

yeah but who actually buys those products they're terrible...

#

whereas digestive biscuits are v popular

#

by comparison

true valley
#

people who want to have a healthy bowels

peak frigate
twilit sphinx
#

i thought they were for weight loss

#

:\

misty sinew
#

some people just can't take a good dump

true valley
#

health micro biome.

twilit sphinx
#

i mean

somber tulip
#

wtf is this chat

twilit sphinx
#

diuretics+laxatives

#

lots of people do that to cut weight hard

#

i mean water weight

peak frigate
#

question the idea that wheat products with added fiber will help your gut health lol

twilit sphinx
#

that's a sheeps blood agar ๐Ÿ˜„

#

what is HVMN?

#

it's an interesting pick for an article

misty sinew
#

Prof. Simon Carding from the Quadram Institute (previously known as the Institute of Food Research) and Norwich Medical School at the University of East Anglia, describes our current understanding of the human gut and its relationship with its human host and introduce the provocative proposal that gut microbes influence when, what and how often ...

โ–ถ Play video
#

fix yer gut fix yer noggin'

peak frigate
#

gut health is v important but you will not improve it by eating metamucil

#

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

stoic bluff
#

do you play fortnite?

misty sinew
#

when i think of microbiome i think of algea and plankton just chillin in your gut

peak frigate
#

if you don't have the bacteria to begin with you will not do anything by intaking fiber

misty sinew
#

diberticulitus? how do you know that?

peak frigate
#

it's v v v v difficult to restore a poor biome

misty sinew
#

oh i see

somber tulip
#

anyone here see the south park episodes on restoring your micro biome?

misty sinew
#

g

peak frigate
misty sinew
#

counter stroke

#

here i am..

azure knoll
#

hi

warped wind
random minnow
warped wind
#

o/ @elder wraith

peak frigate
#

@autumn raft ! show us the bebbes :3

warped wind
#

o/ @autumn raft

autumn raft
#

LOL, they are feeding rn, some other time

#

and that mama is very nervous

peak frigate
#

ok

#

mama needs to be protecc

autumn raft
#

for context

frail sail
#

aww!

peak frigate
#

how to feel about the animal printed blanket lol

autumn raft
#

LOL, I didnt choose the blanket, came with the fosters xD

frail sail
#

cats sleeping on big cat fur

warped wind
autumn raft
#

this is what happens to you if you dont grow into good bebes

peak frigate
#

OMG

frail sail
#

they resulted to cannibalism

autumn raft
warped wind
#

are you keeping them

warm tendon
#

@autumn raft ๐Ÿ‘€

#

๐Ÿ‘€

misty sinew
#

๐Ÿ‘€

warm tendon
#

@autumn raft ๐Ÿ˜ฆ

autumn raft
#

@raven hollow can you please change your nickname to something that is at least mention-able? This nickname is confusing and frustrating for users here

peak frigate
warm tendon
#

.wa definition of controversy

ocean orbitBOT
warped wind
#

what ya working on @autumn raft

#

ah the friendo bot site

misty sinew
#

@autumn raft can i have sharing screen? for voice chat 0?

somber tulip
#

sorry mate, hemlock isnt online either

misty sinew
#

@autumn raft the python 3.8.5 anaconda interpreter will never give you problems why dont you just download anaconda?

somber tulip
#

you could ask an owner ๐Ÿ˜‚

#

or an admin might have perms

unique raptor
misty sinew
#

<@&267628507062992896> can i have screenshare for voicechat 0?

stark saddle
misty sinew
autumn raft
#

you doing blender guru? haha

stark saddle
#

!stream 637329410760114178 15M

coarse hearthBOT
#

@misty sinew

โœ… @plucky plover can now stream.

misty sinew
#

thanks

unique raptor
somber tulip
#

lmao

#

hes in there just streaming his bean ๐Ÿ˜‚

#

b e a n

unique raptor
#

what

#

its a doughnut

proven shale
#

thats not a bean lol

unique raptor
somber tulip
#

eh the preview looks like a bean

#

its a donut

unique raptor
#

doughnut

somber tulip
#

shhh

unique raptor
#

i am corrector

somber tulip
#

grammer nazi

raw ermine
#

how

warped wind
#

gn yall o/

misty sinew
#

can i get video?

misty sinew
#

please?

somber tulip
#

!stream 218455068242870274 15M

#

yeah i didnt expect that to work

misty sinew
#

it only works for mods and obove

#

can i please get video permissions

peak frigate
#

waow

#

fisher

#

!unfriend fisher

#

3rd time

misty sinew
#

games

#

games on weekends

#

code on weekdays

#

that is hemlocks polocy

warm tendon
#

@autumn raft ๐Ÿ‘€

peak frigate
somber tulip
#

thats a sound argument for videa perms

misty sinew
#

agreed

#

hemlock said games may only be streamed on weekends utc 0

charred creek
#

!e

apple = {
  "seed": 5
}

if seeds := apple.get("seed"):
  print(seeds)

if seeds := apple.get("seed") == 5:
  print(seeds)

if (seeds := apple.get("seed")) == 5:
  print(seeds)
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

001 | 5
002 | True
003 | 5
misty sinew
#

!e
print(666)

coarse hearthBOT
#

@misty sinew :white_check_mark: Your eval job has completed with return code 0.

2659119772153226779682489404387918594905342200269924300660432789497073559873882909121342292906175583032440682826506723425601635775590279389642612611093020398930347774460613894425379600874662147884229022133853819192905427915750759274952935109319020362271989830578539328807633196834507090639946131138999460277671978289412532212329252032960511820487913640083895490443657920956267126291922289224609441034849578266461219690879675039920051391388174525259443193865041630348000323295729231692725808120388628956451330203199414186213654593812478970390749485268614971964248428562782648720818548493937299025693132719165544060431069136029010640558959534212123746079660766983306735060532482925553082121188696097199078085563246046013216102655431476452400396602364732664246252767374593256582134654265209220042370143240456646479703878634028476799516301302320589620637994623895999962376530625874148998609130106933187937209476887496871311072138713943694894357288061061557708461902289692063089736008186036231141171109877
... (truncated - too long)

Full output: too long to upload

hallow anchor
#

it's 6**6**6

peak frigate
#

hi chris bongowave

hallow anchor
coarse hearthBOT
#

@misty sinew You've already got a job running - please wait for it to finish!

peak frigate
#

#bot-commands

misty sinew
#

K

hallow anchor
misty sinew
#

HELP

warm tendon
#

19.4 second reload time lemon_eyes

autumn raft
warm tendon
misty sinew
steep fiber
peak frigate
#

lel

#

check the underside of the keycap

#

cracked??

#

I can send you a random key lol

#

are these custom caps...

#

oh then idk

#

insert joke

true valley
fluid edge
warm tendon
fluid edge
#

oooo what dis

warm tendon
#

good album

fluid edge
#

awww she released a mini solo album? cuuute

warm tendon
#

๐Ÿฅบ

peak frigate
#

gilly i was actually surprised - it's good

fluid edge
#

LOL surprised because psvm sent you music that you don't dislike? xD

peak frigate
#

lmaoo

warm tendon
#

:(

fluid edge
#

kekekekeke

peak frigate
#

this EP made it from like... 2/10 to 4/10

warm tendon
#

i-

fluid edge
#

baby steps

warm tendon
#

:(

#

it's actually good though

peak frigate
warm tendon
#

:D

fluid edge
#

stalker. lol

twilit sphinx
#

she looks like t swizzle

warm tendon
#

kinda? not really though

fluid edge
#

so far i like the first 3 songs

warm tendon
#

good

hallow anchor
#

import semver

autumn raft
#

1.12 and 1.13
1.1.2 and 1.2

hallow anchor
#
from semver.VersionInfo import parse
print(parse('1.12') > parse('1.13'))
autumn raft
#

1.2.3.4 and 1.2.3.4.1

charred creek
#
deegits = regex.gimme_digits("12.3.4.323.1")
print(deegits) # [12,3,4,323,1]
#

regex is easy

autumn raft
#

float("inf")

hallow anchor
#

!e ```py
import math
print(math.bigboy)

coarse hearthBOT
#

@hallow anchor :white_check_mark: Your eval job has completed with return code 0.

inf
raw wren
#

float('inf')

autumn raft
#

!e

print(float("inf") >= float("inf") * 2)
coarse hearthBOT
#

@autumn raft :white_check_mark: Your eval job has completed with return code 0.

True
autumn raft
#

tsk tsk

hallow anchor
#

!e ```py
import sys
print(sys.maxsize)
a = sys.maxsize+1
print(a)

coarse hearthBOT
#

@hallow anchor :white_check_mark: Your eval job has completed with return code 0.

001 | 9223372036854775807
002 | 9223372036854775808
hallow anchor
#

you lie

#

!e ```py
import sys
print(len(list(range(sys.maxsize))))

coarse hearthBOT
#

@hallow anchor :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 2, in <module>
003 | MemoryError
charred creek
#

Courgette Mousse

warm tendon
#

@autumn raft ๐Ÿ‘€

#

๐Ÿฅบ

twilit sphinx
#

did you make that?

#

i made french toast this morning

charred creek
#

Courgette Moose

twilit sphinx
#

and made the whip cream by hand

misty sinew
hallow anchor
peak frigate
charred creek
raw wren
peak frigate
#

sounds perfect..

charred creek
#

Aberta

#

avatar*

peak frigate
#

it's quite ugly

charred creek
#

true

#

looked better in my head

#

I do like K.Flay tho

hallow anchor
#

i-

warm tendon
#

๐Ÿค”

lime grove
#

i love the new look~

hallow anchor
#

.spookify 568276116062863405

ocean orbitBOT
#
minaโœฏโœฉโœฏ
Is this you or am I just really paranoid?
hallow anchor
#

i-

#

lancebot?

warm tendon
#

@peak frigate ๐Ÿคฉ

charred creek
raw wren
#

Chris can you check my off topic names?

charred creek
#

.spookify 830554641120100375

ocean orbitBOT
#
You blew it.

Your input was invalid: Member "830554641120100375" not found.

Usage:
.savatar [user]

hallow anchor
hallow anchor
ocean orbitBOT
#
jake__
Is this you or am I just really paranoid?
raw wren
#

But only staff can do it

hallow anchor
#

ohh, thought you wanted me to add some new one's that you had suggested

#

I know of an existence of a suggestion form

warm tendon
#

no, otn aren't attributed to people

hallow anchor
#

I can search for some that have jake in them tho

warm tendon
#

yeah

hallow anchor
#

Heh there's 2 with jake in them ๐Ÿ‘€

raw wren
#

I swear I have seen fisher do it

peak frigate
#

honored to witness

#

i forget the other one

warm tendon
#

:o

lime grove
#

omggg

#

no way

warm tendon
#

:D

lime grove
#

nice pfp

warm tendon
#

wbu ๐Ÿ‘€ @lime grove

peak frigate
#

getting conf00zed so much hayan

lime grove
#

l o l

#

heh

warm tendon
#

๐Ÿ‘€

#

@charred creek

charred creek
#

double send?

#

is discord bugging?

warm tendon
#

๐Ÿ˜”

lime grove
#

this one is kind of too zoomed in

charred creek
autumn raft
lime grove
#

๐Ÿ˜”

raw wren
true valley
warm tendon
lime grove
#

i like this one ๐Ÿ‘€

warm tendon
#

ooh, that's a good one

lime grove
#

yeah ๐Ÿฅบ

true valley
#

Gogoro has managed to scoop up another vehicle partnership that will see more electric scooters produced that will be powered by Gogoroโ€™s swappable batteries. The latest line of electric scooters joining the network will be CMC eMOVING scooters. The โ€œPowered by Gogoro Networkโ€ has now grown to include five of the seven major scooter manufacturer...

autumn raft
#

hummus is a mealโ„ข๏ธ

peak frigate
#

..

warm tendon
#

bruh i thought that was me replying

peak frigate
#

wdym

warm tendon
#

i thought i said ".."

peak frigate
#

you did

warm tendon
#

i-

peak frigate
#

now i just need to become media team

true valley
#

now the names are just getting confusing.

warm tendon
#

๐Ÿ˜”

#

i kinda like the cat though

peak frigate
#

mine

lime grove
#

hmmm

lime grove
#

it's the truth ยฏ_(ใƒ„)_/ยฏ

warm tendon
#

better in what way though

lime grove
#

every way

warm tendon
#

i-

charred creek
warm tendon
#

not just a typo on colemak?

lime grove
#

lol colemak

#

imagine

#

bye everyone ๐Ÿ‘‹

warm tendon
#

๐Ÿ‘‹

true valley
#

Bitter Gourd Cucumber

warm tendon
#

typeracer anyone? ๐Ÿ‘€

peak frigate
#

why

#

you'd win anyway

warm tendon
#

no?

#

i'm incredibly inconsistent ๐Ÿ˜”

lime grove
#

colemak :/

warm tendon
#

?

lime grove
#

?

charred creek
sleek parrot
#

pp

#

๐Ÿ™‚

charred creek
#

The Mojave Desert ( moh-HAH-vee, mษ™-; Mohave: Hayikwiir Mat'aar) is an arid rain-shadow desert and the driest desert in North America. It is in the Southwestern United States, primarily within southeastern California and southern Nevada, and it occupies 47,877 sq mi (124,000 km2). Small areas also extend into Utah and Arizona. Its boundaries are...

peak frigate
#

free willy

#

uhhh

autumn raft
#

who are you people

charred creek
#

friends :c

lime grove
#

๐Ÿฅบ

autumn raft
#

it all psvm

peak frigate
#

^ no it's all mina

warm tendon
lime grove
#

hell yeah im catching up ๐Ÿ˜ค

autumn raft
#

its all cat_roll

#

pub, reply to pingssss :C

warm tendon
#

i-

autumn raft
#

tenks C:

warm tendon
#

๐Ÿ˜”

unborn prairie
#

neat

cursive rover
#
x = collection.find_one({"notes.id": "1e5d719d"})
print(x["notes"]["title"])```
#

.title

#

[None, {'id': '1e5d719d-5a7f-4524-b5e3-7665b24ebcf0', 'date': datetime.datetime(2021, 4, 10, 19, 6, 43), 'title': 'asd', 'description': 'xcv', 'media': ''}, {'id': '382c7617-2d70-4ac2-8c8b-11eff89f2a6b', 'date': datetime.datetime(2021, 4, 10, 16, 11, 47), 'title': 'Hi', 'description': 'its me', 'media': ''}]

#

for el in x["notes"]:
print(el.title)

cursive rover
#

x["notes"]

#

for el in x["notes"]: print(el)

charred creek
#
data = collection.find_one({"notes.id": "1e5d719d"})
notes = data["notes"]

for note in notes:
  if note.get("id"):
    print(note["title"])

cursive rover
#

note["title"]

charred creek
cursive rover
#

x[note][tittle]

lethal gale
#

You probably want to for loop over the multiple items in the list

cursive rover
#

{'_id': 817885598270488649, 'name': 'Dr.test1', 'discriminator': '6314', 'nickname': None, 'created_at': datetime.datetime(2021, 3, 6, 22, 25, 22, 207000), 'top_role_id': 808013531244134450, 'top_role_name': '@everyone', 'notes': [None, {'id': '1e5d719d-5a7f-4524-b5e3-7665b24ebcf0', 'date': datetime.datetime(2021, 4, 10, 19, 6, 43), 'title': 'asd', 'description': 'xcv', 'media': ''}, {'id': '382c7617-2d70-4ac2-8c8b-11eff89f2a6b', 'date': datetime.datetime(2021, 4, 10, 16, 11, 47), 'title': 'Hi', 'description': 'its me', 'media': ''}], 'joined_at': datetime.datetime(2021, 4, 10, 14, 29, 51, 862000)}

lethal gale
#

if you simply want all the titles, you can use a list comprehension

#

And if you know there's onyl one you can just pop() from it

cursive rover
#

{id: asdasd}

charred creek
#
from dataclasses import dataclass

@dataclass
class User:
  id: str
  notes: dict[str, Note] 

@dataclass
class Note:
  id: str
  title: str
  description: str
  media: str
#

!e

my_dict = {
  "id": 124812359235,
  "notes": {
    1321248: "Test",
    4234234: "Yike"
  }
}

print(my_dict)
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

{'id': 124812359235, 'notes': {1321248: 'Test', 4234234: 'Yike'}}
charred creek
#

!e

from dataclasses import dataclass

@dataclass
class User:
  id: str
  notes: dict[str, "Note"] 

@dataclass
class Note:
  id: str
  title: str
  description: str
  media: str

my_user = User(id=1, notes={})

my_user.notes[1] = vars(Note(id=1, title="Cool", description="Desc", media=""))
my_user.notes[2] = vars(Note(id=2, title="Cool", description="Desc", media=""))

print(vars(my_user))

note_1 = Note(**my_user.notes[1])
note_2 = Note(**my_user.notes[2])
print(note_1)
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

{'id': 1, 'notes': {1: {'id': 1, 'title': 'Cool', 'description': 'Desc', 'media': ''}, 2: {'id': 2, 'title': 'Cool', 'description': 'Desc', 'media': ''}}}
random minnow
#

!docs vars

coarse hearthBOT
#
vars([object])```
Return the [`__dict__`](stdtypes.html#object.__dict__ "object.__dict__") attribute for a module, class, instance, or any other object with a [`__dict__`](stdtypes.html#object.__dict__ "object.__dict__") attribute.

Objects such as modules and instances have an updateable [`__dict__`](stdtypes.html#object.__dict__ "object.__dict__") attribute; however, other objects may have write restrictions on their [`__dict__`](stdtypes.html#object.__dict__ "object.__dict__") attributes (for example, classes use a [`types.MappingProxyType`](types.html#types.MappingProxyType "types.MappingProxyType") to prevent direct dictionary updates).

Without an argument, [`vars()`](#vars "vars") acts like [`locals()`](#locals "locals"). Note, the locals dictionary is only useful for reads since updates to the locals dictionary are ignored.... [read more](https://docs.python.org/3/library/functions.html#vars)
charred creek
#

!e

from __futures__ import annotations
from dataclasses import dataclass

@dataclass
class User:
  id: str
  notes: dict[str, "Note"]

@dataclass
class Note:
  id: str
  title: str
  description: str
  media: str

my_user = User(id=1, notes={})

my_user.notes[1] = vars(Note(id=1, title="Cool", description="Desc", media=""))
my_user.notes[2] = vars(Note(id=2, title="Cool", description="Desc", media=""))

user = vars(my_user)

note_1 = Note(**my_user.notes[1])
note_2 = Note(**my_user.notes[2])
print(note_1)
user = User(**user)
print(user)
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

001 | Note(id=1, title='Cool', description='Desc', media='')
002 | User(id=1, notes={1: {'id': 1, 'title': 'Cool', 'description': 'Desc', 'media': ''}, 2: {'id': 2, 'title': 'Cool', 'description': 'Desc', 'media': ''}})
charred creek
#

!e

from __future__ import annotations
from dataclasses import dataclass

@dataclass
class User:
  id: str
  notes: dict[str, Note]

@dataclass
class Note:
  id: str
  title: str
  description: str
  media: str

my_user = User(id=1, notes={})

my_user.notes[1] = vars(Note(id=1, title="Cool", description="Desc", media=""))
my_user.notes[2] = vars(Note(id=2, title="Cool", description="Desc", media=""))

user = vars(my_user)

note_1 = Note(**my_user.notes[1])
note_2 = Note(**my_user.notes[2])
print(note_1)
user = User(**user)
print(user)
warm tendon
#

hi bast

coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

001 | Note(id=1, title='Cool', description='Desc', media='')
002 | User(id=1, notes={1: {'id': 1, 'title': 'Cool', 'description': 'Desc', 'media': ''}, 2: {'id': 2, 'title': 'Cool', 'description': 'Desc', 'media': ''}})
autumn raft
#

this griff guy is pretty good at helping, someone should helper him

charred creek
#

help him*

autumn raft
#

:flag_ook:

warm tendon
#

schewpid

#

chewsday

autumn raft
charred creek
raw wren
charred creek
#

ranked

autumn raft
charred creek
autumn raft
#

Dr. Bit Le Coine Esq.

peak frigate
raw wren
#

@autumn raft how did you react that fast....

autumn raft
#

hax

#

also known as the shift key

#

it is also how I can delete your messages really fast

raw wren
#

So quick

charred creek
autumn raft
#

ooshort tea

peak frigate
#

use your library

warm tendon
lime grove
warm tendon
#

lul

autumn raft
#

.fo

ocean orbitBOT
#

Form of a wrench of steam!

warm tendon
#

.fo

ocean orbitBOT
#

Form of a lake of snow!

autumn raft
#

!otn a json is a database

coarse hearthBOT
#

:ok_hand: Added json-is-a-database to the names list.

autumn raft
#

!otn s json

coarse hearthBOT
#
Query results

โ€ข freddy-vs-json
โ€ข json-based-operating-system
โ€ข json-bourne
โ€ข json-is-a-database

raw wren
#

I can't believe you just said that python bot

autumn raft
#
{
"key": {"value": [[["key"]]]}
}
raw wren
#

!user

coarse hearthBOT
#

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

stuck bluff
#

The word, meteorology always makes me think of meteors.

"...and now over to Paul for the weather."
"Thank you, Stan. It was another day of flaming rock today, with temperatures reaching into the high thousands..."

autumn raft
#

opal's hot takes

true valley
raven orbit
#

...wow

misty sinew
#

!e

"key": {"value": [[["key"]]]}
}
print(Test)```
coarse hearthBOT
#

@misty sinew :white_check_mark: Your eval job has completed with return code 0.

{'key': {'value': [[['key']]]}}
misty sinew
#

!e

"key": {"value": [[["key"]]]}
}
print(Test["Value"])```
coarse hearthBOT
#

@misty sinew :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 4, in <module>
003 | KeyError: 'Value'
misty sinew
#

!e

"key": {"value": [[["key"]]]}
}
print(Test["key"])```
coarse hearthBOT
#

@misty sinew :white_check_mark: Your eval job has completed with return code 0.

{'value': [[['key']]]}
misty sinew
#

ohhhhh

#

im learning

hearty heath
#

Batch, would you mind doing that in the #bot-commands channel, sorry.

misty sinew
#

yes

lucid heart
#

Anyone here who knows Bash Scripting?

#

@stuck bluff Do you have some knowledge?

winter furnace
#

what do you wanna make?

lucid heart
misty sinew
#

use a math api or something

winter furnace
#

yeah

misty sinew
#

or just google how to convert the things you want

winter furnace
misty sinew
#

@winter furnace he is using bash scripting

winter furnace
#

oh

winter furnace
#

oh ok

stuck bluff
#

All that coordinate conversion stuff on wiki looked intimidatingly involved, but then I don't really understand the notation.

#

From what I remember. Maybe that was vector conversions, though.

lucid heart
stuck bluff
#

You could probably make use of bash's |symbol to pipe the needed info into a python script invocation, using probably something in the sys module to catch the stdin info piped to it, possibly the same to push it back out, or maybe just print.

#

@lucid heart

#

From there, sending it to a file with > or another program with |

#

It'd probably be better to use whatever passes for mathematics operators in bash, though.

#

I'm not adept at bash in quite the same way as Python.

pearl torrent
#

hey whats going on in vc 1 lol

#

which repository are you guys talking about @ Voice Chat 1

stuck bluff
#

I'm done, now.

pearl torrent
#

ooh nice :)

charred creek
#

@raw wren ready to start?

pearl torrent
#

hes revving his engines

#

jakes worked a lot with discord.py recently hasnt he?

#

@ Griff are you going to teach him some github collaboration skills?

royal saffron
#

pipenv install --python

pure willow
#

Found the chat...thanks

#

Downgrade Numpy

#

version it will work.

#

@raw wren

random minnow
pearl torrent
#

aah you guys done coding?

pure willow
#

The system will restart few times, i guess.

random minnow
#

why are they doing the / open(Path.cwd() / bot / save_data.JSON, "r")

pure willow
#

I think it will make path generalized. I if you run it at docker it will run perfectly taking root path from Path.cwd().

raw wren
pure willow
random minnow
pearl torrent
#

YAY

charred creek
#

!docs isinstance

coarse hearthBOT
#
isinstance(object, classinfo)```
Return `True` if the *object* argument is an instance of the *classinfo* argument, or of a (direct, indirect or [virtual](../glossary.html#term-abstract-base-class)) subclass thereof. If *object* is not an object of the given type, the function always returns `False`. If *classinfo* is a tuple of type objects (or recursively, other such tuples), return `True` if *object* is an instance of any of the types. If *classinfo* is not a type or tuple of types and such tuples, a [`TypeError`](exceptions.html#TypeError "TypeError") exception is raised.
pearl torrent
#

is this a mentoring/teaching session(just out of curiosity)

stoic bluff
#

so sorry xD

pearl torrent
#

this is a little sus

#

but only a little

stoic bluff
#

i was trying to speak but i was listening music

#

should we do voice reveal for me?

#

cmon

#

why not?

peak frigate
#

only if you have something relevant to contribute to the existing ongoing conversation please

pearl torrent
#

๐Ÿ‘ ๐Ÿ‘

peak frigate
#

no need to make an event of it :)

hearty heath
#

I think there is a way to annotate kwargs ๐Ÿค”

warm tendon
#

!e

def func(**kwargs: dict[int, str]):
  print(kwargs)
coarse hearthBOT
#

@warm tendon :warning: Your eval job has completed with return code 0.

[No output]
warm tendon
#

huh

pearl torrent
#
@client.event
async def on_message(message):
    if message.content.startswith('$greet'):
        channel = message.channel
        await channel.send('Say hello!')

        def check(m):
            return m.content == 'hello' and m.channel == channel

        msg = await client.wait_for('message', check=check)
        await channel.send('Hello {.author}!'.format(msg))

charred creek
#
from typing import Any

def func(**kwargs: dict[Any, Any]):
  print(kwargs)
pearl torrent
warm tendon
#

that doesn't matter

pearl torrent
#

oh thats cool

random minnow
#
async with aiofiles.open(TODO_FILE, "r") as read:
                todo_file_read = json.loads(await read.read())
pearl torrent
#

beautiful

#

yo

#

why did they call it read though

#

:|

random minnow
pearl torrent
#

read.read() seems awkward

#

in terms of readability and code understanding

#

lol

random minnow
#

ik

pearl torrent
#

yeah thats all

#

@ Griff would you be ok with sharing your github?

#

maybe do:

description = ctx.command.usage if ctx.command.usage else ""

in the embed

#

just so that it doesnt break the rest of the bot code for now

charred creek
#

or

#
description = ctx.command.usage or ""
#

!e

example = ""
desc = example or "Yikes"
print(desc)

example2 = "Trout"
desc2 = example2 or "Yikes"
print(desc2)
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

001 | Yikes
002 | Trout
pearl torrent
#

ill use this from now on lmao

charred creek
#

!e

one, two, three = "", "", ""
desc = one or two or three or "Yikes"
print(desc )
coarse hearthBOT
#

@charred creek :white_check_mark: Your eval job has completed with return code 0.

Yikes
hearty heath
#

!eval ```py
from itertools import count

for i in count(1):
expr = ' or '.join(['True'] * i)
eval(expr)

coarse hearthBOT
#

@hearty heath :warning: Your eval job timed out or ran out of memory.

[No output]
hearty heath
#

So, as many as you like I guess.

#

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

charred creek
#

daas scary

#

so many ors ||oars||

#

its gonna be like a viking boat

hearty heath
#

Wouldn't have got it otherwise...

#

Hey Hemlock ๐Ÿ‘‹

buoyant echo
misty sinew
#

whats that?

hearty heath
buoyant echo
#

Yep, I did

#

sea cables from australia to the usa

merry mica
#

Australia internet cable

#

Yeah what TrayKnots said

misty sinew
#

so thats my my internet is fucking shit

stuck bluff
pearl torrent
#

:)

peak frigate
misty sinew
#

^

misty sinew
#

henlo @raven orbit

misty sinew
#

wait what chat?

#

ight sure

#

@misty sinew so what's the plan?

golden marsh
brittle kraken
#

ok

#

ello

golden marsh
#

ah okay

copper sentinel
#

lol

brittle kraken
#

is that staff vc

#

mhm

copper sentinel
#

cursed

golden marsh
misty sinew
#

by the way, anyone know of a way to copy ot clipboard and also to type out text as if it was typed on a keyboard using only the standard library? I can't find anything that doesn't require me to download some more libraries, want to stick to standard

copper sentinel
#

Mhm.

misty sinew
#

also yes you're crystal clear

brittle kraken
#

too much ipa ๐Ÿฅด

copper sentinel
#

I cant hear haha.

#

its just flashing green.

golden marsh
#

ah okay

copper sentinel
#

near your avatar.

golden marsh
#

i was asking whether you could lol

copper sentinel
#

oh. Nopee

misty sinew
#

He sounds german

boreal sinew
copper sentinel
#

oh yeah I know can hear.

boreal sinew
#

since when can you mention voice channels?

copper sentinel
#

wait its gone again.

golden marsh
#

since uhhhhhhh 1 day ago

boreal sinew
golden marsh
#

#! name

misty sinew
#

"I have to get work done" yes definitely german, he is a responsible human being

boreal sinew
misty sinew
#

Aight half german

copper sentinel
#

aight gtg ๐Ÿ‘‹.

brittle kraken
#

cya

boreal sinew
golden marsh
#

could be that we got it first because partnered

boreal sinew
#

hmm maybe

#

You mentioned this text channel, not the voice channel

golden marsh
#

gotta have that ! in there

#

#!voice chat 1

dusky yew
boreal sinew
misty sinew
#

#!Staff

dusky yew
pearl torrent
#

lol

delicate ice
#

#!unmute

raw wren
#

.spookify @raw wren

ocean orbitBOT
#
jake__
Is this you or am I just really paranoid?
charred creek
#

.spookify

ocean orbitBOT
#
Griff
Is this you or am I just really paranoid?
pearl torrent
#

i agree with a lot of the points here

warped wind
#

what does he say

pearl torrent
#

harder to develop - have to interact with chat while coding

#

less viewers

#

because its easier to watch games than code

#

harder to think and brainstorm code while streaming

#

!docs websocket

coarse hearthBOT
#

A protocol providing full-duplex communication channels over a single TCP connection. The WebSocket protocol was standardized by the IETF as RFC 6455

pearl torrent
warped wind
charred creek
warped wind
pearl torrent
#

๐Ÿ˜ฌ

elder ingot
#

IS IT OK TO ERITE

#

if(!res)

warm tendon
#

in python?

raw wren
#

Yeah

elder ingot
#

ye

warm tendon
#

no

hearty heath
# ocean orbit

@raw wren don't show this to your grandparents who were upset about you eating meat on Good Friday ๐Ÿ˜„

warm tendon
#

that's invalid syntax

elder ingot
hearty heath
pearl torrent
#

https://www.youtube.com/watch?v=F0G9lZ7gecE&ab_channel=Fireship
what do you guys think of this new server side JS runtime?

Deno is a brand new JavaScript runtime, similar to Node.js. Use it to develop secure server-side apps with built-in TypeScript support, ES modules, and promise-based APIs.

Learn more at https://deno.land

#javascript #nodejs #100SecondsOfCode

Install the quiz app ๐Ÿค“

iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8
Android https:...

โ–ถ Play video
warped wind
#

never used it yet

pearl torrent
#

yeah ive used it a couple times

warped wind
#

still new to node

pearl torrent
#

not for anything serious

#

dont think it'll take off until theres more compatibility between node and deno

#

the guy who wrote deno is the same guy who wrote node lmao

#

he said there were some flaws with node

pearl torrent
#

but he couldnt just "fix" node

#

when there were like

#

tons of people using it

#

lmao

warped wind
#

but companies won't migrate asap

pearl torrent
#

yep

warped wind
#

just like java

pearl torrent
#

yeah

#

node isnt legacy by any means

hearty heath
#

Yeah, I wish I started programming earlier lemon_pensive

pearl torrent
#

same

warped wind
#

when did you start

hearty heath
#

I didn't really start until I was about 21/22.

warped wind
#

oh

#

I started when I joined this server

#

!user

coarse hearthBOT
#
Iceman#6508

hypesquad_brilliance

User information

Created: 4 years, 3 months and 15 days ago
Profile: @warped wind
ID: 263560579770220554

Member information

Joined: 3 years, 1 month and 8 days ago
Roles: <@&542431903886606399>, <@&518565788744024082>, <@&463658397560995840>, <@&764802720779337729>, <@&295488872404484098>, <@&267630620367257601>, <@&787816728474288181>

Infractions

Total: 0
Active: 0

pearl torrent
#

nice

warped wind
#

3 years ago

#

when I was 15

hearty heath
#

Ah right, nice ๐Ÿ˜„

#

Yeah, you're way ahead of me then.

warped wind
#

well, I did not learn the entire 3 years, lol

#

school does not give enough free time

#

and now uni too

pearl torrent
#

;-;

#

hows university

#

what major

warped wind
#

mechanical

pearl torrent
#

cool

warped wind
#

I picked university over course

#

so I picked the best uni in my city regardless of the course

#

here uni > course kinda

pearl torrent
warped wind
#

I remember watching fireship only to understand electronjs and firebase

pearl torrent
#

nice

hearty heath
warped wind
#

he builds OBS 2.0 in the electron vid

pearl torrent
#

yeah damn

warped wind
#

discord is built on electron too

#

no wonder it eats so much ram

#

vscode too

warped wind
#

or sports/cultural

hearty heath
warped wind
#

cool cool

#

what do you do now

hearty heath
#

Or musician.

warped wind
#

programmer?

warped wind
#

hope you get a job soon, all the best ๐Ÿ‘

hearty heath
pearl torrent
#

@raw wren

warped wind
#

teams too huh

raw wren
hearty heath
#

Never heard of Figma

warped wind
#

its a web design tool

#

like adobe XD

pearl torrent
#

figma is awesome

warped wind
#

but adobe XD is free

hearty heath
#

Looks cool!

#

Isn't web-assembly not really made for humans?

#

But for compilers.

#

Can LLVM compile to web-assembly?

pearl torrent
#

i would assume so

elder wraith
#

Slack is Electron as well

mild flume
#

Huh, didn't know that

elder wraith
#

in fact, all the chat services are EXCEPT Google

raw wren
#

Really??

#

thats cool

#

it makes sense

elder wraith
#

Today weโ€™ve just shipped a new version of the Slack Desktop application for macOS. We built it with Electron, and, as a result, itโ€™s faster, sports a frameless look, and has a number of behind-the-scenes improvements to make for a much better Slack experience. There are, of course, different ways to build desktop applications with โ€ฆ

warped wind
#

oh, I haven't slack in months, time to check for messages

hearty heath
#

Slack has threads ๐Ÿ˜„

mild flume
#

Threads are dope

pearl torrent
#

python threads are dope

warped wind
pearl torrent
#

discord started under slack and was a niche at first(for gamers)

#

but now its just become more superior

#

to slack in terms of ux

hearty heath
#

Can you translate that to celsius Jake? ๐Ÿ˜„

warped wind
#

0

#

0-100

#

32-212?

mild flume
#

0c * 0c = 64 F

hearty heath
#

All I know about Fahrenheit is 100 is a hot day in Florida, and 0 is fucking freezing.

golden marsh
#

.wa 0C * 0C in F

ocean orbitBOT
hearty heath
#

Fahrenheit squared ๐Ÿ˜„

peak frigate
#

just gouge eyes out

#

learn braille, etc.

#

wait one day

#

could they make glasses for the blind

#

artificial eyes lol

#

connected to the brain

warped wind
peak frigate
#

someone out there must be working on this no?

hearty heath
#

I saw a thing once, where they gave a person ultrasound perception, and the interface is a thing you put on your tongue.

peak frigate
#

just had carne asada yum ๐Ÿฅฉ

hearty heath
#

Your brain can learn to interpret the signals...

peak frigate
#

gave a person ultrasound perception

#

lol i was more thinking

#

does that make them like, dolphins

golden marsh
#

xdoubt doubt

#

nice i finally made that emoji

warped wind
#

what is that for

hearty heath
golden marsh
#

its for xdoubt doubt

warped wind
#

looks like xbox 2.0 emoji

#

oh yes, looks like x on my ps3 controller

golden marsh
scarlet linden
#

is no one speaking or am I deaf

warped wind
#

the former

#

I accidentally bought xbox game pass for another month

mild flume
#

"Accidentally"

warped wind
#

yes

#

forgot to remove card

#

and cancel auto-sub

mild flume
#

Oh right fair enough

warped wind
#

I wanted to get he ea pass instead, but I guess I will enjoy the xbox game pass for another month

#

ea pass is cheaper and it has all the games I need

hearty heath
#

He has some really good python videos.

#

I just learned the difference between Any and object from one of his videos ๐Ÿ˜„

proven shale
#

I have definitely seen some of his videos

golden marsh
hearty heath
# warped wind educate us ๐Ÿ™ƒ

Alright, so if a variable has type object, that means the code has to work whatever object you give it. If the type is Any that just tells the static type checker to ignore the type of that variable.

#

Essentially, they are the opposite of each other, in a way.

#

object maximally restricts what you can do with a variable to just those things that can be done to any object.

#

You pretty much always want to use object. And Any is just there if you get fed up and want to bypass the type system ๐Ÿ˜„

#

For type annotations.

warped wind
#

but object means the code has to work whatever object you give

golden marsh
#

doesnt object limit to the default implementations of the actual object base class?

warped wind
#

free time is for relaxing

hearty heath
#

Erm, until you do branch on isinstance(myvar, some_type), you basically can't do anything with a variable annotated as object except pass it around.

raw wren
#

crunch time is for coding

warped wind
#

show us please @golden marsh

hearty heath
#

Same ๐Ÿ˜„ A side effect of being a night owl.

#

And living in houses with squeaky floorboards lemon_pensive

warped wind
#

I thought I'd sleep early today but I guess thats not happening

#

almost 12am

mild flume