#ot1-perplexing-regexing
1 messages · Page 78 of 1
The sysadmin server I'm in has a guy doing Excel and a guy doing PowerShell
W powershell guy
hey morning guys
how about evening guys? have you considered that?
lol
Morning heckitos
ugh i have mandatory HR training
oh man, human resources
i've already done it before, but they're making me do it again
have you tried not failing?
congrats!
ty :))))
Man, even the stackoverflow mailing service is toxic...
Lmao
#programming
part 1: https://www.youtube.com/watch?v=mSUNnCwj1WY
part 2: https://www.youtube.com/watch?v=WtwneW2s2bo
omg
can we reach 100 subs by end of 2023?
;)
Fr
did i 
it's not asking you for money or ID so probably someone forgot to update their number or typed the wrong one in
day 1 of python. Created this question thing. Good progress?
urghhh, trying to grow out specific sections of my undercut. It's taking so much willpower not to chop off these tiny hair strands
I thought popcorn ceilings meant that they were made of popcorn
buttery popcorn ceiling
Me when I just woke up and got an AOC ping
can you guys solve some math integral
@crystal spruce it's time
(ask it)
can someone help me all my browsers log me out of sites whenever i exit the browser ive tried all the settings fixes
for the left one, draw a right triangle with opposite length 2x and hypotenuse 1+x^2
for the right one, you need to elaborate on what you're stuck with
What is undercut
Great job!
it's a haircut type where you’ve got length on the top, but the back and sides are short
nearly buzzed
for guys a lot go for something like
I've been meaning to get a haircut for a bit now too
curly hair is good 👀
oh i wish
first of all im fuggo uggo
aw, that’s probably not true, people tend to look at themselves more critically
and different haircuts suit different face shapes and stuff
that's true
I'll go for a longer middle part, right now mine would probably be shoulder length if I straightened it
👀 pog
This looks like peak beganli hair and haircut
beganli
Bengali
whats that
wild
97% of all bengalis I’ve met in NYC had that haircut
||im bengali||
🗿
PlZZZ I need help in R studio in Tablaeu
'mula' is typing
no need to spam in every ot
i heard Bangladesh illegal immigrants come to wb?
Please contact me anyone if u can help with connecting R and Tableu just having issues need help
1200
I’m not going for it 🥺
Grow it out and have a man bun
it's already long enough to tie back 👀
I don’t usually do that though
just at home where it would otherwise get in the way
looks sort of weird so I wouldn’t go out like that
🤨
skill issue
how long have you been growing it out for?
i grew my hair longer and all of a sudden it's curly
curly and wavy are different ??
yayyyy
i am writing
"Slavery indentures innocents into a lifetime of shackles and suffering. Yet, in the Homeric epics The Odyssey and The Iliad, it is commonplace for such acts to occur. Villages are pillaged and women are forced into sex slavery for generations to come. The loss of autonomy, the internal turmoil, and the overwhelming sense of flipped power dynamics inundates the lives of each and every victim of slavery throughout Homer’s Odyssey and Iliad. Homer weaves the disconcerting reality of slavery through the lens of ancient society, depicting the distressing experiences often faced by those entangled in the web of horrors that is slavery.
There are multiple sub themes that lie behind the topic of slavery. One such theme that permeates The Iliad and The Odyssey is the animalistic savagery that violently upheaves the communities the epics contain and the following enslavement of their inhabitants. "
this might not be as bad as i thought
yeah
there’s levels of curls
some hair is more curly than others, curls in different ways
that also happens 👀 shorter hair can sometimes not be long enough for curls to show
yeah everyone asks me if i got a perm
also aboo, 143 words. shooting for 2000 to go past 5 pages. 12 times new roman
good luck
ty ty
😔 when is it due?
dec 18th
i have to speedrun this shit
and then i have other finals too
i have to get it done in time so that he can give me feedback
day 2 of scripting. Learned if statements and conditionals (true/false). Good progress for a 15 year old beginner?
epic
Day 2 of scripting. learned if, else, elif.
W or L
Why are you posting about it here
1325 words
not bad
W
you respect code styling
gg
Thanks
Thank you too
groans as i turn my working code into non-working code while making a config file
ooo what are you coding?
Yo chat its 1 st december days passing fast af Any opinions on 2024
a ticket bot for my server. kinda like a cross between modmail and ticket tool
When i look in a mirror, i am literally ryan gosling.
When i take a picture, i look like just got out of the streets
Why do cameras hate me?
cameras suck for me too 😩 I’m terrible in pictures
try microsoft team meetings
you basically see the picture version of yourself
for 100% of the meeting
guys, im making a password manager
except its not only gonna store passwords
its also gonna store api keys, recovery codes for ur account, etc
but the thing is, i think i've just got myself in a fucked up position while designing the db schema
this is the schema if u wanna know
CREATE Table IF NOT EXISTS emails (
email TEXT UNIQUE PRIMARY KEY NOT NULL
CONSTRAINT valid_email_regex
CHECK (email ~* '^([^<>()[\]\.,;: \r\n\t@"]+(\.[^<>()[\]\\.,;: \r\n\t@"]+)*|".+")@(([a-z0-9-]+\.)+[a-z]{2,})$')
);
CREATE TABLE IF NOT EXISTS sites_and_passwords (
site_id integer generated always as identity PRIMARY KEY NOT NULL,
email TEXT NOT NULL,
site TEXT NOT NULL,
username TEXT,
password TEXT NOT NULL,
CONSTRAINT unique_email_and_site UNIQUE(email, site),
CONSTRAINT fk_email
Foreign Key (email)
REFERENCES emails(email)
ON DELETE NO ACTION,
CONSTRAINT valid_site_regex
CHECK (site ~* '^(https?:\/\/)?(www\.)?(([a-z\d][a-z\d-]*)?[a-z\d]\.)+[a-z][a-z\d-]*[a-z\d]')
);
CREATE TABLE IF NOT EXISTS api_keys (
site_id INTEGER NOT NULL,
apikeys TEXT NOT NULL,
CONSTRAINT fk_site_id
Foreign Key (site_id)
REFERENCES sites_and_passwords(site_id)
ON DELETE NO ACTION
);
CREATE TABLE IF NOT EXISTS recovery_vault (
site_id INTEGER NOT NULL,
recovery_data TEXT NOT NULL,
CONSTRAINT fk_site_id
Foreign Key (site_id)
REFERENCES sites_and_passwords(site_id)
ON DELETE NO ACTION
);
as u can see, i use site_id to reference the email and site in every other table, instead of storing those emails and sites just as it is
and im just storing each attribute in a separate table, so that it will be easy to manage data separately (or thats what i thought)
now the problem is, when i wanted to add a new entry to any other table other than email and site_passwords table, i have to check in the site_passwords table to get the relative site_id and use it in the update/insert query
and i thought if i store all the attributes in a single table, i'll just have so many empty entries in the table, which will not look good (idk why i considered this tbh)
so, is there any better way to store all of these values?
can anyone suggest me a better db schema here?
maybe billyboby can help when he gets online
!warn 1135894365928165446 Do not post chain spam in our server.
:incoming_envelope: :ok_hand: applied warning to @earnest mica.
At the heart of Micro1’s product suite is an AI-powered tool known as GPT Vetting, which provides a quick and accurate method for screening technical talent at scale. “Our system, GPT Vetting, is the quickest and most accurate way to screen technical talent at scale,” Ansari explained. “First, you invite a candidate [to the platform] and then define the skill set that you want to test.”
Kinda insulting tbh, but i guess its a system that is easy to game
i love python
Does anyone know any interesting simulations that can be done with numerical solutions of ODEs. I have
- n-Body simulations
- double/triple pendulum
- spring-mass models of cloth
- photosynthetic
- tumor growth
- circuit simulation
as EE am obligated to mention circuit sim
ah, good one
heat equation maybe
hmmmm, I think that's a PDE
ah true
@granite tree #ot1-perplexing-regexing message any ideas to resolve this?
Are you just asking how to insert a new apikey for a given site in a single query? Example: https://dbfiddle.uk/b18BdIV1
CREATE TABLE
nope, the problem is, instead of storing values repeatedly in separate places (here its email and site), i thought of storing it in a separate table for themself and using their site_id to reference it as foreign key to be used as in other tables
but now whenever i have to insert any value into the apikey, or recovery_vault table, i have to get the site_id from the site_passwords table
(cuz its not very friendly to point out data as much as raw email and site data do)
so this has caused so much of havoc for me on making queries
My example shows how to get the site_id in the insert statement.
Pasted here: ```sql
insert into api_keys(site_id, apikeys)
select sp.site_id, 'asdasdasdasd' apikeys
from sites_and_passwords sp where site='bobinator.com'
If you want to get slightly fancier and use an upsert...
what does this do?
can u explain that select statement?
and also, im using postgres btw
im just telling u if there's any need for it for u to give more db type driven answer
That gets the site_id from sites_and_password for bobinator.com, then inserts an apikey value of asdasdasdasd for it.
The more interesting example is this one: ```sql
WITH s as (
INSERT INTO sites_and_passwords (email, site)
VALUES ('bob@bobbbby.com', 'bobinator.com')
ON CONFLICT (email, site) DO NOTHING
RETURNING site_id
)
INSERT INTO api_keys (site_id, apikeys)
SELECT site_id, 'asdasdasd'
FROM s;
CREATE TABLE
This version will insert a new entry into sites_and_passwords if it doesn't exist already
wow
i never knew these stuff exist in sql
this is cool
now i wonder how i can make these queries in sqlalchemy using orm objects
I don't use sqlalchemy, but search for UPSERT. (update / insert)
also, by the looks of my db schema
what would u say about it?
is it optimal to manage and store data?
this is my first time dipping my toes into databases
and i've gone crazy with the RDBMS
@granite tree i was asking to u btw
There’s no real ‘optimal’, but some thoughts:
This isn't a performance sensitive app, so you don't need to overthink stuff like insert/update costs.
Ergonomics for this type of data is more important: is it easy to work with and clean. For example, you might just store things as tuples:
i was initially thinking about not to bloat the table with so many null values
ie: a single table of: site, type, name, email, key
You can always do something like: "select * from mytable where site='bobinator.com'"
This avoids even needing a site_id. If you're just storing attributes of a site, this can make a lot of your ORM code so much easier. You just have to think about how to clean it up (ie: delete old entries)
oh yeah
i forgot about deleting stuff
that'll definitely become a tough job to do with this schema ig
Yah, not ‘tough’ just more code. And if there’s no other tables that rely on site_id, I might not worry about it.
A name/value pair type approach makes it easy to add new types of data too.
i tried mongodb and i cant even make a single query with it
nothing other than select * from table statement
which is just, yk, {}
really had a tough time with it
but also idk how to query it based on certain attributes
so thats why i jumped to relational dbs
ok, gonna merge those tables into one rn
Nah, mongo is wrong for this type of stuff.
then wdym about name/value pair type approach?
You could store a single table with: site, credential type, credential_value or something like that
oh, as a tuple u say
sure
thats what i was doing initially
but idk why, too much null values was kinda driving me crazy
i thought those null values are eating up the storage space
but then later after searching in web, i understood that it occupies 1 byte for every row that has a null value in it
so i still don't know whether its worth it to change it into a single table db
Either approach is valid, just giving you options. Just think through each use case and write a test case for it: ie: new credential for a new site. New credential for an existing site. Changed credential for an existing site. Delete credential from a site. Delete a site. Etc
@ancient dune I don't know what the context is, but if you have a moderation or private server concern, modmail really is the place to go.
I didn't initiate the first message, I was implying that a mod, in this case you wasn't enough to help him/her/them.
While obviously anyone can help 
Sorry for the confusion
okie! thanks for clarifying!
Np, ||gonna get me banned one day, oh well 3 years in||
@celest forum oh just wrote my own solution ```py
a = lambda x, y: "Not equal lenght" if len(x) != len(y) else len(list(filter(lambda z: x[z] == y[z], range(len(x)))))
print(a("GATTACA", "GACTATA"))
oh cool, thanks for helping
oh didnt know you can use lambda within lambda
It's not the lambda is used inside the filter function since the first argument of that function needs the be a function.
!d filter
filter(function, iterable)```
Construct an iterator from those elements of *iterable* for which *function* is true. *iterable* may be either a sequence, a container which supports iteration, or an iterator. If *function* is `None`, the identity function is assumed, that is, all elements of *iterable* that are false are removed.
Note that `filter(function, iterable)` is equivalent to the generator expression `(item for item in iterable if function(item))` if function is not `None` and `(item for item in iterable if item)` if function is `None`.
See [`itertools.filterfalse()`](https://docs.python.org/3/library/itertools.html#itertools.filterfalse) for the complementary function that returns elements of *iterable* for which *function* is false.
ohh
!d filter
filter(function, iterable)```
Construct an iterator from those elements of *iterable* for which *function* is true. *iterable* may be either a sequence, a container which supports iteration, or an iterator. If *function* is `None`, the identity function is assumed, that is, all elements of *iterable* that are false are removed.
Note that `filter(function, iterable)` is equivalent to the generator expression `(item for item in iterable if function(item))` if function is not `None` and `(item for item in iterable if item)` if function is `None`.
See [`itertools.filterfalse()`](https://docs.python.org/3/library/itertools.html#itertools.filterfalse) for the complementary function that returns elements of *iterable* for which *function* is false.
oh so inside the filter function, the lambda function went through each iterations and would return the results, though you used the filter function to collect the results and then you want to find the sum of the results but not using the sum function cuz it won`t work the way you would like it work i think so, but either way use list() cuz filter returns iterators. think i understood your code now.
I used len since I'm counting the amount of chars inside the list. I can't sum strings.
Oh I see thank u
I filter out any chars that don't match the current index.
@celest forum I could convert it into a normal function if you'd like.
Oh no need, I already have a normal function for it, thanks though
gl
ok my 3 hours of self-muting are up
i have a story to share
a story in two parts
part 1. make sure to look at the date.
part 2.
aboo: "have you heard this song"
rex:
anyway
that is all
but this was a few days ago
fin
why bring it up now
i was on mobile
then got speechless
then forgot

i c i c
😩
lmfao I forgot 💀
3d gravity sim
took way too long to render
body merging is a little bit clunky
it just measures if it passes the roche limit and positions itself in the middle
epic
"literally 1984" is a phrase that essentially has nom eaning
except for "i dont like this tihng"
nom
I'd say it essentially means the opposite of that, because it's almost always used ironically
literally 1984
you don't want people to say "literally 1984"? Literally 1984.
so true
you're agreeing with a mod? literally 1984
im just saying that its meaning has been diluted
you're a mod? literally 1984
always has been
moderating a discord server? literally 1984
i've never seen it in that usage
either that or i'm autistic and i dont get irony
i
probably both
lmao
only two options? literally 1974
there's a lot of ways that people can bring up 1984 genuinely, but the exact phrase "literally 1984" is almost always ironic
literally 1984
ya know - Orwell's dystopia isn't the one we got. We got Huxley's instead.
the world today is much closer to Brave New World than to 1984
real
literally...
literally BNW
bacific northwest
binety neighty wour
slow clap
isnt that the one where everyone uses drugs
yeah i see your point
yeah. Substitute drugs for mass media echo chambers, and that's pretty nearly the world today
fair
literally brave new world
wouldnt mass media echo chambers be more 1984 than bnw
lmao
ehhhhh
not really?
propaganda was more important of a plot point in 1984 than bnw
as far as i remember
this isnt propaganda tho
well, not government propagand
honestly, less of echo chambers and more just the dopamine you get from social media
pacifying the masses?
yeah, that's what I was thinking of
yeah
maybe "echo chambers" wasn't the right thing to bring up
me when i extend operations past their original scope and expect the same identities to still hold
line 2 to line 3, because (ab)^n=a^n b^n isn't true in general for negative a, b and a non integer power n
unless you have a separate definition for complex square root, they're the same thing
that's not a function
which is what the notation ^ typically represents
what if power is integer?
ah well dumb question actually
so a smarter one
why is it not?
Ok so I was looking around AoC sponsors and saw that Smarty has their own separate, mini, coding task.
Solving it gives you entry to getting some prizes or something, so I wanted to solve it as it seems simple...but lmao I can't even understand the task.
Can anyone decypther this?
I got the lats and longs from their API, but I don't get what do they mean by adding numbers to the left of the decimal point while not ignoring the signs
like all the ideas I had can't explain their requirements
I thought it's some sort of a sum but they say "to the left of" so it seems they means some sort of placement, but for that I have to ignore the sings.
anyway I just winged it, I assume they mean to sum all the numbers but the numbers will be without decimal
im guessing it means (+123.456) + (-56.78) -> (+123) + (-56) -> 123 - 56
A rectangle has a perimeter equal to 36 cm
We let two of the sides of the rectangle have the length x cm, and let A(x) cm^2 be the area of the rectangle.
a) If we can write A(x) = 18 x - x^2
Does A(x) mean the area of x?????
|| i jk||
plz help
i figured it out
Too real
Im literally an alpha
as in i am the first letter of the greek lexicon
English teacher said no racial slurs in class Because it's a new policy by the school board
Literally 1984
i ran out of cereal :( literally 1984
Has anyone by any chance used one of these ?
In the spirit of technical innovation and industrial leadership, Unitree is coming back !
With standard 4D Ultra-wide LIDAR and big model GPT empowerment, a new creature of embodied AI—Unitree Go2 joins you to explore the future world!
INNOVATION. REVOLUTION AND EVOLUTION.
For more product information, please refer to www.unitree.com/en/go2
Pric...
I'm wondering if it's possible to program it to do my laundry
And other useful stuff too
Like a makeshift romba
Would passing comments through an OCR before applying antispam filters be effective? I keep seeing spam comments on Youtube for example that are readable by humans but somehow google's antispam can't catch it
It'd require a lot of resources to use OCR on every comment if you have a lot of comments
besides, it wouldn't help with readability as a comment such as e.g. b4d w3rd <shady-link-here> that bypasses youtube's antispam filter would also be read as b4d w3rd <shady-link-here> by the OCR, so applying the filter afterwards yields the same result
OCR won't help in this case
Hm.
Saw some spam comments that used unicode characters for letters instead of normal ascii ones
That's why I thought maybe an OCR or something that can interpret that text would help
OCR is simply for extracting text from images, it can't help you filter the way you want it to
come to think of it, the exact rules VSCode uses for the tooltips are so weird sometimes. ```py
import typing
@typing.overload
def test(value: int) -> int:
"Lorem Ipsum Integer"
@typing.overload
def test(value: str) -> str:
"Lorem Ipsum String"
def test(): ...
test
aren't ti inspires the ones that can access the internet
Your body natually produces testosterone, so injecting it just makes u more natural
Dang
Ultimate flex
so true 🙏
I have a TI-84. It takes so long to write lines
sam sulek fanbase
new discord icons are ac fire
ah
☕️
still old for me
ig should refresh the page
but eh
They're probably staggering the rollout.
@mystic drift
You can customize the Windows Terminal theme, I've got Tokyo Night theme going on here
got myself alacritty
what does arch linux on windows 10 even mean
Yeah that works too
Though I like Windows Terminal more, it's got the profiles and whatnot
It's Arch running on WSL2
ooooh
Let's me switch between WSL2 and PowerShell or Command Prompt easily
here's me having all 3 open at once in tabs

I'm doing neovim on this one
Yeah that's what I do
and actually learning about it
tmux + neovim + wsl = best
I'm going to see if I can customize my own neovim
If not I'm yanking your configs too
Feel free to start off with mine and customize it from there
Starting from scratch is a pain
oh my god
classic
epic
is that arch on wsl
Try -Syu instead maybe
Yes its Arch btw
I should probably get some basic stuff going
oh my fucking god
maybe just clear out pacman cache
nah it was the db lock being weird
try deleting /var/cache/pacman/
removed it
ah works now?
neat
.... no it didn't work

lemme try refreshing my keys
@grave cove Yeah, I'll be sitting on this for a while.
Or I can just nuke the distro
And start from a clean slate

👎
Hate on washroom stalls??
how is this hate???
They removed the fun washroom surveys
Depends on the creed.
what
There was also another thing i saw, "screw nazis" with a big scythe and hammer.
And they removed that too
If a person's creed dictates they should be a nasty, malignant shit to people, then I'm not exactly on board with being tolerant of that.
Otherwise, a decent message.
Whyd they remove the "screw nazis" message and weight lifting surveys????
Whyd they remove those
Administration pulled a 1984
Can I have links?
which
Nevermind, then.
Which
Why is freecodecamp making music tutorials?
music production i'd argue is as technical as coding, so not really a wonder
it is??
oh yeah
you could say that again
ngl took me longer to learn to produce my own music than it took me to make things in code
maybe you're just not as good at it
For code you just gotta know what to do. Whether your code is nice or not is secondary. For music you need to know how to make it sound good.
can't you make the same arguments for both
that's the same argument and applies to both
anyone can code, just like anyone can make a beat.
making either product good is the thing that takes skill
usually for code there is an objectively "good" way to do certain things whereas music is more free in the sense that there aren't that many "good practices". besides, music is subjective, programming logic is not.
with that being said, learning how to use music programs like FL studio is not easy with the thousands of things it can do
Nah. For music to do one thing, there's one way it has to look like at the end.
For code, you can have many methods for which result can be the same.
What I mean: you don't only need to learn the language but also have music basics, even to re-create something. And if you want to make something new, it's even worse.
For programming, there's a lot of non-creative tasks, where you only write code. There's a lot of frameworks where you only change small things to customise it. Of course there's creative work as well, but after you're done thinking (or get someone else to help with thinking or think for you - like at some jobs), it's just writing functions.
For music to do one thing, there's one way it has to look like at the end.
Not true at all... The fact that there exist more than 1 note, 1 frequency (and therefore pitch) etc means there isn't just one way it has to look. You could have 2 tracks that are the exact same thing except that one has a higher pitch than the other. That makes it a different sound altogether. If you're talking about the process of creating said tracks then if anything having only "one way" to do it makes it easier than programming where - as you said - you can have multiple ways of achieving the same result.
For code, you can have many methods for which result can be the same.
Sure but you're comparing the technical aspects of programming with the creative factor in music. In music, you decide what result is "right". In programming that is often not the case as you expect a specific output or are tasked with producing a specific output. There may be several ways to achieve said result, but there is usually a best practice method of getting there. In other words, if what you said above is true then by your very own definition programming should be waaaay harder since there are so many ways to go about it.
Programming has design patterns, while music has progression. Popular and familiar sounds doesnt really have that many iterations tbh. 7 chords and notes on each 'popular' scale. That's all she wrote.
The general public "decides" what music is "right", in other words: popular.
I did say it took longer for me to learn music than code, but i think it's simply both are different kinds of hard.
I think that's the best way to sum it up. Both hard, but different kinds and incomparable in many ways.
Yea
I just see both are technical, and that part at least i feel like they share some common ground.
TLDR reading docs and reading sheet music are hard
which daemon
Their legal name is Mr. Daemon Mypy
Music video by Noah Kahan, Post Malone performing Dial Drunk (Lyric Video). © 2023 Mercury Records/Republic Records, a division of UMG Recordings, Inc.
love this
This is fine
It makes my flu ridden brain happy tho
A good run... I don't remember why I picked this map now. 
i can't see a thing
is it anyone's last day of school?
13
14
@reef geyser I have a new toy
what's the new toy
and what be this
Is that an arrow
A bolt?
for a crossbow?
Spot on
neat
I use a crossbow instead of a compound because I can't draw a compound due to a childhood rotator cuff injury
@rough sapphire #python-discussion message
did not expect that name 
Me neither until I had to mention it
sorry to hear that
though crossbows are more fun to me anyway
imagine the vertical line is where the cursor is:
you|
you
|
no new line does the first one
hehe, you

write-host -n you prints the same output as write-host you unless it's chained with other stdout output btw
-no you
It's one of this cmdlet's options
cmdlet when cmd walks in:
big brother cmd
Tbh the deer don't know any difference as to what is penetrating their vital organs...
why do you hate deer
I figured you would just practice archery on a target; didn't know you hunted game
now, for that, get yourself a .22 and call it a day
They're just so delicious
You wouldn't use a big sharp blade on an arrow for practice
tip, not blade
but fair
To be fair it's both. There's a chisel tip and three blades
The nicest part is having meat on hand whenever I want. I currently have about 120 lbs in my freezers.
Well the average deer yields about 25 lbs. Bigger ones can be 40-50 lbs. I got a buck that yielded 42 lbs.
Depends on region. Midwest where they have massive corn and bean fields everywhere the average is significantly higher than here
bro hates deer
Deer shouldnt be so tasty
FYI .22 is too smol for deers
Deer meat is called venison
But I don’t eat mammals
Chicken and fish only here
Red meat bad anyway @tardy rain
Number 1 cause of colon cancer
@snow imp #python-discussion message
Nietzsche influenced everyone who knows the quote "God is dead"
Or any of his many quotes
Maybe watch https://www.youtube.com/watch?v=T8CHA7P2Gn4
SKILLSHARE ➤ https://skl.sh/talefoundry07237
Click the link to take the Creating Unique and Powerful Worlds class for FREE! The first 1,000 people to use the link will get a free 1 month trial of Skillshare!
—
For how much reverence humanity has for the divine, it's interesting how much of your fiction is about killing them.
▬▬▬▬ Tale Found...
I mean, it's mainly talking about gods in fantasy settings, but one point applies in real life: Belief diminishes
No
No
I'm on the floor
No thanks
Why are you making bold claims on social media
Publish a paper and see how peers review it
start with reading atomic habits
by james clear
did you read all of those ?
yea kinda
honestly i kept failing at changing my habitssss and sticking to my religion
first of all are you a girl or a boy
?
noo like for religious reasons
well i don't think that this is happening 😅
It is islam , like in my religion , a private texting with opposite sex is not allowed
it ia called : "kholwa"
owww btww
This place isn't really private
since you are interested in self-improvement , islam is the perfect religion that insits on self-improvemnt , google it
Discord can see every message you send, DMS aren't private either
yea exactly , like it is okeyyy since a loot of people can read those messeges
good pov 😂
You and me and big brother
Literally 1984
this makes it even worse 😂
Algeria 🇩🇿
So by the end you will be able to engineer computers?
I mean, I try to get better in general, but I don't really do anything specific
😂
Just be better man
If youre not good enough just stop being not good enough and be better instead
Personally not that bad, but I know some people in my class do struggle a bit
I don't feel qualified to comment on if that's a good path (people in #career-advice would have a better idea)
Imo now we are getting a bit too personal
No
Lmao
sorry for interrupting
it was mine
where can i find people who are interessted in pygamme ?
my school ends on the 8th and starts again on the 8th which is pretty neat imo
pygame*
ok
ow just found it
i know some self-dev youtubers
but idk if you are interested or not
it ended yesterday?
for winter break, I presume?
yep x)
truly top tier advice
aboo deserves all the credit for that not mariosis
did you know? aboo actually also deserves every single good thing in the world
objection
why
its from this
i never actually played this game but my old roommate was super into it
morning gang,
starting day 2 of 100daysofpython 
my favourite video game is To the Moon :) (that's a lie but I want to avoid controversial discussion of politics)
Hello
hello!
I was just checking Discord settings
And noticed something new
"Family Center"
Opinions on parental controls?
(In general)
Like apps and stuff
my opinion is they are bad
but this is also imo a controversial political topic
let's just say if my parents got everything they wanted I wouldn't be able to pursue my interest in programming, especially not to the extent I have
especially in cybersecurity too which I guess is hard for adults to understand is ethical
Fr
Once I saw an AD for one parental controls app where you can also listen to child's conversations, like at school
Or outside while hanging out
That's actually creepy tbh
Don't forget the creepy part!
Oh also
You (as a parent) can do that without your child knowing it
Which I find pretty creepy, even for parents
I have low standards for parents 🥴 but yeah that is not a cool thing to be doing
Agreed
Imagine this
Parents: mhm, mhm... Interesting! He/she's is talking about (something)!
I don’t think they’re bad, per se. decent concept, but it boils down a lot to how the parent uses them.
and the age of the child, and the extent of the control
I never said they're bad ¯_(ツ)_/¯
nor did I imply you did :p
I just find it creepy when parents use it in a creepy way
:p
right to privacy and all that, yeah
i am a political extremist
but you probably also don’t want to give an 8 year old unrestricted access to the internet
i disagree wholeheartedly
how else would i learn about [removed to comply with rule 1] and [removed to comply with rule 1]
sorry, my views are just shaped by the fact that my parents are liberal parents from China
If you are worried that your child would find something dangerous for their age, you could simply change dns settings or something
I bet there's an app for that
or just, idk, watch your kids?
blocking certain sites? isn’t that a form of parental control?
again, no one said that parental controls are bad and no one is denying that
Better
you can’t monitor them 24/7, really.
True
my parents both work, yet they would yell at my every time i opened Command Prompt or even my own C# console app in my computer, because they thought i will cause computer crash or criminal activity
yet they had no problem with me using Parenting.SE (which is where i learned about [removed to comply with rule 1] and [removed to comply with rule 1]) and AO3 and Fanfiction.net and Discord
i don't think parents are good at judging this
that’s a big generalization 👀
i mean i don't think we can RELY on them to do it
they almost majorly fucked my career path
Oh no
Reminds me of my parents
They are doing the same thing
I literally change the directory in my terminal and then stuff happens
that kind of power should come with a warning
i think we've talked lots about your parents in this server /neu
I think, as opposed to parental controls when your child is in their teens, there’s merit to introducing them to what responsible use of the internet would be, what not to do, and all that.
i mean i've managed to get myself into child labour situation twice and doxxed 3 times just the past 2 years
even though i took all e-safety advice and whatnot
(i got doxxed by having my school email in my git commits, by saying "i go to a private school" and posting a picture of a textbook showing my province, and by not having any username in my git commits such that it defaulted to the username@hostname from Ubuntu)
Oh
Skill issue
Uhh
Back to yolo gen z stuff! 😁
those are words I remember from grade 5
Yeah
ugh so nice when I didn't have finals
Nice
no i have finals now
Oh
relatable
♪ It's the final countdown! ♪
when were/are yours?
I had one on Tuesday and another one next Monday
i had my calc final today
i went home immediately did the first question and realized i got it wrong
i have bad mental health now
classic
fucking riemann sums
i have a big digital mapping test monday
i had (9 * 2) / 3 and i pulled 18 out my ass
💀
not tomorrow
check out this fire beat yo
https://www.youtube.com/watch?v=k8ISud1kHzw
(loud - not made by me)
PRODUCED IN 2012 IN MY PLAYSTATION 2 PRODUCED BY MYSELF MARVOK MARGINAL DEL VOKAL SEARCH GOOGLE marvok345 LE LÉGITIME THE UNDERGROUND FROM THE UNDERGROUND IS HERE MARVOK345
MUSIC AND LYRICS IN MULTIPLE LANGUAGES www.youtube.com/marvok345
it was the definite integral of x^2 - x - 1 from x = -1 to x = 2
instead of 9 i wrote 18 and got 15/2 instead of -3/2
i think they will only dock a few marks but still i am big sad
i will probably get D in math
the only thing keeping me going is how awesome i think it is that i'm not only a university student but an ENGINEERING student, a year ago i had no idea this could ever happen
it's very very easy to be overprotective and have too strict parental controls, but I think a kid who uses the internet through parental controls regardless of strictness will be better off than a kid who has unrestricted access to the internet
I also think that the best option would be to not give children access to the internet period
the internet isn't safe for kids anymore
why do you think this
even with parental controls, stuff that a child shouldn't see can still slip in
unless you monitor them 24/7
or you teach your child proper internet common sense
I've been fairly active in online discussions space since... around 12, and using the internet for far longer
i feel like kids should also be given the reason why those are bad
parental control feels like a tool for parents who are unfortunately not well-versed in the internet world
I haven't put myself in any bad situations
like a shortcut
/shrug I guess it depends heavily on the parents then
... why didn't it go through
¯_(ツ)_/¯
there
My parents never really taught me the internet common sense, it was mostly figured out by myself
But if a parent is going to get involved, I personally would rather they do that than control it
Obviously you can restrict adult sites and whatnot, in case they (specifically very young kids, teens I won't get into) accidentally stumble across them
Yea that u'd probably just block
same with me. i guess it could be due to personality that I never got into much trouble, or went to nsfw-related content. the only things my parents strictly blocked were coding related
I've also had the same experience (as in, figuring things out by myself) and I think it's affected me negatively in many ways
#ot1-perplexing-regexing message makes sense though. it's a valid alternative. sadly many parents don't do that, and it might be because #ot1-perplexing-regexing message
Idk like
Is it fair to say, if you build a good relationship with your kids and just guide them along the way, the internet won't latch onto them that easily
I have always been fairly mature and responsible according to the folks around me, so yeah, it might be partly that. I was lucky enough that my parents never really blocked anything coding related (or at all). Probably because they work in software.
Coding related?
Like stackoverflow?
my parents do too :P and apparently they consider coding sites to be on the same level as addictive games or p*rn - "dont use it too much"
lmfao
github, stackoverflow, realpython, hacknews
tough times back then
That cant be right
gods I cannot imagine going without github access nowadays
i regularly read code on my phone
Thank you internet
No thank you internet
so I would search up proxy servers and spam-try them one by one, mostly works out, one time i had to do that to make a quick hotfix to a project on gh
Im of the opinion that the older generation are far less equipped for internet as well, mentally
Istg i wanna ban whatsapp from phones of select >50 yos
yeah same for me
ugh
they were really weird about it too
they made me use different programming languages because they thought it wasn't appropriate for my age 🤪 literally made me switch from C# to JS and then back
i've been question banned from SO for YEARS at this point and i'm barely old enough to legally make an account
one time they woke me up and yelled at me at 12am because i had Roblox Studio open and they thought i was playing a game (i was like 8-ish i think)
wtf
i don't think anything you would classify as "nsfw-related content" caused me any harm (especially compared to what i was getting exposed to through my classmates in school)
it was mostly more "heavy topics" vs anything sexual, and no images, think DDLC (which was really popular in my grade 5 class) but it was in reality even worse topics on Parenting Stack Exchange
Parenting Stack Exchange
huh
Hot Network Questions has been taking away my attention span since I was 6, lol
same here! except I had a terminal open with IRC on 
i was on so many random SE sites i lost count
one time it was the command prompt
they called it "small black window" in Chinese, 小黑窗口
XD
what I think is wild in this is that my dad was literally a software startup founder back in the 1990s in China
its a site that's gonna fail in 3 business days
its gonna be filled with know it alls, people selling snake oils
what
oh yeah i also learned a lot about my disorder from that Stack Exchange site YEARS before i got diagnosed
i think some part of me knew but i don't remember
even from smashing my keyboard and typing in the acronym by accident... google showing the wikipedia card and me clicking because i was curious
wait you get a disorder from a stack exchange site
grammatically, that could easily be interpreted as
oh yeah i also learned a lot about my (disorder from that Stack Exchange site) YEARS before i got diagnosed
i saw "Stack Exchange", "disorder", and "from that" and my primitive brain goes "this guy got a disorder from stack exchange"
i was just talking about how i learned about various things that are against rule 1 to talk about from that site so i assumed the "learned (something) from that site" construction was familiar by this point
this is how misinformation spread
anyways, i learned a lot from that site about my disorder when i was single digit age
the first time i remember consciously suspecting that i had it was last year
when i was single digit age i don't think i have a consciousness
lmao
impressive of you, like honest
so like i think it was a net positive for me to be exposed to heavy topics on that site because i understood better than my parents do even now
tl;dr:
yeah, that’s what I’m for
same lol
i support restricting adult sites as in sexual content
I don’t get into much trouble, so they do trust me a decent bit
my school tried to teach me e-safety, it didn't work very well because i already knew all of it but got myself into worse shit
but i don't regret it
no but i really like stories that use stuff like news and EAS for realism
reading this plot summary just reminds me of how my old phone plan couldn't get emergency alerts
yeah the movie was pretty alarming
on many occasions my parents would come home and tell me about some emergency alert they got while out shopping that i was completely oblivious to
what
yeah
i kinda want to read the book now
ah i see the company is called Higher Ground Productions
why did you call it "the obamas" such that i couldn't find it
what does this mean
just you know, playing on the paranoia of an attack on the US
i mean that's pretty awesome imo
which one
have you played Half-Life?
it's about an attack on the US
oh
oooh
i heard it's very controversial in asia
because it depicted japanese military doing something good
yeah
imo there's no point to stir controversy over these things
just like the film series wandering earth shows chinese people doing good things (no shit? it's a chinese film) and got rated badly for this by the NYT
i liked the movie though, godzilla felt very menacing
i haven't watched it, but the trailer is ridiculous
i came into it blind, didn't see the trailer
also didn't kno it would be in japanese with english subtitles
my mom did not like that part lol
she fell asleep
thats a plus for me
lol my parents dislike subbing on movies in a language they don’t know as well
yeah my mom was like i cannot read this for 2 hours
heh, mine say the same thing
yea watch corpse party with them (don't)
and then she took a nap and was snoring like halfway
lol
she liked creed 3
creed 3 was a banger
i heard they're making a creed 4
my parents actually are the opposite, because English is not their first language they actually prefer subs (no matter whether it's dubbed)
and as weebs they prefer undubbed
i hate dubs
it can die
so true bestie
also godzilla is portrayed differently in the west and east huh
in the west, he balances things out, here in the trailer feels like he's out for blood
is godzilla a he
i have no idea tbh
I prefer subtitles on everything, regardless of whether I know the language or not
same
Yes it helps with the not being able to hear for the loud ringing
also helps when I’m watching Hindi movies, since there are words im unfamiliar with
yo my hindi sucks
are you Indian? 👀
yeah, my parents are from kolkata
You wouldn't believe how bad my Hindi is
I speak Urdu, which is nearly the same
I see, mine are from Hyderabad
my whole family is from kolkata
neat
hah, I’m going to India in a few days to visit family, I expect my extended family are going to start hounding me for stuff after high school and college 😔
oh my grandparents are already asking me what my plans are
ugh
like dude let me pass college first
and get a job
please
hah
my mom is like dw we'll find you a nice indian girl
he doesn't know
lol in school, my class ended up discussing »when will you start panicking that you're not married?« and everyone seems to have an idea while i'm just sitting here like »i don't know... maybe never? maybe X age? i have no fucking idea«
it amazes me how well high schoolers have some idea of what they want their life to look like
lol I have friends with everything completely planned out
one of my friends wanted to get married straight out of high school >.>
I'm about 3/4 through my personal life expectancy anyway
I don't think I need worry about the whole "life planning" thing
I just keep stepping forward as best I can
gods i can't imagine. i'm a senior and any of the people i know getting married just sounds absurd.
I know a dude who had a kid at 19 💀
Actually she's a woman now
My bad
We don't actually get to catch up that much
I am pretty excited for college and stuff, more independence would be based
Life is all downhill from high school
Unless you get supremely lucky
Hope for the best but expect the worst
I don’t think that’s necessarily the case, at least
Don't get blindsided
There are certain things I think will be very good for me to be away from, but at the same time I feel like I will screw up in so many ways
and gods it's scary to think that i have only three-quarters of a year until then, if all goes well
tech
oh right, thanks for reminding me, i need to submit my scholarship application to tech
👀 good luck
What app is that
Bear @last mantle
The cat speaks
he is not speaking tho
that odd music playing
is scary
I wont be able to sleep tonight @lament cairn
IM SO SCARED
wtf is happening here
i need a goth girl that can travel through televisions
🥲
YouTube has decided to demonitize me due to "Reused content"
Please consider supporting my channel, every dollar helps: paypal.me/megamoto85 |70's Groove| Interstate 76 Soundtrack INCL Nitro Pack Soundtrack
Note: While it seems there are some songs played twice, some tracks are extended or has a different edits.
Influenced by list:
00:00 Th...
I was playing around with a gravity sim i made, and it logged the largest mass in the simulation was 2.6624572790521014e+42 kgs , thats pretty big. it seemed like i made an error somewhere, as this mass is way larger than any star, it was probably a black hole, but bodies were orbiting this perfectly fine within a fairly small range (units are meters). I'm using Newtonian physics for this sim, its interesting how this happens.
Here are a couple renderings of this, i set a fixed limit to all bodies above a certain mass, so they might seem the same, but the largest one is unmoving, centered.
and the Schwarzschild radius for such a mass is huge, my sim just assumes all objects to be 3.5 gm/cm^3 in density
hmmm, the cbrt approximation has an error of 1.6547584e+22 for this very large value
it doesnt help that camera rotates
and in first scales change every frame
what is this
oh
i've read the wikipedia article for that film
it sounds good
thats why i posted a second one
the depth perception even with depthshade on is not very good, so rotating fixes the problemo
and why is this happening anyway
this thing should easily engulf the rest of the bodies
it still moves..?
@thick osprey explain yourself
please
What happened to your keys?
Wouldn't you like to know? :3c

Pretty sure I copy/pasta'ed an ssh key into chat. Can't remember exactly.
Looks like it
quite amusing
That's me.. just pasting my keys in all the public chats.
How does a YubiKey let you do that?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
very secure, much wow
-----BEGIN PGP SIGNATURE-----
iHUEARYIAB0WIQRgAytLCaGVAHtpIEfNPYLJzBK69gUCZXZaIwAKCRDNPYLJzBK6
9i+5AP9oGpp3cVGTGDfky5x8YxhllaAOolmAvs/Pbl/gTfgdcwEAvwjsqamSWBej
Nm4Bci7N6MRmCVkfqU/N04Y+lhwhKQk=
=2od8
-----END PGP SIGNATURE-----
oh yeah i got a new private key
now i can use like 3950 less bits in my private key
YubiKey just acts as a keyboard and enters in the rotating key when you tap it.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Dude that's way too big for a shitpost
-----BEGIN PGP SIGNATURE-----
iHUEARYKAB0WIQR7j7j5cqdrOFHL3sOTWUx7ZpfvlAUCZXZaqwAKCRCTWUx7Zpfv
lIhxAP9wBSeL46SPuUEG7woMCcpZEJN638UNufu3i29A+pZP7gD/V/7OUX7+U2RJ
g9arbTvnI9dPgZ7raQuqtK5+jPIRgg8=
=pNcU
-----END PGP SIGNATURE-----
send me your key signature
It's... it's right there
err i meant public key
also that's different from the key signature



