#ot1-perplexing-regexing
1 messages ยท Page 183 of 1
i know both of my sisters would just freak out if my parents barred them from adding contacts that weren't their family
Imagine being on social media the first time at 18 and getting pwned in 48 seconds
Are children getting pwned in 48 seconds
it would make it kind of hard to be social
Yes and children don't have bank accounts to worry about
I generally draw a line between social media apps where you can easily interact with people you don't know (random instagram accounts, discord servers, etc) vs apps more like WhatsApp or Facebook Messenger that's much more geared towards communicating with people you know
Id rather a 13 year old get pwned than and adult lol
18 yos dont have bank accounts either lmaooo
I had one at 16?
what
Lmao
a lot of my friends had bank accounts in high school
Check your privilege smh
I got mine at 13
At 18 youre supposed to be a poor bastard
I was in a normal public high school. Majority of people had bank accounts
yeah i think that's fair
You can be poor and still have a(n empty) bank account
i also used to use discord to call friends while we were playing games, it'd be kind of sad if i couldn't have done that
You dont have to worry about exposing an empty bank account tho
What are they gonna do, leave money in?
Holy shit
Please
Cybersecurity is a myth anyways
Overdrawing it
Overdraft it and you get to pay fees
how do you even expose a bank account
I've seen people fuck 900 credit scores for fun
skill issue
Overdrafts are an extra thing where im from
Keep persistent access
Then use said money
My bank account at 13 did not allow for overdrafting
My credit score took a dip cause my bank automatically increased my credit card limit without asking me ๐ญ
i should lowkey get a job now that i think about it
Guys hot take but you shouldn't leak your bank login regardless of how much money is in it
i spent all my money on food
bad parents are very common, and the internet can indeed be an outlet for kids whose alternative is a violent childhood with the neighborhood kids
But what if the sketchy game I clicked on is demanding me account details to continue?
What kind of bank allows for a login without a physical factor
Mine ๐
Lmao
idk what faceid is
Johntrontavious
I don't need anything physical for my bank either
cli guess what
What
my club stores all of our passwords in a shared google sheet
Hahahahah
๐ฉ
I either need my card or my phone, which was authorized by using the card, and i need it for every transaction
I love it
i might just create a shared bitwarden account but that's lowkey a pain
but i need to get a bank account for the club soon so a proper password management solution would be a good idea
"Security by being so dumb you can't believe they'd do that for real" ahh model
it's just our instagram and other social accounts right now
๐ฉ
not a per person log in so you can see who ran away with the money?
oh, and the account we use to request funds from the university ๐
GOD
I use bitwarden for passwords
yeah me too
I just memorize mine ngl I always forget to add to keepass
One for personal one for work
i've just been bikeshedding whether or not a shared bitwarden account is a good idea for our club
It's a step above post it notes
Postit notes require physical access which id trust over an open sheet on a computer tbh
I used my noggin for a long time. Until I occasionally forgot what password is used where. And then resetting passwords. And that made it worse to keep track of what password where
bitwarden is great i love bitwarden
Hot take password books aren't that bad if you secure the physical access
it has actually nice integration with ios
Yeah
it's kind of a pain on a mac but the majority of my password entering is through a browser anyways so the extension gets the job done
I mean, that's basically what a password manager is
the latest NL related nonsense I just finished resolving was so complex that my legal advisor laughed, scratched his head and said: "I don't know"
I didn't do anything either, like, I was just living my life and out of nowhere pops out this problem, it's like walking on eggshells ๐
We should ban non staff polls
make a poll for it
We should add vote banning
rename ot0, ot1 and ot2 to ot1, ot2 and ot3
9
13
2
no
759569474696511518
dice_0
Rename it to ot0, ot1 and ot-1
what kind of democracy is this
scratch that. rename ot2 to ot3 and keep the others. or keep ot0 and move ot1 and ot2 to ot2 and ot3
index them at 1
or you pick one, we show that one of the other ones is really ot๐, and then we let you decide whether to stick or switch
actually having a goat otn would be funny
as a reference to the thing
you're a genius
finally some recognition
@carmine apex this is how you should be treating me
VOTE
Dude..
there is literally no way
im being trolled this hard by discord
WHY WOULD YOU VOTE NO
nvm u didnt slight overreaction
L
am i better than thuri
3
5
2
no
@vale raven you traitor
Thanks
Spelling Bee โ 5/5 words correct ๐๐ฅ
๐ฉ๐ฉ๐ฉ๐ฉ๐ฉ
https://less.gg/spellingbee
I AM THE GOAT
I AM SO GOOD
second try?
wtf guys
@weak peak when the lion catches the gazelle, the lion shall perhaps merely warn it, and feast another day
idk what to offer fenix
DAMMMMMNNN fast mode is fast
single party
the lion is kind to the gazelle, and its kindness is unappreciated ๐
okay
vim
NO
not funny
when i get promoted to mod here first thing im doing is perm banning you
i cant wait
you posted a meme that said
ragebait this guy
clearly referring to yourself ๐ง
**```
.games [amount=5] <genre>
**Can also use:** `game`
*Get random game(s) by genre from IGDB. Use .games genres command to get all available genres.
Also support amount parameter, what max is 25 and min 1, default 5. Supported formats:
- .games <genre>
- .games <amount> <genre>*
**Subcommands:**
**`games company [amount=5]`**
*Get random Game Companies companies from IGDB API.*
**`games genres`**
*Get all available genres.*
**`games search <search_term>`**
*Find games by name.*
**`games top [amount=10]`**
*Get current Top games in IGDB.*
.games genres
Currently available genres: Point-and-click, Fighting, Shooter, Music, Platform, Puzzle, Racing, Real time strategy, Rts, Role playing, Rpg, Simulator, Sport, Strategy, Turn based strategy, Tbs, Tactical, Hack and slash, Quiz/trivia, Pinball, Adventure, Indie, Arcade, Visual novel, Card & board game, Moba

In programming, there are two types of operations:
- "In-place" operations, which modify the original object
- "Out-of-place" operations, which returns a new object and leaves the original object unchanged
For example, the .sort() method of lists is in-place, so it modifies the list you call .sort() on:
>>> my_list = [5, 2, 3, 1]
>>> my_list.sort() # Returns None
>>> my_list
[1, 2, 3, 5]
On the other hand, the sorted() function is out-of-place, so it returns a new list and leaves the original list unchanged:
>>> my_list = [5, 2, 3, 1]
>>> sorted_list = sorted(my_list)
>>> sorted_list
[1, 2, 3, 5]
>>> my_list
[5, 2, 3, 1]
In general, methods of mutable objects tend to be in-place (since it can be expensive to create a new object), whereas operations on immutable objects are always out-of-place (since they cannot be modified).
.quiz moment
.quiz
ah yes
What is the nickname for the textbook 'Compilers: Principles, Techniques, and Tools'?
dragon book
CPTT
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
ah
Which of these languages is the oldest?
(Tcl, Smalltalk 80, Haskell, Standard ML, Java)
certlang
80
20s left!
tcl
smalltalk 80
@carmine apex got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 5
Standard <ML
EHAT
What letter is used to separate date and time in ISO 8601?
T
@carmine apex got the correct answer :tada: 100 points!
2
Let's move to the next question.
Remaining questions: 4
What does one call the optimization technique used in CPU design that attempts to guess the outcome of a conditional operation and prepare for the most likely result?
20s left!
10s left!
branch prediction
@carmine apex got the correct answer :tada: 50 points!
Let's move to the next question.
Remaining questions: 3
A hypothetical point in time at which technological growth becomes uncontrollable and irreversible, resulting in unforeseeable changes to human civilization is termed as...?
singularity
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
What does ASCII stand for?
bru
ffs
20s left!
american standard character i i
american standard council for information interchange
@carmine apex got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 1
What does the "a" represent in a HSLA color value?
alpha
@carmine apex got the correct answer :tada: 100 points!
Remaining questions: 0
aplpha
The round has ended.
@carmine apex Congratulations on winning this quiz game with a grand total of 600 points :tada:
bro was lucky
What are the components of digital devices that make up logic gates called?
trhis one ill win
that was a complete guess
or gates
transistors
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
fuck
How many bits are in a TCP checksum header?
16
@green pelican got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
What is computing capable of performing exaFLOPS called?
exascale
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
What algorithm yields accurate RTT measurements in TCP?
:|
20s left!
h
10s left!
No one answered correctly!
Let's move to the next question.
Remaining questions: 3
network cert is kinda lagging, eh, cert
quantum bit
quantum numerical bit
cheater
20s left!
quantum binary digit
@carmine apex got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 2
quantum byte
A hypothetical point in time at which technological growth becomes uncontrollable and irreversible, resulting in unforeseeable changes to human civilization is termed as...?
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
signularity
singularity
FUJKCJ
What is an interpreter capable of interpreting itself called?
bootstrapped
hm
bootstrap
bootsrapping interpreter
20s left!
boot
bootstrapping interpreter
10s left!
bootstrapped interpreter
bootstrapping doesn't really apply to interpreters does it
No one answered correctly!
Remaining questions: 0
oml
The round has ended.
@carmine apex Congratulations on winning this quiz game with a grand total of 375 points :tada:
uh huh
what a joke
ok this One
Which year was Python 3 released?
i love python
@low chasm got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
2002
y
n
@low chasm got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
Which standard library module is designed for making simple parsers for languages like shell, as well as safe quoting of strings for use in a shell?
ok
shlex
@low chasm got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
ok
What common operation does this function implement?
import math
def mystery(x: float) -> float:
return math.copysign(abs(x) + 2**52 - 2**52, x)
round
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
power
oops
y
n
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
n
n
What common operation does this function implement?
def mystery(n: int) -> int:
return (n>>1<<1)^n
๐
20s left!
floor
kioll me
10s left!
yer ded now
i hate this game
power
Better luck next time...
Let's move to the next question.
Remaining questions: 1
squares
20s left!
indices
@low chasm got the correct answer :tada: 75 points!
Remaining questions: 0
non-dunder
The round has ended.
@low chasm Congratulations on winning this quiz game with a grand total of 375 points :tada:
hah
cap
too busy ignoring you
.quiz science
ok
What is the intermolecular force caused by temporary and induced dipoles?
ah fug
OH
van der waals
20s left!
themodynamics

molecule
10s left!
Better luck next time...
Let's move to the next question.
Remaining questions: 6
No one has made it onto the leaderboard yet.
thought i had it
The type of rock that is formed by the accumulation or deposition of mineral or organic particles at the Earth's surface, followed by cementation, is called...
obsidian
sedimentary
granite
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
ah
When DNA is unzipped, two strands are formed. What are they called (separate both answers by the word "and")?
RNA
leading and lagging
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
In particle physics, the hypothetical isolated elementary particle with only one magnetic pole is termed as...
i hate you
monopole
single
20s left!
magnetic monopole
@carmine apex got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 3
What is the universal force discovered by Newton that causes objects with mass to attract each other called?

i hate you
gravity
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
The Heisenberg's Uncertainty Principle states that the position and ________ of a quantum object can't be both exactly measured at the same time.
momentum
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
big
Is the Richter scale (common earthquake scale) linear or logarithmic?
linear
logarithmic
@low chasm got the correct answer :tada: 100 points!
logarithmic
Remaining questions: 0
linear
fuck
The round has ended.
@carmine apex Congratulations on winning this quiz game with a grand total of 475 points :tada:
thief
- General: Test your general knowledge.
- Retro: Questions related to retro gaming.
- Math: General questions about mathematics ranging from grade 8 to grade 12.
- Science: Put your understanding of science to the test!
- Cs: A large variety of computer science questions.
- Python: Trivia on our amazing language, python!
.quiz general
Which country is Mount Etna, one of the most active volcanoes in the world, located?
italy
@carmine apex got the correct answer :tada: 100 points!
Information
Mount Etna is the highest volcano in Europe. Towering above the city of Catania on the island of Sicily, it has been growing for about 500,000 years and is in the midst of a series of eruptions that began in 2001.
Let's move to the next question.
Remaining questions: 6
i6talyt
What's the name of the largest bird?
seagull
ostridge
ostritch
@low chasm got the correct answer :tada: 100 points!
Information
The largest living bird, a member of the Struthioniformes, is the ostrich (Struthio camelus), from the plains of Africa and Arabia. A large male ostrich can reach a height of 2.8 metres (9.2 feet) and weigh over 156 kilograms (344 pounds).
Let's move to the next question.
Remaining questions: 5
FUCK
hah
Which country is known as the "Land of Thunderbolt"?
MY LIFE
greece
20s left!
god
japan
10s left!
USA
god is not a country bro
mexico
norway
No one answered correctly!
Information
Bhutan is known as the "Land of Thunder Dragon" or "Land of Thunderbolt" due to the violent and large thunderstorms that whip down through the valleys from the Himalayas. The dragon reference was due to people thinking the sparkling light of thunderbolts was the red fire of a dragon.
Let's move to the next question.
Remaining questions: 4
RUSSIA
What country is called "Land of White Elephants"?
china
brunei
south africa
africa
malaysia
saudi arabia
L:OL
burma
20s left!
I SAID AFRICA
๐
@carmine apex got the correct answer :tada: 75 points!
Information
White elephants were regarded to be holy creatures in ancient Thailand and some other countries. Today, white elephants are still used as a symbol of divine and royal power in the country. Ownership of a white elephant symbolizes wealth, success, royalty, political power, wisdom, and prosperity.
Let's move to the next question.
Remaining questions: 3
When did the Second World War end?
hah
1945
@carmine apex got the correct answer :tada: 100 points!
Information
World War 2 ended with the unconditional surrender of the Axis powers. On 8 May 1945, the Allies accepted Germany's surrender, about a week after Adolf Hitler had committed suicide. VE Day โ Victory in Europe celebrates the end of the Second World War on 8 May 1945.
Let's move to the next question.
Remaining questions: 2
1945
Which country is called "Battleground of Europe?"
italy
russia
20s left!
poland
austria
poland
britain
10s left!
belgium
united kingdom
@carmine apex got the correct answer :tada: 50 points!
Information
Belgium has been the "Battleground of Europe" since the Roman Empire as it had no natural protection from its larger neighbouring countries. The battles of Oudenaarde, Ramillies, Waterloo, Ypres and Bastogne were all fought on Belgian soil.
Let's move to the next question.
Remaining questions: 1
In which country is Bali located in?
first try
indonesia
@low chasm got the correct answer :tada: 100 points!
Remaining questions: 0
hah
The round has ended.
@carmine apex Congratulations on winning this quiz game with a grand total of 325 points :tada:
close one that time
.quiz python 1
What is the minimum number of comparison methods a class must implement to support total ordering?
2
@green pelican got the correct answer :tada: 100 points!
2
AHAHAHAH
The round has ended.
@green pelican Congratulations on winning this quiz game with a grand total of 100 points :tada:
wow
complete guess
.quiz retro
get cooked "admin"
get cooked
What is the best selling game on the Nintendo GameCube?
mario
mario
super mario bros
super smash bros
@low chasm got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 6
What did Nintendo make before video games and toys?
card games
playing cards
handa cards
**Hint #1
**They were used alternatively to playing cards.
hanafunda cards
board games
@carmine apex got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 5
??
sega
sega
@low chasm got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
sony
What is Yoshi's (from Mario Bros.) full name?
oh yeah
yoshiwaru
thurismom
ugh not this one ๐
**Hint #1
**It was revealed in the Nintendo Character Guide in 1993.
yoshiasaurus
yoshisaurus muchakoopas
@carmine apex got the correct answer :tada: 75 points!
Let's move to the next question.
Remaining questions: 3
What was the first game Yoshi appeared in?
mIRO
super mario world
@low chasm got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 2
mario
What year was Tetris released?
1983
1984
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 1
1992
`9328
literally
What was Mario's original occupation?
plubmer
plumber
pluhbmer
plumber
plumer\
carpenter
@carmine apex got the correct answer :tada: 100 points!
Remaining questions: 0
FUKC
The round has ended.
@carmine apex Congratulations on winning this quiz game with a grand total of 350 points :tada:
lmfao
I CANT TYPE
barel
.quiz help
- General: Test your general knowledge.
- Retro: Questions related to retro gaming.
- Math: General questions about mathematics ranging from grade 8 to grade 12.
- Science: Put your understanding of science to the test!
- Cs: A large variety of computer science questions.
- Python: Trivia on our amazing language, python!
.quiz math
THIS IS MY DOMAIN
cap
BASE TWO QUESTION: Calculate 1110 * 1110
I LOVWE mATH
no
it's binary gang
20s left!
๐ฅ
10s left!
1110
0111100000111111100000
1111
11101001
1010
01010101
1101
1011
11000011
Better luck next time...
Let's move to the next question.
Remaining questions: 6
No one has made it onto the leaderboard yet.
What is the (0,0) coordinate in a cartesian plane termed as?
0
origin
@carmine apex got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 5
origina
What is the highest power of a biquadratic polynomial?
8
2
4
7
@low chasm got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 4
9
Prime numbers only have __ factors.
2
1
@green pelican got the correct answer :tada: 100 points!
Let's move to the next question.
Remaining questions: 3
2
AHAHHA
I NKNEWI T
logarithmic mean
standard deviation
20s left!
variance
what happened to your domain gang
square root
variance of a population
10s left!
variance
n -1
variation
Better luck next time...
sample variance
Let's move to the next question.
Remaining questions: 2
I KNOW THAT ONE
lmfao
In set builder notation, what does {p/q | q โ 0, p & q โ Z} represent?
1
20s left!
true
hm
rational numbers
@low chasm got the correct answer :tada: 75 points!
subtraction
Let's move to the next question.
Remaining questions: 1
Which theorem states that hypotenuse^2 = base^2 + height^2?
pythagorean
@carmine apex got the correct answer :tada: 100 points!
Remaining questions: 0
pygathorgian
The round has ended.
@carmine apex Congratulations on winning this quiz game with a grand total of 200 points :tada:
good game
what happened to your domain ๐ฅ
there ain't a networking category
id fail the shit out of that
pr when, then, aboo
nobody would PR it for me though
no cert
ok i found it buts its kinda ass
you lost like 6 quizes
hey thuri
lemme guess: you'll destroy me?
nononono
i have a windows10 optimizer for you i made it myself as a gift
its in powershell
can you run it
:)
show the code bro
uh huh
is this kinda low-quality 12-year-old-tier "hackware" that just does echo tree or something
huh

NOOOOOOOOO
i aliased emacs to vim btw
i hate you
what
are you not familiar with sl?
Bro has account issues?
Sounds like a matter of skill
Art thou a capatcha failing robot?
who pinged
Who pinged
Saving that one
When you know the context, it's twice as powerful. :3c
I unfortunately don't
The Amazing Digital Circus by Glitch studios on youtube. Would recommend.
Though that might just be my own obsession speaking.
I am very skeptical of that name
me too
Windows spending 5+ minutes on the welcome screen after logging in ๐
should we ban non-staff polls
5
5
1
no
714221559279255583
incident_actioned
Recount
Also we should have voter id probably
If you have 100k messages in here you get to vote
from: mariosis
98,796 results

Do !user
#bot-commands message
He speaks the truth
I change my suggestion, only people with more than 109k messages can vote
13621 messages having ahh
Little count big talk
sorry I don't spend my entire day here ๐ฅ
Apology accepted
broken ahh discord search
i see 110069
Pwned the pydis bot
cap
I will (legally)
cap
@carmine apex don't laugh at me you fool
Meet me at defcon 2028
We'll see who's laughing
Oh sweet. You'll be there?
Idk ill go one year though
I'll get to meet someone from pydis and win a game of spot the fed.
I call dibs on meeting you first
hello unc
sup
Hello
as per request, there most definitely is a bunch i missed/got wrong
people were looking for easter eggs in my previous repeated word video (turning a sphere outside in) but to everyones disappointment there were no easter eggs, i never expected anyone to look for something like that, so i hid two easter eggs in this video, nearly impossible to ...
we can upper bound the length by 2*n_unique_words*original_video_length
pray tell
what is the precise value of n_unique_words
idk, we can backsolve for it
jfc
the 1920x1080x25 version of this is 147 GiB
except that might be just the audio track? video-only of same state is 86 GiB
!e
big_chonk = 2*24*3600 + 20*3600 + 20*60
small_chonk = 19*60 + 26
print(big_chonk/2/small_chonk)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
105.48885077186964
err
is that alleging 105 unique words
where did I math up?
was 2/small_chonk supposed to be in parens
i do have an easier way to do this, though
!e
from datetime import timedelta as td
big = td(days=2, hours=20, minutes=20)
smol = td(minutes=19, seconds=26)
print(big/2/smol)
:white_check_mark: Your 3.14 eval job has completed with return code 0.
105.48885077186964
my bound is correct, no?
2x should be an upper bound
actually wait...maybe I am mathing very wrong
and my bound is incorrect
unique words don't contribute, words appearing >1 times contribute at 2x (at worst)
how exactly does this algorithm work
so 106 different repeated words?
if words are a b c d a b c e, what does that become
these segments count a second time
a b c a b c
------
------
------
and a more repetition case a repeats like
a b a c a d a
----
----
----
going by the script the number of actual repeated words is ~500
granted, with a very flawed hacky thing to calculate
from collections import Counter
s = open('script').read()
def normalize(w):
return ''.join(c for c in w if c.isalpha()).lower()
counts = Counter(normalize(w) for w in s.split())
count_counts = Counter(c for c in counts.values() if c > 1)
print(sum(count_counts.values()))
well ok, my thing lower bounds the number of repeated words
it's a bad lower bound, but it's a lower bound
and the 2x is a horrible estimate
a lot of words are mentioned a handful of times, and they probably cluster together
making is more like 1 + ฮต
in any case, good timestamp
https://www.youtube.com/watch?v=Sa9L88diw20&t=1922s
as per request, there most definitely is a bunch i missed/got wrong
people were looking for easter eggs in my previous repeated word video (turning a sphere outside in) but to everyones disappointment there were no easter eggs, i never expected anyone to look for something like that, so i hid two easter eggs in this video, nearly impossible to ...
actually, I think that the video includes some padding with every repeat
that would account for some of my everything being off
I can't grasp what the rule is
Feels like it repeats multiple times for no reason
Import timedelta as dt ๐
you saw nothing
Just as a reminder:
Code that is generated by AI, cannot be copyrighted in the US.
All code that is generated that way (or any content, really) automatically enters public domain.
All licenses are invalid.
https://www.synthtopia.com/content/2025/03/20/ai-generated-works-are-public-domain-court-affirms/
without human involvement
huge loophole
new job for new CS graduates just dropped: mindlessly signing under each commit that Claude Opus 4.6 makes
I don't think its very enforceable in practice anyway.
Still nice to know. ๐
Seems like it'll just be down to how much you can pay your lawyers as usual
just vibecode a B2B SaaS to do it for you
didnt they steal every copyrighted work ever to train the LLMs in the first place
does copyright mean anything ,_,
oh, this is a good thing right
so when companies AI generate entire TV shows then it wont be illegal to re-post the entire thing on youtube
but yeah the "without human involvement" is a pretty big loophole
the question is, how you prove it
and what does it even mean
it would be interesting, who is here responsible to prove one way or the other
if I prompt it, am I not involved ?
No, it specifically says, prompts are not enough
In the US, mind you. The EU prepares a similar law, and the UK explicitly allows completely generated code to be copyrighted.
See the legal statement of the responsible court: (also linked above)
Copyright is just more so than ever before a question of money to defend the case
ya ig
not worth tryna look into the logic of it since its just money speaking
Introduction The rapid development of artificial intelligence (AI) technology has significantly impacted the production and dissemination of creative content. As AI-generated works proliferate across the European Union (EU), legal questions arise regarding the ownership, protection, and distribution of these works under copyright law. Directive ...
idk tbh
I think that if there is skill involved, there is a human factor
like a lot of ppl r much better than me at prompting the image gen bots. the difference is not in the bot, who is just a tool, it's in the person using it
I do suppose it depends on the degree of skill.
prompting is really just providing a bit of guidance to a very random process, and random process you didnt design yourself.
can you copyright a random sequence created by throwing dice? what if you "prompt" the dice by making them weigthed, can you copyright the resutl then? "its a skill to weight the dice to get a sequence that you want"
is a noise generation algorithm copyrightable?
i think it'd be quite ridiculous to declare all AI-generated content to be public domain, since it'd be ignoring the contributions of the AI company who did the training, without whom it'd be impossible.
(Incidentally I don't particularly expect such laws to pass, because AI companies have a lot of money to spend on lobbying)
it's just shaping randomness, after all
but we not talking about a dice, we talking about something way harder to change the weight of
if I write a python script that uses randomness to make some sort of digital art
isnt the result something I made using my creative input
right, thats the question the law has to answer
iirc the UK has said no to that in the past, let me see if I can find the case
and ofc all the search results are ai related
None of this should be copyrightable and hopefully it all goes away eventually
am i the only one having fun with this nonsensical stuff
Yea pretty much
starting to feel lonely ๐ญ
@pulsar heart I suppose maybe one important factor is the time investment, creating that took time to setup everything, executing it etc.
while you can get a server farm to spit out thousands of ai generated images a day and if all that was copyrightable you could basically explore a lot of the image space and get a feasable copyright claim on basically any future image
didn't someone do that for music
just copyrighted every single chord progression or smth
problem too hard for me
i will let judges decide and use whatever workaround they leave to protec my work
and ofc theres the whole ethics side to the debate
Are prompt results reproducible
yea
they are if you set the seed
it's just math, if you do the same math, you get the same result
same way the result of random.randint are reproducible
How do you do that
the apis and playground usually let you do it
depends on your LLM runtime
the main user facing frontends generally dont
the model outputs some probability distribution of the next tokens
and you sample that
if you make that sampling process deterministic, you can always get the same result
it is always deterministic since it uses pseudo random number gens
I don't think that's even available in most AI APIs' SDKs
so most people won't know that's a thing
yea, it's often quite hidden
not direct sampling control, but the settings for it are (seed and temperature) often are
Why would they be hidden
"UX" 
interesting how they say "mostly"
It would be quite weird for people to think of ai output as their work if they cant reproduce it
yeah because if they update the model, or even just the library versions on their backend the output could change
I refer back to the jackson pollock example
float errors are also probably not deterministic on modern GPUs
Thats not a clear cut case of mr pollock using a billion parameter model
Im pretty sure he picked up a paint brush and flicked some paint himself
I doubt he could reproduce a lot of his works exactly
I mean, probably could actually
No but the human contribution is very obvious
Machines cant own property
Humans can
idk I dont think getting the AI to give the image u want is that easy either
So you have to show your contribution besides "kind words in the prompt"
sounds abritary
I feel I could make a pollock painting pretty easily tbh
why does pollock have a stronger claim to the effectively rng output of flicking brushes at random than a human does the rng outputs of putting words into a machine
Im sure everyone could, its not exactly art
yeah, pollocks are easy and fun to make
okay lets put it like this.
if I commision an artist to paint something for me, and I spend a lot of time making sure I get the description of what I want perfect... do I get the copyright?
actually, maybe
no you dont
takes a surprisingly long time to get real pollock-like coverage tbh
artists have studios where they order around other junior artists
your contract has to explicitly state that you get the copyright, otherwise the artist gets it by default
if buying isn't owning thne
I think the person directing the art production still gets the rights, but idk
then
