#voice-chat-text-0

1 messages · Page 953 of 1

barren scroll
#

i mean you are a discord mod what do you expect

rugged root
#

Oh no, I'm so upset at this comment. Whatever will I do

#

Wait, no

#

The other one

#

Indifferent

mint prawn
#

hello

#

could

#

somedoy help me

#

someone

#

I can talk

#

in the voice chat

rugged root
#

What's your question? We can start from there

mint prawn
#

I've written more than 50 messages

#

cant

#

sry hahahahaa

woeful salmon
#

!e

a, b = a[:] = [[]], []
print(a, b)
wise cargoBOT
#

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

[[...], []] []
rugged root
woeful salmon
haughty pier
#
>>> def factorial(n):
...     if n == 1: # base case
...         return 1
...     else: # recursive case
...         return n * factorial(n-1)
...
>>> factorial(3)
6
>>> factorial(4)
24
>>> factorial(5)
120
woeful salmon
haughty pier
#
>>> a[:] = [[]], []
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'a' is not defined
>>> a, b = a[:] = [[]], []
>>> b
[]
>>> a
[[...], []]
woeful salmon
#
import gc


def foo():
    a = [2, 4, 6]
    b = [1, 4, 7]

    l = [a, b]
    d = dict(a=a)
    return l, d

l, d = foo()
r1 = gc.get_referrers(l[0])
r2 = gc.get_referrers(l[1])

print(r1)
print(r2)
haughty pier
#
>>> import sys
>>> sys.getrefcount(())
2051
>>> sys.getrefcount('a')
9
>>> sys.getrefcount('b')
9
>>> sys.getrefcount('c')
11
>>> sys.getrefcount('d')
9
>>> sys.getrefcount('e')
7
>>> sys.getrefcount(0)
330
woeful salmon
#

!code

wise cargoBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

#

@midnight agate :white_check_mark: Your eval job has completed with return code 0.

001 | 2
002 | 3
003 | 4
haughty pier
#
>>> sys.getrefcount(False)
165
>>> sys.getrefcount(True)
148
>>> sys.getrefcount(None)
4376
woeful salmon
#

!e

import gc
import sys
foo = "hello world"
print(sys.getrefcount(foo))
print(len(gc.get_referrers(foo)))
wise cargoBOT
#

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

001 | 4
002 | 3
woeful salmon
wise cargoBOT
#

@midnight agate :white_check_mark: Your eval job has completed with return code 0.

2
rugged root
#
(s, s)[0]
s
woeful salmon
#

!e

print(id(float(2)) == id(float(1)))

@midnight agate

rugged root
wise cargoBOT
#

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

True
rugged root
#

Forgot we changed the name

haughty pier
#
>>> id(1)
139834787182528
>>> id(True)
139834787062592
>>> id(None)
139834787031568
>>> id([])
139834552237888
>>> id([])
139834552237888
terse needle
#

!e assert float(2) is float(1)

wise cargoBOT
#

@terse needle :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | AssertionError
haughty pier
#
Help on built-in function id in module builtins:

id(obj, /)
    Return the identity of an object.

    This is guaranteed to be unique among simultaneously existing objects.
    (CPython uses the object's memory address.)
terse needle
#

!docs id

wise cargoBOT
#
id

id(object)```
Return the “identity” of an object. This is an integer which is guaranteed to be unique and constant for this object during its lifetime. Two objects with non-overlapping lifetimes may have the same [`id()`](https://docs.python.org/3/library/functions.html#id "id") value.

**CPython implementation detail:** This is the address of the object in memory.

Raises an [auditing event](https://docs.python.org/3/library/sys.html#auditing) `builtins.id` with argument `id`.
#

@midnight agate :warning: Your eval job has completed with return code 0.

[No output]
haughty pier
#
>>> id(['something'])
139834549310528
>>> id(['something else'])
139834549310528
wise cargoBOT
#

@midnight agate :white_check_mark: Your eval job has completed with return code 0.

140217607589584 140217607589584
terse needle
#

!e

_ = float(2)
x = id(_)
del _
y = id(float(1))
assert x == y
wise cargoBOT
#

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

[No output]
woeful salmon
#

!e

class Person:
    def __init__(self, name: str) -> None:
        self.name = name
        print(f"{self.name} created")
    def __del__(self) -> None:
        print(f"{self.name} deleted")
print(id(Person("Thor")) == id(Person("Loki")))
wise cargoBOT
#

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

001 | Thor created
002 | Thor deleted
003 | Loki created
004 | Loki deleted
005 | True
#

@midnight agate :white_check_mark: Your eval job has completed with return code 0.

140188367556304 140188368601328 140188367556304
#

@midnight agate :white_check_mark: Your eval job has completed with return code 0.

140163793112784 140163793112592 140163793112784
haughty pier
#
>>> id(['something'])
139834549310528
>>> id(['something else'])
139834549310528
>>> id({'a':'b'})
139834553124544
>>> id(float(1))
139834552450992
>>> id(int(257))
139834549464624
>>> id(int(256))
139834787190688
>>> id(int(255))
139834787190656
>>> id(int(258))
139834549463536
>>> id(int(259))
139834549463536
woeful salmon
#

!e

def foo():
    bar = 20 / 2
    baz = 2 + 2

import dis

print(dis.dis(foo))

more internals to throw out while at it

wise cargoBOT
#

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

001 |   2           0 LOAD_CONST               1 (10.0)
002 |               2 STORE_FAST               0 (bar)
003 | 
004 |   3           4 LOAD_CONST               2 (4)
005 |               6 STORE_FAST               1 (baz)
006 |               8 LOAD_CONST               0 (None)
007 |              10 RETURN_VALUE
008 | None
woeful salmon
#

o- o literal expressions are evaluated at compile time

uncut meteor
#

is dis a built in? or just something snekbox has pre-installed

woeful salmon
#

yes its in standard lib

uncut meteor
#

pog

woeful salmon
#

i can't type 😦 new keyboard with weird layout

uncut meteor
haughty pier
#

lol

molten pewter
woeful salmon
#

ah i have a whole new laptop o- o
not pc cuz no space and i needed it to be portable

#

this is one of the places where windows is simpler
instead of redirecting to > /dev/null
in windows you do > NUL

mystic lily
#

df.set_index('name ', inplace=True)

pallid hazel
#

df_merger.set_index(['whispBridgeMacAddr'], inplace=True)

#

df_merger.set_index('whispBridgeMacAddr', inplace=True)

#

test = pd.DataFrame.from_dict(dict2, orient ='index')
#test = test.append(dict2, ignore_index=True, sort=False)
test.rename({0: (dict_name)}, axis=1, inplace=True)

molten pewter
haughty pier
#

sharding: when go to do a query and another database comes out

#

who is the best actor who died young and why is it Philip Seymour Hoffman?

quasi condor
woeful salmon
#

!e

print(True, True == (True, True, True))
wise cargoBOT
#

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

True False
stuck furnace
# quasi condor

Ooh, I’ve never seen that edge case before. Almost seems like a bug.

quasi condor
#

@stuck furnace I can't see any reasonable way that makes sense. Definitely seems like a bug, presumably it's allowed/fine though

fresh python
#

@rugged root maybe can i have unmute

#

after the whole time

#

would like to interract with me

#

people

rugged root
#

Send the request to @rapid crown. I don't discuss appeals in public

fresh python
#

in a nice respectful way

#

i sent it

#

i wanna make a bot with python web bot anyone has a tutorial of an ideal

pallid hazel
gentle flint
molten pewter
#

ئۇيغۇر

#

Уйғур

#

維吾爾

gentle flint
#

ғ = Ġ

#

щ

unborn storm
#

O-|

gentle flint
#

ю

#

юри

#

юрйи

#

јурии

#

ѓ

molten pewter
#

ʔʊjˈʁʊː

unborn storm
#

[aɪ pʰiː eɪ]

#

seems like this is "IPA" in the real IPA

#

not in IPA/french

#

so, look like the IPA is too complex and detailed, so they made kind of subsets for english/french

rugged root
#

\😃

#

:spade:

#

Well

#

Wait really?

#

Oh plural

#

\♠️

gentle flint
#

\😁

unborn storm
#

rugged root
#

Back later

molten pewter
#

Event 154, disk The IO operation at logical block address 0x0 for Disk 1 (PDO name: \Device\000000c8) failed due to a hardware error.

#

DiskPart has encountered an error: The request failed due to a fatal device hardware error.
See the System Event Log for more information.

pallid hazel
gentle flint
gentle flint
sweet lodge
#

I heard my name

#

I was working

#

What did I do?

#

I like cats

#

As long as they're through a picture

#

Mostly just making a joke
Cats are fine
I am much more a dog person though

woeful salmon
#

@wise aurora if you're wondering why you can't talk look at #voice-verification channel

#

@whole bear ^ you too

#

ah sorry i didn't have discord maximized at the time :x

gentle flint
undone idol
#

Yu should prolly chat in vc1

#

Ig

gentle flint
#

shut

undone idol
#

Uhm?

gentle flint
#

nvm

#

!e

print((0 * 9) + 2)
print((01 * 9) + 2)
print((012 * 9) + 3)
print((0123 * 9) + 4)
print((01234 * 9) + 5)
print((012345 * 9) + 6)
wise cargoBOT
#

@gentle flint :x: Your eval job has completed with return code 1.

001 |   File "<string>", line 2
002 |     print((01 * 9) + 2)
003 |            ^
004 | SyntaxError: leading zeros in decimal integer literals are not permitted; use an 0o prefix for octal integers
somber heath
#

!e py for i in range(1, 11): print("1" * i)🧠

wise cargoBOT
#

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

001 | 1
002 | 11
003 | 111
004 | 1111
005 | 11111
006 | 111111
007 | 1111111
008 | 11111111
009 | 111111111
010 | 1111111111
pallid hazel
#

!e

a = 3+6/2
print(a)
wise cargoBOT
#

@pallid hazel :white_check_mark: Your eval job has completed with return code 0.

6.0
woeful salmon
#

!e

print((int("0") * 9) + 1)
print((int("01") * 9) + 2)
print((int("012") * 9) + 3)
print((int("0123") * 9) + 4)
print((int("01234") * 9) + 5)
print((int("012345") * 9) + 6)
wise cargoBOT
#

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

001 | 1
002 | 11
003 | 111
004 | 1111
005 | 11111
006 | 111111
pallid hazel
#

when calculators are dumb, or is user input incorrect.. you decide.

somber heath
#

Some calculators are.

woeful salmon
#

that's 3 + (6/2) = 3 + 3.0 = 6.0

pallid hazel
#

i know what it is, had just saw a meme about it and thought it was funny.

woeful salmon
#

ah xD

pallid hazel
#

!e

a =( 3+6)/2
print(a)
wise cargoBOT
#

@pallid hazel :white_check_mark: Your eval job has completed with return code 0.

4.5
gentle flint
woeful salmon
gentle flint
quasi condor
pallid hazel
#

conditional checks requiring shucking variables to continue the opposite of the conditional is resulting in quite the challenge

#

i need python to have a, but if . lol

somber heath
#

jif

#

gif

#

I'm ashamed to know you all.

#

The Tea Screamers.

woeful salmon
#

be back in a few mins xD need to go buy something real quick

somber heath
#

What you do is insinuate the practice into an existing tradition. Guy Fawkes night. BBQ chops on a grill over the charcoal.

pallid hazel
#

it must be hard to be human, everything that can be proven.. can also be refuted

woeful salmon
#

@sweet lodge thinkmon hemlock said we can stream games on weekend but i have yet to see a single mod in vc since the morning to ask for perms should i try and ask in modmail or somewhere?

#

probably not right o- o

quasi condor
sweet lodge
rugged root
#

Please don't message modmail for that

woeful salmon
#

yeah i guessed

sweet lodge
#

Oh - Nevermind

rugged root
#

Used to be what we were supposed to do, but at some point that changed

#

So

#

Yeah, current policy is mod+ needs to be around

woeful salmon
#

thinkmon well i mainly just didn't wanna bother you with it on a weekend xD

rugged root
#

Although honestly, I trust you and your judgement, let me have a quick powwow

#

I'll be on in a bit, having to do a priority on-boarding

#

At work, not here

woeful salmon
#

🐸 oh wait so is it not weekend for you yet?

sweet lodge
#

Nope

#

Friday morning

woeful salmon
#

thinkmon oh for me its friday night

#

i didn't know it being morning or evening mattered

#

lol

sweet lodge
#

Fair enough

woeful salmon
#

whoops xD i was 1 day off then
verboof agreed with me when i said weekend so i thought it is

sweet lodge
#

Most people consider the weekend starting when they get home from work on Friday night

woeful salmon
#

oh 😮 i've kinda lost that concept cuz i choose my own work days when freelancing (kinda... like i can decline work when i don't have the time to)

#

so i'm often working on sunday

sweet lodge
#

Speak for yourself

#
Stardew Valley Wiki

JojaMart is a store owned by "Joja Corporation," the player's previous employer. It is managed by Morris, who also handles customer service. The store is the main competitor of Pierre's General Store and sells a similar variety of seeds and other items, with JojaMart's key advantages being open longer (until 11pm) and on Wednesdays, however with...

#

It's open on Wednesdays

#

What more do you need?

glad sandal
#

CAP

#

@torn grove

#

big

#

cap

torn grove
#

kappa

rugged root
#

@kindred canyon I love your avatar

kindred canyon
#

Thank you

fair imp
#

@rugged root can you check dm please? sorry for pinging

kindred canyon
#

On their ipads

rugged root
#

One sec

#

So the problem is that you haven't met the message requirements. The gate requires at least 50 messages over three 10 minute blocks (so at least a half hour conversation or multiple small conversations over time)

fair imp
#

the thing is, i will never meet them because i cant start a conversation

rugged root
#

Also note that spamming leads to having to wait even longer, as we typically tack on an additional 2 week wait

fair imp
#

no one responds to my help channels

#

(i havent spammed)

rugged root
#

No I know you haven't

#

Just force of habit to mention it

fair imp
#

could you perhaps help me with my problem?

#

its in candy

rugged root
#

So with regards to conversations, you're more than able to chime in on the conversation in voice chat by typing in the paired text channel. If we're in that VC, we'll typically be watching the text channel as well so nobody gets left out. I'll take a look at the help channel here in just a sec

fair imp
#

thank you

cyan stirrup
rugged root
#

Did you leave the server at some point?

#

Double checking

#

You're verified

#

Not sure what you mean

haughty pier
clear gyro
#

!voiceverify

#

bruh

#

#bot-commands

fresh tartan
#

Hey Voice 0, I had a super quick flask API question if anyone could help. is there any chance I could get unmuted?

whole bear
#

Would anyone be willing to help with a discord bot I'm trying to finish? I'm in voice chat 0 if anyone wants to help

robust surge
#

cap🧢

wise cargoBOT
#

Voice verification

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

azure root
#

well this sucks i cant talk lmfao

woeful salmon
#

👀 you can still talk to ppl in this text channel till you get verified

pallid hazel
#

gezz.. my code now requires a new phase, and have to update all of it now.. what a pain.. ran into an issue where a new variable is introduced, so now need to write in flags for everything to be able to put everything on hold, process the new variable through the existing code.. and then see if thats going to produce yet another then another.. kind of like a round robin effect.. potentially getting out of hand.. :sigh:

somber heath
#

!voice

wise cargoBOT
#

Voice verification

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

vale drift
#

Ok, understood

whole bear
#

Supp guys

woeful salmon
#

i got pink role xD

whole bear
#

How are u guys doing

whole bear
whole bear
woeful salmon
#

gaming got it before me

#

gaming buddhist

#

xD

whole bear
#

Ooo

#

I didn't paid attention to that

#

Anyway 😉 looks 😎

#

Ooooo ha are playing gta 5 @woeful salmon

woeful salmon
#

ye xD just trying out how it looks on my new pc 🙂

#

i have only ever played it on a crappy pc on 30 fps

#

before this

whole bear
#

Haha good time comes 🤠

woeful salmon
#

ye 🙂

whole bear
#

😂😂😂 lol

woeful salmon
#

it will at some point man

verbal ibex
#

I used to think I'd never have an opportunity to play games like GTA V, Rainbow Six Siege, Kingdom Come Deliverance, etc. until I assembled my PC

#

Astonishingly enough, when I gained that opportunity I ended up playing any comp. games

#

Cuz it's too time-consuming

#

And I use my PC for more relevant, IMO, activities now

pallid hazel
#

im venting again.. as im looking at new tables and file structures to handle the anomolies... seems like so much work, maybe i should of finished and then started this as an upgrade.. grr..

verbal ibex
#

Hi @woeful salmon

woeful salmon
#

!code

wise cargoBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

gentle flint
cyan stirrup
#
Twitch

Content Marketing because as Bill Gates Said: "Content is King". Photo - Video - Web - DesignBusiness, Entrepreneur, Advertising, Photography, Videography, Web Development, Graphic Art, Motion Graphics, Adobe, After Effects, Premiere, Illustrator, Photoshop, Animate, Lightroom, Audacity, Spark.

▶ Play video
pallid hazel
#

trying to decide wether or not to attempt to interlace my current script with flags, or just copy and paste into new mod and change file structure, sql tables..
by trying to decide I mean, i'm interlacing now.. but dunno if it's going to work when I'm done.. heh

cosmic lark
#
with zipfile.ZipFile("file.mbn", "r") as z:
     z.printdir()
wise cargoBOT
#

Hey @cosmic lark!

It looks like you tried to attach file type(s) that we do not allow (.mbn). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a, .csv, .json.

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

flat sentinel
violet flume
#

@flat sentinel sort of like an HTML version of Bootstrap css/js?

flat sentinel
#

no

#

like a lazy template

#

for html and css

violet flume
#

ohhhh

gentle flint
#

look, a sata power circle

cosmic lark
#

any of u guys know how to do the linux "strings" equivalent in python?

flat sentinel
#

this looks not real

scenic wind
flat sentinel
#

math antics

scenic wind
gloomy vigil
scenic wind
#

yes

flat sentinel
#
What does 250g of fruit cost?
a) $9 b) $7
c) $7.50 d) $1.50``` @turbid forge  you cant solve this
pallid hazel
#

e=mc♤

flat sentinel
#
mentally``` @scenic wind sove thi i dare you
#

9. Write down how to calculate 189 – 87 mentally: @gloomy vigil do this

gloomy vigil
#

102

flat sentinel
#

you cheat

pallid hazel
#
  1. press 1.75 ÷ 0.25 on a calculator
gloomy vigil
#

now can you guys do this?

pallid hazel
#

9?? mentally?

#

dont argue

woeful salmon
#

duh

gentle flint
gentle flint
scenic wind
#

1/4*k^2(k+1)^2+(k+1)^3

#

1/4(k+1)^2(k+2)^2

iron yarrow
#

hello

gloomy vigil
scenic wind
#
__=__import__("string");_=__.ascii_lowercase;k=input("Key:");print(''.join(map(lambda char:[char,_[(_.index(char.strip())+int(k))%len(_)]][char.isalpha()],input('Msg:').lower())))
#

!e

__=__import__("string");_=__.ascii_lowercase;k=input("Key:");print(''.join(map(lambda char:[char,_[(_.index(char.strip())+int(k))%len(_)]][char.isalpha()],input('Msg:').lower())))
wise cargoBOT
#

@scenic wind :x: Your eval job has completed with return code 1.

001 | Key:Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | EOFError: EOF when reading a line
woeful salmon
#

!e

from string import ascii_uppercase
letters = "XYZABCDEFGHIJKLMNOPQRSTUVW"
print(str.translate("THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG", str.maketrans(dict(zip(ascii_uppercase, letters)))))
wise cargoBOT
#

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

QEB NRFZH YOLTK CLU GRJMP LSBO QEB IXWV ALD
gloomy vigil
gentle flint
gloomy vigil
gentle flint
gloomy vigil
#

monotonicly

#

6+8 = 2(3+4)

#

a+b = 1*a + b*a/a = a(1+b/a)

#

distributive law/property

trail mural
#

Hi 🙂 Mics not working atm!

outer knoll
#

@clear falcon sup
can't vc, don't have the role yet :/

whole bear
#

hello guys

#

is this emacs?

#

geez

#

my name is redcee

#

and i need voice verification

pallid hazel
#

my etchasketch wont boot, ive tried to power cycle it.. but still nothin.

whole bear
#

u need a magnet

#

and i need some sleep

#

:/

#

🚗 cee

#

🔴 cee

#

🧧 cee

#

🟥 cee

#

u need some milk

grim rover
#

hi

#

nothing just chilling

#

not rn

whole bear
#

ups

#

static

#

sorry

#

@woeful salmon ah, right

woeful salmon
#

ye xD

whole bear
#

I hope the mods won't ban me for that

#

alright guys, brb

woeful salmon
#

cya 👋

whole bear
daring orbit
#

Hello all

whole bear
#

command

#

a=input("write ur name ")

woeful salmon
#
let b1 = std::io::stdin().read_line(&mut line).unwrap();
robust quiver
#

heyo anyone

shy sage
#

can i ask you question bro ?

robust quiver
shy sage
#

why we called sdist a source distribution and wheel binary but both have the same source code in them

#

there is no binary here ...

shy sage
robust quiver
shy sage
#

im curious how you guys are connected?

#

Mehtar and NoodleReaper

#

Mehtar ? Persian ?

frozen jetty
woeful salmon
#

you mean how we know each other?

somber heath
#

@whole bear Down here. 👋

#

!voice

wise cargoBOT
#

Voice verification

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

whole bear
somber heath
pallid hazel
#

i need to create a thread at the start of my script that will change a flag from true or false between the hours of 24:00 and 04:00, while also taking into account a variable for utc condition.. any ideas?

pallid hazel
#

i need to trigger a set of actions to perform only between those hours, and my script will be running 24/7.. as I batch everything to run in groups of 5 assests, Id like to start passing a flag with them that will run certian tasks based on that condition

#

the assests can be in different timezones tho, which I will account for with an additional check thats inplace at the task.

somber heath
#

When you talk about scheduling, I think asyncio.

#

Which I don't do.

#

There's a scheduler in there, though.

#

Also Linux's cron.

pallid hazel
#

lol no.. just trying to create a true false flag between the hours of 24:00 and 04:00

wind raptor
#

does it need to be time zone aware?

pallid hazel
#

timezone aware yes.. so i can compare other time zones..
like it runs on my machine at -7utc.. but an assest maybe in -5utc..

#

ill be broad stroking the utc, as I am giving assest classification of utc

somber heath
#
import threading

class Lock:
    flip = threading.Lock()
class Condition:
    flip = False

def flip_thread_func():
    while True:
        threading.Event().wait(1)
        if ...:
            with Lock.flip:
                Condition.flip = True
        elif ...:
            with Lock.flip:
                Condition.flip = False

flip_thread = threading.Thread(target=flip_thread_func)
flip_thread.start()
with Lock.flip:
    if Condition.flip:
        ...```I haven't written anything threading for a while, so the code is a bit awkward. The locking may not be needed, really. It's a good habit to be in with threading, anyway.
#

@pallid hazel

wind raptor
#

I just wrote this:

import threading
import time


flag = False


class TimeChecker(threading.Thread):
    def __init__(self, name):
        threading.Thread.__init__(self)
        self.name = name

    def run(self):
        global flag
        while True:
            current_time = (time.localtime().tm_hour, time.localtime().tm_min)
            if 4 > current_time[0] >= 0:
                flag = True
                seconds_to_wait = (4 - current_time[0]) * 3600 + (60 - current_time[1]) * 60
            else:
                flag = False
                seconds_to_wait = (24 - current_time[0]) * 3600 + (60 - current_time[1]) * 60

            time.sleep(seconds_to_wait)
pallid hazel
#

it's a place to start, appreciate it... gonna take awhile to digest what's happening there.

trail mural
#

hi!

#

mics not working atm @wind raptor

#

D:

#

what doing?

#

stuck on what >:)

#

not if ur the nsa 🙂

#

o.O

#

I am shooketh

#

sounds like a really cool idea

#

powerful but cool

#

I get the reasoning for it but it would be a good "spying" tool

#

probably have the fbi knock on your door and ask you for a copy!

#

if its live its stored right?

#

I can imagine this already exists but we don't see the bot in the channel 😉 gotta make money somehow!

#

Discord tapping

#

It would 🙂

somber heath
#

Does the existence of compilers imply the existence of solompilers?

trail mural
#

Hi Fury 🙂 @molten pewter

twin sandal
#

whats happening?

sand ermine
#

only listen satisfy my soul

twin sandal
#

bruh so lame

trail mural
#

noodle did you get your new pc?

whole bear
#

hello

trail mural
#

hi

quasi condor
#

@meager cairn

trail mural
#

don't do what I didn't hear you?

meager cairn
#

Hello

thorn oxide
#

can you help me @molten pewter

#

pleas

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @thorn oxide until <t:1641747034:f> (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

molten pewter
#

@thorn oxide I‘m not great with python, have you tried the help channels?

sand ermine
#

no flood .. please.

vivid palm
#

!tvban 752563536693035039 2w as #voice-verification states, do not spam in order to meet requirements. you can try again in 2 weeks

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice ban to @thorn oxide until <t:1642956311:f> (13 days and 23 hours).

vivid palm
#

!unmute 752563536693035039

wise cargoBOT
#

:incoming_envelope: :ok_hand: pardoned infraction mute for @thorn oxide.

thorn oxide
#

thank

sand ermine
#

what do I do to gain voice?

trail mural
#

!voice

wise cargoBOT
#

Voice verification

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

sand ermine
#

i like that rule ducky_dave

sand ermine
trail mural
#

:/

#

what are you trying to do to me

sand ermine
#

i'm curossily too

quasi condor
#

Gattaca is a 1997 American dystopian science fiction film written and directed by Andrew Niccol in his filmmaking debut. It stars Ethan Hawke and Uma Thurman, with Jude Law, Loren Dean, Ernest Borgnine, Gore Vidal, and Alan Arkin appearing in supporting roles. The film presents a biopunk vision of a future society driven by eugenics where potent...

sand ermine
#

Prometheus ( prə-MEE-thee-əs) is a 2012 science fiction horror film directed by Ridley Scott, written by Jon Spaihts and Damon Lindelof and starring Noomi Rapace, Michael Fassbender, Guy Pearce, Idris Elba, Logan Marshall-Green, and Charlize Theron. It is set in the late 21st century and centers on the crew of the spaceship Prometheus as it foll...

woeful salmon
#

i'mma go get back to work now cya all later 👋

sand ermine
#

good by RAP.

#

in your vision. Is needed return to moon ?

#

i prefer books.

molten pewter
sand ermine
#

i'm watching the trailer

#

lmao. hyperlemon

#

I'm gonna put a iron shirt, and chase the devil out of earth
I'm gonna send him outta space, to find another race

stuck furnace
#

Maybe the total opposite would be Jared Leto in House of Gucci.

#

Apparently his performance was so bad and attention seeking that it literally ruins the film.

#

Oh yeah, apparently Gary Oldman had to re-learn his native accent 😄

#

Oh 🤔

#

How long ago was that? 😄

molten pewter
sand ermine
stuck furnace
#

8 is not bad

#

¯_(ツ)_/¯

sand ermine
#

portugues

#

very fluent.. speak more

#

quantos milenios de anos você tem ?

#

Maroloccio.. farinha. lmal. ok_handbutflipped

#

i plabo castellano .. not spanish

#

lacucaracha is ofensive

molten pewter
sand ermine
#

the best suspense is from hitckook.

molten pewter
#

the soundtrack?

stuck furnace
#

Points of View 😄

quasi condor
#

Response

stuck furnace
#

Sorry, doing important mod business 🧐

quasi condor
#

phatic token

sand ermine
pallid hazel
#

@molten pewter is monologue?

sand ermine
#

nice words. keep.....

pallid hazel
#

reading with Furyo.. will this be a thing.. can we make requests?

sand ermine
#

maybe not 😆

pallid hazel
#

so no shakespear.. :(

stuck furnace
#

!vote "read the letter" yes no

wise cargoBOT
#
read the letter

🇦 - yes
🇧 - no

sand ermine
#

we win .. lmao

#

street fight voices .. lmao

pallid hazel
#

is this batman?

sand ermine
#

trailler emotion dice_9

stuck furnace
#

This sounds like the trailer for a 90s movie.

pallid hazel
#

can you do troy mclure?

sand ermine
#

some day i will try read too

stuck furnace
pallid hazel
#

seaguls, the culling.. by stephen furyo king

sand ermine
#

i'm in the cine.

pallid hazel
#

i hope he is method acting

quasi condor
stuck furnace
#

brb

sand ermine
#

@molten pewter ARE you can read in reverse mode

#

🤣

pallid hazel
#

i like word crimes

sand ermine
#

I call fbi to you

pallid hazel
#

i use them worse.. whenever I want to say a foriegn word, I use a really cliche accent

sand ermine
#

like me 🥲

stuck furnace
#

gtg 👋

pallid hazel
#

yes

sand ermine
#

yes too

whole bear
#

It's quite common in taekwondo

#

Every possible chance to get shaken up

#

what is up guys?

molten pewter
#

what up?

whole bear
#

what are you talking about?

#

Yes

#

I got many times

#

And it hurts in front of people got to holld ur nerves

#

Tight

sand ermine
#

come to me now.

whole bear
#

Why 😂

sand ermine
#

i have take you

#

🤣

whole bear
#

Where

molten pewter
#

@cosmic niche u still there bud?

cosmic niche
#

@molten pewter Sorry my parents called me, you know, indian parents, they call, you have to go ahahah

quasi condor
sand ermine
#

get more coffe brainmon

#

@molten pewter drink watter

#

all rigth

#

i have to go... by

gentle flint
#

it's the same here

cosmic niche
#

Hahahah

quasi condor
#

back in 2m

zenith radish
#

Hello

#

Holy shit

#

Is that

#

Charlie???

#

WELCOME BACK

#

I MISSED YOUR SASSY SELF

#

Gonna hop on some day soon

molten pewter
#

I miss u....

whole bear
#

hello guys

#

what are you talking about?

molten pewter
#

money, governments...

patent gyro
whole bear
#

alright

patent gyro
#

well idk anymore

#

i think nfts are dum

pallid hazel
#

im just avoiding working on a part of code..

whole bear
#

i don’t know who thinks they aren’t dumb @patent gyro

patent gyro
#

i mean i hate nfts from an environmental standpoint, ethereum mining produces shitloads of C02

#

yes, luci

whole bear
#

@molten pewter are you a fan of NFTs?

pallid hazel
#

there are countries less regulated for co2 and other air pollutions that make a compairison against mining coins ridiculous

patent gyro
#

also personally i just dont see a lot of them as art, i prefer buying commissions for art or supporting actual artists rather than just part-taking in the reselling

#

wth, police dont care if someone pirates an image of a monkey

#

like genuinely to prove a point i want to create an online dnd campaign all with stolen nfts as character/monster profiles and then sell it for cheap

#

stealing nfts aren't rlly worth much unless if you are a reseller

#

see this is an nft i found on openseas for pretty cheap, who's gonna stop me from selling this bear on a t-shirt

whole bear
#

@patent gyro as of now, i think no one

patent gyro
#

at some point the nft is just gonna sit in someone's collection and hold no value

whole bear
#

do you think that over time the value is going to go down?

patent gyro
whole bear
#

maybe, I don’t really know

patent gyro
#

but like think, if it just keeps getting resold and resold at some point nobody will see value in it because the price tag would be so large

#

like it's an image of a monke

whole bear
#

i guess makes sense

patent gyro
#

it's never gonna get sold for millions unless if sold to people who already have millions

#

and who are they gonna sell it to?

whole bear
#

well, if it’s someone famous, probably to some rich fans

patent gyro
#

ok then let's say the rich fan buys it, and it gets doubled to two million and so on and so forth

#

when would it stop and just sit in someone's collection?

whole bear
#

well, now we’re just predicting what will happen

patent gyro
#

think of it like the housing market, the thing will hit a point when it's too expensive

whole bear
#

though we don’t really know for sure

patent gyro
#

but unlike a house or physical asset, you can't do much with an image

whole bear
#

yeah, right

patent gyro
#

@molten pewter read up lol

#

oh ok, go pick her up

#

i'll stay

#

i'm just not voice verified

#

i haven't sent enough

#

many

#

like months

#

how do i apply?

#

say what?

molten pewter
#

!voice-verrify

patent gyro
#

!voice-verify

#

ohhhhhh

whole bear
#

voiceverify without the dash

patent gyro
#

brb

pallid hazel
#

sure, it wasnt weird before

gentle flint
#

it?

whole bear
#

@patent gyro is nft’s the only thing you can buy using eth coins?

wise cargoBOT
#

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

cosmic niche
#

import banking_system as b

if name == "main":
b.BankingSystem().run_app()

zinc magnet
#
import banking_system as b

if name == "main":
    b.BankingSystem().run_app()
cosmic niche
#

if __name__ == "__main__":
    b.BankingSystem().run_app()```
patent gyro
#
import ur_mom
zinc magnet
#
from ass import ass as ass
gentle flint
#
from you.home import mom
zinc magnet
#

!pypi ass

wise cargoBOT
#

A library for parsing and manipulating Advanced SubStation Alpha subtitle files.

gentle flint
#

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

sand ermine
#

back in black

cosmic niche
#

if __name__ == "__main__":
    b.BankingSystem().run_app()```
sand ermine
#

!pypi pyscaffold

wise cargoBOT
zinc magnet
#
from ass import ass as ass
#

!pypi ass

wise cargoBOT
#
Missing required argument

package

whole bear
#

@gentle flint what's your opinion on windows 11

#

ye

quasi condor
#

hello

#

no mic atm

whole bear
#

did you go anywhere for holiday

gentle flint
#

went to Texel for a few days

#

for the rest I stayed home building a pc

whole bear
#

your first pc? from your experience in ssds i guess not

gentle flint
#

the first one I built from scratch

#

but I've been tinkering with pcs for more than two years

#

it's interesting

#

but very frustrating when you've been working for three hours and your system won't boot

#

or you have put everything back together and you have one screw extra which apparently didn't go where it was supposed to

whole bear
#

@zinc magnet u don't like windows? :(

whole bear
#

Also @zinc magnet idk i just say 'remind me in 3 days' then it doesnt download that

#

I mean I have just grown up with windows so it just gotten my standard. i also get crashes but probably bc bit flipping from cosmic rays. Also on my laptop i was furious bc the built in antivirus was eating my resources and it was slow

#

not really any problems with it it's just if you don't have a good pc it's probably slower than linux idk

#

oh bc it says 'driver not equal to 0 or something' idk

#

Yeah i really struggled with speed, but back then I didn't know that you could make it faster with an ssd for os or more ram etc

#

ok let's flip the question: what makes linux better than windows apart from the fact that windows is just buggy and unpredictable

gentle flint
#

easier to install programming tools

#

ever tried setting up gcc or g++ on windows?

whole bear
#

also a concern I have is whether all the tools I use now or will use in the future will be available on linux

whole bear
#

some random yt tutorial

zinc magnet
whole bear
#

yes

#

weird looking cpp ide

#

also can't find darkmode on it

#

It does normally i think

#

Your accents are very nice

#

@gentle flint je bent grappig

#

ok wel as jy hierdie kan verstaan dan weet jy ek gebruik nie GOogle translate nie

#

bruh

#

I can understand dutch but not speak

zinc magnet
#

where u from

whole bear
#

I get 100% on duo lingo

#

south africa

#

dis hoekom ik kan hom so gouwd verstaan

#

@gentle flint and you use j instead of y

#

je instead of jy

gentle flint
#

we have both je and jij

whole bear
#

I have been to the netherlands before and it's very nice there- it feels weird understanding everything but not having it being familiar

#

ja i meant ij instead of y

#

no hate on python but apart from being easy to learn, what made yall decide to have extensive knowledge in python

#

verboof what is your about me

gentle flint
whole bear
#

@zinc magnet you need an ASIC if you want to seriously get into it

zinc magnet
#

what do you mean

#

running shoes?

whole bear
#

idk what running shoes are

zinc magnet
#

its about drive its about power

whole bear
#

haha

zinc magnet
whole bear
#

ASIC = god at btc mining

#

oh

#

no non no

zinc magnet
#

i dont wanna mine

whole bear
#

mining is very impractical as an individual

zinc magnet
#

i wanna make a blockchain similar

whole bear
#

Make? i don't know much about cryptography but i don't know how you make a blockchain

zinc magnet
#

so you dont know?

#

xd

whole bear
#

lol

#

I wish I had a quantum computer so I can reverse sha256 but that is as improbable as dreaming about going out of this galaxy

#

Well that and I need to know what code to run to get it working

#

That makes me think that many private individuals have access to reverse sha256 methods

zinc magnet
#

dud people with money can do all typa shit

#

u can pay the israelis rn to hack into any phone on this world with a sms

whole bear
#

I can't stop thinking about the fact that anyone with millions can make more millions with ease- gambling etc

zinc magnet
#

yes

whole bear
#

It feels frustrating

zinc magnet
#

yes

#

xd

whole bear
#

almost like a pyramid scheme

#

the rich become richer lol

zinc magnet
#

money makes money

gentle flint
zinc magnet
whole bear
#

why am i still on this planet

zinc magnet
#

its like a game

#

try to reach a good highscore

whole bear
#

also like with this social credit score thing it's becoming more of a simulation than you could ever think of

zinc magnet
#

money is the score for the greatness of ur decisions

whole bear
#

if only banks would allow me to make a huge loan...

zinc magnet
#

allow?

#

u mean like credit?

whole bear
#

Don't banks stop you from making huge loans

#

Idk i literally know nothing about Economics and Rekeningkunde

zinc magnet
#

u need to make something u proud of

whole bear
#

Also ever since I joined dev servers I started feeling impostor syndrome (feeling ur not good enough)

zinc magnet
#

dudes had more time

#

thats it

whole bear
#

Now i have to point out that I am the highest-achieving in our IT subject but that means little bc a) im in south africa b) no one cares about CAPS

zinc magnet
#

caps?

whole bear
#

It's basically a very bad curriculum

zinc magnet
#

there is some good it duds in south africa

#

i have a few friends from there

whole bear
#

I definitely think there are some good it companies and guys here, but i want to pursue more of a programming background

#

Greek people are cool because they always remember all the symbols lol

flat sentinel
whole bear
#

my geography is YES european is a country right?

gentle flint
#

The Accursed Mountains (Albanian: Bjeshkët e Nemuna; Serbo-Croatian: Prokletije, Cyrillic: Проклетије, pronounced [prɔklɛ̌tijɛ]; both translated as "Cursed Mountains") also known as the Albanian Alps (Albanian: Alpet Shqiptare; Serbo-Croatian: Albanski Alpi) are a mountain group in the western part of the Balkans. It is the southernmost subrang...

whole bear
#

when does this damn thing disappear

#

oh i haven't requested yet

flat sentinel
#

Shebenik-Jabllanicë National Park Rrajcë

gentle flint
whole bear
#

i have logitech g502 hero it's pretty good quite heavy wouldn't recommend for gaming

#

lot's of buttons

zinc magnet
gentle flint
flat sentinel
whole bear
#

@zinc magnet do you sometimes mess up eg. 'y's in english and pronounce them like a 'u' bc of ur russian ?

flat sentinel
#
huts and minor roads mapped

Closed about 6 hours ago by IqraAlam

Tags
changesets_count    10
created_by    iD 2.20.2
host    https://www.openstreetmap.org/edit
imagery_used    Bing aerial imagery
locale    en-GB
warnings:crossing_ways:highway-highway    2
Discussion
Comment from legofahrrad about 6 hours ago
Hi!
Please consider to save your edits more often to let you changesets be more local. This is helpful for other mappers to follow your changes.
See also https://wiki.openstreetmap.org/wiki/Changeset#Geographical_size_of_changesets

zinc magnet
whole bear
#

nonono i just happen to know of a word (cyka) (sorry) that is pronounced like 'u'

zinc magnet
#

oh yes y <- is a u in russian

#

H <- is an N in russian

#

X <- is an H

flat sentinel
whole bear
#

And you managed not to get confused?

zinc magnet
#

but i dont confuse them

#

ye

gentle flint
whole bear
#

where this?

gentle flint
#

Sighişoara

zinc magnet
#

@whole bear u dont hav a mic?

whole bear
#

Well yes but it's 1 am

gentle flint
zinc magnet
#

how to make a screenshot?

flat sentinel
#

you get good

zinc magnet
#

you doog teg

#

did u shit today?

flat sentinel
#

no

zinc magnet
#

:(

flat sentinel
#

when pepole get real in the chat

zinc magnet
#

like real in there

flat sentinel
#

yea

zinc magnet
#

like reaall in theree

flat sentinel
#

they are talking smart

#

that is not fun

zinc magnet
#

yes

#

fuck smart ppl

#

lets be dumb

gentle flint
#

dw

flat sentinel
zinc magnet
#

hah

gentle flint
#

you already are dumb, no need to start being it

zinc magnet
#

are u sure?

gentle flint
#

yes

zinc magnet
#

im as smart as a mercedes can be

flat sentinel
#

very smart Mercedes

#

move

zinc magnet
#

boom

flat sentinel
#

yes

zinc magnet
#

i smoke camels

flat sentinel
#

"camels" yes

zinc magnet
#

with kemal

vivid palm
#

kemal chill with the gifs

zinc magnet
#

in kosovo

vivid palm
#

that flashing bright colored one i deleted. was too much

zinc magnet
#

wow

#

a woman

#

jk

whole bear
#

i actually saw a camal in real life this holiday in south africa.

vivid palm
#

yeah try testing that again

whole bear
#

like am i going crazy or are they only found in sahara

flat sentinel
whole bear
#

I know

zinc magnet
#

!pypi ass

wise cargoBOT
#

A library for parsing and manipulating Advanced SubStation Alpha subtitle files.

zinc magnet
#

🤔

flat sentinel
#

that is good to know

whole bear
#

!pypi booty

wise cargoBOT
flat sentinel
#

!pypi sus

wise cargoBOT
whole bear
#

!pypi amogus

wise cargoBOT
zinc magnet
#

!pypi ass

wise cargoBOT
#

A library for parsing and manipulating Advanced SubStation Alpha subtitle files.

zinc magnet
#

:(

flat sentinel
#
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣤⣤⣤⣀⣀⣀⣀⡀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⠟⠉⠉⠉⠉⠉⠉⠉⠙⠻⢶⣄⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣷⡀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⡟⠀⣠⣶⠛⠛⠛⠛⠛⠛⠳⣦⡀⠀⠘⣿⡄⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⠁⠀⢹⣿⣦⣀⣀⣀⣀⣀⣠⣼⡇⠀⠀⠸⣷⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⡏⠀⠀⠀⠉⠛⠿⠿⠿⠿⠛⠋⠁⠀⠀⠀⠀⣿⡄⣠ ⠀⠀⢀⣀⣀⣀⠀⠀⢠⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⡇⠀ ⠿⠿⠟⠛⠛⠉⠀⠀⣸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡇⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣧⠀ ⠀⠀⠀⠀⠀⠀⠀⢸⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⠀ ⠀⠀⠀⠀⠀⠀⠀⣾⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀ ⠀⠀⠀⠀⠀⠀⠀⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀ ⠀⠀⠀⠀⠀⠀⢰⣿⠀⠀⠀⠀⣠⡶⠶⠿⠿⠿⠿⢷⣦⠀⠀⠀⠀⠀⠀⠀⣿⠀ ⠀⠀⣀⣀⣀⠀⣸⡇⠀⠀⠀⠀⣿⡀⠀⠀⠀⠀⠀⠀⣿⡇⠀⠀⠀⠀⠀⠀⣿⠀ ⣠⡿⠛⠛⠛⠛⠻⠀⠀⠀⠀⠀⢸⣇⠀⠀⠀⠀⠀⠀⣿⠇⠀⠀⠀⠀⠀⠀⣿⠀ ⢻⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⡟⠀⠀⢀⣤⣤⣴⣿⠀⠀⠀⠀⠀⠀⠀⣿⠀ ⠈⠙⢷⣶⣦⣤⣤⣤⣴⣶⣾⠿⠛⠁⢀⣶⡟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡟⠀ ⢷⣶⣤⣀⠉⠉⠉⠉⠉⠄⠀⠀⠀⠀⠈⣿⣆⡀⠀⠀⠀⠀⠀⠀⢀⣠⣴⡾⠃⠀ ⠀⠈⠉⠛⠿⣶⣦⣄⣀⠀⠀⠀⠀⠀⠀⠈⠛⠻⢿⣿⣾⣿⡿⠿⠟⠋⠁⠀⠀⠀``
#

!pypi old

wise cargoBOT
zinc magnet
#

!pypi cock

wise cargoBOT
vivid palm
#

@zinc magnetkeep it appropriate

zinc magnet
wise cargoBOT
zinc magnet
#

<3 no more

whole bear
#

Lol

#

Pypi!love

#

Pypi! Love

zinc magnet
#

the ! before anything

flat sentinel
#
Balls
Balls
Balls
Balls
BALLS
Balls
BALLS

BALLS

BALLS

BALLS

BALLS

documentation at: https://github.com/ch1ck3n-byte/balls-docs/blob/main/README.md```
whole bear
#

Im on phone now i got caught being online 1am lol

flat sentinel
#

https://github.com/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa4/balls-docs/blob/main/README.md

zinc magnet
zinc magnet
vivid palm
#

the what spam?

#

no i was here before that

#

hi

#

long time no see

#

lol

honest pier
gentle flint
vivid palm
#

@whole beardon't dump random pics. you're not in vc are you?

zinc magnet
#

strenger finger

whole bear
#

Sorry. Well i was

vivid palm
#

unless my client is bugging

#

same rules apply here as in the rest of the server

whole bear
#

I didnt know u were mod soz

vivid palm
#

well, even if a mod isn't here you have to follow the rules lol. in case you were not aware

flat sentinel
vivid palm
#

some people eat brick

#

pica or something

zinc magnet
#

@vivid palm do you like strawberrys?

vivid palm
#

i do

zinc magnet
#

me too

whole bear
#

Me too

whole bear
vivid palm
#

what?

whole bear
#

Nvm

vivid palm
#

oh

flat sentinel
#

@zinc magnet do you like cats

zinc magnet
#

i do

flat sentinel
#

good

zinc magnet
#

but i dont have one

flat sentinel
#

dose any one like cement

whole bear
#

Yum

flat sentinel
#

not like that

#

on a bed

whole bear
#

What

zinc magnet
#

dose

#

xD

zinc magnet
whole bear
#

??

flat sentinel
#

i love cement on my bed

whole bear
#

Am dum

zinc magnet
#

dose any one xD

#

cemal bester mann

flat sentinel
#

@zinc magnet do you like discord

zinc magnet
#

yes

#

i do

flat sentinel
#

oh no

zinc magnet
#

!pypi sus

wise cargoBOT
sand ermine
#

cute

zinc magnet
#

im like steve but i like 5inches bigger

#

half life 3 will come

flat sentinel
#

good question

#

send a

zinc magnet
#

send

flat sentinel
#

nice flowers

zinc magnet
#

u

#

d

#

e

vivid palm
#

!mute 803458358907895809 take a break

wise cargoBOT
#

failmail :ok_hand: applied mute to @zinc magnet until <t:1641774076:f> (59 minutes and 59 seconds).

quasi condor
#

https://snyk.io/blog/open-source-maintainer-pulls-the-plug-on-npm-packages-colors-and-faker-now-what/

  • Open Source maintainer pushed a commit that starts an infinite loop as soon as his package is imported
  • The guy who did this has 2 big projects: Faker.js, for generating fake test data (~2m monthly downloads) and this one, which is for colouring terminal output (20m monthly downloads)
  • He took Faker offline a few days ago, adding a readme saying he wasn't going to support fortune 500s any more, and people either had to fork Faker or pay him
  • The maintainer also talks about Aaron Schwartz on his Twitter and in the readme for Faker
  • This guy has talked about failing to make money off of his projects for quite a while - I remember reading about Faker Cloud a few months+ ago
gentle flint
#

it's so stupid

sand ermine
#

vary bad

#

*very

gentle flint
#

what does he hope to accomplish with such a senseless action

sand ermine
#

how many dependents ?

#

proposital ?

#

DEPENDENTS
24.01K brainmon

#

Dependecy terrorism

#

he need a girlfriend

gentle flint
#

the boxes accumulate

sand ermine
#

980gb ?

gentle flint
#

the 870 evo is 250GB

#

the other two are 1TB

sand ermine
#

mindblowin

vivid palm
#

@ivory shuttle please don't join and just interrupt like that next time

ivory shuttle
#

sorry my bad

vivid palm
#

np

#

you could stick around lol

ivory shuttle
#

gotta switch to a better mic brb

vivid palm
#

what're you working on?

ivory shuttle
#

learning machine learning

vivid palm
#

having lots of storage is so nice

sand ermine
#

statistics ... dice_9

#

using pandas ?

gentle flint
vivid palm
#

no pretty sure you're the same age

honest pier
#

oh right, he was talking about college apps

quasi condor
vivid palm
#

this looks like a career shift

#

oh

sand ermine
#

nice work.. great

vivid palm
#

i hope they're compensating you for it?

#

exam fees? study time?

quasi condor
#

I technically get like 5 study days for it, but the recommended studying is in the hundreds of hours. They pay for the first attempt, but it costs like 1000usd

vivid palm
#

that's it?? 5 days?

#

that's pretty shit lol

#

did they pay for the study materials

quasi condor
#

yeah, they pay for pretty good study materials and a course for it

haughty pier
#

Theoretically you should have been studying for months in advance.

vivid palm
#

but i imagine the coursework takes way longer than 5 days lol

quasi condor
#

yeah, almost certainly. Speaking to people who have already done it here, I should have probably started a couple of weeks ago.

vivid palm
#

unless those books are very thin. but they don't look it

haughty pier
#

by five days - you probably mean they gave you five days off to study?

honest pier
#

those are at least 150 pages each

haughty pier
#

Yeah that's because if your mind is in the game you would have been worthless at work.

#

when is your exam date?

quasi condor
#

late May

haughty pier
#

ok, so start now, a few hours a day.

#

easy if you start now.

honest pier
#

few hours a day 🥴

haughty pier
#

it's a major achievement if you can do level 1 2 and 3 - big money jobs too.

#

It's hard to winnow out the losers like me.

#

😉

quasi condor
#

My original plan was to go into the office every day and study for a 90m before starting actual work, but Covid nixed that idea. I'll just force myself to study in the evenings

haughty pier
#

I found level 1 easy (because I already had a finance, economics, and statistics background) so I under-prepared for level 2.

#

still haven't passed it

#

So start studying now, then you're just taking a practice test each day the five days you have off, and reviewing the material you didn't grock according to the tests.

vivid palm
#

is this exam the same in the US as it is in the UK?

whole bear
#

Ok imma take this name

vivid palm
#

use #bot-commands

whole bear
#

Soz

vivid palm
#

interesting

#

jinx

haughty pier
sweet lodge
#

So you just build your config in /mnt/etc/nixos/configuration.nix, and nixos-install installs that config?

#

That's neat

#

Coming from Arch that sounds much easier

vivid palm
#

it's tommy shelby!

#

big fan

#

||shouldn't have given grace that sapphire tho||

sweet lodge
#

Give it a try

sand ermine
#

good

sweet lodge
sand ermine
#

whats the next ?

whole bear
#

i dunno

sand ermine
whole bear
#

?

sand ermine
#

dark side

pallid hazel
#

binary gates.. is that what you mean?

#

on/off 1 0 .. logic cuicut, fundemental

sand ermine
#

shared cpu ?

amber raptor
#

Why are you letting guest users on the system at all?

sand ermine
#

bie guys...

broken kraken
#

wow

whole bear
#

ey yo wassap

#

i am a coding in html i know cringe but ow well

sand ermine
#

html is not a lang programing .. lmao

cosmic niche
#

does anyone know how to create a login system on python with pre-set data?

pallid hazel