#voice-chat-text-0
1 messages Β· Page 219 of 1
yes, that
where i put it'
you need to move it somewhere your program can see it
hm ok
or just extract it
and then provide the full path instead of just ffmpeg
for example, this
args = [r"D:\ffmpeg\ffmpeg.exe", "-i", ...]
# ^ this r is important
i put the exe in the lib
so ill see if this works
this is so dumb i cant talk
or screen share
those restrictions are there for reasons, mostly to avoid trolls;
it's lesser of two evils
!voice π
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
same errir
then change the path to whatever correct path is
im not sure how to change path tbh
find where "ffmpeg"/'ffmpeg' is mentioned in source code
hopefully it's only one place
you can also mess with PATH variable, but that might have unexpected consequences
is there a shortcut to search for shit
@remote badger π
hi
@old cedar π
f'ffmpeg -i "{path}" -b:v {bitrate}M -vf eq=brightness={brightness} -vf eq=contrast={contrast} -af "atempo={tempo}" "{temp_filename}.mp4"',
so path i just go to where exe is and control c the path
Hi
ffmpeg = r"C:\path\to\ffmpeg"
f'{ffmpeg} -i "{path}" -b:v {bitrate}M -vf eq=brightness={brightness} -vf eq=contrast={contrast} -af "atempo={tempo}" "{temp_filename}.mp4"'
also this very wrong usage of f-strings
is the string later used in os.system?
dont think so
fffmpeg
ffmpeg = r"C:\Users\Jackie\Desktop\ffmpeg-master-latest-win64-gpl\bin\ffmpeg.exe"
os.system is bad for this, use subprocess instead
using f-strings is bad for this, use lists of arguments, which subprocess will often force you to do
*subprocess or asyncio.subprocess
or, if you don't want to introduce more variables,
fr'C:\Users\Jackie\Desktop\ffmpeg-master-latest-win64-gpl\bin\ffmpeg.exe -i "{path}" -b:v {bitrate}M -vf eq=brightness={brightness} -vf eq=contrast={contrast} -af "atempo={tempo}" "{temp_filename}.mp4"'
it's a for real string
@uneven canyon elif?
if a:
...
else:
if b:
...
if a:
...
elif b:
...
to reduce nesting
since in Python you can't do else if on one line
as a list, would look something like this
[
ffmpeg_path,
"-i", path,
"-b:v", f"{bitrate}M",
"-vf", f"eq=brightness={brightness},contrast={contrast}",
"-av", f"atempo={tempo}",
f"{temp_filename}.mp4",
]
I don't remember how , works in vf, so the order might be flipped
import random
def getAnswer(answerNumber):
if answerNumber == 1:
return 'It is certain'
elif answerNumber == 2:
return 'It is decidedly so'
elif answerNumber == 3:
return 'Yes'
elif answerNumber == 4:
return 'Reply hazy try again'
elif answerNumber == 5:
return 'Ask again later'
elif answerNumber == 6:
return 'Concentrate and ask again'
elif answerNumber == 7:
return 'My reply is no'
elif answerNumber == 8:
return 'Outlook not so good'
elif answerNumber == 9:
return 'Very doubtful'
r = random.randint(1, 9)
fortune = getAnswer(r)
print(fortune)
!e import random
def getAnswer(answerNumber):
if answerNumber == 1:
return 'It is certain'
elif answerNumber == 2:
return 'It is decidedly so'
elif answerNumber == 3:
return 'Yes'
elif answerNumber == 4:
return 'Reply hazy try again'
elif answerNumber == 5:
return 'Ask again later'
elif answerNumber == 6:
return 'Concentrate and ask again'
elif answerNumber == 7:
return 'My reply is no'
elif answerNumber == 8:
return 'Outlook not so good'
elif answerNumber == 9:
return 'Very doubtful'
r = random.randint(1, 9)
fortune = getAnswer(r)
print(fortune)
@whole bear :x: Your 3.12 eval job has completed with return code 1.
001 | File "/home/main.py", line 6
002 | elif answerNumber == 2:
003 | ^
004 | IndentationError: unindent does not match any outer indentation level
move them all three spaces to the left
!e import random
def getAnswer(answerNumber):
if answerNumber == 1:
return 'It is certain'
elif answerNumber == 2:
return 'It is decidedly so'
elif answerNumber == 3:
return 'Yes'
elif answerNumber == 4:
return 'Reply hazy try again'
elif answerNumber == 5:
return 'Ask again later'
elif answerNumber == 6:
return 'Concentrate and ask again'
elif answerNumber == 7:
return 'My reply is no'
elif answerNumber == 8:
return 'Outlook not so good'
elif answerNumber == 9:
return 'Very doubtful'
r = random.randint(1, 9)
fortune = getAnswer(r)
print(fortune)
@whole bear :white_check_mark: Your 3.12 eval job has completed with return code 0.
Yes
!e
import math
print(dir(math))
@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.
['__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'cbrt', 'ceil', 'comb', 'copysign', 'cos', 'cosh', 'degrees', 'dist', 'e', 'erf', 'erfc', 'exp', 'exp2', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'gcd', 'hypot', 'inf', 'isclose', 'isfinite', 'isinf', 'isnan', 'isqrt', 'lcm', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'log2', 'modf', 'nan', 'nextafter', 'perm', 'pi', 'pow', 'prod', 'radians', 'remainder', 'sin', 'sinh', 'sqrt', 'sumprod', 'tan', 'tanh', 'tau', 'trunc', 'ulp']
this?
dir
still not understanding the question of "look into a library"
ah
!d math
This module provides access to the mathematical functions defined by the C standard.
These functions cannot be used with complex numbers; use the functions of the same name from the cmath module if you require support for complex numbers. The distinction between functions which support complex numbers and those which donβt is made since most users do not want to learn quite as much mathematics as required to understand complex numbers. Receiving an exception instead of a complex result allows earlier detection of the unexpected complex number used as a parameter, so that the programmer can determine how and why it was generated in the first place.
I see
ig would be related to this, but more generic
#voice-chat-text-0 message
via refactoring and code golfing
refactoring is just general "changing code while preserving functionality"
code golfing is competition for shortest code possible
which might be viable for book examples since books get outdated
depends on the context
while reading out the code, probably "def"
while referring to an item/concept, "function"
not necessarily just to call it from multiple time
also to simplify the program in general
then there's classes
which at first don't save space as much as time (due to encapsulating complexity)
ig Python doesn't force the notion of a class as much as something like Java
but it's still a core concept
I think the thing I'm working on is soon to be the largest project I've participated in
(approaching 18K lines)
still relatively small
@fading fractal coding without functions and classes is called: Assembly π
some assembly languages have functions
that part will become a separate project later
yes
OS processes not chemical processes
yes
for what OS?
do you need it to be HTTP?
if no, do you need it to be TCP?
RPC? (remote procedure call)
relatively simple technologies to try: HTTP, websockets (just an extension over HTTP), ZeroMQ
this is on separate computers, right?
does the server have in-memory state?
does the server store anything long-term in-memory or is it all on-disk?
as in the server program, not the server as the whole computer
then HTTP should be fine
with something like FastAPI
I guess so
not on this server at least (there are others where I do, but usually not in English)
the main one is non-public since some months ago
Russian language
if the server was tied to in-memory storage, but didn't require reliable message transport/processing, then the choice could be aiohttp
aiohttp-based servers don't scale as well, since its model is as single-threaded as asyncio is
unlike FastAPI, which, as an ASGI framework, allows for multiprocessing, but, when doing so, forbids shared in-memory state
multiple Python processes can't all access the same object
multiple threads can, but with restrictions (the main one currently being GIL)
global interpreter lock
meaning only one interpreter running at the same time within a process
ZeroMQ has a very different model to HTTP;
it's closer to sockets but abstracts away some difficult parts
ChatGPT makes more mistakes and has less responsibilities
fastapi requires also an ASGI server
such as uvicorn
in what way does the command not work?
something something that "law" about whenever making mistakes is mentioned, that mention will contain mistakes
(I was missing "has")
"fastapi[all]" includes uvicorn
I think at some point it either didn't properly install on 3.12 or something else went wrong
the [all] variant
but that was right after 3.12 release, so quite expected
it might've been related to uvloop or something adjacent
... but generalised
text slightly hard to read, but only because of unusual formatting (not bad, just unusual)
consider adding box-sizing: border-box to the two elements you have blue border for
(css)
this just avoids horizontal overflow
so that this doesn't appear
.bluepythons {
box-sizing: border-box;
}
What is Hroizontal overflow?
and also because the border isn't counted as "width" by default
so when you set width to 100% and add border, by default it'll be slightly wider
which means it doesn't fit, therefore a horizontal scrollbar appears
So basically a middle manager.
one of my favourite Bryan Cantrill's talk titles
something inside JS is responsible for that, I'd expect
Both. Simultaneously.
@remote badger @neat ruin π
π
If either of you didn't join VC just now, apologies.
I did
I think it's not unit-testing if it's UI
I thought it was AI lol
dont mind me I am trying to improve my listening to British English accent.
@solid perch https://youtube.com/@irlrosie?feature=shared
Hey Everyone! My name's Rosie. I'm a voice actor, singer/songwriter (in the band MODERNS), and I live in Los Angeles, California. I use my weirdo skills to prank scammers, and make you laugh all at the same time whenever humanly possible!
πBecome a member of my channel for exclusive perks, videos, livestreams, chats, discounts, giveaways (a...
I'm Australian.
British and Australian both sound the same.
To many, perhaps
I don't have headphones right now otherwise i would love to chat with you
@scarlet cargo π
What do you have to do to qualify for voice chat?
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
ok so what is your experince in software development field, if you don't mind asking you.
!voice
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I'm a hobbyist. I make pretty pictures.
@somber heath I sent a friend request if that's ok
I avoid friending people outside of exceptional cases.
Emotional Damage
This scam was from an eBay listing that a friend almost fell victim to. Learn about this weird scam, what to look for, and how to avoid it. PLUS watch me reverse troll them in the funniest way ever using my voice acting skills to confuse the living daylights out of them!
Become a Member for exclusive content, early releases, shout-outs at the e...
so you are not realted to CS field?
@solid perch This one
Not in such terms.
I wasn't aware I was being spoken to.
To answer, no.
You are a heart break kid π
Look upon my works, ye mighty and despair.
I'm eating dinner and waiting for my bf to come back after checking a friend's dog that just got hit by a car
hmm so you believe in vaccine and Pakistani me who survive the whole pendemic without vaccine and mask. I guess our immune systems are OP π
π
Anyone here have expereince in Python programming?
i think just about everyone
but Opal Mist said he is an artist
experience != do it for a living
ok fair enough
do you need help?
So I was thinking, is it beneficial to read the source code of Large frameworks like "Scrapy" on Github to improve your python skillls?
if you're capable of making sense of it, taking a look at big projects can be a great way to see some things you may not have thought of
if you look at it and don't understand it, it's not gonna help much lol
its so massive that I have to connect he files with a diagram to understand interconnectivity between each file.
i would just start with the https://docs.scrapy.org/en/latest/
I recently learned software designing principle in Python and realized that learning them is very important, it got me out of tutorial hell.
i edited the link
yeah, im doing software engineering in college right now
the design process and architecture and requirements, agile, scrum, waterfall, spiral models
it's... fun at times
I am aiming for Data Analysis and then Data Science with Python. So normally people in these field people can just do the work without applying good code practice and all that. But I learned it anyway, I wanted to strengthen my base before going for development projects.
I don't have a Cs background though, I am a self taught.
i was self taught, then went back to college. I skated through the python courses but the conceptual stuff like software engineering is more of a challenge
This is their design
i've never sat down and wrote our requirements and class/component diagrams before for any of my projects, i just wing it and refine
I guess i will start with the Spider module and then Engine.
whatever you wanna do lol
i dont have time to dive into this with you
i have 3 projects due ... later today now
its ok, it donna take a lot of time
are these python projects you are doing?
yeah
oh
no
sry
is CS courses for my Bachelors
im working on a personal project for my portfolio as well, but i dont have much free time
its ok see you around.
you too! youre diagram is really nice
its from their Docs π
oh lol i thought u made it
see tho!
they applied principles of software engineering to it!
diagram, components, probably started with requirements and user stories
I will also look into software architecture principle in Python as well. I can do my projects without knowing these but leaving these things make me feel like a fraud, you know imposter syndrome π
no, i dont suffer from imposter syndrome lol
lemme see
i can understand/write most python
Well I guess i am a perfectionist, It really bothers me if I don't know something.
the book im reading for class is:
Software Engineering: A Practitioner's Approach 9th Edition by Roger S. Pressman and Bruce R. Maxim
the more you learn, the more you dont know
i feel like thats a constant
theres always some new library, language, tech stack, implementation
thats evolving
this is weird, when I search Gifs I can see them in small pop up menu but when i click them they get posted
can'y*
can't*
Hi everyone
I finished introductory Python and I wanted to know that for Advanced Python, should I just follow a course under the same name to learn more advanced topics?
Or should I follow in the advanced part of my desired work field, for example, back-end and the concepts and frameworks that are for this field?
Song by Bryant Oden. Video by Forrest Whaley.
Get the song...
http://itunes.apple.com/us/album/the-duck-song-the-duck-lemonade/id314050190
Get the shirt...
https://teespring.com/stores/forrestfire-films-store
Thanks so much for watching and sharing! :)
MORE DUCK SONGS:
http://www.youtube.com/vie...
@wind raptor
move it inside initBot?
it's a local to initBot
but called from itemByName which is outside
@wind raptor const to prevent re-definition
I doubt there's any other benefits of that style
it also disables hoisting
"so you can get even more errors because of undefined functions"
this is generally confusing
JS forces async
... normally
just by not providing sync interfaces (in most of the browser and most of the node.js)
there are some holes in both, but they're inconvenient
or just move let out of the function
A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.
0o looks weird the first time seeing it.
there's also just 0660 in some languages, I think
(C maybe?)
quite bad
fun sad fact: C standard received binary literal syntax only in C23
other three apparently were from the beginning
just use hex
or something like that
I think MSVC, GCC and Clang all implemented it anyway
I didn't know hex can use capital X. 0X0
!e
0XaBcDeF
@vocal basin :warning: Your 3.12 eval job has completed with return code 0.
[No output]
might assume door is faster to break
but it's not broken one block at a time
thus failure
if only the upper block breaks, the algorithm is correct
it hopes lower block stays
plugins as services and plugins as responses to requests?
you can convert latter to former quite easily
"still not compelling enough to use anyhow"
tungstenite::Error::Io(std::io::Error::new(std::io::ErrorKind::Other, e))
@obsidian dragon put carpet on fence, does the bot understand how it works?
@obsidian dragon iron doors take longer to break
likely depends on distance
when the bot didn't go for the doors, it was close enough to the player already
and not near the doors
thus door path would be suboptimal
yes, but the hope
@obsidian dragon how'd you make that?
!voice π
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
ah, thanks brother
thatΒ΄s understandable
I was looking for someone to help me with a python project
if anyone has any interesting material on how backtracking can help solve sudoku boards
I wanted to test something I saw on a video on youtube a long time ago
ive got a feeling that opal looks like either of these 3:
- a gigachad
- a stereotypical nerd
- a 2040 prediction gamer
i bet its the first one :)
Hi everyone
I finished introductory Python and I wanted to know that for Advanced Python, should I just follow a course under the same name to learn more advanced topics?
Or should I follow in the advanced part of my desired work field, for example, back-end and the concepts and frameworks that are for this field?
would this be a question for #career-advice?
if that relates to "desired work field"
I wanted to build an algorythm to solve sudoku boards represented on an excel sheet, would numpy be the best/only library for this case?
what do you achieve with numpy?
got it
no it's for python path.
that what should i do for python advanced
when do you belive I will be able to talk on the chat? because IΒ΄ll probably work a bit on the project this night and share it with you guys when IΒ΄m able to.
But thanks for the tips, itΒ΄s really clarifying
what does "advanced python" mean for you? what do you take as a measure? where do you draw the line?
the only part of the code that is tricky for me is on the 3x3 squares
what do you mean @somber heath ?
Exactly, but this is all build up on excel sheets
did you read my first message completly?
but I saw some people making the code based on tables built in
the general advice would be "create projects, practice, use different methods of learning, regardless of whether you take courses or not"
I belive it would be simpler to do the tables in Vs Code, but would like to do it in Excel
since I download the table through the excel format
yes, it doesn't cover what is "advanced" and what isn't
and then I can download 100 tables and solve them as fast as I can
i gotta go for now see you guys later π
I, for example, wouldn't call just using Flask advanced, but it sure is back-end and sure is a framework
if itΒ΄s possible for me to input all this tables in a faster way then excel it would be heaven on earth for me XD
yeah my question exactly it is.
using image processing is the next step
I would love to be able to build something like that
can i send you message?
I don't do DMs
brother, thanks a lot for your time. IΒ΄ll probably work on some homework and wait until I am eligble to speak on voicechats
ow
I'm not well aware of what courses there are; most of what I did was just reading stuff, building stuff, showing stuff, getting others to break that stuff, starting again
no one helps.
Ah, IΒ΄ll check this rules out, thank you
made many mini croissants
@storm pine π
Delightful things are often small.
hi, my connection timeout
RTC error?
yah
normally just waiting fixes it, but not always
@whole bear π
hi π
@obsidian dragon https://millenaire.org/
these long error messages are reminding of the times one of my projects had types so difficult the compiler refused to output them in the console
and instead just wrote them to the file
I think largest it got to was 300~400 characters
I've only tried any automation in minecraft with opencomputers (mod)
drones there are fun, especially thanks to lack of persistent mutable state
so you need to pack the program and send it to them so that they boot from memory
it has, like, 4KiB of static (eeprom) and around 128KiB of dynamic (ram)
"you can write a transpiler"
and an optimising bundler
I had a bundler but it was bad
I still don't have proper Lua parser integration
also, bundler is bootstrapped (just to verify that it works correctly)
@fair dawn π
Hello
right now it just stores modules as strings, then does magic to replace the require with that
the drone code might as well just be "receive one message, exec it"
but that introduces potential for vulnerabilities, if that's on multiplayer server
@somber heath "explicitly silenced" sounds like "explicitly implicit" out of context
&zen
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability is for hobgoblins.
Special cases will be met with the full force of the PSF.
Purity beats practicality.
There are no errors.
Anyone who says there are errors will be explicitly silenced.
In the face of ambiguity, remove the freedom to guess.
There is only one way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is not real because time is fake.
If the implementation is hard to explain, it's a bad idea.
If the implementation is compliant with this style guide, it is a great idea
Namespaces may contribute towards the 120 character minimum β let's do more of those!
!zen
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
hello
I took some time to think about what I wanted to do in programming and I liked game development the most, I don't know anything about Python or JavaScript where to start and what better way to study
!stream 264657660190654464
β @wise loom can now stream until <t:1700451187:f>.
CREEPYPASTA STORYβΊby zachariusfrost: https://www.reddit.com/r/nosleep/comments/l6b3su/theres_a_vtuber_on_the_dark_web/
Creepypastas are the campfire tales of the internet. Horror stories spread through Reddit r/nosleep, forums and blogs, rather than word of mouth. Whether you believe these scary stories to be true or not is left to your own disc...
for those who dont have voice perms I think you can type !voice to see what to do to get voice perms
uvicorn.run(app, host="192.168.1.90", port=9999)
Status: inactive
Status: active
@flint quail @vernal warren π
import uvicorn
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"Hello": "World"}
@app.get("/items/{item_id}")
async def read_item(item_id: int, q: Union[str, None] = None):
return {"item_id": item_id, "q": q}
if __name__ == '__main__':
uvicorn.run(app, host="192.168.1.90", port=80)
netstat: feature AF BLUETOOTH' not supported. Please recompile net-tools' with newer kernel source or full configuration.
findstr: command not found
there was a rush with fastAPI questions
Yeah yeah yeah
Are they still there?
people are using AI interpolation but like it ain't good
Yet. We'll get there
:(
i have no problem with 24 fps for movies
24 is most movies
standards are typically 15, 24, 30, 48, 60
partially cost, partially tradition
well they could go 23 and we wouldn't really notice an issue, but that's just not what we do
i like 3*powers of 2
24 is a cool number
!e ```py
3*2**3
@oblique ridge :warning: Your 3.12 eval job has completed with return code 0.
[No output]
fuck
ye
but like 3 times power of 2
24
cool num
hint: ||mate in three||
solution: ||Re8+ Rxe8 Rxe8+ Bf8 Bf6#||
that sounds like pain
smash ultimate really shoulda had a blue dk alt
i want dankey kang
Wait does it not?
no π
shoulda replaced blue tie with blue fur ye
how do you know that's the anime MC?
everyone has plain brown and black hair
spiky ass colored hair walks in
yeye
i need to rewatch fma brotherhood but i don't wanna spend so much time and cry
jolly ranchers ain't it
durable candy lmfao
peppermint bark is good af tho
maybe if you ate them one at a time you wouldn't have a problem
Photo used: 14/365 by Alexis Fam
https://www.flickr.com/photos/boonlee89/6346189946
Licensed under Creative Commons Attribution 2.0 Generic (CC BY 2.0)
(https://creativecommons.org/licenses/by/2.0/) /
Discover music ranging from epic symphonies to relaxing piano tracks and everything in between.
Google+: https://plus.google.com/+MusicITVPYouTu...
ceo sam altman
very very fast lmao
Hi
it's worth it though
E-edward....
let people call me old all they want
that shit is still top tier
yeah but all the kids hate on hxh and fmab cause they think they're old and overrated
you're too young hemlock
hxh is not overrated what are you on about
hxh dope af
you don't gotta think too hard though
you can still just sit and enjoy it
same with like fmab
but thinking about it is the enjoyment 
also ye i totally hate that argument
like i ain't watching one piece
ok i did watch naruto
but i won't suggest it to anybody
trying my hardest to find the original dragon ball series in spanish sub
helps me want to learn the language
ok dbz kai is top tier af tho
cutting out the filler did wonders 
oh dude that's the worst part of tryna figure out if startups are real or not lol
that's pretty sus cause i've only got a text a few times
it's mostly calls, linkedin, and emails
π
everybody's working for the weekend
saturday 6am
bro old youtube MVs for songs were always so cool
..
.
.
.
ΰΈΰΈΉΰΉΰΈ§ΰΈΰΈ£ΰΉΰΈΰΈ±ΰΉΰΈΰΉΰΈͺΰΈ΅ΰΈ’ΰΈΰΉΰΈ‘ΰΉΰΈ’ΰΈ²ΰΈΰΉΰΈΰΉΰΉΰΈ₯ΰΉΰΈ§ΰΈΰΈ΅ΰΉ http://youtu.be/ROBlEHXcfqw ;]
ΰΈΰΈ·ΰΉΰΈΰΈΰΈ΅ΰΉΰΉΰΈ₯ΰΉΰΈΰΉ.
ΰΈ¨ΰΈ΄ΰΈ₯ΰΈΰΈ΄ΰΈ : ΰΈΰΈΰΈ’ ΰΈΰΈ£ΰΈ±ΰΈ’ ΰΈ ΰΈΉΰΈ‘ΰΈ΄ΰΈ£ΰΈ±ΰΈΰΈ
ΰΈΰΈ±ΰΈ₯ΰΈΰΈ±ΰΉΰΈ‘ : Music Calendar 2009
ΰΈ§ΰΈ΅ΰΈΰΈ΄ΰΉΰΈΰΈΰΈ΅ΰΉΰΈΰΈ³ΰΈ‘ΰΈ²ΰΈΰΈ²ΰΈΰΈΰΈΈΰΈ adew71http://youtu.be/ROBlEHXcfqw (ΰΈΰΈΰΈΰΈΰΈΰΈΰΈΈΰΈΰΈΰΈ£ΰΈ±ΰΈ:)
(ΰΉΰΈΰΈ·ΰΉΰΈΰΈΰΈΰΈ²ΰΈΰΈΰΈ²ΰΈ youtube ΰΉΰΈΰΉ block ΰΉΰΈ§ΰΉ ΰΈΰΈΆΰΈΰΈΰΈ³ΰΈ‘ΰΈ²ΰΉΰΈΰΈ’ΰΉΰΈΰΈ£ΰΉΰΉΰΈ«ΰΈ‘ΰΉΰΈΰΉΰΈ§ΰΈ’ΰΈΰΈ²ΰΈ£ΰΈΰΈ£ΰΈ±ΰΈΰΉΰΈ«ΰΉΰΈΰΉΰΈ²ΰΈ₯ΰΈ)
10 years ago I took 2 weeks off work and animated this fan video for Ween. They loved it so much they made it the official video.
It's been on YouTube for a long time on other people's channels, but generally at a very low res. Lots of people have asked me why I hadn't uploaded it myself, so 10 years later, here it is.
just got doxxed
nothin personnel...kid...
that's metal af
chain on the tail does go kinda hard
(this is my 2009 speaking)
Isn't that your, you know, job, Hemlock?
order 66
"hemlock spins the block and removes the ops"
yeungling
younglings, yeah
ying ling
kill it
dew it
dude for some reason, the night after having corona, my poop smells like weed
idk man
it just does
nah like
the bathroom will just smell
i wouldn't be suprrised
lol
you probably got the virus from a pot head
alternatively, the virus is a pot head
everclear shooters
or he is
and he's blaming it on corona
fucking pure ethanol lmao
beer virus
yes
horshoe crabs got blue blood
there's hella of these dinosaurs at sandy hook beach
smurf car
ye but it's smurf blue
add a hat
lmfao
tinted white
Hello, 911?
I need @rugged root here taken to the hospital
Hi Chris
i don't mind it
people love to hate on black wheels but i'm a fan of those too
but like copper looks sooooo bad
u good
i've watched a bit
not too much on it tho
the fanimation stuff is always so fun
for game grumps and oney plays lol
no
.wa s 169 cm
1690 millimeters
185 gang πͺ
about 5.54 feet
just embrace the metric system
@rugged root y u no have Intune with white glove??
Intune would not help here, unfortunately

average american
i don't get why americans refuse to use meter
@obsidian dragon programmer socks
people fear change
waiting for the day we use a base 12 number system as a society
ye fuck dividing by 2 and 5
i want 2, 2, and 3
base 9 is meh
just divisible by 3
yuck
prime base system π’
wait what you doin
bruh
what do you mean i have to close these?
you shoulda used the hotkey Ctrl + Shift + Alt + Win + L
...it's complicated... remember that 35% of us were stupid enough to vote for Trump
(although, I suppose, that is about the same percentage of Germans stupid enough to vote for Hitler and Germany uses meters....)
My dad was telling me that he went into the owner's wife's office, and he was making fun of her for having an ultrawide monitor, Chrome maximized, and there being so many tabs that each tab only said (x)
I was in her office earlier that day, she had four different Chrome windows open, each with that many tabs
i woulda made fun of her too
All the people here
I need to restart a computer
"can I close Edge? What're all these tabs for [internal order management]?"
oh yeah it's fine those are from like last week
CLOSE YOUR SHIT!!
||though tbf that happens to me too sometimes||
i do be having 50 firefox tabs open
i do be having 0 firefox tabs open
Check out my new Chrome spinners. #pimpmychrome
(he's joking, he did 6 on purpose)
@molten bay Yo
"wolf ears!" "vroid wolf hair" "vroid hair preset wolf ears" "fox tail and ears [vroid]"
@molten bay Check out the #voice-verification channel
if you take 6 spots, expect to get boxed in from 6 different locations
That'll tell you what you need to know about the voice gate
That said, you can still chat in here and talk. If we're in VC we'll be watching the text channel so no one gets left out
wide screens buddy
So long as you're participating it's all good
can someone point me to a goodlibrary to use for sqlserver based db
It's the spammers that are just like "1...2...3..."
M$?
Allow me to step in 
bro i was having hell at work with pyodbc
!voice @molten bay
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
i need to be able to connect to just the server then i want to exec stored procedures and just append "USE {dbname}" before so that i can quickly swap the db that i am using
!voice
ODBC?
Don't use ODBC unless you're absolutely forced to
Embrace literally anything else
Don't go down the road of that sadness
i'm stuck with the env i'm in and we only have pyodbc but also don't have drivers
because i am dumb as Frick
i see
Do you already have async code?
yeah the company has multiple clients and each db just has that clients code. and all the stored procedures match on all db's
be back in a giffy
Righto

Almost sounds like how SAP does their programs....
who is SAP?
Business software. They're big in Europe. Kind of like Intuit (who does Quickbooks) here in the states
well it's my aunties accounting software company
so more or less the same
basically interning
Oh god accounting software... I work at an accounting firm as IT
So you're in my wheelhouse of pain
zipper man
bro i'm tryna remember
i forget if there's one in english that's legit just man in the mirror which is so obviously MJ but that hasn't changed for some reason
hanged man, j. geil?
i can't rmeember
it's been too long
hold on
oh localized name is mirror man nmv
mirror man moment
yoooo
we are scientists mentioned
Official video of We Are Scientists performing Nobody Move, Nobody Get Hurt from the album With Love & Squalor.
Buy It Here: http://smarturl.it/ylao7e
Like We Are Scientists on Facebook: http://www.facebook.com/wearescientists
Follow We Are Scientists on Twitter: http://twitter.com/scientistbros
Official Website: http://wearescientists.com/...
bro my fucking cat
wakes me up 6am
so handy but still
ye
but also when working from home
she meows so loud outside my room for so long
when there's legit someone else in the other room for her π©
with NO DOOR
people are distrubing themselves
everyone at my office is OOO rn and i have nothing much to do atm π€·
still working on stuff tho
y'all know about chris
subset
#notalladmins
fuck 8
but 10 was pretty nice
vista was dope
idk why so much hate for it
ye
ahhh
that's the annoying part of windows
OHNO
:3
looks pretty crisp for a gif
bro chilly's got rid foo their fried pickles
of
idk man
i wish i can say
caas
buy it
invert y axis is old gamer thing
i prefer full inversion or none
not a fan of mixed
so imagine a turret
you're moving yourself, not the aim
ok actually flying is y inversion only
iirc many games have invert y for fly only option
ye
wood is wet
@woeful sentinel If you're wondering why you can't talk, check out the #voice-verification
Sorry, forgot to hit enter
forgorful
i forgor π
sexy move is to get a button that sends a wakeup on LAN signal to your computer
Sexy move is when cables are invisible
the only cable you see on my desk is the power strip going to the desk
Mmmm... magic packet....
power strip to underside of desk then manage all the cables from there
embrace the cables?
hell no
ugly af
a mess
yes
true
which is why i have a coil over the monitor cables going down to the pc
lemme get pic of back of pc real quick brb
lol i got a foot hammock
boy do i have news for you
it's also a standing desk
yes
yes yes
that's right
so i switch between standing and sitting with my feet on the hammock
Don't put your feet on me
think I have the same case
dumb dumb
playwright
@hearty cosmos
it's a bot browser but playwright is much nicer to use imo
microsoft
if you can mess with the APIs alone, i'd avoid using selenium and playwright
mmmm, npm package
as long as you can make requests
but if you need to render js, then use playwright
API is legit easier than using a browser tester i promise
spiders ye
yeye always look there to see what you can do
but also, checking robots.txt is also what makes it really easy to find the paths to look for if you are scraping
and sitemap.xml
robots.txt is legit the streisand effect
ye just limit yourself ezpz
random SOCKS chains is something you can do, but i wouldn't suggest it because moral bad
ye
Literally what I wear at home though
SmartWool socks at that
Kinky
SaaS giving
SASS giving
@wind raptor https://headlessui.com/react/menu
just use tailwind then copy the components people make
@wind raptor https://velocity.builder.io/
figma balls
ligma "
π
I feel like I'm back in gradeschool
Heyo!
I have not
i'm thinking about going for a different framework
finding job for django is kinda hard here
asp is worth picking up, yeah
asp/php/nodejs are mostly used
The more tools you know, the more desirable you are
Honestly looking at modern PHP is really really cool, too
yeah
In this coding adventure I explore ray marching and signed distance functions to draw funky things!
If you're enjoying these videos and would like to support me in creating more, you can become a patron here:
https://www.patreon.com/SebastianLague
Project files:
https://github.com/SebLague/Ray-Marching
Learning resources:
http://iquilezles.or...
i know i don't want js
so thinking on the other two
mine is just simple black
cables
3060
wynaut
yes
oh the airflow in here is real nice
very open case
doesn't get hot much from normal use
Same
win+r defaulted to cmd not powershell, I think
ye and terminal just hosts whatever you want iirc
yo im on a diet rn
but i really want shephards pie
no keep talking
oh my
chicken pot pie
mmmm
i would kill for some pb cookies rn
@sharp void If you're wondering why you can't talk, check out the #voice-verification channel. That'll tell you what you need to know about the voice gate
?
git gud
or changin ip
thats so sad
how many bathtubs is that?
Tablespoons because we use them to stir tables
ye i haven't touched cogs in ages
hemboy gimme video i won't show my hack repos
jk they ain't even archived, deleted
1-2 years about
nerd
3-4 years for me
@rugged root, hello, i dont want to disturb but im kinda new on the server and i saw u have the admin role and know pretty well how to code in python and i have a few questions about coding, i wonder if i could ask you about somewhere i can look or study from to master some topics as dinamic programming an some algorithms such as branch and bound. it is for a subject of the degree im studying, thanks :).
@torpid bolt me personally i don't thing studying something as interactive as programming like that is a great idea
you always have everything you need at your pc so if you forget a concept, you're always able to simply look it up
just don't get used to copying what you see verbatim and learn to learn what you're reading
don't ask to ask, just ask ;)
!resources Absolutely! So on our resources page (see the bot embed), there's a link to "The Algorithms" which is a git repo of all kinds of algo and data struct stuff
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
thank you very much
We also have the #algos-and-data-structs channel who can help you out as well
help me
Demanding help is not the way to get help. I'm juggling some things here at work at the moment
thank you a lot, ill take a look
dw nimbus, if anyone here's got a trash memory, it's probably me
but yeye
ye
that's why i was a lot more geared towards math and physics in school
because on the exams, i didn't have to memorize anything
i would just be able to derive what i need
well problem solving != memorization
a page one of my professors told me to take a look at is geek for geeks, is it a good page to learn algorithms ??
i'm more problem solve dude less memorization dude
ye also thankfully i haven't touched school in forever
It can be hit and miss. Usually if I'm googling or looking around for things, I'll check a couple pages instead of looking through one specific website. Some places explain some topics or algos better than others
@torpid bolt you need one of these
In software engineering, rubber duck debugging (or rubberducking) is a method of debugging code by articulating a problem in spoken or written natural language. The name is a reference to a story in the book The Pragmatic Programmer in which a programmer would carry around a rubber duck and debug their code by forcing themselves to explain it, l...
explaining something is a great way to find an issue
it's also a great way to learn
okey, thank you, btw is there any way for me to see how much messeges i have left to send to be able to talk ?
Yeppers. In #bot-commands, do the !user command
rubber duckies are god tier
okeyy
!e ```py
print(50 - 9)
@oblique ridge :white_check_mark: Your 3.12 eval job has completed with return code 0.
41
also don't spam messages expecting it to count to the goal
actually i know everything
@rugged root how did you get that moderator programs alumni badge?
lol
no no, i was asking cause im in the server for 2 years now and i aint even got 12 messeges hahaha
lol rip
well i entered the degree a year ago so...
well same program again ain't gonna be helpful imo
i think working on different small projects that make use of what you're tryna learn is more important
you've gotta try explaining it to someone yourself
the best is to explain it to somebody that has no context of what you're talking about
yes i think the same way as u but on my university at least, the professors just tell you for which cases an algorithms works and the exercises are not part of a project, they are just individual exercises
that's my excuse for never studying cause i don't study til the night before but by the time it's then, i know cramming ain't gonna help
@pure gust you just dissed how i passed history every year
cramming 1 hour before exam
lol
i was on edge with history and chem only
same tox
everything else was fine for me
oh dude my physics and math classes carried tf outta my gpa in college
i failed like 6 or 7 classes but still got a 3.9 gpa at the end of it somehow
That's crazy
it was mostly language and history classes
but that's also half cause i didn't show up for half the semester π€·
i was fine with language
A+ af on all the classes in my major
i actually learned pretty well but was uninterested
but our language tests are actually very easy
i can at least read and write a decent number of languages
are u all guys from the us?
yeah 100% get it but i'm in india
i don't do good i get beat
lol
same af here lol
except in college, i'm not showing my parents any grades lol
tuples ye
immutable
i think for me i was just instictually scared of it without even having to show it to parents
xD
that was wild
arrays aren't really a thing in python
yeah they're there in libraries
and you can make datasets
but in python, we have list
and possibly sets
and strings
and generators π©
well atleast python has numpy
javascript has arrays
python for GUIS π
which are not proper arrays
ye but numpy doesn't have classic arrays and that's a 3rd party library
and you have ArrayBuffer which you can use to get a proper array in javascript but
its pain
lists ma broder
lists ftw
its as close to an proper array in python without just switching language
@vernal bridge@rugged root ```py
variable = []
list
so in python, we don't have arrays
except lib
but for the most part, you never touch arrays
bruh lists work the same way
yeye
list -> dynamic pointer array to PyObjects
array.array -> dynamic array with ctypes (from what i understand)
numpy -> proper array with ctypes but with a shit ton of other added functionality?
import array as arr
array_1 = arr.array("i", [3, 6, 9, 12])
print(array_1)
print(type(array_1))
alias
all datatypes got their uses
Sets are the worst thing the human has ever created
in python, you'll literally never touch actual arrays
they're pretty handy
performance not efficiency
quality before quantity
import this
well actually i think atleast 30-40% of people who actually have a python job (i'm thinking data science) deal mainly with numpy arrays and pandas dataframes
(responding to VC context)
Ah right right
Βͺ
!e
import __hello__
@woeful salmon :warning: Your 3.12 eval job has completed with return code 0.
[No output]
D: wait why does that not work


is still decently slow


