| LuaJIT - JIT for the popular LUA scripting language https://luajit.org/luajit.html | |
| Magic Wormhole - conveniently transfer files directly from one computer to another https://github.com/magic-wormhole/magic-wormhole | |
| ffmpeg - antagonizes Theo https://www.ffmpeg.org/ | |
| rclone - cli tool for copying/syncing files across network or to/from cloud services: https://rclone.org/ | |
| mergerfs - union filesystem on linux: https://trapexit.github.io/mergerfs/ | |
| mkvtoolnix - cli tools for mkv file property editing/muxing/etc: https://mkvtoolnix.download/ | |
| Calibre - e-book management/conversion: https://calibre-ebook.com/ | |
| Subtitle Edit - video subtitle editor: https://www.nikse.dk/subtitleedit | |
| FreeTube - client for youtube without google nonsense: https://freetubeapp.io/ | |
| SmartTube - similar as above but for AndroidTV's: https://smarttubeapp.github.io/ |
- ✅ Full integration with Mimir's memory bank
- ✅ Graph functions enable multi-hop reasoning
| // g++ ping_pong.cpp -o ping_pong -std=c++20 -O3 | |
| #include <algorithm> | |
| #include <cerrno> | |
| #include <cstdint> | |
| #include <cstring> | |
| #include <cstdlib> | |
| #include <iostream> | |
| #include <vector> | |
| #include <chrono> |
- the remarkable toolchain
makesshscp
-
Follow https://github.com/asivery/rmpp-xovi-extensions/blob/master/INSTALL.MD
-
Copy the
qt-resource-rebuilder.soin theextensions.zipto/home/root/xovi/extensions.d(viascp) -
Remember to refresh the hashtables https://github.com/asivery/rmpp-xovi-extensions/blob/master/INSTALL.MD#to-update-hashtab-required-for-ui-mods
| library(rayrender) | |
| library(glue) | |
| y_dist = 8 | |
| circle <- function(x = 0, y = 0 + 20, rad = 1, nvert = 500, ...){ | |
| rads <- seq(0,2*pi,length.out = nvert) | |
| xcoords <- cos(rads) * rad + x | |
| ycoords <- sin(rads) * rad + y | |
| cbind(x = xcoords, y = y_dist, z = ycoords) |
On M1 machines, Docker for Mac is running a lightweight linux ARM VM, then running containers within that, so containers are essentially running natively. Don't be fooled by the fact the UI or binary CLI tools (e.g. docker) might require Rosetta.
Within that VM is an emulation layer called QEmu. This can be used by docker to run Intel containers. This does not use Rosetta at all, and has a roughly 5-6X performance penalty. (If you just upgraded your CPU this may result in a similar performance to your old machine!)
Many images in public registries are multi-architecture. For instance at the time of writing on Docker Hub the php:8.0-cli image has the following digests:
| add_filter( 'woocommerce_cart_no_shipping_available_html', 'myplugin_no_shipping_available_message' ); | |
| add_filter( 'woocommerce_no_shipping_available_html', 'myplugin_no_shipping_available_message' ); | |
| /** | |
| * Update the Woocommerce No Shipping message to include contact details. | |
| */ | |
| function myplugin_no_shipping_available_message( $message ) { | |
| $country = WC()->customer->get_shipping_country(); | |
| $mailto = 'mailto:' . get_option( 'admin_email' ); // Could also be 'woocommerce_stock_email_recipient'. | |
| $link = sprintf( wp_kses( __( '<a href="%s">contact us</a>', 'my-plugin' ), array( 'a' => array( 'href' => array() ) ) ), esc_url( $mailto ) ); |
| /* So how does this work? | |
| I'm using ANSI escape sequences to control the behavior of the terminal while | |
| cat is outputting the text. I deliberately place these control sequences inside | |
| comments so the C++ compiler doesn't try to treat them as code.*/ | |
| //[2K[2D[A[2K[A[2K[A[2K[A[2K[A | |
| /*The commands in the fake code comment move the cursor to the left edge and | |
| clear out the line, allowing the fake code to take the place of the real code. | |
| And this explanation uses similar commands to wipe itself out too. */ | |
| //[2K[2D[A[2K[A[2K[A[2K[A | |
| #include <cstdio> |