#voice-chat-text-0
1 messages ยท Page 225 of 1
Any of the below is fine
+1
@stuck furnace ๐
oo i was mixing u w mist
Same sense of humor, but different person, yeah
i love living so close to a microcenter @dense ibex
paterson ftw
i wish I lived close to one
mines like an hour away
oh you mean su do
That su do that u do so well
hello
Think where you could be if you were just utterly without shame lol
โ ๏ธ
Fair enough
gtg
@rugged root Im back
and I got 3K $ from shopify
and traded ETH and BTC
So Now I have $4.3K
2003 turned 18..............
hell yeah cougars โ
that would be a sugar mama
yes @pine depot
have you tried doing add skills?
in add profile section
quick ques, can you guys help me out with smth ?
โ @haughty cove can now stream until <t:1701456600:f>.
AOC can be done in js right? i wanna try it this year
in advance for 364 days
Yeah you can do it in any language. All that matters is you get the right answer at the end. Although they have asked people this year not to use AI.
The first day this year was actually a lot more difficult than it has been in the past!
Heyoo
yo im alive
yeah ik
lol
i'm solving math problem
well actually it's solved
but i'm writing it in text now
ye i just finished writing work on paper
much easier than on pc lol
wanna try it out?
same
fuck it, put everything as a skill
nice
also ignore my typing, it's me typing problem
yeye
ye
actually yes
that's how i solved it initially
but now i just proved it with pure math
python was much easier
problem:
wind is blowing from north to south at 10 knots.
you're on a sailboat that's 1 nautical mile south of shore.
what is the shortest amount of time it takes your sailboat to make it to shore?
ah nice
think very simply.
the sailboat can only travel in the direction it's facing. so there's no drifting. you don't have to consider drag, lift, or anything of that sorts..
@pine depot this one didn't take me too long to do in python
but figuring it out purely took me a minute because i forgot how to do derivatives lol
๐คท that's part of all optimization problems ig
yeah most places love people who have human skills
also don't worry, places never reply
it's such an annoying issue
but once you get a job, everyone wants you
yeah you gotta go upwind
yeah it's really counterintuitive that you can travel upwind in a sailboat
like with even ignoring things like lift
nah
i didnt mention current but shoulda
no current
real world formulas may not be the most helpful thing
because we don't worry about drag and lift
just simple vector stuff
yeah it's cause like the sail is the wing of a plane
oh you can basically just assume drag is 0
that will make force on sails the same as force on keel making it so boat only travels in direction it faces (no drifting)
i'm writing up the problem with online math stuff rn so it can be easier understood
but i'll send pic of drawings in a minute too when i finish
yeye
the answer itself with no explanation is ||48 minutes||
@dry jasper solving this problem
it's hard
i did it, just writing up solution online
i haven't checked out aoc yet
i'll do it after gym tonight
b is boat
s is sail
w is wind
no longer in vc, but that's the math math
i have the code but it's not on this pc and i don't feel like rewriting
the code just brute force finds the optimal solution pretty quickly
i limit the angles of the boat and sail as i do because the boat has to face north to go north and the sail has to have its normal south to catch the wind
i just do right half of plane instead of left because symetry and ezpz solving
Eichhรถrnchen
chรคschรผechli
@solid perch Your mic was open and we could hear you talking to someone
@jolly python those apprenticeships are cool

Hi guys, good afternoon?
Sup
ein Chat
Can you do UwU?
NO
@raw carbon do you ever join random ships in sea of thieves in the sea of thieves discord? i feel like i've seen you there
๐ก
๐ฎ we might've played together at some point then xD
i haven't played in a while either
@lavish rover Sup buuuuuuuuuddy
Literally dying from work
I'm basically a firefighter this week
i don't like fires
Part 1 was quick
Need to actually finish part 2. I know what I need to do, just keep getting distracted with work
yeah staying up till 2am writing a string view library was not a great idea
yep, i agree
to discuss solutions go to #1047673173447020564 , to avoid spoiling it for people here
sorry, i deleted
i was learning hlsl properly for compute shaders while reading through this https://web.archive.org/web/20231016082125/http://blog.three-eyed-games.com/2018/05/03/gpu-ray-tracing-in-unity-part-1/
hemlock told me an hour ago and i forgot already there was a text channel
ooh nice
already wrote a raymarching thing inspired by sebastian lague so throught might as well also try this xD so i stole the resourse he learnt from to learn myself
nice ๐ฎ
https://ncase.me/sight-and-light/ i thought you meant something like this xD altho that's not really raytracing
That kinda just does the first step, casts the ray
yep, i do essentially all the ray tracing stuff but in 2d, and then animated the time
Also did this thing where I record a pulse in slow motion
yeah
.source
you going to do refraction and create the classic prism thing?
have a video, one sec
nice! ๐ฎ
indeed
might try and make that too at some point
after i'm done with shaders though
shaders are way too much fun for me so i'm hooked on them for a while
you can do it in shaders, will run realtime
might give it a try xD
high res render
i know how to do it in 3d but
just remove one axis
yeah i was thinking that
and draw lines for the rays
I'm actually drawing out the path of the rays in 2d, unlike in 3d where we only track it and draw final color on the pixel
i have not done refraction though but that's not too hard if it works like i remember from old physics classes xD
just do that couple tens of throusands of times and you're good
Benedikt Bitterli's Portfolio
why is there padding in <code>'s style? (https://ocen-lang.github.io/autodoc/#ocen/namespaces/std/namespaces/map)
seems to break alignment
idk man I'm shit at web dev I probably fucked something up
spacing here still bothers me but css is scary
!voiceverify
I found why
(outside of code samples it needs padding)
(this is in PR since 2 hours ago)
also
changed underline/wavy
so it's now aligned
oh oops didnt see it, merged
(before that, wavy was placed lower than underline)
inline C like inline ASM
the most advanced C project I ever made was probably in 2021
when I attempting to do DB stuff
(beginner-level B-trees and AVL trees)
I had to because I was too dumb to find good enough existing solutions
that was the time when I barely even understood what trees are used for
so I had to reinvent stuff just from the lack of knowledge
(that last part was before learning about AVL trees)
I found weight-balanced trees before AVL
and those are considerably harder to implement and understand
AVL is height-balanced, i.e. it doesn't care about how many nodes are in the subtree, only about its height
right makes sense
WBTs have a parameter for ratio between total size of two children
this is coming back to me, yeah I've taught this many years ago lol
then I somehow found out what B-trees are
and implemented those
(but they weren't what I was originally was looking for)
at the time, B-trees were simpler for me to use compared to AVL because didn't involve rotations
B-trees are more complex, yes, but there parent and child nodes never swap
AVLs felt difficult to implement because rebalancing involves way too many nodes
the thing I needed AVL for were immutable maps (O(logN) insert, O(NlogN) storage)
snapshots per each insert
after inserting into a tree, previous version is kept
and, since there are O(logN) new nodes per insert, it ends up O(NlogN) space
and now I have a very generic implementation for AVL in Rust
(this is the part that is actual AVL, everything else is abstracted)
https://gist.github.com/afeistel/6b107dd1a36da6def2001de88c096d7f
isn't Torch in Lua too?
"since Excel got (or soon gets) Python support, it can be used for Machine Learning too"
oh, I have a worse idea
wait, why does google find this
(the link doesn't open for me, thankfully)
"just compile VHDL with Clash -- it's Haskell so it can't be wrong"
last thing written in Haskell I interacted with was pandoc
and that's broken, a lot
@marble edge ๐
@lethal plaza ๐
Hi i am Anup from india
@glass totem
@lavish rover
its realtime im guessing
ish, depending on parameters
that ray splitting is so nice
got a prism above too if you scroll a bit
A small exploration of an algorithm inspired by ants, and some little experiments into simulating some of the behaviour of ants and slime moulds. I hope you enjoy!
Source code (slime): https://github.com/SebLague/Slime-Simulation
Source code (ants): https://github.com/SebLague/Ant-Simulation
If you'd like to get support the channel, and get ear...
Damn that prism is really nice, how long did it take for offline rendering?
the video? less than a minute
the image took a few seconds
only a few seconds to get convergence like that is really good lol
@remote pendant ๐
it's 2d, problem space really small
no smart optimizations it was written in an evening
im writing one once i get more sleep, good thing uni finished wednesday lol
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
u alive in there spoderman? @proud ferry
Hii Guys!!
hey
hello
shit my bad i went to sleep in the vc
]just wokr up
My gui works completely now @rugged root and the emulated hard drive now works.
Been there. Done that. Twice, I think.
@silent arch Hello
stat = ""
while stat.lower() != "quit":
stat = input("> ")
if stat == "help":
print("type start to start your car")
print("type stop to stop your car")
print("type quit to quit")
if stat == "start":
print("your car is starting")
if stat == "stop":
print("your car is stopping")
how do I get permission to talk?
you to send 50 messages and and be in the sever for three days
stat = ""
while stat != "quit":
stat = input("> ").lower
if stat == "help":
print("type start to start your car")
print("type stop to stop your car")
print("type quit to quit")
elif stat == "start":
print("your car is starting")
elif stat == "stop":
print("your car is stopping")
else:
print("not a valid command")
stat = ""
while stat != "quit":
stat = input("> ").lower()
if stat == "help":
print("type start to start your car")
print("type stop to stop your car")
print("type quit to quit")
elif stat == "start":
print("your car is starting")
elif stat == "stop":
print("your car is stopping")
elif stat == "quit":
break
else:
print("not a valid command")
quit
<built-in method lower of str object at 0x00000201F5C0FE70>
not a valid command
stat = input("> ").lower() != stat = input("> ").lower
stat = ""
while stat != "quit":
stat = input("> ").lower()
if stat == "help":
print("type start to start your car")
print("type stop to stop your car")
print("type quit to quit")
elif stat == "start":
print("your car is starting")
elif stat == "stop":
print("your car is stopping")
elif stat == "quit":
break
else:
print("not a valid command")
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
import speech_recognition as sr
Initialize recognizer
recognizer = sr.Recognizer()
Function to capture and process audio
def recognize_speech():
with sr.Microphone() as source:
print("Say something...")
recognizer.adjust_for_ambient_noise(source) # Adjust for noise levels
audio = recognizer.listen(source) # Listen to the user's input
try:
print("Recognizing...")
text = recognizer.recognize_google(audio) # Recognize speech using Google Speech Recognition
print("You said:", text)
except sr.UnknownValueError:
print("Could not understand audio")
except sr.RequestError as e:
print("Error fetching results; {0}".format(e))
Call the function to capture and process speech
recognize_speech()
stat = ""
while True:
stat = input("> ").lower()
if stat == "help":
print("type start to start your car")
print("type stop to stop your car")
print("type quit to quit")
elif stat == "start":
print("your car is starting")
start = True
elif stat == "stop" and start == True:
print("your car is stopping")
start = False
elif stat == "quit":
break
else:
print("not a valid command")
stat = ""
carismoving=False
while stat != "quit":
#stat = input("> ")
stat = input("> ").lower()
print(stat)
if stat == "help":
print("type start to start your car")
print("type stop to stop your car")
print("type quit to quit")
elif stat == "start"and carismoving == False:
print("your car is starting")
carismoving=True
elif stat == "stop" and carismoving==True:
print("your car is stopping")
carismoving == False
else:
print("not a valid command")
stat = ""
start = False
while True:
stat = input("> ").lower()
if stat == "help":
print("type start to start your car")
print("type stop to stop your car")
print("type quit to quit")
elif stat == "start" and start == False:
print("your car is starting")
start = True
elif stat == "stop" and start == True:
print("your car is stopping")
start = False
elif stat == "quit":
break
else:
print("not a valid command")
PS C:\Users\zach>
@lavish ferry What are you trying to do?
commands = {
"help": lambda: print("Type 'start' to start your car\nType 'stop' to stop your car\nType 'quit' to quit"),
"start": lambda: print("Your car is starting") if not started else print("Car is already started"),
"stop": lambda: print("Your car is stopping") if started else print("Car is already stopped"),
"quit": lambda: exit(),
}
started = False
while True:
user_input = input("> ").lower()
action = commands.get(user_input, lambda: print("Not a valid command"))
action()
what exactly does this lamda do iยดve used it once or twice but i never really got how it works
ty
Comfortable cats
@hot drum !voice
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hi bro
!voice ๐
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
irani?
No, Egyptian ๐
Nice to meet you too
Currently stuck in an algorithm, recursion with backtracking
Losing my soul ๐ข
i stuck in time complextiy and big O
it's so hard to undrestand
that what shoud i use in coding
to better performance

@somber heath @pine dune @round horizon @dire quarry @obsidian dragon https://tenor.com/view/ah-jolly-cat-jolly-cat-merry-christmas-gif-9272976883674260918
you know, i want to go on BackEnd and i decided to learn somethings basic to maybe do things better.
and now, when i try to learn something about Big O and time complexity, i get too many mathmatic numbers and words that i never learned.
so as this way, too many explains in these topics, are confusing me.
that what kind of functions, which loops and other syntax shoud i use in my program to get better performance
at this time, i think that why do i need to learn these topics? ๐ makes me crazy
did you undrestand? :))) what did i say? :)))
Yes sir, I got your point, it's a journy
Start with mathmatics, go to projecteular.com, then use leetcode, or codewars, ....etc.
so do you offer me that i upgrade my math?
i'm beginner
I need more details about specific problems to advise you on what to do next
We are all beginners mate
@south swallow ๐
You know, I am a curious person and I would like to be strong enough from the basics to be able to operate smoothly on the road and encounter fewer problems, and since I am self-taught, I try to follow all the basic concepts.
Now that I am faced with such topics, it is heavy for me and I feel like my brain is going to explode.
!voice ๐
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
I get you, this is the reality of the job you signed up for, somedays you will think you are a master of your craft, dunning kroger effect, and other days you will feel like that your genes shouldn't exists in the first place, imposter syndrome.
@somber heath Did you just called me?
:/
@whole bear ๐
I'm tired of all the potty training we all have to go through, discord, github actions, linters, why can't we just join the voice chat and talk?
well as long as youre 13 or over
so you tell me is it usual? for me
Normal with everyone, you are fine, this is part of the process
@whole bear ๐
thanks bro
@somber heath Totally understood, thanks for the clarification, I just shared my feelings ๐ ๐
How many real engineers are here? I mean, no students, or undergrades?
@lyric skiff ๐
hello
@elfin turret ๐
and another question from programming please
it's very important for me
to know
?@dire quarry
yo
@simple skiff ๐
yes
how much important to use modules and libraries in backend?
and in programming at all
lst = [
0x28BAC2B00,
0x28BAC2B20,
0x28BAC2B40,0x28BAC2B60,0x28BAC2F00,
... 0x28BAC2F20,
... 0x28BAC2F40,
... 0x28BAC2F60,
... 0x28BAC3300,
... 0x28BAC3320]
whats this voice chat about kinda new here ... first time you can say
i have a python list here
lst = [10933250816, 10933250848, 10933250880, 10933250912, 10933251840, 10933251872, 10933251904, 10933251936, 10933252864, 10933252896]
how can i see how much each number jumps in each element
it should jump in 32
Bro, it all depends on the project, try to make one project from scratch, cover all edge cases, corner cases,,, etc.
wowww thats awesome ... how di you do that ? @obsidian dragon ?
Go to go now guys, nice to meet you all, happy coding, will come here when 3 days pass
@whole bear @neat phoenix @whole bear ๐
hello
yes
hi
i got it yeah.
thanks bro thanks a lot
invisible mouse
is this done by using nitro ?? or python ?? @somber heath
Facts
the bot its showing on the screen .. like how did you do that ?
@stoic wing ๐
so it's the usefull tool and so nessary, but depends on my work
osyra42's site -> It's okay to look around. I won't tell.
thanks ๐
anyone notice a pattern here
>>> lst = [
... 0x28BAC2B00,
... 0x28BAC2B20,
... 0x28BAC2B40,
0x28BAC2B60,
... 0x28BAC2F00,
... 0x28BAC2F20,
... 0x28BAC2F40,
... 0x28BAC2F60,
... 0x28BAC3300,
... 0x28BAC3320]
@somber heath @obsidian dragon bye for now
@latent sonnet ๐
yes they are memory adresses
on my ps4
memory is typically shown in hex litereal
invisible mouse soo funny
ohh i think different functions are called fro
different chunks
thats why theres a gap
0x28BAC2B00 + 20 = 0x28BAC2B20
you mean 0x20?
ยฏ_(ใ)_/ยฏ
!e ```py
print(0x28BAC2B00,
0x28BAC2B20,
0x28BAC2B40,
0x28BAC2B60,
0x28BAC2F00,
0x28BAC2F20,
0x28BAC2F40,
0x28BAC2F60,
0x28BAC3300,
0x28BAC3320, sep='\n')
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 10933250816
002 | 10933250848
003 | 10933250880
004 | 10933250912
005 | 10933251840
006 | 10933251872
007 | 10933251904
008 | 10933251936
009 | 10933252864
010 | 10933252896
!e ```py
import numpy as np
print(np.diff([0x28BAC2B00,
0x28BAC2B20,
0x28BAC2B40,
0x28BAC2B60,
0x28BAC2F00,
0x28BAC2F20,
0x28BAC2F40,
0x28BAC2F60,
0x28BAC3300,
0x28BAC3320]))
@somber heath :white_check_mark: Your 3.12 eval job has completed with return code 0.
[ 32 32 32 928 32 32 32 928 32]
@somber heath are you saying something
i cant hear
oh your icon was turning gteen
the ring
!e
928/128
@toxic arch :warning: Your 3.12 eval job has completed with return code 0.
[No output]
@summer hound ๐
!e
print(928/32)
@obsidian dragon :white_check_mark: Your 3.12 eval job has completed with return code 0.
29.0
hey
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
!code
@viscid frigate ๐
@somber heath Hey
omaga haskell mentioned
Haskell's doesn't have a concept of multi-argument functions
instead it's a function that returns a function
!e
def add(a):
def temp(b):
return a + b
return temp
print(add(5)(8))
@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.
13
this would be equivalent in Python
this binds only one argument, so the result is itself a function
!e
def add(a):
def temp(b):
return a + b
return temp
add_5 = add(5)
print(add_5(100))
print(add_5(8))
@vocal basin :white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 105
002 | 13
@copper summit #voice-verification
is there anything specific i need to do?
requirements are in the channel, but basically just chat around for 3 days and you should have voice perms
does anyone know how i would convert this into a dictionary that calculates the average of the grades and puts it in a list with the name for the value and id number for the key?
72091,Smith,Piper,88,52,61,52,47
52674,Harris,Annabelle,82,36,97,65,93
38430,Henderson,Ella,44,70,68,59,65
11367,Woods,Eleanor,74,37,45,48,43
11343,Gibson,Aaliyah,40,59,39,30,30
30538,Sanders,Zoe,97,34,30,51,94
28698,Thomas,Emily,84,37,57,30,55
46283,Coleman,Audrey,36,45,96,59,59
16572,Wood,Samantha,66,79,65,90,98
17336,Butler,Maddison,80,39,71,43,70
93718,Washington,Zoe,35,66,49,79,40
20364,Owens,Hannah,31,97,94,42,53
91908,Owens,Abigail,52,62,56,85,89
29084,Ortiz,Olivia,49,43,45,62,47
69965,Diaz,Avery,73,93,47,97,84
82121,Sanders,Katherine,46,46,45,53,79
50886,Parker,Ava,40,70,33,61,85
23685,Bryant,Maya,94,96,97,94,91
23432,Butler,Penelope,52,66,91,93,72
37541,Campbell,Daniel,90,97,92,98,91
@rain agate ๐
!voice ๐
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
oh thank you so much
oh i think i've been in the server for less than three days so
and less than 50 messages

yeo
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Change my mind.
@shadow tree ๐
good morning
Hot mic moments with Quantibility. We'll be back after these short messages.
hahaha
sup people
Not much, you?
not much, patiently waiting on my raspi to finish clone to ssd
so, currently got 64gb ssd, moving to an ssd to boot from
500Gb, makes a difference
@eager thorn Yo
Sup brother, hope all is well. taking care of yourself.
taking care of the kids, trying to fix my sleep schedule but not working out to well ๐คฃ
take care of the kids during the day while the mrs works, then i work nights and the only free time i get is if they're content during the day and watching cartoons, and those few hours in the middle of the night after work, till the little one wakes up to be fed.
For sure, just don't hurt your health in the process
of course, of course. alot of people forget to do that.
@oblique ridge @stark river Yo
oi
hello
i know too many accounts that are years old and real with no avi
it's really tough
we don't know what criteria would result in what ratios for true positives and negatives and false positives and negatives
and even then, what ratios would you be willing to accept? how many people could that affect?
i'd imagine a ban on join would need the bot to also dm them immediately explaining why and give them an appeal route @rapid chasm
this the tough part
yeah i get you
it's just that there's no system that's perfect. you will get innocent people joining temp banned unwarranted and will also miss some actual bad actors
do you have discord's raid protection set up? i imagine you do
no clue how it works since i don't do big servers
okok
What made you guys want to code ?
i'm lazy
what is it that gets done on raids on your server anyway? is it message spam, user DMs, etc? @rapid chasm
r u a psychiatrist?
@rugged root help her? i barely know her
Boredom and curiosity
here's what the go server does
just curious ๐
you have to just tell your members to not allow non-friend DMs
and if they have them on, to be wary of mutual servers and report appropriately
otherwise you're SOL
FUCK!!
2 days of debugging day n night n i find the issue was i mispelled the section tag in html as a secion
hello
i made a script and can run on visual studio code and works
but when i try to run it directly it doesnt works
how can i fix it
even i tried to py to exe but exe is not working too
What's the script do?
real
discord likes indica
is it not a common problem?
Open up a terminal and then drag and drop the exe you made into the terminal
my clones's not going very well -.-
Did it turn into an evil clone?
Traceback (most recent call last):
File "darkbrowser.py", line 1, in <module>
from PyQt5.QtWidgets import*
ModuleNotFoundError: No module named 'PyQt5'
[1304] Failed to execute script 'darkbrowser' due to unhandled exception!
it says this
pip install pyqt
"Darkbrowser"?
its name of project
do you have a virtual environment for it?
cool name
because vscode does auto activate virtual environments for you if you choose it as the interpreter
is it undetected browser ? you can tell us
its says same
raceback (most recent call last):
File "darkbrowser.py", line 1, in <module>
from PyQt5.QtWidgets import*
ModuleNotFoundError: No module named 'PyQt5'
[7784] Failed to execute script 'darkbrowser' due to unhandled exception!
use loops that dont "escalate"
if you loop through a purchase order that has multiple items
you're gonna be stuck with log squares
evening ladies and gentlemen
i suggest you find the package on the net and follow the instructions to install it.. pyqt v 5 may be under a diff name e.g. pyqt5
i already have that one
ah well....
hi
everything is fine
@whole bear well, interpreter issues bud
then your exe maker doesn't bundle dependencies
i use pyinstaller
can you try py -0 and see if you have multiple versions of python?
but the thing is i cant run py file too
it closes immediatly
it only works on visual studio
do you have multple versions of python ?
lol mysterious dark browser
you dont need code completion ๐
what did i walk in on
๐
conda users gonna eat you up ๐
WE LOVE CONDA
i've heard hella about conda
you mean when you run it with the interpreter from the cli, it doesn't run?
ALWAYS GO CONDA
what is conda
..... hate conda ?
it's just easier to manage stuff yourself imo
Doesnt break
ye
thats cool
Rython by Noodle
go conda
and community
yes i do have ๐
kinda why i wanna use haskell
@rugged root
i know this guy ๐ฉ
"Who convinced the new programmer that VIM is the best IDE"
William Lin if he was animated
William Lin for context ->
Kung Fu Panda >>
isn't all of one piece filler?
hella naruto is filler tho
i get you chris
but like
i have echo
BRO IT WORKS NOW
TY BRO
filler as in they need to release an episode while they're waiting for the manga to release so they can release the actual story released
dont watch anime its filler
One Pace is a fan project that recuts the One Piece anime in an endeavor to bring it more in line with the pacing of the original manga by Eiichiro Oda. The team accomplishes this by removing filler scenes not present in the source material.
lol
noodle is a kid (by heart)
@haughty cove we can hear your background noise
oh i still gotta do part 2
uncles speaking about GColab
sorry for that
my mic is a bit... tooooo..... sensetive
ig
well remember my pure regex answer last year ๐ฉ
2022, day 6, part 2: (.)((?!\1)\w)((?!\1|\2)\w)((?!\1|\2|\3)\w)((?!\1|\2|\3|\4)\w)((?!\1|\2|\3|\4|\5)\w)((?!\1|\2|\3|\4|\5|\6)\w)((?!\1|\2|\3|\4|\5|\6|\7)\w)((?!\1|\2|\3|\4|\5|\6|\7|\8)\w)((?!\1|\2|\3|\4|\5|\6|\7|\8|\9)\w)((?!\1|\2|\3|\4|\5|\6|\7|\8|\9|\10)\w)((?!\1|\2|\3|\4|\5|\6|\7|\8|\9|\10|\11)\w)((?!\1|\2|\3|\4|\5|\6|\7|\8|\9|\10|\11|\12)\w)((?!\1|\2|\3|\4|\5|\6|\7|\8|\9|\10|\11|\12|\13)\w)
lmfao
don't worry, obv didn't write it myself
i made a regex generator
but the idea is so funny to me
@woeful salmon , may we also see the code, you guys are talking about
yes
ye i think anything the day after is fair game cause there's no reward from it
also like there are the spoiler channels
Good, you?
๐คฃ how you like that?
oh god you've got more indentation than my day 3
I don't know
lmao
real
you wanna see garbage in py? i promise i'll clean this up later
how to get the access of the voice chat
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
i believe in you
how're you guys doing?
chillin
im good
great to hear that ๐
bye
oh @woeful salmon oh i think i know exactly the article you're talking about
i was only listening to half
but was it like gunicorn + django + nginx
yup lol
i knew it
the digital ocean one for that wasn't terrible
like if you followed it, you can get everything done
even with aws
ew apache
oh i mean like
that makes sense tho
likely wsgi
like nginx you set up endpoints and when it reaches it, it defers it to what you tell it to
ew
oh
nice ok i accept it
i do it like guenicorn
but others say g unicorn
guwunicorn
its still better than seql
three syllables for one letter sucks ass
the english isn't even part of the name anymore
i'll take anything over saying w in acronym
you ever hear someone say www
it's so dumb
9 syllables for world wide web, a 3 syllable word
SeQueL
LaTeX
lol
i mean
it's pretty english kinda, no?
@rugged root can i show my day 1 here?
ah kk
yep ill send it there then link
@peak copper @rugged root #1180009538544488478 message my initial part 2 was mad clunky
but then i realized this was so much easier
lol
nice, right?
wait who was it that didn't try part 2?
matt or hemlock?
dropout gang?
chromebooks are nice and cheap
they're super handy to give to someone who's only using google tools
and i imagine it isn't the hardest thing to wipe the os and get a minimal linux distro on there
Ooo...
grab an M2 chip mac bb
but price will be an issue
they're very appropriately priced imo, just still expensive
i've saved my old lenovos with a shitty ubuntu install
not even minimal, but just less weight than windows 10
idk idc for an insane amount of modularity on laptops
i'm fine accepting those as get what you buy
if you only plan on letting it stay at your desk, why not buy a small desktop? or build one? though imo prebuilt pcs are nicer nowadays cost wise
I more worry about those connectors becoming loose and not biting anymore
@amber raptor what do you think about Intel NUCs ?
Suddenly you have wonky connections
"Yeah just have to jiggle the laptop plate a bit to make it reconnect"
Modular portable things run into like how hard wearing is it
waring?
Whatever
If your use case supports it
if I have an old iPad tablet and I want to use it long-term, what OS should I install on it?
preferably you've already tried the OS and it has a well-documented install procedure
I know a few for Android devices just not for Apple ones
that's nice, so which OS would you install on it?
LineageOS would be my goto to keep an Android device going for a while
nice.
really the main thing is that the OS maintains a recent version of OpenSSL and a Firefox ESR or some type of LTS with a long lifespan.
Yeah, Lineage is good for that
Tons of devices supported. No Apple ones, though
Since it's an Android fork
"universal procedure for choosing an OS"
I choose the abacus
it can't because the ads don't come from youtube ad domains
ended up not migrating, and i did a fresh install
it's even a simplified abacus
done the whole instalation, nginx, wordpress, https certbot, php, mysql. all up now
yay !
"you know how to have no YouTube ads? just move to Russia"
that's too much
people will slowly get more and more ok with ads
i just personally support people i'd like to support
i have money
i don't wanna waste time
oh ye i got no clue
can anyone help in this ?? pls
what's the question?
does it keep turning right if the front and right are clear?
yea
is this and other variable globals?
my guy downloading gta san andreas ๐
also one thing that (subjectively) may improve readability and is more pythonic would be to just do something like ```py
while not at_goal():
if front_is_clear and right_is_clear:
rep()
if not front_is_clear and not right_is_clear:
...
i hate being that guy
its pre made functions given to us
but i'm being that guy ๐ฉ
returns booliean
also what is currently wrong? what's the expected behavior? what's the actual current behavior?
what commands do you have access to?
what are the python, objects, and special?
i need to find the algo to make it reach the goal
we have at_goal()
move()
turn_left()
r() = to move right
front_is_clear() instead of front_is_clear
dont look at my code its wrong
well that might some parts of it
"call" as in do () not list them
we got more functions like , front_is_clear() , wall_in_Front()
yea i understand i have to add the ()
Yo
we have to make the robot reach the at_goal() - using loop s and conditionals , f
and using the pre defined functions shown in the pic
there is a more or less simple algorithm to solve mazes
while not at goal:
rotate left
while forward is not empty:
rotate right
go forward
thx lemme test it out
ffmpeg is my beloved
so many people arriving
nah it's right hemlock
@rugged root like a damn screen door, yes!
you can try compiling it to wasm
i mean it's on some site that looks like you're limited on what you can write anyway, ye?
its taking hella tooo long and wrong path to reach
Provided to YouTube by DistroKid
Forklift Simulator ยท Sbassbear
Game Grumps Remixes 3
โ honk beep records
Released on: 2023-08-31
Auto-generated by YouTube.
this?
i have the vinesauce bap clip stuck in my head
i love this grup man gonna help me alot tbh
I search for weird songs all the time, at this point youtube algorithm knows which one
I think i earned the right to spam a little bit now ? Hahaha
Vinny plays Mario Party: Island Tour for Nintendo 3DS live on Vinesauce!
Stream Playlist โบ https://bit.ly/fullsauce1offs
Stream date: Sep 25th, 2022
Subscribe for more Full Sauce Streams โบ http://bit.ly/fullsauce
Follow Vinesauce on Twitch โบ http://www.twitch.tv/vinesauce
Follow Vinesauce on Twitter โบ https://twitter.com/vinesauce
Subscribe to V...
@atomic fiber i'm an ex django dev
Wait, it's still bouncing your verification?
This video explores the journey of language models, from their modest beginnings through the development of OpenAI's GPT models & hints at Q*. Our journey takes us through the key moments in neural network research involved in next word prediction. We delve into the early experiments with tiny language models in the 1980s, highlighting significa...
can i message you up?
just used bcrypt
@atomic fiber do you need symmetric or asymmetric?
whats your question
just use PyNaCl -- it's almost as simple as it can get
why is it i cant speak in the vc?
The #voice-verification channel has more details about the voice gate
for example you can just use like PGP
@red umbra You were saying that the verification wasn't working for you?
gotya
reminds me
another thing about it:
you can then use the same thing (libsodium) in the browser
@rugged root when i worked in IT, i ran into SO many devices that only had telnet enabled
you guys have any cyber security discord servers?
is it active ?
inb4 tor is a cia honeypot
very
better CIA than FSB
โ @idle vector can now stream until <t:1701710653:f>.
not to bad on the 4k, other then the bigger popup @nimble heart
@idle vector @atomic fiber you can still use libraries like bootstrap and tailwind in react
i heard nutwork
yes
Hello ๐
whoa everyone died
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
here
been 2 years trying to talk here
~I completely understand, dont worry ๐
but makes it funnier, 2 years
So, I'm having some fun with wordpress and auto post generation from AI . Anyone been using this capability or similar ?
mistral and codellama2
sometimes llama2-uncensored
ill PM you what is being generated
same with bootstrap and flask
nice explanation
tailwind is css
makes styling easier / more indepth stuff
sass in tailwind is necessary if you want to build from the ground i'd suppose
Take a look at what i sent you, its a basic 60second delay post creation automation . doesnt add any styling or urls yet, but in theory this can be used with context
like, you'd specify urls for affiliate marketing or any sponsor, and adds details about it
so you do front ent @oblique ridge ?
what's the project
backend bb
time to go dinner
See ya around
my bot is doing its thing.
its working as expected after i re-installed everything on a clear raspi image.
so, now all i need is to work on the actual bot logic
eating will help with that ๐
zonk
Catch you later
Neat
Hello random people. How are we doing this fine day in this properly indexed channel? (My usual hangouts seem to be dead right now, but I'm feeling sociable, hello!)
"Bolt version of Legos?" That just makes me think Erector Set
Oh, I heard bolt
me
Aluminum is cheap, especially if it needs to be liquidated
neato
The new TETRIXยฎ Flex-Build Robot Chassis is an all-in-one set that contains everything you need to create a fully functioning base for your robot. The Robo-Rail grid pattern enables you to fasten your robotโs scoring mechanisms such as intakes, lift arms, shooting devices, and anything else you can dream up!
Shop now: https://www.pitsco.com/TET...
I'm back ! ๐
time to roll 1 and try to code ๐
I've never been to a walmart ๐
@lavish rover Suuuuuup
@minor sage Would you mind hopping off stream for now? I don't think I'll be able to make it back
@red umbra
im working on my bot rn
discord
bot
@red umbra who are you talking to/about?
Does anyone know how to make the bot add emojis to channels and forms? I tried through
async def on_thread_create(thread):
await thread.starter_message.add_reaction(':white_check_mark:')```
But it throws some error in the console
```AttributeError: 'ForumChannel' object has no attribute 'fetch_message'
Ignoring exception in on_thread_create
Traceback (most recent call last):```
In fact, this is not a message, as it is a forum `async def on_thread_create(self, thread):` and not `async def on_message(self, message):`
I lack the contect, but all this seems super cool
wow
You can just get a contact, but I posted this because they have their online CAD system to make extruded aluminum designs which are awesome
@uneven reef ๐
I have to make a project on (estimation of obesity levels based on eating habits and physical conditions). I have to use 3 model in making it eg decision tree,random forest , logistics regression etc
Good Luck!
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Hey
I don't get it
I see,
I just joined the server today
I need to wait for 3 days i guess
Hey I have a doubt
Have you worked on text extraction from discord
?
like web scraping
I see, I am new to python. I am trying to figure out if there is a way around it
but what about public channels?
I wanted to summaries some chats. rather than fulling reading them