https://bioinformatics.ca/workshops-all/2025-pathogen-genomic-epidemiology-online/
#bioinformatics
| ORCID | https://orcid.org/my-orcid?orcid=0000-0001-6871-1165 |
| Github | https://github.com/bencardoen?tab=repositories |
| PixelFed | https://pixelfed.de/i/web/profile/530768910092248279 |
| Site | https://vsert.com |
StaticArrays.jl is quite powerful in integrating stack allocated fixed size (const if needed) arrays/matrices, in the right spot it can be a big performance improvement over Vector/Array. #scientificcomputing
Inspired by Google's move to remove @organicmaps from the Playstore without warning, I finally decided to move my > 3,000 Google Maps saved places to Organic Maps. To facilitate doing this for others' benefit, I made a quick webpage to convert your Google Maps GeoJSON data to GPX and KMZ files that render well in Organic Maps.
https://rudokemper.github.io/google-maps-places-to-organic-maps/
@Research_FTW Steam works quite well on Linux across distributions, but check individual games and which distros support graphics drivers better. CachyOS is reportedly excellent for squeezing out every last bit of performance (Arch based).
For Nvivo, you'd have three options: apart from Vm you can try Wine.
The Wine db ratings are not promising though. https://appdb.winehq.org/objectManager.php?sClass=application&iId=2389
Before switching, I usually recommend trying out a few distros using a live image on USB
One of those 'nice to have' things in Julia bridging the distance between code and mathematics: support for unicode mathematical operators as functions:
a = Set([1,2,3])
a = a ∪ [4]
a == Set([1,2,3,4]) # true