No Clocks

No Clocks

4140 bookmarks
Newest
Gdal cli from c
Gdal cli from c
The C API for gdal CLI algorithms is available in gdalalgorithm.h.
Added in version 3.12
The first step is to get the instance of the GDALGlobalAlgorithmRegistry with GDALGetGlobalAlgorithmRegistry() and then call GDALAlgorithmRegistryInstantiateAlgFromPath() with the path of the algorithm.
Once done with a GDALAlgorithmRegistryH handle, the memory associated to it can be released with GDALAlgorithmRegistryRelease() (the algorithm handles got from the registry will still be valid).
Execution of the algorithm is performed by GDALAlgorithmRun(), with an optional progress function. Proper closing of the output dataset must be performed with GDALAlgorithmFinalize(). Once done with the algorithm handle, it must be released with GDALAlgorithmFinalize().
When outputting to a MEM -- In Memory datasets dataset, you typically want to get the output dataset with:
·gdal.org·
Gdal cli from c
A memory model for production async R: mirai 2.7.0 and mori 0.2.0
A memory model for production async R: mirai 2.7.0 and mori 0.2.0
Two CRAN releases extend R's foundations for production async: bounded queues and `try_mirai()` in mirai 2.7.0, plus mori 0.2.0 graduating from experimental status.
·opensource.posit.co·
A memory model for production async R: mirai 2.7.0 and mori 0.2.0
Building a Computer in R
Building a Computer in R
One Time When R Wasn't a Language for Statistical Computing and Graphics
·landeranalytics.com·
Building a Computer in R
niri
niri
·niri-wm.github.io·
niri
The Tools I Use — Nick Janetakis
The Tools I Use — Nick Janetakis
Here's a list of software and hardware that I use on a regular basis as a developer and video creator. I will be keeping it updated.
·nickjanetakis.com·
The Tools I Use — Nick Janetakis
Dotfiles for Consistent AI-Assisted Development
Dotfiles for Consistent AI-Assisted Development
How I configured dotfiles to work across machines with Claude Code, Codex CLI, and 1Password for secrets, using symlinks, skills, and sync scripts.
·dylanbochman.com·
Dotfiles for Consistent AI-Assisted Development
Install Arch Linux in Windows WSL and Set it Up
Install Arch Linux in Windows WSL and Set it Up
Arch Linux is now officially available on WSL. Here's how you can use it with some extra efforts in setting it up post install.
wsl --install archlinux
The default Arch Linux installation (both official repo and manual) logs you in as a root user. There is no regular admin user created for your day-to-day usages at this stage. But we will create it ourselves.
If you have already installed Ubuntu in WSL, it prompts you to create a user soon after the installation is finished. Since Arch Linux is a DIY Linux distribution, such convenience should not be expected.
passwd
pacman -Syu
wsl.exe --terminate archlinux
Chances are there that sudo is not installed. If that's the case, you may not be able to access visudo in a later stage to set admin privileges.
To check if sudo is installed, use the command: pacman -Qs sudo If sudo is not listed, install sudo using: pacman -S sudo
In Arch Linux, you can use the useradd command, to create a new user. Let's create a new user called “team”. useradd -m team Here, the -m option will automatically create a home directory for the user at /home/. Set a password for the user “team”, using: passwd team Type and retype password to confirm the change.
Once the user is created, add that user to the wheel group so that it can run the sudo command to access some administrative privileges. usermod -aG wheel team
Locate the line %wheel ALL=(ALL) ALL and uncomment it.
Save the document using CTRL + O and exit using CTRL + X.
·itsfoss.com·
Install Arch Linux in Windows WSL and Set it Up
How to Run Arch Linux on Windows with WSL: The Ultimate Guide for...
How to Run Arch Linux on Windows with WSL: The Ultimate Guide for...
Arch Linux fans, rejoice—the eternal struggle to run your favorite minimal, rolling-release obsession within Windows just got a lot easier thanks to the magic of Microsoft’s Windows Subsystem for Linux, or WSL. But what does it all mean for power users, sysadmins, and anyone who likes their...
·windowsforum.com·
How to Run Arch Linux on Windows with WSL: The Ultimate Guide for...
Brain Atlas
Brain Atlas
Render your vault as an animated 3D anatomical brain.
·community.obsidian.md·
Brain Atlas
Welcome
Welcome
Sail: unifying batch processing, stream processing, and compute-intensive (AI) workloads.
·docs.lakesail.com·
Welcome
Chapter 13 Compiled code | R Packages
Chapter 13 Compiled code | R Packages
This book will teach you how to create a package, the fundamental unit of shareable, reusable, and reproducible R code.
·bookdown.dongzhuoer.com·
Chapter 13 Compiled code | R Packages
Building a Computer in R
Building a Computer in R
One Time When R Wasn't a Language for Statistical Computing and Graphics
·open.substack.com·
Building a Computer in R
Changes in Rtools45 for Windows
Changes in Rtools45 for Windows
Package muparser has been added and muparser support has been enabled in gdal (thanks to Chris Toney).
·cran.r-project.org·
Changes in Rtools45 for Windows