#voice-chat-text-1
1 messages ยท Page 48 of 1
somehow it also manages to provide terrible user experience
downloading Java in around 2010~2013 is true Oracle parodying itself
Yea, I have a strong line between friends and collegues
coorporate is a theatre and people are willing to lie to get what they want
realise
implement ~= realise ~= acknowledge
let free ~= release ~= publish
which of the two
I believe narcisissts are bosses because they love power and they realise that only way to get to that position is to treat their coworkes in a nice way
it's not the only way
but
narcissists have no internal brakes to stop themselves from getting that position even if they're incompetent
brake not break
what is the diffference?
"oh, I'm bad at this, I should not pursue this" -- this thought does not appear in their head
that's not insecurity
yeah, they are overconfident
often
not always
I have been told that I am overconfident
am I a narcisist
my old boss who fired me told me that
the implication does not work the other way at all
generally true: nacrissist => likely overconfident
generally not true: overconfident => nacrissist
how do you know which one you are
ยฏ_(ใ)_/ยฏ
after being humiliated and fired and exposed, I am still over confident
my brain
I got called by my countries best engineering company that potetnially wanted to hire me and they wanted me to take cognitive test. I got 23/23 on inductive cognitive and they said whao in shock
In that moment I realized that I am something special
confidence through the roof
Yes I am confident that I am smart
what you should realise is that cognitive abilities don't generalise to being good at other things;
if this is obvious to you, then everything's fine in terms of that
I hold a bachelor in engineering
B as an average grade
but I had to take an extra year to achieve that
I am still lazy and I have mentor that helps me working but I cannot on my own work
my favorite topic to speak about is me
me, me, me
hahahahah
I dont like to write but the only reason I am writing is because the topic is me
hahahah
at least I am honest
few topics that stimulate me
-_-
What I would like to do is to become disipline and learn technology such as python, control systems and networks
<@&831776746206265384> @crystal aurora is deleting messages
where he was rude towards @fluid canopy
chill
no
Let's please be civil
hey Luna, congrats on the promotion
I've always been a mod you silly goose
i am stupid 
yeah
congrats @timber zenith
womp womp

/silly

again, you do not have to be antagonistic
.
please do
@crystal aurora your appreciation is noted; continuing further is unnecessary
thanks
anyway
this feels patronising
here's wonderwall
NO
alisa was recently promoted so i thought it was a wave of new mods
it's cause colors don't show up in VC so i thought you were just a user
Jikky is aware of the mistake they made; the fact they were incorrect is enough.
I'm not going to punish people for false negatives, with the exception of false reports for the sake of trying to get a member punished unfairly.
The only thing I have to say to you is that you can drop the topic now. As you said, you had no vitriol or harm meant to lame_late. So, it's entirely fair to ask that we move on from that conversation, no?
Your comments could understandably be construed as unkind/snarky towards I_am_late_late, so the ping itself I see as reasonably warranted. Given that no harm was actually done, things turn out to be fine, but I'd rather stay on this side of "report on probable cause"
Anyway with this joyous topic over, let's venture forth into the brave unknown
If you still want to discuss this Maro, open a modmail
I don't want to clog the voice channel up
Alrighty then, gonna go take me a nice shower and make me some yum yums
later y'all
what yumyums
@fluid canopy since you mentioned you're planning on learning networking, you'll also need to learn C at some point;
unfortunately interfaces in higher-level languages, are still either non-existent or just directly representing what C sees;
something that you interact with networking through
!d socket
Source code: Lib/socket.py
This module provides access to the BSD socket interface. It is available on all modern Unix systems, Windows, MacOS, and probably additional platforms.
Note
Some behavior may be platform dependent, since calls are made to the operating system socket APIs.
Availability: not WASI.
This module does not work or is not available on WebAssembly. See WebAssembly platforms for more information.
for example
thank you for your suggestion about learning C
socket is very similar to the underlying POSIX APIs
wut is happening
I have little knowledge of data and network
what is a socket
what is the purpose of a sockety
and why C
how is C connected to network
there is a set of APIs representing networking as part of POSIX API
those APIs are represented through C function calls
okey
and a few types
the fundamental abstraction for networking is a socket
examples what you can do with a socket:
bind it and listen on it (waiting for new connections),
connect it to a remote endpoint,
read data from it,
send data to (through) it
in case of POSIX (แดษดษชx/Linux) sockets, the data is just bytes
I have to be honest, becuase I dont share your understanding of data and network I dont see the pespective you are decribing
descriping
yeah, that's expected, networking is not trivial and there are a lot of different perspectives
thank you for trying
maybe one day with better understanding I will remember that you told me to learn C ๐
(League mentioned ๐)
erm
not league 

fastest mac
ah nice
I've never played it but from a league perspective it looks the same except all the CCs are 10x longer
the difference is that dota is about preventing your enemy from acting
while league is more about reaction
@tame leaf "you're giving even more reasons to mention Oracle"
the company
(in response to "stockholm syndrome")
does any1 know what is the error, i am trying to open autopy after i have downloaded it and it gives me this error, the second picture is proof that its downloaded ???
plz help ive been stuck for nearly an hour
i think its an library which you should use by opening the python terminal
not on cmd
@faint canyon do you still need video perms?
!stream 1112791642278211707
โ @faint canyon can now stream until <t:1733686188:f>.
@modest flare perfect time to mention TIPC again
great protocol that no one heard of
it can run on top of either UDP or eth which makes it unclear what layer it is
reminds me of that one time in university we had a remote lesson at 2 a.m.
feel that
I think the context was:
professor wanted to gather more groups at once but there was no way to do that within schedule
mail?
yeah
@modest flare we googled it
it might be wrong
@faint canyon this is path
@faint canyon you need to do at HTTP level, you need to find METHOD /path/ patterns
in the program
mostly just GET
!e
import re
pat = re.compile(r"GET \S*")
print(pat.findall("""
GET /path/to there
GET /path/to%20there
POST /what
"""))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
['GET /path/to', 'GET /path/to%20there']
I don't remembe how to handle spaces there properly
:white_check_mark: Your 3.13 eval job has completed with return code 0.
['GET /', 'GET /']
uhh
I don't remember
!e
import re
pat = re.compile(r"GET .*?\n")
print(pat.findall("""
GET /path/to there
GET /path/to%20there
POST /what
"""))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
['GET /path/to there\n', 'GET /path/to%20there\n']
I'd use this
maybe also allow more spaces
!e
import re
pat = re.compile(r"GET +.*?\n")
print(pat.findall("""
GET /path/to there
GET /path/to%20there
GET/that
POST /what
"""))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
['GET /path/to there\n', 'GET /path/to%20there\n']
I don't know whether paths are allowed to contain spaces;
but just reading until the end of the line should be fine
@crystal aurora I'm now including final times in the game events, so writing the migration logic from the old event version
the server events, not in-game events and not UI events
*upcasting
durations not instants
the final clock time
and chrono::Utc only for sessions
all runtime instants are Instants -- monotonic time
match (winner, last, cause) {
(Active::First, Active::First, Cause::Timeout) => todo!(),
(Active::First, Active::First, Cause::Error) => todo!(),
(Active::First, Active::Second, Cause::Timeout) => todo!(),
(Active::First, Active::Second, Cause::Error) => todo!(),
(Active::Second, Active::First, Cause::Timeout) => todo!(),
(Active::Second, Active::First, Cause::Error) => todo!(),
(Active::Second, Active::Second, Cause::Timeout) => todo!(),
(Active::Second, Active::Second, Cause::Error) => todo!(),
};
@faint canyon it seems to use HTML for the visual part, yes
Oh finally i see where you are typing.
@faint canyon what do you need from visualisation, again?
Is this a cours or smth ? I didn't want to speak so not to disturb you guys.
@faint canyon then you don't need HTML
these seem to be maintained
https://github.com/maxmind/GeoIP2-python
https://github.com/cleder/fastkml
@faint canyon it's remembering and copying from maxmind's tutorials
@faint canyon maxmind is the current geoip2 maintainer company
@faint canyon does the course mention geoip/geolite specifically?
@crystal aurora Are you familiar with object oriented programming ? I got a small thing i need to fix. I put a request in #1035199133436354600 but sadly no answer yet.
!pypi geocoder
Would it be possible to move to another vc for 2 minutes ?
@crystal aurora
No, no problem.
Let's talk in https://discord.com/channels/267624335836053506/1315401877457993809 the help channel i created.
Alisa must be a cool person then.
No problem i will share my question here.
So i have a class called GridWorldEnv that contains an abstract method called step .
The classes GridWorldSlow and GridWorldFast inherent from it and implement step.
The problem i am facing is that when i freeze the seed for the notebook it gives me a world structure for GridWorldSlow and a different one for GridWorldFast.
This causes me two have two different worlds on which my reinforcement learning models operate.
2-3 minutes guys i be back
is the bot reacting because of freeze?
seeing guests out
seems like no
ah, tree
It is more of a OOP + random doubt
class grid_world():
pass
class grid_world_env(grid_world):
@abstractmethod
def func():
pass
class fast_env(grid_world_env):
def func():
return 1
class slow_env(grid_world_env):
def func():
return 2
Allegedly.
I'm being called to join another VC; idk when back
Yeah, sorry i miss sent an empty message.
No problem
So the problem is that when using a seed in a notebook to freeze all the variations i expected my two classes fast and slow to create the same world but they didn't
Please let me know where i should clarify more.
yes the problem isn't the OOP but the use of random in the methods.
C creates the first world using a call for random in class A
If you have to go it is fine.
Thank you for accepting to help.
I am working on it.
from collections import Counter
from scapy.all import rdpcap, IP
from tabulate import tabulate
scapy_cap = rdpcap('evidence_packet_analysis.pcap')
counter = Counter([
(packet[IP].src, packet[IP].dst)
for packet in scapy_cap
])
headers = ['SRC', 'DEST', 'COUNT']
data = [
(src, dest, count)
for (src, dest), count in counter.most_common()
]
# Create and print the table
table = tabulate(data, headers=headers, tablefmt="fancy_grid")
print(table)
How to repurpose this to send all IP's into a variable instead printing a list
ip_set = {packet[IP].dst for packet in scapy_cap}
will use this variable to create geolocations from
from abc import abstractmethod
class A():
def create_world():
random.sample()
pass
class B(A):
@abstractmethod
def func(self):
pass
class C(B):
def func(self):
return 1
class D(B):
def func(self):
return 2
seed = x
np.random.seed(seed)
random.seed(seed)
C.create_world() # gives world 1
D.create_world() # give world 2 != 1```
To be more accurate, this is the function that creates the worlds ```py
import random
class GridWorldMDP:
def init(self, ...):
self.bad_states = random.sample(list(self.states - {(0, 0), (height - 1, width - 1)}), self.number_of_holes)
It creates random holes in the grid thus making a new world.
from collections import Counter
from scapy.all import rdpcap, IP
from tabulate import tabulate
scapy_cap = rdpcap('evidence_packet_analysis.pcap')
ip_set = {packet[IP].dst for packet in scapy_cap}
headers = ['IP' , 'GEOLOCATIONS']
data = [
]
# Create and print the table
table = tabulate(data, headers=headers, tablefmt="fancy_grid")
print(table)
@latent frigate Are you talking about me xD ?

What are the odds that i'm not a kid ?
from scapy.all import (
rdpcap,
IP
)
20%
'2' , '3'
im a kid today, I dont have to think I'll go to work tomorrow ....
I am disappointed in my adult skills.
But yet i don't reget it, that means i'm still a kid at heart.
its bc of this ...
I set the seed once at the top of my main file and i call as many randoms as i need. I think that should work too.
from collections import Counter
from scapy.all import rdpcap, IP
from tabulate import tabulate
scapy_cap = rdpcap('evidence_packet_analysis.pcap')
ip_set = {packet[IP].dst for packet in scapy_cap}
headers = ['IP' , 'GEOLOCATIONS']
data = [
(dest, geolocation)
]
# Create and print the table
table = tabulate(data, headers=headers, tablefmt="fancy_grid")
print(table)
def __init__(self) -> None:
No, that only means "it doesn't matter if you are dumb or not, once you start learning something you realise that you are dumb so gotta keep learning."
Should i write in a different language like Cor assembly to seem more mature ? ๐ค
correct.
LOl
Oooo, i think i am on smth now.
At least now i have an exploration path, thanks @crystal aurora . Absolute pleasure !
Is this a pentesting challenge ?
@crystal aurora Problem solved. Setting the seed again before calling the constructer of the second class worked.
^
from scapy.all import rdpcap, IP
from tabulate import tabulate
scapy_cap = rdpcap('evidence_packet_analysis.pcap')
ip_set = {packet[IP].dst for packet in scapy_cap}
sets_sorted = sorted(ip_set)
# Create and print the table
#table = tabulate(data, headers=headers, tablefmt="fancy_grid")
#print(table)
print("Here are the image requests:")
print(sets_sorted, sep="\n")
print("\n")
print(*sets_sorted, sep="\n")
yo
Weird
I somehow failed to navigate IRL without a map and accidentally ended up at the same space after half an hour of walking
... which almost never happens to me
underpasses are not fun
โCraft your perfect defense from a combination of powerful Monkey Towers and awesome Heroes, then pop every last invading Bloon!
Over a decade of tower defense pedigree and regular massive updates makes Bloons TD 6 a favorite game for millions of players. Enjoy endless hours of strategy gaming withโฆ
@mild flume Could I burrow you for a few moments?
burrow or borrow?
What's up?
I have a small question with this new feature I want to add, but having difficulty imagining it.
GIve me a little bit
Take your time sir.
Indy Neidell
https://play.google.com/store/apps/details?id=com.eightyeightgames.ymbab I recommend this game to everyone
@thin lintel https://www.imdb.com/title/tt3812366/
@proper ridge I'll come down here in a moment.
My Arthur is wearing a viking helmet ๐
@mortal stone No advertising on the server
Okay
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
@misty sinew https://www.kaggle.com/learn
Practical data skills you can apply immediately: that's what you'll learn in these no-cost courses. They're the fastest (and most fun) way to become a data scientist or improve your current skills.
@tame leaf discord, by default, shows the number of dota items foir some reason, even if it's 0
when linking steam
dota/tf2 item count
I haven't seen cs2 item count in there
Steam is a very high margin business, especially given how few employees are involved in making it work
thank you! i like this site its straight to the point
I wonder what are the chance that someone in vc is talking and watching porn at the same time?
100
Do you wanna hear a joke?
My life.
Get Five Finger Death Punchโs latest album โGot Your Sixโ!!!
iTunes = http://smarturl.it/FFDP6_DLX
Google = http://smarturl.it/FFDP6_GoogleDLX
Amazon = http://smarturl.it/FFDP6_AmzDLX
Purchase "Wrong Side Of Heaven" now!
iTunes: http://smarturl.it/FFDP4D_iTunes
Amazon: http://smarturl.it/FFDP4D_Amazon
Google Play: http://smarturl.it/FFDP4D_G...
@mild flume https://www.youtube.com/watch?v=o_l4Ab5FRwM
Get Five Finger Death Punchโs latest album โGot Your Sixโ!!!
iTunes = http://smarturl.it/FFDP6_DLX
Google = http://smarturl.it/FFDP6_GoogleDLX
Amazon = http://smarturl.it/FFDP6_AmzDLX
Purchase "Wrong Side Of Heaven" now!
iTunes: http://smarturl.it/FFDP4D_iTunes
Amazon: http://smarturl.it/FFDP4D_Amazon
Google Play: http://smarturl.it/FFDP4D_G...
@echo slate
hey whats this , raspberry pi or arduino
c'mon man its a codding server , you cant go arround sharing youtube links
nice circuit ๐
this is an offtopic voice chat text channel
ESP32
<!-- Left Sidebar -->
<div id="left-sidebar"></div>
<script>
// Declare variables in the global scope
var image = "profile_picture.jpg";
var title = "Osyra Renaya";
</script>
<script src="assets/left-sidebar.js"></script>
!e python a = (5) print(a)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
5
!e python a = (5) print(type(a)) print(a)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | <class 'int'>
002 | 5
!e python a = (5,) print(type(a)) print(a)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | <class 'tuple'>
002 | (5,)
!e python a = (1 + 2) print(a)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
3
\
WTF YouTube:
His expression is so crazed
It had like 100 views
I wish I could put in a view filter, < 1000 views per day posted and not subscribed, never recommend
youtube recommended me this found footage recently
https://www.youtube.com/watch?v=IxjG8shqEtI
Discover the significance of constants in the C programming language through this comprehensive video tutorial. Explore different types of constants such as integer constants, floating-point constants, character constants, and symbolic constants. Learn how constants enhance code readability, improve program maintenance, and ensure data integrity...
I'm now very confused about what even is that channel
hi who can fix this error ''ModuleNotFoundError: No module named 'flask'''?
'Defaulting to user installation because normal site-packages is not writeable'
using VS
BTW command works but have this now 'jinja2.exceptions.TemplateNotFound' it is because of html
VS CODE
Do you know if you're using a venv?
do you mean in command?
do you mean in command?
latest issue doesn't seem to be env-related
Ah right right
how to fix this'jinja2.exceptions.TemplateNotFound'?
Sorry, distracted
if you could help
flask can't find the template file, that you're referencing in code
what way to help flask find it?
Wait
ok well
Sorry. Can you show your code? Maybe toss it in a pastebin if it's a lot of code
Like AF said, it's when you're trying to call or use the template file, Python can't find it at the location you're giving it
and project directrory structure
could you explain ?
from flask import Flask, render_template, request, send_file
from moviepy import VideoFileClip
import os
app = Flask(name)
Route to render the home page (index.html)
@app.route('/')
def index():
return render_template('index.html')
Route to handle video processing
@app.route('/process_video', methods=['POST'])
def process_video():
# Get the uploaded file from the form
video_file = request.files['video']
speed_factor = float(request.form['speed_factor'])
# Save the uploaded file to a temporary location
input_video_path = os.path.join('static', video_file.filename)
video_file.save(input_video_path)
# Create the output file path
output_video_path = os.path.join('static', 'output_video.mp4')
try:
# Load the video clip
video = VideoFileClip(input_video_path)
# Slow down or speed up the video based on the speed factor
if speed_factor != 1:
video = video.fx(lambda clip: clip.speedx(factor=speed_factor))
# Write the modified video to the output file
video.write_videofile(output_video_path, codec="libx264", audio_codec="aac")
# Return the processed video for download
return send_file(output_video_path, as_attachment=True)
except Exception as e:
return f"Error processing video: {e}"
if name == 'main':
app.run(debug=True)
Like what I have here. That'd be the project structure
where is index.html located?
where to find that in VScode?
one minute
Should be on the left hand side where you select the various files in your project
from explorer?
what's inside templates?
File (top left corner) -> Open Folder
can't find
this one?
ok yes!
now both are opened
still get this here (it just works on CMD 'command' ) ModuleNotFoundError: No module named 'flask'
ModuleNotFoundError: No module named 'flask'
How're you running it? Like hitting the run button in VS Code or are you opening up a terminal?
run button
when run it on run button it gives flask error when i use cmd command it works well
i mean it works but gives another error LOL
For me it's hit and miss to get it working with the run buttom. I almost always do it from a terminal
I'm weird about it
That's scary
Buyer's remorse
@raw wren @proper ridge https://spacetraders.io/
An async Python wrapper around SpaceTraders v2 API - MrHemlock/aioSpaceTraders
@mild flume I have a funny thing to show
Whatcha got
so you see how the game is ended, right?
"Where's the documentation?"
John smirks, and slowly looks up with a chad face "I am the documentation. And I just quit. Good luck!"
javascript and html crimes
(stuff on stream)
Legit didn't see you were streaming, my bad
okay, first thing: I can replay everything that happened in-game
now onto actual HTML crimes
I can live-reload CSS
What is it pairing and syncing to?
so this is kind of a usual live-reload thing
I'm gonna go sleep. Wish yall a blessed day. Tomorrow I'm gonna try to add a DAG representation for my circuit module.
Promise last feature, wink wink.
now, onto worse things:
I can live-reload JS
That's... weird
why this works:
each second, all UI state is recomputed from scratch using an event log
it's a replay
having reload and replay at the same time without loading pauses is quite useful
all this done, as you could see, using a single HTML file
Before I go, how were you playing and coding at the same time?
Yeah that is really cool
no libraries no frameworks
event replay
Ok, so not a new superpower.
Good to know.
Alright, mystery solved. I'll catch you tomorrow guys.
reloading is done the dumbest way possible
window.reloadUI = () => {
fetch("/")
.then((response) => response.text())
.then((text) => {
window.cleanup();
document.open();
document.write(text);
document.close();
window.startUI();
});
};
src/new_traders/model.py lines 2078 to 2088
class GetShipNavResponse(BaseModel):
data: ShipNav
class WarpShipData(BaseModel):
fuel: ShipFuel
nav: ShipNav
class WarpShipResponse(BaseModel):
data: WarpShipData```
So I'm trying to adjust my logic.
Getting the links in the API docs
Ignore me, I was doing it correctly
It's just these later endpoints that do something different
Ignore the Hemlock
Get the amount of value that will be returned when scrapping a ship. Powered by Stoplight.
Retrieve the details of a ship under your agent's ownership. Powered by Stoplight.
hi @livid quest
@ashen bay hi
guys have you ever integrated recaptcha v2
to your website
@gloomy totem
HOLLA
alex
hola
hiiiii
good
what about you
nothing
do you know about python machine learning ?
a little
Machine learning A-Z
thanks
trade ?
yes
nice
i like it
but i dont have any idea about all startegy in this market
do you have any idea about stratgy in long term
always focus on higher fundamentals
no no no no short term
small market cap
where is python in your work ? kh
do you like c++
or c
nice
did you banned ??????????\
lol
#comptia #comptiaa
Please check out our book on Amazon - 101 Labs - CompTIA Network+ - https://amzn.to/3ljtfOX
World-class IT certification video training, follow-along labs, practice exams, and live Cisco racks.
Please use this special URL to get 30 days of access for $1 -
https://www.howtonetwork.com/youtube
Get all my motivation goodie...
How can I get permission to speak in vc
Ok
Who is hemlock?
What are you guys talking about? Programming ?
Any cool projects you have done?
Currently working on one, actually
Hey there. How's it going?
hi zeki
@peak monolith @vivid rose Yo to you both
vpn not having a happy time today
connected only after ~10 seconds
yes, now can hear
No
I don't really celebrate much of anything
my only preparation so far is tickets to go somewhere
Anyone of you know python language
I know some amount of Python
How to start any good resource you know
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
filtered by video only:
https://www.pythondiscord.com/resources/?type=video
you'll have to read quite a lot eventually once you move on from tutorials to documentation
closer to the frontlines but still relatively safe
๐ฉ...
~10 people are meeting there so it'd be uneconomical to have them travel where I am
@thin lintel it sounds like you have automatic gain control enabled, and it isn't working that well
(voice settings)
volume is quiet and then suddenly loud, as if it's trying to compensate for quietness
volume is very uneven at times
currently sounds better
How much u know
idk how to measure it
I'm aware of most of the standard library and some of internals (the parts of Python written in C)
Data structures and algorithms?
I don't learn data structures systematically anymore
I just use/invent them when necessary
probably know the definition and use of most of basic ones
Oh
in that notion I'm assuming AVL trees to be basic, and B-Trees as non-basic, even though I learned them in reverse order
When I will learn it I will let you know about it ๐
data structure I recently had to make to work with multiple connections more efficiently in Rust:
https://github.com/parrrate/ruchei/blob/main/src/collections/linked_slab.rs
not sure if it'd ever make sense to use it in Python
it's for WebSocket primarily
server-side
I'm aiming for <20% overhead
3M messages per second on one connection
2.4M messages per second on multiple
Huh
used to be around 1.6M
So finally finished covering the endpoints: https://github.com/MrHemlock/aioSpaceTraders/tree/main
Now I'm working on getting tests set up. I'm just wanting to make sure I'm grabbing the right dependencies to do so. I think I just need pytest and pytest-asyncio. But I wasn't sure since this is using niquests and the async stuff in that
I want impl Trait in static
so tempting to just use nightly
Thanks, that was going to drive me nuts
the whole extent of responsiveness of minesweeper I made is that it switches to vertical when can't fit the board horizontally
anything else just relies on the mobile browser magically doing the right thing
I should add bigger field sizes somehow
currently it's hard-coded:
[[Cell; 16]; 30]
will try to replace with constants
pain
it doesn't
it's there because it's hard to implement, not because it makes sense
struct Example<const N: usize>([u8; N * 10]);
this should work
Example<1> and Example<0> are different types
associated constants (including in traits) already exist
trying to decide whether I'm okay with allocations when generating the field
nvm, it already allocates
@bleak cairn Yo
broooo how to download linux
broooo how to download linux
broooo how to download linux
You can get different distributions of Linux (e.g. Ubuntu, Kali Linux,...) here https://www.lidux.de/linux-download
To "make" the Distribution your OS you have to load it on a bootable USB and the go to the BIOS settings and choose "boot from USB"
Laden Sie hier verschiedene Linux-Distributionen kostenlos und sicher herunter. Klicken Sie unten auf die gewรผnschte Linux-Distribution, um zu den CD-/DVD-Images zu gelangen. Nach dem Download kรถnnen Sie die Images auf CD/DVD brennen oder auf USB-Stick installieren und Ihren Rechner damit booten.
Bunbun tax
https://www.coolblue.nl/product/855212/etna-fiv560rvs.html
the stove i ordered
nice
Dennis Denuto makes a sensational case about the 'vibe' of the Australian Constitution.
Use virtual box
Try WSL or docker, they both are great
over heating - MAYBE @gaunt rivet
So why don't you try to explain the main idea of a desired script. Kinda like directing chatgpt, so it can create a script without programming. doesn't that work ?
do you ahve the chtgpt subscription?
how better is it ?
can you show me your json file ?
@tame leaf Why :<
why what
coal priority
it's a reference to two things, and one of them is related to Docker
Cloud on a Laptop
and another reference is to the shortest (or second shortest) character in the game Noctuary
unlikely
0% volume instead of muting
0% is specifically so that you can see by the green circle
when possible
!stream 425552190283972608
โ @thin lintel can now stream until <t:1734702489:f>.
Why I don't have permission to talk in VC ๐ฅฒ๐ฅฒ
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@tame leaf the context of that reminded to create something thoroughly cursed
(sent in DMs)
from what I understand
so you're not 100% sure?
@delicate wren You have fun too :D
rock paper scissors
hello
Oh huh, I didn't realize it had object recognition
Hey emlock
The cheese tax collector comes to collect the cheese taxes. Humans must pay their cheese taxes to all cats and dogs present at the time of opening the cheese drawer. No Exceptions.
Original song created by Matt Hobbs for Puppy Songs - listen to the full original song and support Puppy Songs in these places:
Cheese Tax on Spotify - https://ope...
Like if yes ๐
I should skip from setup.py and requirements.txt straight to uv
well, I kind of did already in some places ig
ohno
yeah thats bad
The Less Great Firewall
I forgot what was the publishing thing for maturin and others
something with t iirc
Hey, how're you doing?
twine
there's a whole 1 mention of it
seems like it's just maturin publish there
it was probably this where I saw it last time:
https://forgejo.org/docs/latest/user/packages/pypi/
attempting to cleanup abi_stable crate
abi_stable?
there's abi_stable and stabby
@mild flume is the world against you? not until printertopia is established
bwaa
Russia is getting 5 ruble bills back into circulation
$0.05
5 ruble coin is giant compared to others
so that might be cost saving
it is heavier than 10 ruble coin
materials are weird
bimetal
bimetal
brass
brass
copper-nickel
copper-nickel
bimetal
brass-covered steel
@primal bobcat Yo
hi
bimetal there is copper covered in melchior
melchior: copper+nickel
brass: copper+zinc
How is everyone doing?
seems like there's another one that is made of copper and nickel:
https://en.wikipedia.org/wiki/Cupronickel
(was linked as "see also")
something wrong with styling
Excel is generally cursed
streaming it through Discord is pain
I don't, others do
prompt builder
waiting forgptxcrate akin tosqlx
@mild flume are xlsxes even compatible with Git?
as in diff-friendly
drawio-generated SVGs are slightly diffable
drawio in some formats keeps stuff uncompressed
I was about to ask if there were many art programs that did both vector and raster graphics but they have to, right?
@zenith wedge do you need them independently deployed or just independently built?
do public paid docker hosts have TIPC enabled 
can't you just update files in the main container?
in a volume
since it's closer to just data
if all models have somewhat same interface
@zenith wedge yes
first thing I saw on the website lol
back when it was brought up earlier
Hemlock sensed that printers were about to be mentioned so deafened pre-emptively
I'm still not sure how this relates to AI:
https://min.io/
The cheese tax collector comes to collect the cheese taxes. Humans must pay their cheese taxes to all cats and dogs present at the time of opening the cheese drawer. No Exceptions.
Original song created by Matt Hobbs for Puppy Songs - listen to the full original song and support Puppy Songs in these places:
Cheese Tax on Spotify - https://ope...
@umbral rose
so, the fuck utility?
Pretty much
cat /etc/os-release
going through Astro tutorial
good that it allows doing things out-of-order
and keeps track of that
web
something web
another markdown to html with stuff in between thing
@undone rivet please don't use racial slurs
(I might've misheard what you've said, in which case don't worry)
right mb
you messages will stay in the server even if u remove them
@sonic coral ๐
yo
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Voice Gate failed
You are not currently eligible to use voice inside Python Discord for the following reasons:
You have sent less than 50 messages.
yeah
where i pinged?
i need to be active on this server
yes @sonic coral you need to be active before you can talk
yep
its one of the requirements we have agreed upon as a community
@misty sinew ๐
that's good so no one can abuse
i got notified by this message.. how strange
why i can't speak
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
yeahhhh
we talked about removing voice chat at some point due to abuse, then the community came up with this brilliant idea, and we in staff implemented it in the bot
@pulsar lodge hello
@pulsar lodge ๐
@stuck bluffhello
you need to prove yourself by beeing active for a certain amount first
๐ฅด
@sonic coralhello
i think discorrd had a hickup ๐
how are you ?
im doing good for now thank you
anyone knows something about wiping up the pc ?
so im going to wipe up the pc
lol
yeah
what platform?
are we cleaning data or dust 
clean install or a reinstall?
windows 11
data xD
i need to reinstall
the best way is to backup your files and other settings on a different drive
or online storage
@stuck bluff yeah
download the windows 11 iso from microsoft, use rufus to make a usb drive bootable, and just install while formating your drive
cuz i think i got some malicious program on my computer
there are a multitude of customization you can do to the image before you install
those are however not user friendly, but quite powerfull
then you should format and start from scratch, you can use malwarebyte to do a spot check first
if your mallware is network driven, you might have infected more machines at home
@fair sierra i think im gonna use the windows 11 reset pc
i would not do that if you think you have mallware
i got Kaspersky for now
thats utter trash
use windows defender, and use malware bytes as a spot check every now and then
unless you are using a company or school computer
lol i know but i don't run any program
then dont use it, dont install it. leave it and never look at it again
you about windows defender i don't exactly know how but it doesn't work for me anymore after i installed i sketchy program
kaspersky disables it
start clean, do a backup
new ISO file
clean isntall with format (impoortant)
first thing you do after reinstall is the following
windows update
windows store update
install motherboard chipset drivers
install other optiional drivers
done
installl wanted applications
i have this entire prorcess automated
thank you @fair sierra for helping me out
i got a usb stick with 118gb of data to use instead of a back up
no worries, i have used windows for work over the past two years, and it is somewhat ok
like im gonna save all of my wanted applications in that usb and than im gonna reinstall windows
dont save applications
reinstall them, but keep any configs or files instead
i use winget and scoop to install applications
this is how i do it
new_machine.ps1 line 6
winget import --import-file "winstall-5644.json" --no-upgrade --accept-package-agreements --accept-source-agreements```
idk exactly how to install windows from iso usb
you use the tool windows shares with you
this tools creates the USB for you
or you can use rufus if you want to change the ISO file after download. this however is how you get a 100% clean windows install medium
so if i clear all of the pc then the bios msi gonna pop up and then i need to put my usb that contain the windows iso ?
I have setup unantended install for my USB stick, that way it just installs everything without asking any question
normally you would have to press Del or F2, or some other key to get to the boot meny of your machine
on my machine its F9, but it depends from machine to machine
ok
you need to boot from your USB drive after the media is created
but make a backup first, as what you want is to format your drive
and the format process will delete the entire Drive
so the boot menu gonna help me out
might want to read up on this process beforeyou try
yeah
because one of the options is to install but keeping all the old files, this will lead to no data cleanup, and the mallware will still be on your harrddrive
yes, it will show you multiple options to boot from, you have to pick the correct option
if your USB key is a Kingston 16gb USB key, it can look something like this
1: Windows HDD 1
2: Kingston 16GB
then in this case , you choose option 2
i need to delete all so i can be sure that the pc is not infected
yes
but that is why you need to backup important files
like, school documents
word files
cloud ?
i use dropbox, i will suggest you use cloud storage as well
@little kernel ๐
yeah but my usb is 118gb can't i use it as a backup and also as a iso boot usb ?
that is correct, you cant use it for both
all files on the usb drive will get deleted when you make a windows 11 iso
ah ok thank you so much for helping me out
we are here to help!
@misty sinew ๐
Heyy ๐
sorry I had some technical issues so I had to leave
!guilds
The communities page on our website contains a number of communities we have partnered with as well as a curated list of other communities relating to programming and technology.
@stuck bluff they're learning from Russian government
what was that state/city name that got misspelled in very big letters
Louisiana
the:
what
luis nana
@brisk lark ๐
man
... and seems like German law enforcement is learning from FSB
"Fells are soft-shaped mountains in Fennoscandia that reach above the tree line."
I see I see, I do like speed though โท๏ธ
oh no
snow's amazing yeah, I don't live in an area with alot of snow and whenever I get the chance to see snow, it's wonderful
I wouldn't say so.
I just haven't gone out of my way to get them.
are you looking for a hoodie that calls to you?
metaphorically ๐จ
I like how the conversation has flowed to ski fashion
I want these magical things ๐ฟ
Tropical countries don't have snowfall
The coldest temperature ever was 16 ยฐC in my region
do you just layer any type of clothing? there's many types of coats and sweaters
what year was this
1949
Polypropylene or wool.
Not cotton.
Any cotton that gets wet will stay wet and will wick heat.
Drink beer ๐ป
wick heat..?
hmm that guy has no clothes
this is very good advice for when I camp in the snow which is not soon, but perhaps in the future
ooh I do want to work in antarctica sometime
they are extremely committed, wasn't there an instance where they proved the earth was round from trying to prove it was flat
perhaps it is ragebait
prince rupert's drop
oh I saw that too!!!!
super cool
does the strength come from the tail? still not sure
Marry penguin to become a naturalized citizen of Antarctica..
Freedom ๐ง
green card + penguin spouse
not a bad deal
I don't think this is real
penguins cannot fly
flightless birds
Red bull gives you wings ๐ชฝ
es wiings
Penguin was high on red bull
they got sued for saying wings
they changed it to wiings yeah they got sued for a lot of money though before that
I don't know how the case worked in court but it did
13 million dollar loss
quite shady of you
perhaps they are advertising the product
is this still red bull
That's the same guy, who sued the red bull.
He was jealous he couldn't fly like a penguin
He survived somehow
hallo @tame leaf
๐
it is quite funny
It's the rabbit's breeding season?
hellos @edgy chasm
woah
hey
there is a big gang in this vc
why would the rabbit do that to a hedgehog
dust
who doesn't like cocaine
Chill guys ๐
, that fella is just having good time.
Watch his tail, he is so happy
Yes. he is
a little too happy
very happy
what
there's gotta be a library for that though
what
doom the video game?
thatis quite funny actually
3 is good enough
omy goodness walter white
how does pi play a role in doom?
math
as in the graphics of circles?
3.1415926535897932384626433 so on so forth
3.141592657
doom
!d math.dist
math.dist(p, q)```
Return the Euclidean distance between two points *p* and *q*, each given as a sequence (or iterable) of coordinates. The two points must have the same dimension.
Roughly equivalent to:
```py
sqrt(sum((px - qx) ** 2.0 for px, qx in zip(p, q)))
``` Added in version 3\.8\.
oh noway what if it was pi = 1
https://media.ccc.de/v/mch2022-236-non-euclidean-doom-what-happens-to-a-game-when-pi-is-not-3-14159-
We all know that the value of pi is a constant with a particular immutable value. Anyone who has done any graphical programming also knows that visual rendering relies not just on pi but trigonometry more broadly as well as other mathematical ...
hey u started this
was the wind probably
that's a tardis
actively dying as opposed to passively dying
@brave siren I suppose you have surpassed the 50 message limit for voice verification?
yes but I fear my own voice
ooo spooky
game economy's always interesting
DOTA's the most popular video game no?
I hear something @edgy chasm
https://youtu.be/eWaIlSY-h_Y?feature=shared Wrong Spelling of it.
BACK TO THE FUTURE III
Clara was on in a million.
One in a billion.
One in a googolplex
crazy
hello @plain moss
Hello
your history is too long people are usually still colonized at the time @tame leaf
Halal cat


@mild flume
