#voice-chat-text-0
1 messages · Page 953 of 1
Oh no, I'm so upset at this comment. Whatever will I do
Wait, no
The other one
Indifferent
What's your question? We can start from there
!e
a, b = a[:] = [[]], []
print(a, b)
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
[[...], []] []
@mint prawn Go to #voice-verification and do !voiceverify
There are a lot of opinions on how to hire coders, and most of them are terrible. The opinions, that is, not the coders. But a basic filter test to make sure someone can do what they say they can: that seems reasonable, and FizzBuzz is one of the more common tests. Even now, interviewers use it. Let's talk about why it's tricky, and how to solve...
thanks
>>> 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
this ^
Python allows multiple assignments, or chained assignments, to assign multiple variables or expressions at once. This can be a useful tool but it is also a source of confusion when the multiple assignments involve the same name multiple times or when the assignment target is mutable. The assignments are evaluated right hand side first, then left...
>>> a[:] = [[]], []
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'a' is not defined
>>> a, b = a[:] = [[]], []
>>> b
[]
>>> a
[[...], []]
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)
>>> 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
!code
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
>>> sys.getrefcount(False)
165
>>> sys.getrefcount(True)
148
>>> sys.getrefcount(None)
4376
!e
import gc
import sys
foo = "hello world"
print(sys.getrefcount(foo))
print(len(gc.get_referrers(foo)))
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
001 | 4
002 | 3

@midnight agate :white_check_mark: Your eval job has completed with return code 0.
2
(s, s)[0]
s
!e
print(id(float(2)) == id(float(1)))
@midnight agate
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
True
Forgot we changed the name
>>> id(1)
139834787182528
>>> id(True)
139834787062592
>>> id(None)
139834787031568
>>> id([])
139834552237888
>>> id([])
139834552237888
!e assert float(2) is float(1)
@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
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.)
!docs 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]
>>> id(['something'])
139834549310528
>>> id(['something else'])
139834549310528
@midnight agate :white_check_mark: Your eval job has completed with return code 0.
140217607589584 140217607589584
!e
_ = float(2)
x = id(_)
del _
y = id(float(1))
assert x == y
@terse needle :warning: Your eval job has completed with return code 0.
[No output]
!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")))
@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
>>> 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
!e
def foo():
bar = 20 / 2
baz = 2 + 2
import dis
print(dis.dis(foo))
more internals to throw out while at it
@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
o- o literal expressions are evaluated at compile time
is dis a built in? or just something snekbox has pre-installed
yes its in standard lib
pog
i can't type 😦 new keyboard with weird layout
this
lol
Which new keyboard?
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
#❓|how-to-get-help @mystic lily
df.set_index('name ', inplace=True)
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)
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?
!e
print(True, True == (True, True, True))
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
True False
Ooh, I’ve never seen that edge case before. Almost seems like a bug.
@stuck furnace I can't see any reasonable way that makes sense. Definitely seems like a bug, presumably it's allowed/fine though
@rugged root maybe can i have unmute
after the whole time
would like to interract with me
people
Send the request to @rapid crown. I don't discuss appeals in public
in a nice respectful way
i sent it
i wanna make a bot with python web bot anyone has a tutorial of an ideal
The page focuses on how RAW drive comes and how to use Diskpart to fix RAW partition. To fix RAW partition without formatting, try AOMEI Partition Assistant.
Accidentally deleted boot partition in Windows 10 – how to recover? You can refer to this article and learn to recover deleted partition in Windows 10 for free.
O-|
ʔʊjˈʁʊː
[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
⍨
Back later
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.
A fan shared this video with Uncle Roger and Uncle Roger had to comment on this madness...
💰 Support me so I can keep making weejios for you!
Merch: https://teespring.com/stores/uncle-roger
Channel membership: https://www.youtube.com/channel/UCVjlpEjEY9GpksqbEesJnNA/join
Shoutouts: https://www.cameo.com/mrnigelng
🎙 And check out the podcast:
h...
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
@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
shut
Uhm?
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)
@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
!e py for i in range(1, 11): print("1" * i)🧠
@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
!e
a = 3+6/2
print(a)
@pallid hazel :white_check_mark: Your eval job has completed with return code 0.
6.0
!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)
@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
when calculators are dumb, or is user input incorrect.. you decide.
Some calculators are.
BODMAS :- Brackets > Orders > Division > Multiplication > Addition> Subtraction
that's 3 + (6/2) = 3 + 3.0 = 6.0
i know what it is, had just saw a meme about it and thought it was funny.
!e
a =( 3+6)/2
print(a)
@pallid hazel :white_check_mark: Your eval job has completed with return code 0.
4.5
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
be back in a few mins xD need to go buy something real quick
What you do is insinuate the practice into an existing tradition. Guy Fawkes night. BBQ chops on a grill over the charcoal.
@sweet lodge
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
Ask ModMail when you're ready to start streaming
cc @rugged root
Please don't message modmail for that
yeah i guessed
Oh - Nevermind
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
well i mainly just didn't wanna bother you with it on a weekend xD
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
🐸 oh wait so is it not weekend for you yet?
oh for me its friday night
i didn't know it being morning or evening mattered
lol
Fair enough
whoops xD i was 1 day off then
verboof agreed with me when i said weekend so i thought it is
Most people consider the weekend starting when they get home from work on Friday night
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
Speak for yourself
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?
kappa
@kindred canyon I love your avatar
Thank you
@rugged root can you check dm please? sorry for pinging
On their ipads
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)
the thing is, i will never meet them because i cant start a conversation
Also note that spamming leads to having to wait even longer, as we typically tack on an additional 2 week wait
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
thank you
I've met this requirement before but now I'm having to do it again? Crazy.
Did you leave the server at some point?
Double checking
You're verified
Not sure what you mean
Hey Voice 0, I had a super quick flask API question if anyone could help. is there any chance I could get unmuted?
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
cap🧢
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
well this sucks i cant talk lmfao
👀 you can still talk to ppl in this text channel till you get verified
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:
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Ok, understood
Supp guys
i got pink role xD
How are u guys doing
Impressive
U are the first one I have seen with pink role here
Ooo
I didn't paid attention to that
Anyway 😉 looks 😎
Ooooo ha are playing gta 5 @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
Haha good time comes 🤠
ye 🙂
it will at some point man
fact
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
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..
Hi @woeful salmon
!code
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.
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.
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
with zipfile.ZipFile("file.mbn", "r") as z:
z.printdir()
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 sort of like an HTML version of Bootstrap css/js?
ohhhh
look, a sata power circle
any of u guys know how to do the linux "strings" equivalent in python?
math antics
it is mathematical induction
yes
What does 250g of fruit cost?
a) $9 b) $7
c) $7.50 d) $1.50``` @turbid forge you cant solve this
e=mc♤
mentally``` @scenic wind sove thi i dare you
9. Write down how to calculate 189 – 87 mentally: @gloomy vigil do this
102
you cheat
- press 1.75 ÷ 0.25 on a calculator
now can you guys do this?
buy the headset that reads your brainwaves and just do it
duh
__=__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())))
@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
!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)))))
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
QEB NRFZH YOLTK CLU GRJMP LSBO QEB IXWV ALD
now can you guys do this
monotonicly
6+8 = 2(3+4)
a+b = 1*a + b*a/a = a(1+b/a)
distributive law/property
Hi 🙂 Mics not working atm!
@clear falcon sup
can't vc, don't have the role yet :/
my etchasketch wont boot, ive tried to power cycle it.. but still nothin.
u need a magnet
and i need some sleep
:/
🚗 cee
🔴 cee
🧧 cee
🟥 cee
u need some milk
ye xD
cya 👋
bbbyyyyee
Hello all
let b1 = std::io::stdin().read_line(&mut line).unwrap();
heyo anyone
can i ask you question bro ?
im a beginner 😦
why we called sdist a source distribution and wheel binary but both have the same source code in them
there is no binary here ...
no i mean from voice people 🙂
ok
yes
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
oh thanks buddy
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?
Along the lines of...?
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.
When you talk about scheduling, I think asyncio.
Which I don't do.
There's a scheduler in there, though.
Also Linux's cron.
lol no.. just trying to create a true false flag between the hours of 24:00 and 04:00
does it need to be time zone aware?
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
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
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)
it's a place to start, appreciate it... gonna take awhile to digest what's happening there.
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 🙂
Does the existence of compilers imply the existence of solompilers?
Hi Fury 🙂 @molten pewter
whats happening?
only listen satisfy my soul
bruh so lame
noodle did you get your new pc?
hello
hi
@meager cairn
don't do what I didn't hear you?
Hello
: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).
@thorn oxide I‘m not great with python, have you tried the help channels?
no flood .. please.
!tvban 752563536693035039 2w as #voice-verification states, do not spam in order to meet requirements. you can try again in 2 weeks
:incoming_envelope: :ok_hand: applied voice ban to @thorn oxide until <t:1642956311:f> (13 days and 23 hours).
!unmute 752563536693035039
:incoming_envelope: :ok_hand: pardoned infraction mute for @thorn oxide.
thank
what do I do to gain voice?
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
i like that rule 
@meager cairn Read it
i'm curossily too
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...
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...
i'mma go get back to work now cya all later 👋
i'm watching the trailer
lmao. 
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
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? 😄
in brazil we have mutants series like that .. lmao : youtube.com/watch?v=ziGivQnC-Co
portugues

very fluent.. speak more
quantos milenios de anos você tem ?
Maroloccio.. farinha. lmal. 
i plabo castellano .. not spanish
lacucaracha is ofensive
Dune World: Directed by Mark Polonia. With Samantha Coolidge, Ryan Dalton, Drew Patrick, Houston Baker. A deep space crew takes a job on a mysterious remote planet. A crash landing strands them on the hostile surface. Soon they find out what creatures live there, and the hidden fate of the crew before them.
the best suspense is from hitckook.
the soundtrack?
Points of View 😄
Sorry, doing important mod business 🧐
phatic token
Translations in context of words, groups of words and idioms; a free dictionary with millions of examples in Arabic, German, Spanish, French, Hebrew, Italian, Japanese, Dutch, Polish, Portuguese, Romanian, Russian, Turkish, Chinese and English.
@molten pewter is monologue?
nice words. keep.....
reading with Furyo.. will this be a thing.. can we make requests?
maybe not 😆
so no shakespear.. :(
!vote "read the letter" yes no
🇦 - yes
🇧 - no
is this batman?
trailler emotion 
This sounds like the trailer for a 90s movie.
can you do troy mclure?
some day i will try read too

seaguls, the culling.. by stephen furyo king
i'm in the cine.
i hope he is method acting
brb
i like word crimes
I call fbi to you
i use them worse.. whenever I want to say a foriegn word, I use a really cliche accent
like me 🥲
gtg 👋
yes
yes too
It's quite common in taekwondo
Every possible chance to get shaken up
what is up guys?
what up?
what are you talking about?
Yes
I got many times
And it hurts in front of people got to holld ur nerves
Tight
come to me now.
Why 😂
Where
@cosmic niche u still there bud?
@molten pewter Sorry my parents called me, you know, indian parents, they call, you have to go ahahah
that's not just indian parents
it's the same here
Hahahah
back in 2m
Hello
Holy shit
Is that
Charlie???
WELCOME BACK
I MISSED YOUR SASSY SELF
Gonna hop on some day soon
I miss u....
money, governments...
crypto i think
alright
im just avoiding working on a part of code..
i don’t know who thinks they aren’t dumb @patent gyro
i mean i hate nfts from an environmental standpoint, ethereum mining produces shitloads of C02
yes, luci
@molten pewter are you a fan of NFTs?
there are countries less regulated for co2 and other air pollutions that make a compairison against mining coins ridiculous
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
@patent gyro as of now, i think no one
i think the only ones making money are either the artists or the resellers
at some point the nft is just gonna sit in someone's collection and hold no value
do you think that over time the value is going to go down?
yes, i don't think nfts will hold value 10+ years from now
maybe, I don’t really know
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
i guess makes sense
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?
well, if it’s someone famous, probably to some rich fans
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?
well, now we’re just predicting what will happen
think of it like the housing market, the thing will hit a point when it's too expensive
though we don’t really know for sure
true
but unlike a house or physical asset, you can't do much with an image
yeah, right
@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?
!voice-verrify
voiceverify without the dash
brb
sure, it wasnt weird before
it?
@patent gyro is nft’s the only thing you can buy using eth coins?
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.
import banking_system as b
if name == "main":
b.BankingSystem().run_app()
import banking_system as b
if name == "main":
b.BankingSystem().run_app()
if __name__ == "__main__":
b.BankingSystem().run_app()```
import ur_mom
from ass import ass as ass
from you.home import mom
!pypi ass
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
back in black
if __name__ == "__main__":
b.BankingSystem().run_app()```
!pypi pyscaffold
package
did you go anywhere for holiday
your first pc? from your experience in ssds i guess not
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
@zinc magnet u don't like windows? :(
when I built the pc that I'm typing this on, i by mistakely connected a wire on the motherboard and it wouldn't boot
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
also a concern I have is whether all the tools I use now or will use in the future will be available on linux
i used pacman
some random yt tutorial
A proprietary music streaming service
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
where u from
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
we have both je and jij
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
The Geek Code, developed in 1993, is a series of letters and symbols used by self-described "geeks" to inform fellow geeks about their personality, appearance, interests, skills, and opinions. The idea is that everything that makes a geek individual can be encoded in a compact format which only other geeks can read. This is deemed to be efficien...
@zinc magnet you need an ASIC if you want to seriously get into it
idk what running shoes are
its about drive its about power
haha
i dont wanna mine
i wanna make a blockchain similar
Make? i don't know much about cryptography but i don't know how you make a blockchain
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
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
I can't stop thinking about the fact that anyone with millions can make more millions with ease- gambling etc
yes
It feels frustrating
money makes money
it literally is man
why am i still on this planet
also like with this social credit score thing it's becoming more of a simulation than you could ever think of
money is the score for the greatness of ur decisions
if only banks would allow me to make a huge loan...
Don't banks stop you from making huge loans
Idk i literally know nothing about Economics and Rekeningkunde
u need to make something u proud of
Also ever since I joined dev servers I started feeling impostor syndrome (feeling ur not good enough)
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
caps?
It's basically a very bad curriculum
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
my geography is YES european is a country right?
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...
Shebenik-Jabllanicë National Park Rrajcë
i have logitech g502 hero it's pretty good quite heavy wouldn't recommend for gaming
lot's of buttons
@zinc magnet do you sometimes mess up eg. 'y's in english and pronounce them like a 'u' bc of ur russian ?
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
not sure did u noticed it? 🤔
nonono i just happen to know of a word (cyka) (sorry) that is pronounced like 'u'
The freely available swisstopo online tools include current maps and background information, historical maps, geodetic points for land surveying and conversion tools for coordinate systems.
And you managed not to get confused?
geo.admin.ch ist die Geoinformationsplattform der Schweizerischen Eidgenossenschaft. // geo.admin.ch est la plateforme de géoinformation de la Confédération suisse.
sd
geo.admin.ch ist die Geoinformationsplattform der Schweizerischen Eidgenossenschaft. // geo.admin.ch est la plateforme de géoinformation de la Confédération suisse.
where this?
Sighişoara
@whole bear u dont hav a mic?
Well yes but it's 1 am
you get good
no
:(
like real in there
yea
like reaall in theree
dw
im not sus
hah
you already are dumb, no need to start being it
are u sure?
yes
im as smart as a mercedes can be
boom
yes
i smoke camels
"camels" yes
with kemal
kemal chill with the gifs
in kosovo
that flashing bright colored one i deleted. was too much
i actually saw a camal in real life this holiday in south africa.
yeah try testing that again
like am i going crazy or are they only found in sahara
yes i was there
I know
very nice
!pypi ass
🤔
that is good to know
!pypi booty
!pypi sus
!pypi amogus
!pypi ass
:(
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣤⣤⣤⣀⣀⣀⣀⡀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⠟⠉⠉⠉⠉⠉⠉⠉⠙⠻⢶⣄⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣷⡀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⡟⠀⣠⣶⠛⠛⠛⠛⠛⠛⠳⣦⡀⠀⠘⣿⡄⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⠁⠀⢹⣿⣦⣀⣀⣀⣀⣀⣠⣼⡇⠀⠀⠸⣷⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⡏⠀⠀⠀⠉⠛⠿⠿⠿⠿⠛⠋⠁⠀⠀⠀⠀⣿⡄⣠ ⠀⠀⢀⣀⣀⣀⠀⠀⢠⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⡇⠀ ⠿⠿⠟⠛⠛⠉⠀⠀⣸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡇⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣧⠀ ⠀⠀⠀⠀⠀⠀⠀⢸⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⠀ ⠀⠀⠀⠀⠀⠀⠀⣾⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀ ⠀⠀⠀⠀⠀⠀⠀⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀ ⠀⠀⠀⠀⠀⠀⢰⣿⠀⠀⠀⠀⣠⡶⠶⠿⠿⠿⠿⢷⣦⠀⠀⠀⠀⠀⠀⠀⣿⠀ ⠀⠀⣀⣀⣀⠀⣸⡇⠀⠀⠀⠀⣿⡀⠀⠀⠀⠀⠀⠀⣿⡇⠀⠀⠀⠀⠀⠀⣿⠀ ⣠⡿⠛⠛⠛⠛⠻⠀⠀⠀⠀⠀⢸⣇⠀⠀⠀⠀⠀⠀⣿⠇⠀⠀⠀⠀⠀⠀⣿⠀ ⢻⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⡟⠀⠀⢀⣤⣤⣴⣿⠀⠀⠀⠀⠀⠀⠀⣿⠀ ⠈⠙⢷⣶⣦⣤⣤⣤⣴⣶⣾⠿⠛⠁⢀⣶⡟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡟⠀ ⢷⣶⣤⣀⠉⠉⠉⠉⠉⠄⠀⠀⠀⠀⠈⣿⣆⡀⠀⠀⠀⠀⠀⠀⢀⣠⣴⡾⠃⠀ ⠀⠈⠉⠛⠿⣶⣦⣄⣀⠀⠀⠀⠀⠀⠀⠈⠛⠻⢿⣿⣾⣿⡿⠿⠟⠋⠁⠀⠀⠀``
!pypi old
!pypi cock
@zinc magnetkeep it appropriate
the ! before anything
Balls
Balls
Balls
Balls
BALLS
Balls
BALLS
BALLS
BALLS
BALLS
BALLS
documentation at: https://github.com/ch1ck3n-byte/balls-docs/blob/main/README.md```
Im on phone now i got caught being online 1am lol
https://github.com/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa4/balls-docs/blob/main/README.md
dont let them catch u slippin
ono

@whole beardon't dump random pics. you're not in vc are you?
strenger finger
Sorry. Well i was
I didnt know u were mod soz
well, even if a mod isn't here you have to follow the rules lol. in case you were not aware
@vivid palm do you like strawberrys?
i do
me too
Me too
When you ask for marriage
what?
Nvm
oh
@zinc magnet do you like cats
i do
good
but i dont have one
dose any one like cement
Yum
What
<3
??
i love cement on my bed
Am dum
@zinc magnet do you like discord
oh no
!pypi sus
cute
send
nice flowers
!mute 803458358907895809 take a break
:ok_hand: applied mute to @zinc magnet until <t:1641774076:f> (59 minutes and 59 seconds).
- 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
it's so stupid
what does he hope to accomplish with such a senseless action
how many dependents ?
proposital ?
DEPENDENTS
24.01K 
Dependecy terrorism
he need a girlfriend
the boxes accumulate
980gb ?
mindblowin
@ivory shuttle please don't join and just interrupt like that next time
sorry my bad
gotta switch to a better mic brb
what're you working on?
learning machine learning
having lots of storage is so nice
no pretty sure you're the same age
oh right, he was talking about college apps
nice work.. great
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
yeah, they pay for pretty good study materials and a course for it
Theoretically you should have been studying for months in advance.
but i imagine the coursework takes way longer than 5 days lol
yeah, almost certainly. Speaking to people who have already done it here, I should have probably started a couple of weeks ago.
unless those books are very thin. but they don't look it
by five days - you probably mean they gave you five days off to study?
those are at least 150 pages each
yeah
Yeah that's because if your mind is in the game you would have been worthless at work.
when is your exam date?
late May
few hours a day 🥴
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.
😉
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
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.
is this exam the same in the US as it is in the UK?
Ok imma take this name
use #bot-commands
Soz
@quasi condor I was doing this tut (that I contributed to over a year ago): https://www.linode.com/docs/guides/install-nixos-on-linode/
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
Give it a try
good
Everybody has a testing environment. Some people are lucky enough enough to have a totally separate environment to run production in.
386
765
whats the next ?
i dunno

?
dark side
shared cpu ?
Why are you letting guest users on the system at all?
bie guys...
wow
html is not a lang programing .. lmao
does anyone know how to create a login system on python with pre-set data?
coding is coding.. programming in python is object oriented programming (code) .. symantics, but still he is coding