#ot1-perplexing-regexing
1 messages Ā· Page 41 of 1
hello all
ya it's best to just keep looking and interviewing until you have an offer
is the weekend 
got any big plans @grave cove ?
going to try and visit the dog park if weather permits
maybe tour some more boarding places
how long are you going to be away?
four days
i've never been away from my dog that long so i'm a little nervous about how he will react
hello your dog tax is due
ah, gotcha
i know people sometimes leave their pets at home and have neighbors/hired help take care of them twice a day
^ this is him at the dog park recently, all tired out
what a very good boi
yeah he's the best!
thanks
deserves all the treats and pets in the world š„ŗ
@acoustic mosshow's your camel?
hes doing well
camel tax?
goofy ahh camel
whoa there
lol i dont think i have any more pics of that dog
you said it was just a random street dog?
ye
lmao
why did you make a random street camel your icon?
i successfully gaslit muffin into thinking its a camel for at least like 30 seconds
professional connoisseur
because he looks confused
which is, like the kids say, "mood af"

his front looks like hsp and back looks like a dog
bruh I thought it was a lion
literally me
The mood is now, old man!
no hat
hatless
Much change... such wow
What's Changed
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #36
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #37
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #38
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #39
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #40
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #41
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #42
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #43
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #44
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #45
[pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #46
Drop support for 3.7, update project files by @Preocts in #47
#python-discussion message @limpid glade did you sync your data with icloud?
if not, i'm pretty sure it'll be really hard to get the data out, assuming more than just the screen broke
Yeah....
I've been debating with myself -- I feel like I should remove them entirely, ony list the most recent one, or just list all of the numbers on a single line
I giggle about it. I'm being lazy and just clicking "auto-generate changelog" so I don't really mind.
I might turn the update rate down to monthly on any repo that I'm not actively working on.
me too
what's everybody codin tonight?
I think I'm going to set everything to monthly
im rewriting my android dex parser/writer in python and i'm implementing a protocol in golang as my first go project
not coding atm. reading instead
sounds interesting
very interesting tbh
Nothing. It's a story writing night.
((I've totally slacked off and updated some repos instead))
nice what kinda story @thick osprey ?
i would say what the title is but im pretty sure the regulars know + it would be like the 25th time by now lol
Fantasy adventure.
nice
Doesn't give much detail, I know. :P
lolol
that sounds cool
I don't have a synopsis written yet.
Protagonist gets swept up into wild events while antagonist attemps to control a city. You won't believe what happens next!
Not in the slightest. Closest to high fantasy.
A little sword, a hint of magic. All good stuff.
high fantasy always a good time
well you were writing, just a different kind of story š
At least I've learned how to replace datetime.datetime.utcnow() easily now.
https://github.com/Preocts/pd-utils/pull/71
Looks like you've found the issue with utcnow too :P
I did a lot of head scratching a while ago before coming to the same conclusion haha
this looks like one of those things everyone learns the hard way lol
Timezones are something I tried to avoid. After looking at this again with fresh eyes I see where/why I was causing myself issues.
Both versions produce the results I want. The new version should be friendily for future development though.
Definetely! I had some really hard to track down errors because I was sending these utcnows into the database
good thing is, you'll never make that mistake again
But okay... I think I need to focus on those six hours of editing and writing I was going to do. GitHub calling me on my "I just made a few edits" excuse.
Along the same vein - I also learned that ScalarResult iterator type from SQLAlchemy is exhaustible... haha
I have still not convinced myself to use SQLAlchemy
What is it you're using now, Peewee? Or was that Infinimata?
That's Infinimata I believe. I just use pymysql or mypysql... I forget which flavor.
you guys tried https://github.com/encode/orm yet? :P
Nope. I just write sql.
Understandable
Not really but.. understandable
I think you could give SQLA a try, if nothing but for the shits and giggles
To be fair this is the most complicated SQL I've written so far is:
https://github.com/Preocts/walk-watcher/blob/ff4c28e854d8b085d11352231fe523703977fe77/src/walk_watcher/watcherstore.py#L329-L344
If it works, it works 
I just really like the type safety and auto-complete goodness I get
That's fair. I work in closed enough environments that I can take assumptions with input safely enough.
sql is english I can't understand
I am exhaustible š
aren't we all 
does anyone know the name of this theme
i decided to recreate it myself
just for the sake of helping myself find it
it was a theme for an SSG
you know. that emoji reminds me of someone



stickie
does the name have an "i"
.topic
Suggest more topics here!
Commander in chief
cool
Mark greaney
sound nice
.topic
Suggest more topics here!
everyone in pydis that gave me 5 dollars
which totals to about zero
so uh, you guys hungry?
some of us might be persuaded to give you 5 dollars, int
but there is a processing fee, which is uh 10 dollars
Isaac Asimov
trump
Oh yeah, utcnow is a cursed piece of datetime
I wonder why it's not deprecated
Not the uk showing cricket nonsense when Wimbledon is ongoing in the capital
well not many interesting matches rn
whoa
its gonna be as of 3.12 š
It is marked as such in the current builds of 3.12. That's what drew my attention to it.
truth
banned
Blyan Bleynolds
The whole of india revolts
!d datetime.datetime.utcnow
classmethod datetime.utcnow()```
Return the current UTC date and time, with [`tzinfo`](https://docs.python.org/3/library/datetime.html#datetime.datetime.tzinfo "datetime.datetime.tzinfo") `None`.
This is like [`now()`](https://docs.python.org/3/library/datetime.html#datetime.datetime.now "datetime.datetime.now"), but returns the current UTC date and time, as a naive [`datetime`](https://docs.python.org/3/library/datetime.html#datetime.datetime "datetime.datetime") object. An aware current UTC datetime can be obtained by calling `datetime.now(timezone.utc)`. See also [`now()`](https://docs.python.org/3/library/datetime.html#datetime.datetime.now "datetime.datetime.now").
Warning
Because naive `datetime` objects are treated by many `datetime` methods as local times, it is preferred to use aware datetimes to represent times in UTC. As such, the recommended way to create an object representing the current time in UTC is by calling `datetime.now(timezone.utc)`.
I wouldn't say it doesn't have "full access" to the API - they just have access to different things
Users can't do certain things bots can, bots can't do certain things users can
I'm also not sure what you're advocating for - to re-introduce selfbot functionality?
i don't know what you're going for here
but
this may be in rule 5 zone
self-botting is against the TOS
U still can selfbot
#python-discussion message @halcyon knoll deleting and clearning the recycle bin doesn't physically erase the data from disk, but it makes it a little difficult to recover it
if you really wanted to truly destroy a file from your drive, you could try using a file shredder utility
there's no reason to do so, unless there are people equipped with data recovery tools trying to look through your stuff
can't i do that with python without downloading a file shredder?
I don't think so- shredding files properly requires low level/raw disk access afaik
well is there a way so even people quiped won't be able to trace it back
... with a file shredder?
here's one I use for the very, very, very rare cases I have to actually destroy a file: https://www.fileshredder.org/
File Shredder is FREE and powerfull aplication to shred and permanently remove unwanted files from your computer beyond recovery
so if i use a file shredder no one could trace my deleted stuff?
beyond recovery wow
here's the thing: unless you work for the government and have some really top secret stuff, or you're legally required to, you won't need a file shredder. deleting files normally is fine
but if you delet files normally someone could bring them back
i tried a tool called "disk drill" and it brought more than 1 m files
so from what you're saying if i use a file shredder there is no chance to bring the files back? even the best hackers
if you're that concerned, grab an axe/hammer and smash your hard drive/ssd/whatever
that'll 100% obliterate whatever info you're trying to hide
i have top secret files
but again: deleting files normally is fine. and if your pc is hacked, deleting files doesn't sound like a good move
btw i was doing some reasearches
using the same excuse from that guy from The Who i see
and this what chatgpt said
Aye, mate! Bitter truth it is. When you use commands like rmdir /s in the command prompt, it directly removes the folders and files from your system without sending them to the Recycle Bin.
wherever/whoever you got such files from, you should ask them how to dispose of them for confidentiality or whatever. I'm not a laywer, btw.
so the command "rmdir /s somefolder" is doing the same as file shredding?
someone already hacked me
i found a program that got installed on my pc
2 days ago
and you believe just deleting the program will undo any changes it already made to your system? 
best place is asking programmers
not really
š
being a programmer doesn't make you an expert in system administration
it does
are you trolling?
yeah i think this is a troll
i'm an expert
you have to be trolling because holy shit
trolling about what
if you love programming you're a geek therefor you know most geek things
system adminsitration is one of them
not necessarily š„“
you proved my point thooo
are you telling me if something in your windows stops working you won't be able to solve it?
ā
my dad's a sysadmin, he can barely program - the reverse is also true, I can program, yet Iāve done little to no system administration.
this is basically like when your relative/friend/stranger hears you are a programmer and say you have to fix their computer
I think I know both, but as a consequence I'm very bad at either
and what you're asking is cybersecurity related
not really sysadmin?
you showed me how to delet files with system shredding without being a pro in the field
I also had a strong feeling the whole concept of a file shredder is just marketing bullshit
you have'nt tried?
and that's not true?
it's not bullshit but i kind of don't want to help someone that's super vague about what they want to delete because it sounds suspicious and weird
i fixed so many computers
when people are vague about what they want to do it's often nefarious
wow that's so rude
nah, all the more to my point - I have no experience with it
you really think i would ask this in public chat if it was nefarious?
but if your pc gets broken i'm sure you gonna fix it
sure
the moderators sure do, because it happens a lot
funny mention: #python-discussion message
ok so being a programmer make you skilled in most geeky computer things
thatās not āone geek thing implies knowing most other geek thingsā
ācomputer thingsā is a lot of stuff, so no, not inherently
why would he assume such thing it's rude bro
but you said you can fix anything related to your computer
it's a skill
solving problems is a skill
hi PII fountain
The loveable PokƩmon
I can probably figure out smaller issues, is what I was getting at. anything is a stretch.
sure, I didn't imply otherwise.
it's just that, things like being a sysadmin, and the plethora of other fields and such that fall under "computers" isn't inherent knowledge that comes from being able to program
give me an example of a stretch
I probably couldn't fix many networking issues
considering I've got like, no networking knowledge
so you basically choosed the hardest field and even then i think you could solve many networking issues
I also wouldn't be able to build a computer without any sort of guidance
cap
if i give you all the tools of a computer you can build one from scratch with an example ofc
i built my own pc
I would not be able to.
I really doubt that
right, I wouldn't be able to
feline
No, I doubt one could build a computer without any guidance whatsoever
Yeah that would be considered "with guidance"
I mean, I'm guessing they're referring to building a pc from a bunch of parts
and they're identical
Does anyone have pixel 7 here?
not like, soldering together your motherboard manually and everything
yes that's what i mean
and even then, I wouldn't be able to
I mean, that's doable but 
š§¢
but what
Same way if I gave you all the parts necessary to build a nuclear reactor, and told you to build a fully functioning one without any guidance
i don't know if you are just being humble or if you genuinly think you won't be able to
that's a blown up example - if you have experience, building a pc should be easy enough.
if the point is "no experience", that would be me.
I mean okay, but like either way I don't think this discussion is necessarily conducive to the greater point
I'll do it if you pay me and I can be far far away when you turn it on
it's so easy to do system administration
that's why i need to ask other people to do it for me
0.0
bruh
i already knew the answer
rmdir /s somefolder
but PyFeline gave me the file shredder idea which basically destroyed your whole point
you said programmers can only type in prompt nothing else
deleting a fle does not erase the file's data on the device
ow my god damn arm
which is not true
wh what when
i mean that was his entire argument
if you're a programmer you can't do any sort system management
programmers are notoriously slapdash in their systems management
Aboo's point was probably more that just because you can program doesn't mean you know everything else CS-related
i was talking about mufflin
either one works
Cucumbersaladandmayo
donkin donuts is very wise
It seems to me that's Muffin's argument as well, correct me if I'm wrong
Let's try to keep it appropriate please
Wtf
@grave cove
I was gonna say cucumber and tomatoes with Mayo sounds good
tfw the obvious troll has been obviously trolling for 30 minutes
Is that necessarily wrong, though?
Who? @young shoal
I'm bored, sue me
@robust zephyr
no they're talking about muffin
how do you know
Muffin wouldnāt troll
it is
I don't think Muffin is a troll lol
Iāve known him for a long time
i'm an expert
Is you argument that all programmers are experts at system administration?
Thatās what a troll would say @grave cove
I'm aware
prove it
Also damn that username is hideous @halcyon knoll
no not all but only me
i'm an expert
i code in brain f
Muffin has been here since may
excuse my language
And you just arrived a few days ago
i have been here since day 1
Good for you then
No? You havenāt?
prove it
It says June 2023
you're jealous i'm better than you in system administration
your discord is wrong
Your ass is wrong
show me screenshot
If that's what you want to think, then sure
urgh fuck this im gonna go to sleep
#ot1-perplexing-regexing the artsy fartsy spider went up the waterspout...
Who?
not only you tho but everyone is jealous of me
Omg
quit trolling if you don't want a mute
Mmm
We should talk about other stuff
Anyone have anything exciting going on?
not really
Nice try. There was no discord in 2000
someone else breaking the rules doesn't give you permission to break the rules.
i destroyed your argument happy?
I'm going to be moving away for college in less than a month š
No cuz thatās fake @halcyon knoll
wanna be roomies? 
respect yourself don't swear in an education server
my god
i'm the only gentlemen
I remember you explicitly said you did not want to room with a bunch of 18 year old teenagers
:/
no wonder you don't know system administration @civic pasture
You know what, fair.
I will, in fact, be exactly that soon
So you guy are gonna let this guy troll?
Can you please relax?
The personal attacks are not remotely necessary.
If you have an incident to report, you're free to dm @polar knoll.
that wasn't an attack but a fact backed by professionals
do you know system administration?
you both got warnings, because you both broke the CoC.
Well tell him to stop trolling then
no i didn't break anything
I did.
Don't drag me into the middle of your squabble please.
Please respect each other.
He is still trolling here
it's okay i'm used to people being jealous of me
@civic pasture just ignore them
people feel safe around me
Let's talk about something else
wow robin you turned against me?
And I broke the CoC
after all the years of friendship?
!mute 1107513353317916674 1d trolling
:incoming_envelope: :ok_hand: applied timeout to @halcyon knoll until <t:1689043392:f> (1 day).
Thank goodness
howdy moyen
yes. Two people in a conversation can both behave badly.
trying to think of interesting things to make during this month of Nothing
I am going very well, yourself?
Did you do anything special?
Good afternoon Moyen
just went to sleep at a reasonable time
I've been wanting to try all the stuff people say will make you sleep better
I'm trying to learn k8s and docker and Flask and Django and SQLA and...
...
...
and C++ and Ruby and...
...
...
C but I can't really...
...
...
And Azure/AWS would be cool if I...
...
...
Networking and systems administration...
...
my back hurts
already? you're getting old
From carrying this conversation?
me irl.
Hahahaha
ikr. I feel my bones creaking
add Rust in there
Dude I have absolutely no time.
Wait
You forgot.... š
I forgot scroll?
My posture is actually incredibly fucked. I've been at my computer for 10 hours a day for the past month or so since school was out
My eyes are also fucked
you should add Go in there
REM do you use iPhone or Android
We need to touch grass.
touch grass fr
Honestly
I communicate with smoke signals.
Hahahahaha
What about IP over Avian?
Good old smoke signals
You've already upgraded to smoke signals?
Iām returning my old iPhone 11 Pro Max to get a free Pixel 7
import smoke
smoke.signal("hello")
Does anyone use Pixel phones here?
smh not even in rust
too verbose
ā ļø
got a 4a
but it's not blazingly fast
my phone has lots of pixels
Do you know what my favorite new animal is? @jaunty wraith
Pixel phone users when Voxel phone users walk in

Nice @young shoal
you don't know if smoke is a Rust extension module š
banned
python interpreter too big overhead
run in embedded system no std
This is my fav animal @jaunty wraith
what that
Cmon, I have no idea how to pass arguments to an audit hook
does it gulp
is his name mickey?
skill issue
Watch the gif
Teach me cat senpai š


!d sys.addaudithook
sys.addaudithook(hook)```
Append the callable *hook* to the list of active auditing hooks for the current (sub)interpreter.
When an auditing event is raised through the [`sys.audit()`](https://docs.python.org/3/library/sys.html#sys.audit "sys.audit") function, each hook will be called in the order it was added with the event name and the tuple of arguments. Native hooks added by [`PySys_AddAuditHook()`](https://docs.python.org/3/c-api/sys.html#c.PySys_AddAuditHook "PySys_AddAuditHook") are called first, followed by hooks added in the current (sub)interpreter. Hooks can then log the event, raise an exception to abort the operation, or terminate the process entirely.
https://youtu.be/iT_EMKl2A3Y you can see it here @jaunty wraith
Big gulp! The Nautilus team spotted a gulper eel (Eurypharynx pelecanoides) doing just that in PapahÄnaumokuÄkea Marine National Monument. Its pouch-like mouth can inflate in an instant, scooping up much larger prey just like a pelican--and giving it that muppet-like look! This gulper eel was likely a juvenile, as this species can grow up to thr...
it's a callable, use a partial
as long as it cant eat a human it's fine
I have no idea what that means.
!d functools.partial
functools.partial(func, /, *args, **keywords)```
Return a new [partial object](https://docs.python.org/3/library/functools.html#partial-objects) which when called will behave like *func* called with the positional arguments *args* and keyword arguments *keywords*. If more arguments are supplied to the call, they are appended to *args*. If additional keyword arguments are supplied, they extend and override *keywords*. Roughly equivalent to:
```py
def partial(func, /, *args, **keywords):
def newfunc(*fargs, **fkeywords):
newkeywords = {**keywords, **fkeywords}
return func(*args, *fargs, **newkeywords)
newfunc.func = func
newfunc.args = args
newfunc.keywords = keywords
return newfunc
heh fargs
a function with some/all args kwargs already passed in
haha farts
ask aboo
aboo went to sleep
Isnāt it cute @thick ore
When he puffs his mouth
They are very rare to find because they live in deep deep ocean
I spent all of today writing up a lot of crap
Would make good blarg material methinks
I agree.
can it bite
I'm going to finish blarg before aboo finishes blarg
No their teeth are not sharp @thick ore
I mean I have working blarg
big gulƧp
It just doesn't do a whole lot.
is it venomous
Nope
just wondering if i can pet it
You can @thick ore
Am at impasse because I wanted to dockerize the deployment of the flask application, but... database. struggle.
yay
š
Iām sending one gulper eel to Rem
i want one
you copy paste compose configs?
No I'm saying I need to use docker-compose, but I have no idea how to use docker-compose.
docker-compose deprecated btwā¢ļø
oh
yes its good
it's just a yaml file
not that baaaaaaad
oh TIL it is docker compose now
Realistically I have a good model for what I'm trying to do.
PyDis' site itself does... basically what I'm trying to do.
Hmmmm
Django scares me
I feel like Django would've been a lot easier for me to use than flask at this point.
now i know pydis postgres passwodr
what are you building
Blarg
what is blarg
I'm personally more comfortable with flask. for some reason. even when django would be infinitely better
blorg
Django Django is one of my fav bands @lament cairn
blarg š„¹
j
is it blog
django too good
in rust?
no backend?
idk I just work here
u own the org rem
I don't think anyone 'owns' the org lol
https://github.com/vipyrsec/site/blob/63681ed7feeeae5a423c181eabd82e23c9538dcf/src/routes/api/posts/%2Bserver.ts#L4
who named this function? i'll come after you
src/routes/api/posts/%2Bserver.ts line 4
export const GET = async () => {```
Our little aboo š
We should be going open source once documentation is finished. I have no idea if Robin is satisfied with his PR or not.
He disappears for awhile then slaps up a +2000 -1000 diff and asks for a review
gets his review and scuttles off like Zoidberg back to his hideyhole
LMAO
no
pub says no
smh these companies
I mean we could
too accurate
where blarg
mine or vipyr?
robin can post meme on blarg?

Depends on the type of tone we're going for an as organization
post wilter whit meme on vipyr blarg robin
hi moyen chsy
at
yours
https://youtu.be/pxuBwfNp2wk @thick ore
While diving off the central California coast, the team of E/V Nautilus encountered this Flapjack Octopus (named for its ear flaps) lingering on the sea floor.
E/V Nautilus is exploring the ocean studying biology, geology, archeology, and more. Watch http://www.nautiluslive.org for live video from the ocean floor. For live dive updates follow a...
i don't think my blarg has image support
blog
blarg
make it have image suport
Yeah I should
I was doing a project where I was moving all my content to postgres so I could like, log in to the site and create posts from there but then I got bored halfway through
please don't distract him.
We need him to finish what he's working on.
Now I have failed deployments every monday at 11 AM when dependabot makes like 200 PRs
sowwwyyy
rem today ill not complain anymore ill study hard so i can go to colleg n make u proud
I think I'm just gonna go back to SSG honestly
lol L. turn on the batching thing
bruhhhh who need cms
I hear that's bad
y
give admin ssh key add markdown post themselves
I used Contentful at one point but it was kinda mid
this meme make no sense
I watch them a lot @thick ore
They just discovered a new jellyfish @thick ore
No, thatās not a face-hugger from the Alien films you see on your screen, but it sure is bizarre! Our team was stumped when we encountered this mysterious gelatinous creature while diving on a previously unexplored guyot north-northwest of Kingman Reef. One of our experts initially guessed it could be a helmet jellyfish (with missing tentacles),...
It has weird tentacles
u really a nature person
i sent u my ssh keys pls respond 
I just love deep sea creatures
I sympathize with any creature that feels the crushing weight of existence.
Some more literally than others.
how many ban we have outside py general
a lot
https://youtu.be/GETuoG_bN2w look at this one! They named it Minesweeper
Our first highlight from the NA149 expedition in and around the Pacific Remote Islands Marine National Monument is something extra small, but extra special. This radiolarian protist, Tuscaridium cygneum, forms colonies building an intricate mineral skeleton with needle-like pseudopods to aid in its buoyancy, keeping this compact creature (less t...
i havent see any ban outside general
i think most bam r in py general
i would guess the vast majority of bans and similar disciplinary actions take place in mod-only channels
https://youtu.be/5Ny0F6jbX2U @thick ore
During one of the first dives of our expedition exploring the Pacific Remote Islands Marine National Monument (PRIMNM) south of Johnston Atoll, the Corps of Exploration was thrilled to spot this beautiful red ctenophore reflecting back the lights of ROV Hercules. These comb jellies are the largest animals able to swim with the help of cilia - ei...
Looks alienish
sometimes my phone suddenly move to a random dm with someone n i thot that i was bammed
Have you ever seen a feather star swim? We catch views of a variety of marine invertebrates living among corals and sponges but in this exciting clip, you can see a swimming crinoid in all its glorious motion. These creatures have tiny leg-like appendages called cirri that not only help them move along the sediment but also filter food. For majo...
This one is so neat
Hello
It's me
The red name
hi dog rainbow


Dog Rainbow Ansible waitshitno
hi rem
No, itās not a Pokemon; itās a Chaunacops! This anglerfish treated the E/V Nautilus team with views of its impressive jaw structure and other evolutionary advancements on an unnamed eastern seamount of the LiliŹ»uokalani Ridge. Also known as seatoads, these bottom-dwelling fishes are found on hard and soft substrate in the worlds oceans including...
This one is yawning š³
im going to study so i can get to colleg n make u proud
i want to say that to stickie but he is only active in thread channels
How do these animals withstand such pressure
Humans would be crushed to death at such depths
Almost a mile deep off Socorro Island,Ā we had an extended visit with a Vampyroteuthis infernalis--literally meaning "vampire squid from hell." Neither squid nor octopus, this fierce-sounding cephalopod actually reels in specks of marine snow using two retractable filaments and mucus-covered suckers! Learn more about the Revillagigedo Archipelago...
This is scary as hell @thick ore
bc inside em also have pressure
Lol
wjat are you saying
how else do you think the client can communicate with the server?
you cannot hide these APIs
it is not possible to hide the user API endpoints from the user
you cannot hide API calls
you will always be able to see network traffic coming from your own computer to some server
I think the relevant question is why bots and users use the same api
i don't see how that's relevant
it's not like you'll have to figure out how the "another API" works
That doesn't change anything
Now the proxy API is the API for all intents and purposes
Bro
??????
Just first call is relevant lol
First call in that chain get data it needs
So just first api endpoint
what
some.proxy/messages -> real.site/messages -> actually.real.site/messages
do you see the point
it won't matter
You still know what endpoint to hit programatically to do what you want
yeah
However many proxy APIs you add here it won't stop users from automating user accounts, so it's not worth the effort to put a technical solution in place
Simply say "it's against our rules" and if you find someone doing it, ban hammer them. It's the most practical solution
Yes
That's why it's not worth spending engineering time to develop a solution to (attempt) to stop users from self-botting
Even if they seperate apis u can still use user apis to selfbot
Let the T&S/legal team handle it
so yeah, you can't really stop selfbotting (from a technical standpoint)
separate APIs and do all you want, developers can still see network traffic and recreate it programmatically
yep
You're never going to stop users from seeing how their machine interacts with the endpoint of your application
I don't think there are many good reasons to have to automate a user account
hi guys. i use 4kg wieght for lifting . i life 400 times for each bicep and that wasted 2 hours. there are 3 kind of exercise for bicep. after 400 times (rep) i still fell that i can lift much more but im out of time. what should i do?
and is 400 reps enough?
lots of boys in my class have 6 pack but i dont so im depressed
Ohayo
made documentation(wip) of python for AI w/ tensorflow + scikit+pytorch(those are not not done yet) and if you want to contribute
Python https://www.python.org/ Variables: Integers Floats Strings: Operators: Mathematical +, -, /, * // is floor division; discards remainder, does not round up and only rounds down % is modulo, gives the reminder for a division problem. ** is powers, multiplies left number by the amount of th...
i find it insane how some people have fully RE'd google play services(microg)
just some crazy experienced devs
yeah, but google has really stepped up their game recently with a new anticheat they're rolling out with every app on the playstore
wait what
its called pairip and from what i've seen, it takes chunks of code out of the app, either from the dalvik bytecode or from the shared libraries packaged with the app, and converts it into its own bytecode that executes in it's own VM. on top of that, these converted vm programs are encrypted, and if you tamper with the apk at all there is a handful of ways google will crash the app
its pretty neat actually
yeah aint no way lucky patcher is gonna work for this. you'd have to RE the vm bytecode programs and restore the extracted code if you want lucky patcher to work on that apk again
i mean, if you try hard enough sure
i've already done my fair share of RE on this
RE's hard, lol
its fun
did you succeed in all
yeah but im sure they're outdated by now
how long ago was this? :P
except for one which i constantly work on
shadowgun deadzone - 2019(until they took it off the market)
castle clash - maybe like a year ago
nebulous.io - i work on this one a lot even today
egg, inc - last year IIRC
dayr survival - last year

might try some myself
frida helps alot tbh. but beginning i'd just look at the code and see what it did
Oh
i did work on the among us protocol at some point but i gave up on it
AMONG US
someone had beat me to it
furthest i've ever gotten in my RE hobby was 3 crackmes š
https://github.com/Impostor/Impostor heres the among us protocol in c#
dum dumn
šØsnake vs crab real fight #crab #snake #shortvideo š„
#snakeĀ #snakesĀ #snakesofinstagramĀ
#snakebitesĀ #djsnakeĀ #snakeskinĀ
#snaketattooĀ #cornsnakeĀ #snakesofigĀ
#snakeprintĀ #rattlesnakeĀ #snakeheadĀ
#snakeloverĀ #whitesnakeĀ #snakeplantĀ
#snakeeyesĀ #snakebiteĀ #snakeriverĀ
#kingsnakeĀ #petsnakeĀ #snakersĀ
#snakeloveĀ #snakelifeĀ #solidsnakeĀ
#snakeofinst...
rare footage of rust vs python fight
crabs are based
Is it valid to make main() function as private?
What language are you talking about?
Cringe crustaceans
Rustaceans AUUUGH UUWUWU UUUUNNNG
i want chinese friends but discord is banned in china
i only need chinese girls chinese girls r good n beautiful
lols
#python-discussion message sucks that google domains is/will be gone, it's one of the very few domain purchase websites that has payment options in my country's currency and doesn't suck
depending on google for anything is a mistake. if they don't kill the product you are using, it's still crippled by the fact that they have no customer service and you likely have no recourse to any issues you encounter
Everyone should be made aware of this profile https://instagram.com/yeti_the_abominable_?igshid=MzRlODBiNWFlZA==
Welcome back to Instagram. Sign in to check out what your friends, family & interests have been capturing & sharing around the world.
very cute car
cats lack the ability to remember human faces btw
we're all just food sources to them
same
that... doesn't follow from the former
Music video by Kanye West performing Gold Digger. (C) 2005 Roc-A-Fella Records, LLC
cats:
@naive portal i was outside before and just came back
and i tested your function to get points on a line vs mine
mine is much faster
when you wake up you can use this instead
@numba.njit(parallel=True, fastmath=True, boundscheck=False, inline='always', nogil=True)
def points_between_points(a: np.ndarray, b: np.ndarray):
dist: float = np.linalg.norm(b-a) # distance
rise: float = (b[1]-a[1])/dist
run: float = (b[0]-a[0])/dist
return [(np.ceil(run*i), np.ceil(rise*i)) for i in range(np.ceil(dist))]```
Also you should call the function before letting it be used in other files because that will compile it
And you can just remove the rounding at the end if you need precise coords
usr/lib/python3.8/typing.py:518: in _evaluate
eval(self.__forward_code__, globalns, localns),
<string>:1: in <module>
???
E TypeError: 'type' object is not subscriptable
Ah yes... ??? Right... of course.
GOPHERS & PEOPLE WITH GLASSES ON TOP š„
to people who don't release prebuilt binaries because "we dont like skids": fuck you, kindly
it's not that i can't build it myself, it's that you're just inconveniencing people
lmao is that an actual reason some ppl give
well, yeah. they're inconveniencing skids
and non-skids, too
just build it ĀÆ_(ć)_/ĀÆ
whyy do i have to wait for 3 minutes for vs to open just to build it
yes but it's wasting my time just release the prebuilts
you don't need VS to build something..
i get that
building seems like too much work
at that point if i'd find an alternative
seriously
building most of the time is just one command
every time i've tried building something from source its been a huge hassle
./configure && ./make
the instructions are usually written down in the README
i admit it can get pretty involved compared to just getting a binary but its well documented most of the time
@drowsy rose you asked a couple of times already about turning a list of ints into a single int, so i thought you might be interested in this
https://paste.pythondiscord.com/etehedudeq
it's a bijection between lists of integers and the integers, so it should guarantee that any list can be converted into a unique int and every int corresponds to a unique list
i tried my best to explain it in the docstrings
this method does make a lot of numbers just correspond to lists with a lot of zeroes at the front tho
fyi you need to go to https://paste-old.pythondiscord.com/etehedudeq
yeah the announcement came out literally seconds after I sent that
ik lol
hi stickie
im notgoing to complain anymore
ill study n go to colleg then make big stickie proud
Is there anything about code jam 2023? Or if itās even happening
hi guys.. did anyone tried to run this voice to voice tool from github based on the tutorial? https://www.youtube.com/watch?v=-JcvdDErkAU
Retrieval based Voice Conversion WebUI is a a gradio web interface for voice to voice conversion! Take any voice you like and through the power of AI, quickly and easily convert it into any other voice. Easily remix any song. Sing in any language. Read a book. Recite a play or poem. The choice are endless with this simple voice cloning software....
I cant run the gui and seeking for quick help
20k particles, took way too long
and it isnt even that impressive
10k particles is just as good but doesnt take so long
i am guessing actually plotting it is the bottleneck?
what are you using to plot?
matplotlib
i got about ~2000 frames in 39 minutes of computing
so not too bad for 20k, but i could only plot 30 seconds in 10 minutes
i can share the data if someone else wants to try
There's gotta be a better way to do that than MPL lol
I don't know of any, but uh... yeah.
#pyqtgraph does advertise itself as being good for animations and such
how fast can it scatter plot?
ĀÆ_(ć)_/ĀÆ never used it before
im not gonna learn another lib just to render this data, if someone wants to sure
I mean the fact that you spent time on it kind of implies that it interested you, but you're trying to use a spork where a fpoon might be more suited.
It's not like you're wasting time by learning another package, and I'm not sure the plotting should be the difficult part lol.
can i have it please?
would be useful for some benchmarking i want to do
ditto on MPL probably not being the best, though i guess it depends on what output do you want, i suspect the treatment would be different if you want a series of static image as opposed to say if you want a 30/60 FPS video
Ill upload it to somewhere, its 350 mb
It certainly was an interesting problem to tackle, but i think i spent too much time on it in total and left other stuff behind for it
That's fair.
305* mb
1 pickle file that contains a single ndarray of shape (1947, 20000, 2), which are 1947 frames of the X and Y positions of 20000 particles https://easyupload.io/yh3hpj
hmm rather interesting choice of storage format
i have to open it in a VM because pickle is not very secure
Hahah yeah i know
Funny when i was trying to dump data into a pickle file, some weird cython stuff made it re-execute the script that dumped it
Very strange
That simulation has some issues... it should aggregate into a spinning
looks like it's close but has some problems, probably the delta t is too large
blahaj
rust people
whats the bare minimumest ui library
like just let me draw lines and fill in colours
and text
š
raylib š
or sdl2, lol (but no text support built in)
if you want gui there is https://github.com/emilk/egui
raylib also has a separate gui lib but idk if it's ported to rust
hi guys.. do you know anz voice to voice tool with voice cloning?
if you dont own a blahaj you havent lived life
fuck now i gotta buy one
fireship.io made one
Yeah billionaire side hustle
1200rs š
that's ā¬13,23
not too bad
the djungelskog bear is better tbh but they only sell it in a few places
I have really old piranha gamepad and want to use it on my mac, it registers in the system reports on USB and seems to register all buttons on https://hardwaretester.com/gamepad but I can't get it to work on steam or other platforms. I have a mac m1.
It's really weird that the website registers it but not steam
I have Windows but when I tried to hook up pad to steam, I remember I had to enable something in settings somewhere plus in game's settings themselves
hmm....
Internet says to look at Steam -> Preferences -> Controller -> General Controller Settings
And per game: Right click on the game in Steam, go to Properties -> Controller and choose Enable Steam Input
i changed my mind i think ill just webdev
i just said rust so it would trigger you lot more when i said im switching to js
there's wasm 
I'll try that
Can someone help me select a laptop for my college?
I am looking for a laptop within 1k$
@high verge notice me senpai o//w//o
im coding
The true definition of a man who knows what his goals are
I second egui
banned
!otname list
what do you want in a laptop also the buildapc server is far more suitable for a question like this
I ain't in such server can u send link?
Off-topic is on drugs rn
BuildaPC and SuggestALaptop are whitelisted AFAIK.
4:30 offtopic incident š
my sleep schedule is a problem for future me
@main minnow I've heard decent things about Parrot, I've never been particularly interested in it however.
For penntesting type operating systems, I started with Kali but quickly found that a lot of the tools were things I just didn't ever care to use, and rolled my own in Mint.
For privacy type setups, I have a FDE encrypted VM with a VPN and that's sufficient enough for my personal threat tolerance.
kali is cool to look at as a sort of "what tools are out there" type thing
indeed
Debian started it all tho
Kali doesn't work with Windows Hypervisor very well, and Hyper-V is required for Docker.
So I'm at an impasse for personal setups; I dropped Kali entirely more out of necessity, but I don't paritcularly miss it either.
my experience in linux was 1st: kali linux vm (actually was pretty good and i kinda liked it, but im not really into cybersec (and its not really good for anything else than just having a lot of tools builtin lmao))
then i tried installing linux mint as my main os (i even formatted windows) and i had so much problems with it and now i understand that linux just cant work as a main os for me
I only use Linux as a guest OS, mostly because I just... like gaming.
And Windows just works ā¢ļø for gaming.
Windows Hypervisor? I thought the hypervisor was provided by the, like, mobo firmware O.o
i had a lot of problems with drivers on mint (nvidia incident)
Mmm, kind of.
Bird
When you have HyperV enabled, you relinquish control over the kernel level virtualization to HyperV. This means that in order to virtualize a machine, you need to run it through HyperV.
Bird -bird
i had to install a specific version from tty š
and only after 2 reinstalls from a live usb i understood that ubuntu-drivers autoinstall was f'ing up my network drivers
This works for the overwhelmingly vast majority of window managers, but the desktop environment for Kali does not seem to agree with HyperV.
parrot os IRL
i had parrot too when i was like 5 yo and lived in other city
he was funny rest in peace
I would like to own a birb.
that's really bizarre, I thought that Hyper-V was kinda the standard
is it a VTx or AMD-V specific issue? I remember debian based distros used to vomit when run under AMD-V
Bird AGAIN
No, virtualization in VMWare Workstation Pro is handled by the VMWare Hypervisor running through your hardware virtualization unless you have Hyper-V enabled.
My specific setup uses AMD-V, so I have no intuition for whether or not this is AMD specific, but it's fairly well documented on the Internet thus far.
I have no issues with other Debian-based distributions. Just Kali 
But he is ignoring you
no issues with other Debian based distributions
bizarre x2
well...
I've strongly confirmed that this is the issue.
I initially fully disabled Hyper-V (and the security features it possesses) in favor of booting into Kali.
However, I'm at a point now where most of my workflow is done through Windows, and that necessitates Docker.
So given the choice, I'd rather just home roll my own toolkit rather than use something prebuilt-- especially something that has some very impressive tool bloat.
Mind you Kali still works, just very poorly.
cool colors I like
No issues on Remnux (Ubuntu) or Mint. My FLARE VM was another fatality in my HyperV requirement, but I haven't tried too hard to get it working again either.
My bird says yes to ur colors
is neovim actually smexy?
i heard it requires so much customization but thahts just for a few days or less
maybe even 1 day
or an hr
Although I'm too used to vscode so I switched after a week
lul
Oh wait, you're saying booting into Kali doesn't work with Hyper V enabled? Not just booting up a Kali VM? That would be way less bizarre to me, I had an old arch PC that wouldn't boot with VTx enabled
No it boots, it just lags very badly. It's the window manager/desktop environment I think.
Sorry I wasn't more clear.
Here's my collection of VM's. Kali is the only one that suffers this particular issue, FLARE just doesn't work at all (being Windows based, I suspect that's the issue here.)
No you're fine lol. That is a really weird thing. I am not positioned to offer any advice about it
Helluva VM stack. Your images folder must be TBs
Mmm, not too bad.
hey
Remnux is the only thing that I maintain rolling snapshots/backups in.
Those snapshots are held in OneDrive through the automatic syncing.
Anyone else here just casually listening to postpunk music for 14 hours a day
it's too good
Redmint is basically just the entire (useful) Kali stack rebuilt into Mint
Lol onedrive synced folders. I had to turn that whole service off because for some reason on my OEM win11 it was just going into some livelocked state infinitely pinging the MS servers with broken auth requests
whatās up
I've heard some mixed opinions, but so long as it just kind of runs silently in the background, we're not at odds.
Hello.
It's probably because I did the song and dance to skip logging into an MS acct
hey
That broke most of the windows 11 bloatware
I wish I would've done that, truly.
You can't go back and log out?
The fact that I cannot change my local name without establishing a new user is highly annoying.
Ew
Mmm, I can but I'm too far into the weeds now to have to rebuild a new user profile š
š¤¦š»āāļøš¤¦š»āāļøšš
Valid. I am not a Windows power user but setting up policies and BS like that seems frustrating
My friend had an issue with onedrive. 1 giant issue: it somehow injected itself into a ton of registries and into environmental variables so everything related to file paths would point to one drive
He had to reinstall michaelsoft binbows after that
I'm a fan of how I have things laid out in Windows. As much as I miss some of the features in Linux, I don't find myself suffering too much from having a Windows dev environment.
Bro is not windows
Vscode šļø
I used PyCharm for so long before VSC
I thoroughly enjoy VSC. I still use CLion for C++ though.
Is that... bash native on Windows?? Why does neofetch report two different manufacturers GPUs? I'm going to have a breakdown to this image lmfao
Neofetch shows PowerShell as Bash for whatever reason.
I do have two different GPU's.
Your wallpaper is so clean
You're seeing the iGPU on the 7900x and the dedicated GPU.
Ohhh makes more sense lol
I would upload it but I don't actually remember where I saved it.
It's like one of the top posts on /r/wallpapers. I just looked up 4k wallpapers and picked one 
I hab struggle finding clean wallpaper for 3440x1440
Demon in brazil be cookin
It looks fairly nice with my VM wallpapers.
First setting I changed in windows 11 was moving the start button back to the left corner lol
So I did that too, and I liked it that way. But the middle button is kind of growing on me.
I don't click... programs. I hit the windows key, type in the program I want to run, and press enter š
I would like middle icons, left corner button
Same
Alas, not an option š
Yall be cookin
I keep getting a pop up for Dev containers in VSCode, I might try them soon.



