The YouTube channel looking glass universe (highly recommended!) also has a video on how alphafold works.
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)
Ah, gotcha.
Is there like a list where you can enter your server so that other people use it as an ntp server? Or how did you advertise it to have 2800 requests flooding in?
I have similar specs and cost with ionos
It says posted 4 days ago, updated yesterday.
For most stuff the pi4 is also enough. Jellyfin (no transcoding) works fine on mine. It takes a bit to generate the chapter images and the timeline peek images when ingesting a new movie, but I’ve never had any issues with playback.
Wait what? Do I understand that correctly? You have a raspberry pi with a direct network connection to an atomic clock? That’s so awesome!
It works by subvolume, which are not equivalent to partitions.
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!
Ah, I was afraid that might happen. Oh well.
Unfortunately it does not work that way :(
From what I’ve heard he wasn’t such a great peacetime president either.
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.
A basic image is really easy. It’s basically just
Dockerfile
FROM debian # start with a minimal Linux system. There are probably better options than debian. Some images are made especially for docker (i.e. very minimal and light weight).
RUN apt install dependencies # do what ever you need to get your app running.
RUN echo "options and stuff" >> /etc/a/config/file # you can also edit system files
COPY . /app # copy your project into the docker container.
EXPOSE 8080 # doesn't actually do anything, but documents where the app will be listening
CMD server-binary run /app/main.php # I have actually no idea how php server stuff works
(Docs https://docs.docker.com/reference/dockerfile/)
Then people can run your project with docker.
Edit: checking the readme some small changes would be required. Config.php should read in environment variables and the DB init SQL should be run automatically somehow.
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.
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.
https://riptutorial.com/c/example/23858/trigraphs