#ot1-perplexing-regexing
1 messages ยท Page 595 of 1
Extreme. But I like your commitment
!silence [duration_or_channel] [duration=10] [kick=False]
Can also use: hush
*Silence the current channel for duration minutes or forever.
Duration is capped at 15 minutes, passing forever makes the silence indefinite.
Indefinitely silenced channels get added to a notifier which posts notices every 15 minutes from the start.
Passing a voice channel will attempt to move members out of the channel and back to force sync permissions.
If kick is True, members will not be added back to the voice channel, and members will be unable to rejoin.*
Hi people, im looking for some help on how to initialise arrays as a local variable inside of mips
i know how to make them as global variables but a bit confused as to how to make them local variables
mate just muted himself for demo.. very nice
My max. Downloading speed ever was 13MB/s๐
yeah
would be a bit higher download but my roommates and I are both streaming video atm
:p
what in the world is this speed
holy shit
murica
it's google fiber
when google is your isp
you can do whatever you want
they actually offer 2Gbit now
but none of our hardware supports it
except the rackmount server lol
that speed is like 100+ times of what speed i get here from my isp ๐
but idek what will i do of so much speed
I find that there is a very small number of things that my Internet speed can't do and I have no where close to that.
Maybe gaming with people on the other side of the world?
I think i would be more interested in... no downtime ever for any moment than more speed.
loll
chose digitalocean.... this is what I get
not that I mind... just find that interesting
What's the specs of that thing you're getting?
What did I do this time
That was just yesterday
holy shit thats 1 gbps
hey, i need to make my chatbot in python to do basic math calculations. how can i ?
eval but note that the user can enter code and make your bot die
!e print(eval("1+1"))
@dire siren :white_check_mark: Your eval job has completed with return code 0.
2
Oh lol, I called @crisp shell a non-helper
you dont understand

!e ```py
eval("while True: import('os').fork()")
@opaque bronze :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | File "<string>", line 1
004 | while True: __import__('os').fork()
005 | ^
006 | SyntaxError: invalid syntax
you might want to go to #ot2-never-nesterโs-nightmare this ot is occupied lol
forgot to exec inside eval ๐
lol
ye
The command should really be !exec
๐ฅ
!e eval("exec('while True: __import__('os').fork()')")
@opaque bronze :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | File "<string>", line 1
004 | exec('while True: __import__('os').fork()')
005 | ^
006 | SyntaxError: invalid syntax
The command should really be !execute
yep
!e eval("exec('while True: __import__(\'os\').fork()')")
@opaque bronze :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | File "<string>", line 1
004 | exec('while True: __import__('os').fork()')
005 | ^
006 | SyntaxError: invalid syntax
rip
rip
also like
What
!e exec('while True: import("os").fork()')
thats a fork bomb
you can exec inside eval
@dire siren :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | Traceback (most recent call last):
004 | Traceback (most recent call last):
005 | File "<string>", line 1, in <module>
006 | File "<string>", line 1, in <module>
007 | File "<string>", line 1, in <module>
008 | BlockingIOError: [Errno 11] Resource temporarily unavailable
009 | File "<string>", line 1, in <module>
010 | File "<string>", line 1, in <module>
011 | BlockingIOError: [Errno 11] Resource temporarily unavailable
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/fixezaveqe.txt?noredirect
wtf
now do it inside eval
why
its a fork bomb
thats the challenge duh
!e eval("""exec('while True: import("os").fork()')""")
@dire siren :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | File "<string>", line 1, in <module>
004 | File "<string>", line 1
005 | while True: import("os").fork()
006 | ^
007 | SyntaxError: invalid syntax
ok
!e eval("[__import__('os').fork() for _ in iter(int, 1)]")
The error is because you're trying to Eval an error as python code
lol
@acoustic moss :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | Traceback (most recent call last):
003 | File "<string>", line 1, in <module>
004 | File "<string>", line 1, in <module>
005 | File "<string>", line 1, in <module>
006 | File "<string>", line 1, in <module>
007 | File "<string>", line 1, in <listcomp>
008 | File "<string>", line 1, in <listcomp>
009 | BlockingIOError: [Errno 11] Resource temporarily unavailable
010 | BlockingIOError: [Errno 11] Resource temporarily unavailable
011 | Traceback (most recent call last):
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/epumekumob.txt?noredirect
ez
the error is because i'm trying to eval none
elu
because the exec returns none
!e eval('exec("r = \"Joe Mama\"; print(r)")')
@opaque bronze :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | File "<string>", line 1
004 | exec("r = "Joe Mama"; print(r)")
005 | ^
006 | SyntaxError: invalid syntax
what.
!e "string \"s\""
@opaque bronze :warning: Your eval job has completed with return code 0.
[No output]
backslash
!e print(exec("print('like exec is returning nothing anyways (or None) why are you trying to eval an exec')"))
!e eval(None)
@opaque bronze :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | TypeError: eval() arg 1 must be a string, bytes or code object
that doesn't matter, the fork bomb works
@dire siren :white_check_mark: Your eval job has completed with return code 0.
001 | like exec is returning nothing anyways (or None) why are you trying to eval an exec
002 | None
@opaque bronze :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | File "<string>", line 1, in <module>
004 | File "<string>", line 1
005 | import os; while True: os.fork()
006 | ^
007 | SyntaxError: invalid syntax
wooooooooooooooooooooooooooooooot
what is the error bro
oh
i didn't know that
actually thats not true
!e
eval("exec('import os;[os.fork() for _ in range(1,1000000000000000000000000000000000)]')")
@dire siren :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | Traceback (most recent call last):
004 | File "<string>", line 1, in <module>
005 | File "<string>", line 1, in <module>
006 | File "<string>", line 1, in <module>
007 | File "<string>", line 1, in <listcomp>
008 | BlockingIOError: [Errno 11] Resource temporarily unavailable
009 | File "<string>", line 1, in <module>
010 | File "<string>", line 1, in <module>
011 | File "<string>", line 1, in <listcomp>
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/simelozoto.txt?noredirect
ez
how does it work for u
huh
i tried
so many fricking times
all to end with
a sytntax error
why
!e ```py
eval("""exec('f = lambda: exec("try: f(); except: f()"); f()')""")
i will
@opaque bronze :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 1, in <module>
003 | File "<string>", line 1, in <module>
004 | File "<string>", line 1, in <module>
005 | File "<string>", line 1, in <lambda>
006 | File "<string>", line 1
007 | try: f(); except: f()
008 | ^
009 | SyntaxError: invalid syntax
i give up
lol
best repo ever: https://github.com/theonion/fartscroll.js
i like that
You guys need to drink water
I'm suffering right now because I didn't do that lol
Giving birth
oops i cloned that repo to my mug and it's farting rn
when i drink water
you can put this on your web and make fart noises as the user scroll
very funny
i guess you can do this on april fool days
I like to make ridiculous sites sometimes. Like the kind you wound find in the 90s.
So I'll remember that.
chris the betrayer haha funny
lmao chris the betrayer
the cdn mentioned in that repo is down
so you'll need to grab it from github cdn or host it yourself
I've been trying to stop the rain
or fire + rain = no fire
but no luck
RIP pants
lol fart noises as you scroll, genius
*several farting sounds
teacher, I need extra time on the test
I have a medical condition.. I fart whenever I scroll
๐
hi
Guys is Golang fine? Is it really worth learning it?
not for getting jobs, just saying
yo this would actually work
lmao
except , mirror reflects light and since you aren't emitting light with your face , you won't see it lol
this actually happends in real life
say some alien is away 65 million light years away from earth
when they see the earth, they'll see dinosaurs not us
because light they see originated 65 million years ago
I mean, if they do decide to quantum drive here, that would be nice
got reflected*
in fact the sun you're seeing now is delayed by 8 minutes
even if the sun was destroyed this very instant, it will take 8 minutes for it to affect you
cool
we just don't notice this "delay" on our scales
so if a solar flare happened in space, we would be able to predict it 8 minutes before it hit?
but you wont know that sun got destroyed.. so technically for you its just that instant
no, you'd see it after 8 minutes of it really hapening
exactly
there's a delay due to limitation in the speed of light
there's nothing you can do about it
But light bounces from your face
its similar to a live sports match, whatever happens on that match reaches your tv after a delay of 2-3 minutes
iirc quantum pairing or sumn was a thing right?
thats a different thing
yeah but its pretty rough rn.. with better pairing its actually possible to reduce the delay of data transmission right?
it's impossible to transmit information faster than light
unless
thats a law of nature...
cuz the rest mass of photons is 0
ah hmm well yeah
right
oh
the universe itself is expanding at a speed faster than light right?
wheez
naw rick earth community cooler
fair enough
loll
Right
lmao
.bm
Hm I wonder, if someone is travelling with the speed of light, and I see it with a telescope, would he/she age as the distance between us reduces?
You cant see something travelling at the speed of light because of dilation
You would not be able to see him at all, I guess. To see him, you need light to hit me and get back to you, but since he his traveling at the speed of light, he will arrive at you at the same time as his image.
ahhhhhh
reddit makes me happy
lmoa
lol
lol
Lauginng my organs away
!warn @kind flame Do not send unrelated memes in this server, especially inproppriate ones. Please re-read our off-topic etiquette (https://pythondiscord.com/pages/guides/pydis-guides/off-topic-etiquette/) and our #code-of-conduct.
:incoming_envelope: :ok_hand: applied warning to @kind flame.
its off topic....
It doesn't matter, please read the etiquette I just posted
Off-topic is not a meme dump
maybe the light wont even reach you? That someone is travelling faster than the light they're producing.
In this video I test out the laws of physics to show what happens if you fire a bullet backwards and you are traveling at the same speed forward. Will the bullet just fall to the ground?
Checkout my experiment book: https://amzn.to/2Wf07x1
Follow me on Twitter: https://twitter.com/theactionlabman
Facebook: https://www.facebook.com/theactionlabo...
reminds me of this 
ye right
I wonder if that goes for aircrafts too, when its travelling at Mach speed.
Huh, that sounds like an interesting video
I don't think it will work since one is an constant force while the other is a one time propulsion
But under the right circumstances it could just fall to the ground
!mute prevents people from sending message. like they can't even type in the chat box
oh damn
i made one that can mute anyone including the server owner LMAO
mute is a loose tern
it deletes messages tbh
The only problem with that is, if the server that your bot is hosted on is weak, then boom
How can you mute the server owner
delete messages
it still shows up on snipe and dyno logs
anything that can detect a message delete
Is there a good source for the math behind center align. So basically I want to do it with pixels and not strings!
ye
best command
this be nice
woohoo
today is the first time i've ever used a classmethod in a metaclass
gotta use that sweet mcls
speaking of which, do y'all prefer mcls or mcs as the first pos param?
Cool
gonna use this channel as #web-development is occupied
for my django web app... well, website built with Django
won't have many visitors to start
is the pre selected one good?
What do you mean by "many visitors"
It's not a bad idea to go with the cheapest plan
Since you can always scale up
finally just set my docs up on rtfd

I mean they aren't on the default branch yet but they are on rtfd so
Docs are still very much in beta:
https://discord-modmail.rtfd.io/
A Modmail bot for Discord. Allowing safe moderator conversations with server members one server at a time.
First python install since windows 11 install ๐
straight to the release candidate
because I require pattern matching for this to work well
where did you get this version?
oh pre-release, ok
mhm
hahaha this code is so hilarious
it's a prototype proof of concept I wrote a while ago and I'm just now getting to looking at it to see how I'd implement it...rationally
def spell(*commands: dict[str, str]) -> int:
script = "".join(f"{_get_os_cmd(cmd)}\n" for cmd in commands)
return _run_cmd(script)
well it sure is arcane
probbly a tuple of dicts
oh right
hold up
mind you this is the proof of concept prototype and by no means indicative of a final product or even a pre-alpha;
@inland wolf
## Import the features
from spells import *
## Define commands
echo = {
"win32": [
"rem Starting build",
"rem awooing",
"rem uwu"
],
"linux": "# starting build",
"darwin": "$linux"
}
venv = {
"win32": "if not exist .venv ( python -m venv .venv )",
"linux": 'if [ ! -d ".venv" ]; then python3 -m venv .venv; fi',
"darwin": "$linux"
}
activate = {
"win32": r".venv\scripts\activate",
"linux": ". .venv/bin/activate",
"darwin": "$linux"
}
install = {
"$all": "python -m pip install cutesnowflakes"
}
## Run a single command
result = os_cmd(echo)
if result != 0:
print(result)
## Make a spell from commands
result = spell(echo, venv, activate, install)
if result != 0:
print(result)
there's a lot of hackery going on under the hood to get stuff to work, for the most part it's likely going to have to stay that way, the benefit is that it actually works
interesting
hmm
vs code's being bad D:
no
yes but no
Or more precisely 0th priority
Yes
julia
AWK, COBOL, Fortran, R, Julia, Lua, MATLAB, Smalltalk, Wolfram Language โ In all of these languages the default index of the first element in an array is one
english
thanks
ah damn
eww
um... I accidentally slept for 11 hours
nice
I went to take a nap at 2PM cause I was tired like all morning
God I feel awful now
how on Earth did I manage
I did something like that today except I didn't sleep as long. But I slept all afternoon and for me its now 2am and its feels like noon already to me
sleeping for long in afternoon is the worst for me
because if i sleep too long in the afternoon (more than an hour), i cant bring myself to sleep in the night quickly
I end up just not sleeping, and then the next day Im a zombie.
um... I accidentally unslept for 2 hours
that means ur body needed it
yikes D:
does this mean my body needs it? doctor @inland wolf
imagine sleeping lmao cringe
now idk what to do because I really don't want to go back to sleep
real men stay awake forever
what does unsleep mean
I took a nap at 2AM cause i was not tired like all day
idk i can't sleep last night
unsleep is similar to undead. You sleep but you're not really asleep. Like drug induced sleep. Or amphetamine. Maybe.
Ikr
That's why I don't sleep in the afternoons
Ez
am i abusing functions. like i'm using it to store variables
code:
require.config({ paths: { 'vs': 'monaco-editor/dev/vs' }});
function monaco_editor(){
function setup() {
monaco_editor.editor = monaco.editor.create(document.getElementById('container'), {
value: "",
language: 'python',
readOnly: false,
theme: "vs",
automaticLayout: true
});
};
setup()
function edit_value(val){
monaco_editor.editor.setValue(val)
}
monaco_editor.edit_value = edit_value
}
window.onresize = function (){
monaco_editor.editor.layout();
}
require(['vs/editor/editor.main'], monaco_editor);
expect shitcode. i barely know anything about javascript
All JavaScript is shitcode \๐ฉ
correct: *expect shitcode, it's javascript
should i shorten my code to make the program more light weight. or it gets compiled to the same shit so i need to go for another way
it's c# btw
have you read sicp?
Just a small message from my side.
Today, I was trying to write up a small program which when written in a pygame while loop, could generate random 2D terrain, much like the Super Mario games.
But this code ended up hanging my laptop, nothing was responding, the mouse, the keyboard.
So, I finally hard reset the laptop.
I am wondering what would happen if someone runs this code in a discord channel?
what is sicp
never read it.
its about functional programming, i thought of it cause you were saying about abusing functions to store values
is it free? because i'm poor
does anyone know about ciacdo 3301 - libra primus?
yep
the book is free and also the university lectures
it was the main book for comp sci 101 during the 80s in MIT
nice i'll have a look.
its eye opening if you come from a more java world
let me give you 1 point of advise
the first 2 chapters have very mathematical exercises which discourage most people
the exercises are that way cause most people who studied comp sci in those years were math people
but those two chapters are actually very basic in terms of programming concepts
i just say this cause some people get stuck when the exercise asks you to prove fibonnaci
wait whats that with ciacdo?
i think he's talking about that cicada thing idk
whats the cicada thing?
idk a hoax probably\
fibonci ciacdo doesnt make sense thats why
wait didnt knew that
you don't need to press them
@wild oak Please don't try to ping @everyone or @here. Your message has been removed. If you believe this was a mistake, please let staff know!
Is anyone here from or in Afghanistan rn?
๐
okay wait
python3 is the latest
did you try this
ill try it now
does it work?
someone tell me why it feels more real when i dream than when i am awake?
yeah i can, read descartes discourse on method
@gilded mulch is muted lol
๐
How does it-
How does it stop the ping? If it deletes the message wouldn't there still be a ghost ping?
it doesn't ping to begin with, but I figure they're deleted because they're typically scam messages
Is that w3s
or generally obstructive messages, anyways
Everyone and here don't ping?
copying html css snippets in w3s is quite nice
Then how is it still possible to trigger the bot?
If we don't have permissions on everyone
I'll resend a message from an admin discussing this
you can "ping" @everyone but it doesn't actually... ping
like it shows up as a ping but you don't get pinged
like it doesn't highlight yellow or anything
it just has that... @latent scaffold color
y'know?
I guess discord doesn't have enough time to react
it wouldn't ping even if the bot did nothing
Yep, sorry, I'm just really confused
members don't have the perms
you don't have the permissions to mention @ everyone
we're discussing the rationale behind deleting attempted everyone pings even though its disabled for the laymen.
it's actually quite useful to detect spam
So why does discord still allow it as a mention, even when it does nothing?
because
Discord.
it's not actually a mention, though
yeah it just looks like one
I say that and get two mentions
Yeah
LMFAO SO TRUE
js?
yeah
if someone is looking for a challenge: https://github.com/aphkyle/aphkyle/blob/main/Hello.World
wish someone looks
and see if they can decrypt it
dm me if you are stuck. ill be gone for an hour starting from now
if anyone is doing this challenge react the ๐ emoji on this message
lol
you got me for a second there.
what message
sure how did it go
ok
why is this even in the python downloads section?
that's uhh
where's that from
and what does it have to do with python
ok
my code is checkmating me
i love life
I love seeing people get confused at that stuff
If you know, you know.
You can tell by the way that it is.
"and now for something completely different" is a monty python catchphrase, you see it quite often in posts on the announcement mailing lists, like https://mail.python.org/archives/list/python-announce-list@python.org/thread/LK3JXTWJ2D6JP6NBLFA44SLQOOLNHEV3/ 
In theoretical physics, quantum chromodynamics (QCD) is the theory of the
strong interaction between quarks and gluons, the fundamental particles
that make up composite hadrons such as the proton, neutron, and pion. The
QCD analog of electric charge is a property called color. Gluons are the
force carrier of the theory, just as photons are for the electromagnetic
force in quantum electrodynamics. There are three kinds of charge in QCD
(as opposed to one in quantum electrodynamics or QED) that are usually
referred to as "color charge" by loose analogy to the three kinds of color
(red, green and blue) perceived by humans. Other than this nomenclature,
the quantum parameter "color" is completely unrelated to the everyday,
familiar phenomenon of color.
it's nice to see (apart from the misspelling of colour
)
I don't see any misspelling of color
Colour is just color with carbonation
Col our \๐ฅด
hahaha me too
Americans just hate "u" :P
there's 3 owners right?
Yes
sublime text 4, zig, terminus ttf font.
Thats too much italics
yeah not a fan of the italics i think that has something to do with the zig text highlighting
its a programming lang inspired by c
tat opinion wasnt really humble
lol
oh i guess that also means honest
in the end it's just what I think of it
dont know why this syntax .{char} instead of just char in the print function
but i imagine it has some meaning just need to learn
it's definitely funky
how did you get c from it? i understand rust with the types and pub fn.
const std = @import("std"); is like a java-inspired version of using namespace std;
The function signatures scream rust, but even rust is based/inspired from C in that regard, just in a different order.
pub fn main() anyerror!void {} is a bit off the wall, but in the end it's just a void main() with some extra syntactic sugar
the rest of pretty spicy tho
zig is supposed to be a bit more hardware-oriented
like, it's got fun stuff like explicitly compile-time-evaluated code and easy switching based on what platform you're currently compiling for
the syntax of const std = @import("std"); reminds me of const package = require("package");
I suppose it's the concept of assigning imports to variables
Lol that's a good one. Also hey 

๐ I did a thing
what is this thing that you have done
you softboiled yourself??
Yes, and dataclasses while I was at it.
oo neat
Still some things to tweak, but it's holding up on my initial trial runs. Makes creating my models super nice.
an option for default values would be great
Yeah. That shouldn't be too hard to do either
dataclasses.fields() probably has the info needed. Just need to make a check for it before filling it in with None
interesting
It's been fun. I started not using a decorator because I though "oh, a decorator sounds complex as heck". Turns out the entire decorator piece is about 10 lines of code 
damn
Scrubbing the data, that was a little shuffle joy. And, as you saw, still work to do. Side-projects rock 
i wonder who is eivl's twin
they are behind a veil
godo
eivil
yo wtf
Otn came true
Lol yea it came true
Python communities are magician, they know what will happen in the future exactly..
Senjan doing python tests prolly lol
mine is fine too
lol
it's a glitch or something
Are you more hardware oriented @mortal ferry ?
the way akarys frames stuff always confuses me
That's the goal, sir, that's the goal
congratulations on doing a marvelous job of achieving your targets
@solid pollen this be some top class horse shit.. when i shut down.. and then start after some time the uptime doesnt get reset... but when i restart my computer.. voila it sets the uptime back to 0
๐
huh
uh relating to the convo yday on joe's server
yeah, gotcha
time hunt down why it is doing this with me
are there channels in the server where i can ask about other programming language ??
do a 360 turn and you'll be there
pardon ??
you can talk about other langs in these offtopic channels
wow thank you i got back to the same spot
np
da fuk is this?
pretty self explanatory
well hmm yeah nvm
impossible
amazing.. now close it
It is racing towards me
Lol
A big truck blocked my sight wow
I think Python is the easiest way to learn programming
So similar with our language
shouldnt that pole be vertical
seems like cobol is the most lovedhated language. time to use it to code a discord bot
because i got nothing to do
nvm too hard bye
cobol's syntax is f-ed up
@spare lanceI believe you asked me about command timings in powershell some time back, randomly found something that can do it. this can be used to get the time the last command took
(Get-History -Count 1).Duration.TotalMilliseconds
ah well damn yes i did ask you.. also prettyy cool 
.bm
this is only for the current session tho right?
if i start a new powershell it wont show anything when i run gethistory
a division? and a horizontal table with buttons?
ignore
found out i have to code it myself
๐
wait vscode plugins uses typescript correct?
typescript = javascript (but not really)
that means i can just do that pyshit thing on vscode
it souldnt be that bad tho.. the basic one atleast i mean... the one where you click button it gives prompt
probably flex or grid
and found out i got bunch of html templates ๐
nop
but this one does https://code.visualstudio.com/api/get-started/your-first-extension
no
making myself an ide is more challenging
depends on my laziness
i mean why not
i still have ~1/4 of my summer holiday
and most likely it'll continue online class
sad
relate
sounds like weirdass christmas present
Looks like I wasn't the only person this happened to
yeah happened to me too
Seems like this debug profile is not set properly. Use different profile, reinstall whatever made this profile, or just check where executable to debug is located and fix the settings manually
https://stackoverflow.com/questions/20563691/c-sharp-debug-cannot-start-debugging-because-the-debug-target-is-missing this is similar but with broken path set, rather than path not set at all
hello, i would like some help with something non-python related
Don't ask to ask, just ask. :)
i am curious if there is like a site or an app to download a video from any site
netflix and amazon wouldnt be too happy with such apps
There're many sites to do so and ways to make your own tool like that but... it's kinda illegal to download videos.
Youtube has a way to download videos in python, and that's not really considered illegal considering well, it's public to everyone and free to use
But for netflix and hulu stuff, highly recommend to avoid it / trying to
Plus all the programs you use for it are 99.9% likely to be malware or an ad-virus
so, the thing is
it's a video on a pirate site
so i am trying to pirate from the pirate
So you're trying to commit a crime while already committing a crime
very smart idea
well i just want the sound from the video tbh
why would you want the sound from the video..?
it has a lot of the quotes of a specific character
and i am trying to create an ai voice
but i want his voice
well,this video has every quote almost
You're not pirating a youtube video
so the sample size will be big
you really can't pirate youtube
you can get copyright violations but
that's not piracy
which is why you should go down the path of using youtube ๐
it's a much much longer route and takes way more effort, and i have kind of already started on it
but it's hard
well, searching them and finding them is one thing, removing the background noise so that only the voice audio remains is another
The route you're trying to take is gonna be even more difficult because you need software to download the videos, and probably get your PC infested with ads, not to mention you're committing a double crime
While searching on youtube takes about 20 mins at most to find all the vids and you download it with a python module
then from there you just put the mp4 files into the ai
it may let you download them as mp3 files
alright
@rough sapphire
but, it can cause problems if u use and download softwares from internet
ya ,but i cant bear the dragging caused by windows lagging
i just shifted to linux 2 days ago
i cant help u
i have tweaked my win
works like charm
this is sublime on 2gb ram
what u did
this is chorme(with discord, google classroom, open- total 3 tabs ,2 extensions)
+idle
+groove music + explorer
@rough sapphire
oo this is preety nice
yes, i have total 5 gb ram
2gb- main, and 3 gb virtual (page file)
oo
do u want help?
ya
ur cpu?
u mean processor
yes
it's name
Intelยฉ Coreโข2 Duo CPU E4700 @ 2.60GHz ร 2
mine is i3 2330m
but nm
do u have windows installed?
no linux but actually there are the chances of shifting since wifi my wifi card not working on linux
u would need windows, cause u will have to use tweaks
try*
are u talking about debloating windows
with a script
not with script
i still have cortana
what i did is some registry tricks
which would increase the MEMORY related stuff more often
may i show u the video?
i had used chris titus tech`s script to debloat windows
In [38]: win32gui.GetWindowRect(win32gui.GetForegroundWindow())
Out[38]: (-8, -8, 1374, 736)
how the fuck is a screen coordinate in negatives???
I think 0, 0 is the center
๐ค
that would be extremely inconsistent
nah im pretty sure this is from top left
eh i can work with this
adding a +8 is a small compromise for being able to work in windows terminal
Maybe your window was moved outside screen?
its a maximised window
Is it kind of full screen maximisation?
I'd say y would be for "missing" top bar but this looks just maximised, not "borderless window" pseudo-fullscreen
hmmm
I'm installing pywin32 in venv, will test it in a moment
any fullscreen app gets +-8 on all sides. I have 1920x1080 monitor - I get (-8, -8, 1928, 1048*) for different fullscreen windows as well
*task bar starts at 1040, checked with desktop screenshot in paint, lol
I did time.sleep chained with this get rect and get foreground to get to another window in the meantime
and the other -8 be for?
all sides are -8/+8
min x and min y are -8, max y and max y get working area +8
btw, minimised screen is:
>>> win32gui.GetWindowRect(w)
(-32000, -32000, -31801, -31966)
wait wait wait wait
WAIT
You mean to tell me that when you minimize a window, it actually just teleports it to the void?
๐
how have I been a windows developer for a decade and not known that
seems obvious in retrospect
btw, half-screen snipping doesn't add/deduct 8
it's (0, 0, 960, 1040) and (960, 0, 1920, 1040) for me
this explains so much weirdness
lmao what the heck
lmao
what in the god damn cinnamon toast fuck

they literally saying shit just went down into your cpu from yo screen
This program is kidding me 0,00% compress rate lol
this means your pdf file cannot be compressed further, it's kinda straightforward
the program offers multiple algorithms and it worked before, so the one algorithm chose can't compress it further
Or because it's evaluation copy 
desktop reveal
there is a pdf-mafia including shitty demos, general inaccessibly, 50MB upload limits and paid plans 
Adobe Pro version is sooo good but I don't need to handle Pdfs that often to buy a plan
I just thought of something regarding this
What would happen if you have a monitor larger than those coordinates
Theoretically
Wonder if those are hard coded
And the window would just... Be there
It would be hard. Let's start with the fact that those are negative coords
And 32k is large number
I wonder how it shows for multiple monitors
Is main screen considered 0,0? Then negatives are possible if primary screen is on the right and other stuff is on left
But what if right screen top is higher than left screen's top?
I'll need to check it
๐ง
Hmmmmmmmmm
Ice cube...
Scrolls up, scrolls down, look at channel name
OK why ice cube @wheat lynx?
no ice

... weird. That counted for 3 pings for me
That must be it
I'm seeing 3 reacts on python bot's trashbin react too. Resetting my client as I think this is a "me" thing 
That or fate is telling me something about 3 
3 pings, 3 reacts on the trashbin, 3 sides on a triangle...
No you didn't 
who's Brian? 
Brian my brain
It is now officially his nickname because I do this typo way too often
So, from now on I should ask if Brian can come out and play too? Got it. 
I'm so sleep deprived that I will probably not notice the difference
I hope my brain won't come out and play
I have to wake up on 6h and still is a driving hour away from home
We stopped in a shop so my father can get freaking candies I swear
He is the true child
So I will probably be sitting in ot for on hour so I don't feel asleep
Don't leave me vivek 
Also don't lie you forgot a 1 before the 8
let me go....
lmfao
I swear you say good morning and good night during the same hour
But good night either way :P
Imma go to sleep too. Bye Akarys ๐
timezones are weird
Bye ! 
Plus I'm sure no Indian are awake at that time
Guess I'll have to find American fellows
Here's something to do to keep you awake, count these sheep: ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐
mmm, I guess I have the whole country to myself
69420
I haven't counted but sounds about right
yeah
!e print(len("๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐"))
yup, seems about right
thanks python
@frozen coral โ Your eval job has completed with return code 0.
โโโ 69420 โโโ
๐ฆ

Akarys are you escaping the country?! Why are you driving so much
lol
IDK
My parents are like "vacations? so we can use our car to go anywhere? let's do this!"
guys i literally banned my alt from my own server
and i cant unban it
some1 help
there are 3 bans in the server and none of them are my alt
ive sent 3 different invites and reloaded the page and waited a while
but i cant invite my alt back
worlds biggest muppet?
if you ban your alt it's on the same IP as you, just use a VPN on your PC I assume your alt and your main is on your PC together, so yea
what is smt you would buy thats 3d printed
i am tring to sell smt on etsy
but idk what to sell / print
what
oMg EmoJI SpAM diSrUptiNg SERvEr
!mute @wheat lynx 96.204c
epic
good question
war
a wa
a wa
i find this very funny
does Vivek sleep
i mean when you send a message like "dead chat" you already make chat alive for 1 nanosecond
lol
any web apps example
discord?
ok
@unique elm Nice ban lol.
what
what
what
yes
good to know
@dire siren lol
๐
no it was in the available channels but I missed it so I tried mentioning it here but it was already occupied
I see everything.
ot1-apertureโs-fancy-new-system
You mean... GLaDOS? :D
lol
dang node modules are really taking a lot of spaces
Node modules is pretty huge, yes
ohhh, that's where aperture's from... I totally forgot what game it was lol
cargo's target files....
Aperture Science
We do what we must
Because
We can
I player first game but know the lore of 2 and fan-made prequel
I can hardly remember what happened
'Still Alive' from at the end of Portal during the credits.
'Still Alive' by Jonathan Coulton: http://www.jonathancoulton.com
and sung by Ellen McLain (GLaDOS, TF2 Announcer, HL2 Overwatch Administrator)
I don't own the song or video in any way. It's a great song, and I uploaded it purely based on that and to share it with others.
Enjoy!
Ly...
cargo's target dir is much smaller than node_modules
At least target is compressed into a tiny binary.
oh, I thought they're bigger, mb then
Err, they may end up being bigger, not sure because I haven't undertaken any really big projects yet
I'm working on one, but I haven't done much with it
Oh you're right that's pretty big, but node_modules can be way bigger because it's not compressed into a binary
That's good to know
lol
literally same shit as Python Lib
node takes more
node_modules is just dependencies though
And it can take many gigabytes
the way it's managed is suboptimal, that's the problem
if anyone complains about node_modules, they haven't had experience with C++ DLL hell
not to mention reproducability
personally I think node_modules and venc Lib is the way to go
that one is good if you have access to internet on the device you're compiling on
the bad thing is, afaik the .toml for depencencies has to be adjusted manually
instead of a CLI command that'd automatically check for duplicates and such
what's wrong with that?
True, that would be nice
CLI is just a lot cleaner
But the toml solution works fine
I think Gradle/Cargo way of editing dependencies isn't great
CLI is a lot more convenient and safer
i may be biased because i use VS Code
i guess VS would count too
since those tend to have terminal open
Having the option of both would be nice
so you dont have to even open the config file
.NET allows for both, XML edit manually or the CLI
best by all means
my node modules took 3gb
that simply means you need a lot of modules?
that's completely up to you, how many you need
pro tip: if you dont need any dependencies, node_modules will be 0 bytes
๐ฎ
Bro we been open for 5 minutes and already have a delivery and a carryout
Rip getting prep done
is typescript just javascript but with types
trying to know if it'll work if i paste javascript code on typescript
Yes, it should
Is Linux a better choice than Windows? For programming mainly
it doesn't really make a difference, if you're not developing platform specific things
if you want to work with ruby or perl, get linux, if you want c#, I would suggest windows just so that you can be compatible with non-.net core runtimes. Python will work great anywhere, as will most other modern languages.
Linux is a tad easier for C as you can use the system package manager for easily installing libraries
there sadly are some C libraries that don't work / are hard to make work on windows
I had that problem with a multiprecision math library (Rust bindings for it, but I doubt it was the bindings' fault). Worked only in Cygwin and only on the -gnu toolchain.
Yeah, if you need the gnu system for whatever reason, windows isn't the way to go
What about WSL? Does that not work?
It does work
It is just quite unwieldy a lot of the time compared to the native system
It is still ime nicer than trying to run things with wine, proton or over conventional VMs, but if your primary use case is linux dev, it is better to just have linux
just because of the automation capacity
if you're developing at all just use linux to save time
Windows task management is really powerful
but unwieldy
Eh, I quite like GUI personally
Really not a fan of random text file with random format whose errors appear somewhere
I am a fan of that
But wsl does make dev on windows a lot easier in those few niche cases where you would normally have to do some insanity with msys2/cygwin
And wslg so far seems functional at least.
Windows is good through console and linux also usually has a good gui
My dude, here is the thing Bill Gates named it and you have to pay for
I paid and don't have it, I'm on double invisible OS neither, right there
Windows has a good command line interface?
I find Linux's to be much more complete
^
should have most things you need?
also, powershell is even cooler
not to mention that you can get the coreutils on windows I think
Everyday I get a little closer to just dropping flake8 from my workflow
guy got banned on the #discord-bots discord.py discord server so i came here to say nice ban.
He was being annoying lol




โ


