#voice-chat-text-0
1 messages · Page 450 of 1
Medium is only, like, 0.1% things worth reading and which are indexed by google;
everything else is either meaningless and/or overly pretentious
Xd
But you sure do have a deep understanding of such a simple yet complex aspect of app development and so on
I've once witnessed an article from some HTML fanatic purist that managed to somehow include transphobic and ableist language in that post
iirc it was an article "criticising" HTMX
this is the level of "ability" some authors on Medium have
Somehow, content is impressive
I prefer the happy land of free Medium articles over that
(this was paywalled)
((but archived, thanks to HTMX's CEOs))
this is a good article (since it's not on Medium)
https://htmx.org/essays/htmx-sucks/
and somewhere in the first section it links to the archive
This article provides a critical analysis of htmx, a web development library, explaining why the author believes it represents a problematic approach to modern web development due to its outdated coding practices, lack of build tools, absence of TypeScript support, and reliance on HTML-based architecture, while also questioning the professionali...
though the archive might be dead
Hi, there
Okay professor, now I feel like I need to write an essay in response.. Lol
That guy hate everything about HTMX
Im epy gotta go, it was nice having a conversation with you all!
(this one is ||written by the creator of HTMX||)
||also most things there are partially benefits, it's one big troll piece||
@ivory stumpYo what is your fav anime op?
@rugged rootHey
Is it possible to get my voice perms back?
Should I Dm modmail?
Got it thanks
@marsh stag Yo
Hy
How are you doing today?
✅ @soft axle can now stream until <t:1744154361:f>.
I had something dumb to share with Hemlock but I already forgot what
kind of on brand
another candidate for what I might've wanted to share (from recently saved images)
@rugged root hippopotamus oauth2, the sequel to that thing that doctors have
youtube decided to finally ask me about my opinion on Australian vegan music
great how the whole box is as red as the thumbnail
clearly colour of happiness and celebration and not whatever else
Well played
I kept that screenshot because I knew it would be useful
How very right you were
I still have that error message in code just in case
three hundred
and
thirty
SQL statements
I now have to add error handling to all of them
serialised ledger
linear
speaking of dictionaries
in this whole 20K lines of code
I used HashMap and HashSet exactly 0 times
none
not even in other crates' APIs
That's a lot
thanks schemars for using a superior type
not including migrations
480 total
@somber heath I had something similar, it ended up being not a headphones or a phone issue
it was an ear issue
a somewhat annoying situation
the sound is produced within the ear, thanks to headphones being too airtight
so in part it is a headphones issue
but the sound origin is not in headphones
also, yes, I do
and generally ear issues not only hearing related
they like to bleed without a reason a lot and are refusing to heal fast enough
thankfully mostly on the outside
I've been using the unit for some time and I was jiggling things to see if it was a loose connection or something, it was still doing it.
and oh my god
Uhhhhhhhhhhhh
@soft axle if you get to choose what DB to use, yes
SQLite is fine too
mass-inserts are pain in MySQL/MariaDB
everything else literally does not exist
@rugged root to be confused with Spring
we had it mentioned a few days ago
I forgot by who
maybe Rabbit
maybe not
@rugged rootYou are usually not here this late. What changed?
cs2, db2 same thing
What's your guys' fav anime opening song?
it took me some time to remember that hectopascal from yagate kimi ni naru was ending not opening
hmm... let me find my current fav
Hemlock do you have an answer?
I don't. I can't remember the last time I've watched anime
Evangelion?
off-chain trading is a thing
why and how but yes
trust someone
like blockstream
which effectively controls bitcoin anyway
they forced their will upon the block size vote
I'm afraid to even attempt to find out the maximum amount of queries I'm doing per transaction
and the number of tables involved
Your hand would just fall off at that point
like if I was sum up tables per query it would go over 100 at times
without querying in a loop
just the querying logic is so complex
but it works
and performs
I'm not even looking at query planner diagrams anymore
they're too big to comprehend
I still want a stenotype
@rugged root C++ users are unhappy that Rust users don't get to suffer from C++ enough
now I'm realising C++ is more of a cult than Rust
always has been
@rugged root "Farzin is in the Rust server too, do we extrapolate that classification onto him now too?"
people who actually know C++ are very vocal about C++ being bad
it doesn't have design defects, it is a design defect
C++ could be a good language
if it was designed not committeed
@rugged root I know someone who hates them
r and fr string I mean
oh lmao nothing has been committed to the repo since my PRs
@rugged root https://github.com/HuyaneMatsu/hata/pull/94
FMA:Brotherhood S1: https://www.youtube.com/watch?v=elyXcwunIYA
Goblin Slayer S1: https://www.youtube.com/watch?v=N301TAIEYy4
Kaiju No. 8 S1: https://www.youtube.com/watch?v=aso1mQLUAbc
Apothecary Diaries S1: https://www.youtube.com/watch?v=EQ-DKvLQlyQ
OMG You like Hana ni natte
That's amazing
Source code: Lib/sqlite3/
SQLite is a C library that provides a lightweight disk-based database that doesn’t require a separate server process and allows accessing the database using a nonstandard variant of the SQL query language. Some applications can use SQLite for internal data storage. It’s also possible to prototype an application using SQLite and then port the code to a larger database such as PostgreSQL or Oracle.
The sqlite3 module was written by Gerhard Häring. It provides an SQL interface compliant with the DB-API 2.0 specification described by PEP 249, and requires SQLite 3.15.2 or newer...
Just a few notable ones I remember
!e
from sys import executable
from subprocess import check_output
print(check_output([executable, "-m", "sqlite3", "--help"]).decode())
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | usage: python -m sqlite3 [-h] [-v] [filename] [sql]
002 |
003 | Python sqlite3 CLI
004 |
005 | positional arguments:
006 | filename SQLite database to open (defaults to ':memory:'). A new
007 | database is created if the file does not previously exist.
008 | sql An SQL query to execute. Any returned rows are printed to
009 | stdout.
010 |
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/T2D4KG75WKB4DNW6TX5TEWNEYE
!e
from sys import executable
from subprocess import check_output
print(check_output([executable, "-m", "sqlite3", "--help"], text=True))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | usage: python -m sqlite3 [-h] [-v] [filename] [sql]
002 |
003 | Python sqlite3 CLI
004 |
005 | positional arguments:
006 | filename SQLite database to open (defaults to ':memory:'). A new
007 | database is created if the file does not previously exist.
008 | sql An SQL query to execute. Any returned rows are printed to
009 | stdout.
010 |
... (truncated - too many lines)
Full output: https://paste.pythondiscord.com/MU4WFH7CNSNC4UD24AFT6SMAUI
same thing
@woeful wyvern uv
don't use system python
leave system python alone
use uv
I gave you the answer
it's the only sane one
curl -LsSf https://astral.sh/uv/install.sh | sh
maths and RPLCS
I don't interact in the mathematics server
I only joined to tell some other person to stop promoting my game too much
computercraft?
I don't like computercraft because it's a bit too magicky and proprietary
opencomputers is the way
uv python install 3.13
now go to the project directory
uv add <what you want to install>
it will yell at you because you don't have pyproject.toml
then add pyproject.toml to the project
[project]
name = "whatever"
version = "0.0.0"
requires-python = ">=3.13"
@woeful wyvern which command failed?
what are you installing, again?
as a dependency
uv add robyn
ah
yeah, Robyn is in Rust
their CI is failing
as such you have no wheels available
you need actual rust compiler to install robyn in such circumstances
it might have wheels available for some platforms
!pypi robyn
starlette
FastAPI is a DI framework for Starlette
dependency injection
what is the usecase?
@soft axle regarding the author of C discussion:
1 request per second?
with such requirements you can literally start up and shutdown the entire application per each request
this is such a low request volume
whats up guys cant talk until i have 50 messages so ill chill and listen and respond here 🙂
one request per second, one second of compute per request
could have been before they had that feature was his point
like the literal dumbest deployment option
basically this
about the python thing do a python loop to iterate a variable by one each iteration and stop wjen it it 1billion and then write it in any compiled language and see how long it takes tp loop a billion times
anyway, literally any web framework is fine when you need to process only one request per second
put it in a container, collocate with other apps
just a differently marketed/priced google cloud
don't go for optimisation until you can meaningfully measure it
or just aiohttp, single thread without ASGI at all
@woeful wyvern it is using decorators for server-side
it's client-side that's async with everywhere
WS -> likely WebSocket
you can shove a few millions messages a second through WebSocket if you ever want that
or hundred thousand in case of Python
unrelated
WebRTC is not even related to HTTP
it's a UDP-based protocol
unreliable by design
UDP being unreliable is a feature
it's only on mobile internet that I ever have my device behind a NAT that I don't control
what are u making
STUN assumes at least one of the two parties is publicly available
TURN doesn't, since it's a relay
insanity
only two weeks
@woeful wyvern try combining it with multiprocessing
fork bomb recipe
anything created/ran on startup is a runaway issue when paired with multiprocessing
that's why if __name__ == "__main__": is important, for example
#esoteric-python material
# here we perform logic to detect if AutoStart has been explicity imported I.E
# "from repyx import AutoStart" as opposed to "import repyx" or "from repyx import Server"
class AutoStart: pass
# I chose to use a class here arbitrarily, any type of variable should work really
stacks = inspect.stack()
def _autoStart():
global stacks, autoStartStack
time.sleep(1)
for frame in stacks:
if os.path.basename(__file__) in frame.filename:
# exclude occurrences of AutoStart in this file (stack)
continue
if "AutoStart" in frame.frame.f_globals.keys():
if frame.frame.f_globals["AutoStart"] is AutoStart:
# there seems to be 2 stacks with the same globals,
# so in my case the code here gets run twice
print("repyx: Auto starting...")
autoStartStack = frame.frame
s = Server()
s.start()
return
if __name__ != "__main__":
Thread(target=_autoStart).start()
!d threading.Event
class threading.Event```
Class implementing event objects. An event manages a flag that can be set to true with the [`set()`](https://docs.python.org/3/library/threading.html#threading.Event.set) method and reset to false with the [`clear()`](https://docs.python.org/3/library/threading.html#threading.Event.clear) method. The [`wait()`](https://docs.python.org/3/library/threading.html#threading.Event.wait) method blocks until the flag is true. The flag is initially false.
Changed in version 3.3: changed from a factory function to a class.
molecule? so non-specific
name the cat tetrafluoroborate
PYGMY HIPPO DAY
Hipper
@quartz beacon "or will anyway, just not in an energetic way"
in response to "won't die of caffeine overdose"
yeah man
idk if ill be here for that long
it's cool
but i dont want to spam here
you're cool man
yeah I do this too myself alot
and i have to end this code by end of this day
ahhh shit dude
agree with this part
but ALLEGRO API is fu***** spaghetti code type shiet
oOf
and i have no clue why my code dont want to post data
their errors says: ERROR OCURED CONTACT TO CODE DEVELOPER
i am the developer
fuck sake XD
and i have no idea what is happening
yeeee
bless rng
so today in last 10 minutes i did exacly same data form like they have in their api
so maybe right now it will work
well se
lets try
shit dude, best of luck lol
i can say that in poland its windy and cloudy
ahahahahaha
and in 50 minutes i have go to my scholl
so i need to write ATLEAST 1 message per minute
thats how math works
on the other side i dont have to do that
because i dont have to do anythink
like every human being
thats called free will
and we can
but we dont have to
as well you can add milk to your ammm
what are you eating with milk
flakes
milk to cereal
in poland we say there are 2 uda
uda means
thighs
or uda means it will work out
so there are 2 uda
uda się or nie uda się
so in translation
it will work out or it wont
thats why we have 2 thighs
so Polish proverb will be corect
sure thing
call the vet
have to wait 4 mins - opens at 9am ¬¬
I called the vet, I need to see my friend today and sort out the vet registration/bills etc
it's 9:10am, he won't wake till this afternoon
so I'll go at like 12pm
so errr I registered in my name etc etc because I get better "benefits" than my friend
I have decided to go to the office despite the snow
@urban abyss the event might be over already but I'm not sure
!source
.source
ah
@urban abyss !e is internet-isolated
only trusted and popular enough packages are pre-installed
the same way as how the Rust playground works
dependencies are harder to sandbox, including because of non-Python code included in them
also installation takes time
since December
full-time, no specialisation
I had more actual devops experience prior to joining the company than all the people there combined
I was the one to bring Docker use to the company
systemd
systemd isn't really that much different from Docker in terms of how it's ran
it's the filesystem isolation that's mainly different
both use cgroups
systemd likely has capabilities to use namespaces
but not for process namespace, since the services are kind of expected to see the same PID as the systemd itself sees
whereas in Docker you're always started as PID 1
Dockerfile is very separately existing from the actual runtime, in large part
because of some docker weirdness you can build containers but not run them in certain environments
I don't remember what was the exact error, but it's mostly because of extra things that the runtime needs to configure
e.g. mounting volumes
yes
@turbid basin don't centre yourself around frameworks
they're just tools and should be viewed as such
also most things are actually libraries and/or should be used as libraries
@turbid basin if you want a short answer and don't want to do research:
VSCode with ruff and Pylance extensions installed
Python will bring Pylance
ruff you should use in addition to that
you will end up using pyproject.toml at some point, then you'll also need the "Even Better TOML" extension
we're still at 3.8
which is dead
@somber heath sounded like past JS experience given the framework thing
aiohttp, for example, is not a framework
@somber heath you call libraries, but the framework calls you
you're just filling stuff in instead of building things out of pieces
*args
anyway I have to go now
cya
!e ```py
def func(*args):
print(args)
func()
func(1)
func(1, 2)
func(1, 2, 3)```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | ()
002 | (1,)
003 | (1, 2)
004 | (1, 2, 3)
!e ```py
def func(a, b, *args):
print(a)
print(b)
print(args)
func(1, 2, 3, 4, 5)```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 1
002 | 2
003 | (3, 4, 5)
Linear Regression Formula Ex:
intercept + (variable1_coefficient * variable1_value) + '' " + " " + [CI (SE +/- ]])
@turbid basin There are better UX frameworks, however, it is the one that comes with Python natively.
It's an idea to be at least familiar.
Functions?
intercept + {co1 : x1, co2 : x2 .... }
What type is intercept?
what are those better UX framework
type(intercept)
floats
:x: Your 3.12 eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "/home/main.py", line 1, in <module>
003 | float() + dict()
004 | ~~~~~~~~^~~~~~~~
005 | TypeError: unsupported operand type(s) for +: 'float' and 'dict'
PyQt5 is one I hear spoken of well.
A lot of things are moving to web.
vs local ui
rent = flat_number + (square_footage * insert_sqft) + (# of bedrooms * insert_bedrooms) + , etc.
def func(flat_number, square_footage, insert_sqft, k_bedrooms, insert_bedrooms, ...):
return flat_number + (square_footage * insert_sqft) + (k_bedrooms * insert_bedrooms) + ...```
You can, but no.
You can create another module.
If you were forking the project, yes.
PySide
HI
!voice
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@hidden sapphire 👋
Hello guys
@upper basin are you using django default db sqlite or other database
froms.py is used to display the fields that you define in model in the html template in the form for the user to enter
can you hear me
@somber heath 👋
Hmmm need better GPU
@upper basin if want the user to enter the details like username or password,if you have to create the html page for the user to enter the data ,otherwise you have to pass the data through the python shell or django admin panel
forms.py is used to pass the fields you created in the model.py to html file
you have to use views.py to render the html page and validate,save the value to the database
urls.py defines the name of the url of the html page and there related view
@whole bear 👋
I am here
yes
password, as stored in the db and as received from a form are fundamentally incompatible
makes it at times harder to model storing/creating/showing users
because these three cases always have different data
👋
password -> password hash -> nothing
(from creation through storage to view)
just a thing to remember
you can encrypt it ,if you want to and django bydefault encrypt the password if you are extending from the built user module of django
so what are we doing today
yeah, needs extra setup
also hash not encrypt
encryption (because laws) is usually applied to personally identifying or otherwise sensitive information
it is generally a meaningless measure but laws apparently aren't required to make sense
well I finally found a architecture I was happy with (and have since implemented)
that marks the end to weeks of worrying about parent-child communication.
(it still feels a bit dirty using async for this, but on the other hand it was the cleanest way to avoid borrowing issues I found)
{insert HTMX diagram meme}
basically I use async channels, which means the current rendering context can just return, then the js runtime executes the receiving end
I am not really using it for the actual async-ness of async, but just as a way to defer execution
(non-async setups was just hard to do in a way that wasnt messy, and also didnt run into panics in edge cases)
first one in https://htmx.org/essays/#memes
htmx gives you access to AJAX, CSS Transitions, WebSockets and Server Sent Events directly in HTML, using attributes, so you can build modern user interfaces with the simplicity and power of hypertext
htmx is small (~14k min.gz’d), dependency-free, extendable, IE11 compatible & has reduced code base sizes by 67% when compared with react
(a hard edge-case is a child emitting a event to the parent in response to a message from the parent)
which this async setup just handles flawlessly
I think Ace went away for a thing.
Said they'd brb I think.
When am I not?
Or do I?
Well, sure. There was a conference around the water bowls out front, today.
Pigeon sitting in the bowl sunning its wing.
htmx is one of those things that sounds nice but I just hate.
for one, wtf do you do when you need client-only state?
I'm not sure I'm all that keen on offering help given you've set your name to what you have.
it's not supposed to replace everything
I know I know
I guess its because 99% of my applications are 95% client state
@upper basin does your project say you don't need a user interface for the user to enter details ,if then you can use python shell or admin panel to save the value to the databse
and also I just dont enjoy writing server side routes for every possible state update
instead of just having a frontend framework do reacticity
Forgejo only uses HTMX for star/fork/watch buttons
@somber heath
really? seems.... overkill to pull it in for just that
NVM
no, the opposite, using custom JS would be an overkill
I GOT THE SOLUTION
@midnight mason 👋
why would you write fetch to update the count when it's already been implemented in htmx
because writing a fetch doesnt require pulling in a whole library
I hope you realise that this new name only further perpetuates my feelings of exasperation and distaste.
the pages themselves are already quite giant, tiny library isn't making it much worse
I guess
it's mostly a server-side templated application
ah
in that case, sure
I thought you meant they had a normal csr (or ssr + hydration) framework in place, and used htmx style updates for just that
@somber heath its temporary imma change it sowy
also bro
u got premium english or smthn 💀 🙏
i had to google those words ;-;
lol
im sowy
for my name
yhe I will admitt if most of your reactive updates are the result of re-fetching server state, htmx is likely an improvement
like I did with Python, Rust, core Zig, ZeroMQ and maybe some other things I forgot
like how Zig standard library docs are formed
except it's kilobytes not megabytes
but if most of your reactive updates can be calculated client side (idk.... maybe a editor like thing where it only gets pushed to the server at the end) then I think a csr framework is better.
(I am am not gonna get into virtual-dom vs no-virtual-dom, what framework to use (use mine), etc here 🙃 )
do you refetch that whole json, or is it refresh the page to get updates kind of situation
event stream of changes in both directions
(also it does annoy me a bit when they talk about htmx as the altnative to js frameworks.... when it is js.... its basically just a bunch of js utility functions you can call via html attributes)
Don't apologise unless you mean it and if you do, back it up with action / change.
This is just general life advice.
so watching a "react port to htmx" talk, and its like "we can filter this list, and its all htmx"
and I am like... "you are asking the server to filter data... that you already have avilable client side?"
I'm surprised it hasn't been even worse.
gtg
state model for filtering is indeed nontrivial
as Sean Parent said in response to people misusing Fibonacci numbers calculation to demonstrate whatever, use real examples
(from better code: concurrency)
20 or so seconds beforehand.
The first question is not how can you, but whether you can.
@fathom laurel 👋
@somber heath 👋
bismium
gold is used in electronics, platinum is used in chemistry
what is palladium used for
ah, like platinum
yeah
oaky it's literally just lighter platinum
unlike Nickel which is in the same group
which is primarily used for poisoning Norilsk's rivers
do I remember correctly that it's, like, first or second most abundant metal? (on Earth)
no it's not
hmm
way down the raking but still somewhat frequent
Aluminium and Iron are
rubidium: annual production tones: just 2
the what's a Dysprosium
Finance, gold, metals.
I Gave My Love a Quantum Burrito.
can we !remind other users 
schrödingerrito
Ooh.
object oriented devops.
Burrito-in-superposition
Burrito-function-collapse
A clockwork burrito.
the only CI I deal with is Actions
@wind raptor Gitea can no longer pull code from Forgejo
Forgejo went GPL
as example of where you can't take code back
Rust things are mostly licensed under MIT+Apache2
I already forgot why
looked up
MIT allows anyone to use it
Apache2 forces contributors to drop patent claims
@wind raptor leetcode is built with graphql too
GraphQL is an incredible piece of technology that has captured a lot of mindshare since I first started slinging it in production in 2018. You won’t have to ...
(when used, it's actually less, it's just amount of definitions in code)
doing proper REST means I can just use curl
and usage is very trivial
or postman or whatever else
for TypeScript there is tRPC
idk what it does on the inside
likely magic akin to server actions
Oh yea, debugging graphQL is awful
recursive queries performance 🥰
shocking news to some API designers: GET, PUT, PATCH, and DELETE exist, it's not all POST
also query parameters are a thing
Do people not know about the other methods?
most only know GET and POST
when looking up stuff with some custom parameters, many pick POST not GET
also many people misuse GET, but that's a separate issue
and some people know GET or POST and not both
some people believe PUT cannot be used without POST on the same route
yikes... not sure how you could design a rest API without knowing the basics of http methods... would that even be rest?
same for PATCH
@amber raptor @wind raptor it is so hard to deport an actual U.S. citizen
they type any identification into their computer
your id, they can see your passport, etc
it wouldnt't be REST
Deportation of Americans from the United States is the wrongful expulsion, return or extradition of Americans to other countries, often after being convicted of a crime. These individuals in removal proceedings include Americans by birth and legal immigrants that were naturalized under 8 U.S.C. § 1427 or admitted as nationals of the United Stat...
ahh
there is a database with your paperwork submitted, people just dont get the proper documentation
the U.S. customs at the canada border saw literally everything when my flordia friend gave him his flordia id
@amber raptor
since he forgot his passport
in the U.S.
canada just let him through
It's a long long game
i mean it costs money def and people are lazy
the fucking ubuntu crashed again
I feel called out
so many people dont even have their own passports because they never travel
Also called out
grrrrrrr
I've never had to go out of the country
I should get one...
It'd just be another thing to add to the pile of crap I need to do
Localities don’t care
❤️ Javascript
That makes some twisted sense, though
Some how
Nevermind, I don't know why I'm trying to even think of defending JS
So cursed
Is there a website for that?
Have an interview today, need to trip them up
Want to ask them to evaluate some JS for me, this looks fun
DEI == Data Elimination, Innit?
Do immigrants dodge tariffs? lol
This is such a flawed argument
For property taxes, call it lad
land
poor people occupy less land per person as well
Slumlords pack em like sardines
Sorry browser just closed out of nowhere
So the rich, who steal from their workers, are the good guys
and the poors, who drive the economy
are bad
Got it ✅
🤣
I don't think anyone is claiming good or bad
Lemme go 👢 👅
Pew Research investigate and analyze seats at churches
Take out the poor folks, and America will fail
But the women are bad?
who needs immigrants when you can just employ children
That'll make America Great
fingerless children
What about fingerless immigrant children?
If it's just on one hand, you get a five finger discount
Okay, I have to call out Windows on something (no surprise). If you adjust your volume, a little pop up shows up
Yea, Mississippi relied what, 23% on the fed for education budget?
There is no built in way to keep that from popping up
reminded of
https://www.youtube.com/watch?v=ZW7nVocK-Ts
In newly resurfaced audio, the vice-presidential candidate is heard making disparaging remarks, calling childless children "miserable" and "pathetic".
Have a written record of society’s collapse. Get the paper. Become a member. https://membership.theonion.com/?campaign=701a500001IEsKDAA1
Fucking.... why
Like... god damn it
Just because they keep saying it, does not make it true
Holy shit
Notice there's another side saying something different
Works for the Orks
More dakka
as the republican says
what?
do you know what a crime rate is?
it's crime per population
That's not the rate
what hte fuck
that's bullshiut
it's a fucking stupid irrelevant number
the point of the number is to cherry pick data and mislead
Crime against the immigrants
obviously, the fault of the immigrants
Is there a way to clear the cache for just one website, or do you have to clear it for all?
ctrl shift r?
It doesn't fully clear it
you can disable it
Ehhhhhh
Doesn't clea- oh I can just do it from there
Not just disable
I should be able to properly clear
Not super important, just popped into my head
Where is offtopic channel
!ot
Please read our off-topic etiquette before participating in conversations.
yo
not everyone but the discussion did split
Recommendations on job sites for software dev?
hello
in Europe presumably?
how are you, guys?
Wdym?
which target job market (approximately)
Yep, I'm in the UK. Although sometimes jobs don't get shown if you specify location and they're multi site etc.
dude, no reaction to my sentence lmao
probably it seems that everyone is busy a lot
Swa la la
not great
I guess so, you will be good soon
except for linkedin and hh.ru, I've only heard of job websites from ads
never heard other people recommend any
not heard of hh.ru
Russian one
idk if it's only in Russia or Union State
I'm trying to remember how much it cost me to travel ~500km and back by train
the last time
A mix of size and lobbying
Privatisation ain't good
But the select few is the one pushing the privatization
and everyone else keeps electing them...
$30.30
Maintaining infrastructure should not be a profit seeking process
it should be a government expense, straight up, that's what we pay for
Like the arguments against the USPS and it's unprofitability
it's not supposed to turn af uckin profit
it's supposed to make the whole of the US accessible
for ~13 hour ride total
Where's our military profit"?
(~6.5 one way and ~6.5 back)
Other than Northropp and Boeing and Lockheed's balance sheet
No, it's not.
At all
We get shit service
FedEx sucks, always has
The existence of these shitty logistics companies pushes the ruling class to murder the USPS
so 100% disagree
with the current line
Russian Mail Service somehow got better over the years
very surprising lack of neglect
obvious nuance: in the rich regions
Capitalism works only when there is competition
Private and public rail systems?
How many railroads are we building
who is paying ofr all the rail?
No competition = no capitalism
So is it a rail system?
or just an operator on the rails
The government maintains the rails?
Socialize the costs, privatize the profits?
That's the plan?
Can we compare population density?
Russia has some weird hybrid where infrastructure companies are half-private
РЖД and ФПК are more like unregulated monopolies
NYC is twice as dense as Tokyo
is that a fair comparison?
Tokyo 6200 / sqkm, NYC is 11313
"in Russia, even 9th of April is considered winter"
And doesn't Japan have a culture of being significantly quicker to tear down an old building
(European Russia is currently covered in snow)
Russia has everything to be a rich nation yet it is poor.
Same reason as early monopoly rules the country
whereas in the US we wait for them to crumble
sell em at a higher price each time till they fall to the ground
Russia should have 20 trillion GDP at least
usual petrostate
Moscow government pretends to care so much that they end up actually making the city better for living
Because it's used to be neck to neck to the US in 50s
Russia has less than half the US Population, but it's GDP should be more than half the US GDP?
Are we real?
Yes
By what logic?
Because Russia has far more resources
OTher than none
27.72
2023
**
Yes, Siberia
so why would they have more than half our GDP
what a crazy number 15-20 trillion
from the current 2
Siberia colonisation is an economical catastrophe
Population argument doesn't make sense as China has far more
So why should Russia have a 15-20 trillion GDP? I'm so confused
It's about resources and total output and its very much possible
both in the imperial and socialist times
Not at all
and right now it's just slowly dying
10x their economy, magically?
no, it's not going to
You don't see the federation falling apart?
Nope
Many thought the USSR would stand
nationalism/pro-independence centres are still very localised and small
people still have the generational tradition of not giving a f_ck about what happens
Which is better?
Being a part of the nuclear state and bullying other nations ?
Or
Being an Independent nation and being bullied by a nuclear state ?
North Manchuria?
or whatever it's called
the piece we annexed
it's been claimed by China for decades
it's not news
Tbh it was part of Chinese dynasty and mangolia
Communist China and Communist Russia did have an actual war over it
new map dropped
Cuba has a small piece of US too
That's not the United States.
It's United America
Now tariffs are equal
Electric vehicles are amazing
earthus
No you don't make the earth flat
who is she...
Dripping ocean water
You don't do a damn thing to the earth when you pass by it
Our sun is G2V star
It's single star
7% of star are single star in our solar system
@runic island another uncommon thing about the Solar System is how the gas giants are far away from the core
from what I remember reading that is considered rare
yeah, it ended up in an uncommon state
also somewhat wild how it's considered that 7th and 8th planets swapped orbits historically
so NASA lies
we had mandatory astronomy classes in high school
Almost all planets in the solar system had some similarities
Like the material compensation
Age
❌ lies
✅ misinterprets
Oldest being Jupiter
Late 90's
Nasa hasn't updated it's sidte?
lol
BUt they took Pluto off a few years ago?
Several years ago
basically it describes not the very initial state
this describes how giants grew and ended up where they are not where their formation started
they are part of the reason why it's that way
It claims that rocky planets formed closer, and gaseous ones further
as it was forming
Russia should be declared a planet it has a bigger surface area than Pluto, if Pluto is planet!
ah, right, yeah, this part is correct
I thought you were actually claiming NASA's description contradict what was said
what was said was that gas giants are farther away than they normally are
usually they form closer
so, yeah, it's just a non-contradiction
rocky planets formed closer than giants
giants formed closer than where they are now
can you actually read what I wrote?
closer than they are now
not closer than rocky ones
The materials settled outside
then planets formed
outside
not close
and moved
rocky ones formed where they are
gaseous ones formed wher ethey are
that's what this says
The gaseous ones moved outside the rocky ones
after formation
Rogue planets are in trillion in milky way
no one said that
Hahahhahahaa
Humanity surviving for the next 1000 years
We're speedrunning extinction
First all the other species, then ourselves
(okay, correction, both)
Highly unlikely
the prevailing theory is that it's local-ish planet iirc
As rogue planets are rogue because they can't become part of any other solar system because they need to be in the right direction with force higher than normal planet collision
not rogue because can't, rogue because currently isn't
Plus in the outer solar system most planets are ice giant hence unlikely to pass the ice giant
the issues with them isn't really as much a collision
Check the link for the uber melty planets
from what I understand
Not even
more of a gravity issues
just click the link, you can see the large blobs smack each other
I think this is a big one
it might be a crop of another video
The oxygen isotopes and other elements sealed into the specimens matched those of Earth rocks too precisely for the similarities to be a coincidence
This is a fun one, the side we see vs the side that tries to protect us
gets clapped by things that would otherwise hit us
what?
it 100% matters
one side always faces us
the other side always faces away
it 100% relevant
WHAT?
WHAT!?
!
No
one side is littered with craters
the other is not
can you not see the two sides?
yes
not craters
ther far side
all craters
the "marre" or hwoever they are spelled
do not get to form and stay
or is the far side non volcanic?
100%
and only the side that looks at us is
the "near side" is protected
by facing the earth
it's REALLY hard for something to strike the near side
without striking hte earth
whereas the far side
its' gonna hit the moon before the earth
...
Soviets after seeing the first photo of the far side: "oh, that's kind boring-looking, idk what we expected"
shit hits the earth and dies in our atmosphere most times
shit hits the moon and claps the moon
shit cannot pass through the earth to hit the face of the moon that faces us
therefore, the side that faces us gets clapped a lot less
I wouldn't expect that to be statistically significant
for impact count
so when the moon is behind us as we go through the perseid, we're not clearing a path?
vs wehn the moon leads teh charge
it revolves around us...
How are there 2 positions in a revolution"
only 2
I'd think, it can be anywhere around the orbit
so one side always faces us
I still think the distance between the two are too big for the "shielding" and too short for "clearing" to be noticeable
and one side never faces us
maybe we should model it
who here has a spare supercomputer
Who needs a supercomputer
just ask the Ai to vibe it out for a pi to run
🤷 back to work I go
"on a rpi it might as well take those millions of years, may as well just wait what happens IRL instead "
This simulator ain't working on laptop
A real three body problem is when you kill 3 people and need to get rid of the bodies
it's chaotic but not chaotic enough
🌊
(iirc)
it's not a breakthrough, it's reliable and predictable brute-force solution
no, all, iirc
it's just unusable
from what I understand:
you give the formula how accurate you want the result to be
it gives you back, like, please calculate this formula up to this much million terms
if you try to plug regular IEEE754 floats into that formula it will obviously just inf
yeah, the formula can tell you how many digits you need
which is, again, "millions"
(likely it's exponential)
we managed to show that this thing isn't "infinitely chaotic", only exponential or whatever
!e
x = 0.1
for _ in range(5):
x = 4 * x * (1 - x)
print(x)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 0.36000000000000004
002 | 0.9216
003 | 0.28901376000000006
004 | 0.8219392261226498
005 | 0.5854205387341974