

C is so old, it has a way to work around that! In case your 198x keyboard was not set to ASCII you know. Not sure if Morse covers all the characters needed for the replacement trigraphs though.
C is so old, it has a way to work around that! In case your 198x keyboard was not set to ASCII you know. Not sure if Morse covers all the characters needed for the replacement trigraphs though.
The YouTube channel looking glass universe (highly recommended!) also has a video on how alphafold works.
Server’s down :(
Definitely JS if you want to also have a website. Use electron to turn your website into an executable for the desktop. Python+qt is ok for Desktop apps, but does not work for a website.
Languages that compile to wasm would also be an option, (e.g. https://egui.rs with rust), but as far as i am aware none of the languages you’ve listed are in that set. (Only go would even be a contender between python, ruby, js and go)
Alternatively the y axis could be “blog posts not about …”
Yes, but devil’s advocate: you also need a program to text files, needing a program to read sqlite files is not worse.
I am confused by your requirements. Why do you need to store your data as json or XML? Would it suit your requirements to read in text files, convert to sqlite for processing and then save as a text file? What do you gain by being able to edit the files in a text editor, as opposed to a table editor? Do you maybe just need a config file (e.g. in toml format) and don’t actually do much data processing?
It depends entirely on how you want to work with the data.
Have you considered sqlite? The database is just a single file, which gives you all the advantages of a text file (easy backup, sharing, easy editing via sqlite browser) while also providing the benefits of SQL when operating on the data (join, etc).
You’d think so, but the title has a space there!
Ok, but if it’s not bound to something like an official domain name how can you be sure the person who signed their posts as president of the EU (or whatever the official title is) to actually be that person is real life?
This assumes that OP actually meant git…
I fear they may have had no idea what the distinction between git and GitHub is and intended to say GitHub.
What about cargo doc
? With lynx if you demand terminal exclusive usage.
Yes. That’s what I meant.
Though I heavily expect the rust compiler to produce identical assembly for both types of iteration.
It would be interesting to see if an iterator instead of a manual for loop would increase the performance of the base case.
My guess is not, because the compiler should know they are equivalent, but would be interesting to check anyway.
REST server and ORM python code
Fair enough, that can be achieved with pure python.
You tried your best, but the actual link form is !optimistsunite@reddthat.com
A new database specifically designed for financial transactions.
I’m not an expert on finance software, so I can’t critically assert how good they really are. But they claim much much higher throughput than traditional databases, higher fault tolerance, self healing networks if several replicas are running, etc.
From a purely technical standpoint it’s interesting for being written in zig. Because the database scope is so narrow they know exactly how much memory they will need on startup and just allocate all required memory on startup and never allocate more, nor free the aquired memory.
They never would have been able to get the same performance from any solution that incorporates a general purpose database.
Their requirements/explicitly-not-required-ments include that it’s fine to drop 1s of data. That would be an insane proposition for any other database. Also their read/write rates and latency requirements are unusual to say the least.
It’s the same thing as tiger beetle. Ridiculously narrow domains allow for ridiculous performance improvements compared to of-the-shelf solutions.
The example is wrong, because they used 1.0
.
But in general x-x
does not have to equal 0
, that is true. I’m pretty sure Nan
and infinity
would yield not 0.0
, but Nan
instead.
And if you reach x with two different calculations, e.g. x1 = a - b - c
and x2 = a - c - b
it is certainly not guaranteed that x1 - x2 == 0.0
Are you sure? I’ve never seen that inequality before.
Edit: and at least python agrees with me
print(0.1 + 0.2) # 0.300...0004
print(1.0-1.0) # 0.0
No, because you can’t mathematically guarantee that pi contains long strings of predetermined patterns.
The 1.101001000100001… example by the other user was just that - an example. Their number is infinite, but never contains a 2. Pi is also infinite, but does it contain the number e to 100 digits of precision? Maybe. Maybe not. The point is, we don’t know and we can’t prove it either way (except finding it by accident).