This document attempts to consolidate all available information regarding the VBIOS ROMs for the venerable AMD Instinct MI50 - especially the 32 GB variant
Sources include
This document attempts to consolidate all available information regarding the VBIOS ROMs for the venerable AMD Instinct MI50 - especially the 32 GB variant
Sources include
| const resourceGroup = new azurenative.resources.ResourceGroup("resource-group"); | |
| // Define the scope where the role will be applied | |
| const scope = `/subscriptions/${process.env.AZURE_SUBSCRIPTION_ID}`; | |
| // Create a custom role definition for managing Container Apps | |
| export const role = new azurenative.authorization.RoleDefinition( | |
| 'role', | |
| { | |
| scope: scope, |
Add the following chunk to your existing ISC dhcpd.conf file.
if exists user-class and ( option user-class = "iPXE" ) {
filename "http://boot.smidsrod.lan/boot.ipxe";
}
else {
filename "undionly.kpxe";
}
(or see https://gist.github.com/4008017 for a more elaborate setup
This guide helps you deploy a local Large Language Model (LLM) server on your Apple MacBook (Intel CPU or Apple Silicon (M-series)) with a user-friendly chat interface. By running LLMs locally, you ensure data privacy, improve reliability with offline capabilities, and leverage cutting-edge tools for efficient AI workflows
| create table if not exists migrations ( | |
| key text CONSTRAINT pkey PRIMARY KEY | |
| ); | |
| create or replace function idempotent(migration_name text,code text) returns void as $$ | |
| begin | |
| if exists (select key from migrations where key=migration_name) then | |
| raise notice 'Migration already applied: %', migration_name; | |
| else | |
| raise notice 'Running migration: %', migration_name; |
Learn how to send emails through Gmail SMTP with Cloudflare Email Routing in this comprehensive guide.
To proceed with this method, ensure that you have enabled two-factor authentication for your Google account. If you haven't done so already, you can follow the link to set it up → Enable 2FA in your Google account.
| //================================================================ | |
| // SAMPLE SCRIPT FOR THREE WOW'S ON ONE PC | |
| // | |
| // Instructions: Copy this entire script (all the blue writing | |
| // on gray background including comments). Save it in a file. | |
| // Load it into HotkeyNet. | |
| // | |
| // Toggle the scroll lock key to turn hotkeys off and on. (You | |
| // can change this if you want, just like you can change | |
| // everything else with HotkeyNet.) |
| # I used this shell.nix to build LineageOS 13.0 for my maguro (Samsung Galaxy Nexus GSM) phone | |
| # The build instructions for normal Linuxes are here: https://wiki.lineageos.org/devices/maguro/build | |
| # For NixOS, follow those instructions but skip anything related to installing packages | |
| # Detailed instructions: | |
| # cd into an empty directory of your choice | |
| # copy this file there | |
| # in nix-shell: | |
| # $ repo init -u https://github.com/LineageOS/android.git -b cm-13.0 | |
| # $ repo sync | |
| # $ source build/envsetup.sh |
I bought M1 MacBook Air. It is the fastest computer I have, and I have been a GNOME/GNU/Linux user for long time. It is obvious conclusion that I need practical Linux desktop environment on Apple Silicon/M1.
Fortunately, Linux already works on Apple Silicon/M1. But how practical is it?