Discover gists
For some reason, it is surprisingly hard to create a bootable Windows USB using macOS. These are my steps for doing so, which have worked for me in macOS Monterey (12.6.1) for Windows 10 and 11. After following these steps, you should have a bootable Windows USB drive.
You can download Windows 10 or Windows 11 directly from Microsoft.
After plugging the drive to your machine, identify the name of the USB device using diskutil list
, which should return an output like the one below. In my case, the correct disk name is disk2
.
Recommended to install Waydroid in a brand new Ubuntu 25.04 install. Waydroid needs a custom linux kernel. Actually just needs latest kernel for WSL2 with just these changes before compiling:
CONFIG_ANDROID_BINDER_IPC=y
CONFIG_ANDROID_BINDER_DEVICES="binder,hwbinder,vndbinder"
links for old versions of Docker for Mac
Docker provides download links in release note. They promised that
(we) will also include download links in release notes for future releases.
Note:
import 'package:flutter/material.dart'; | |
import 'package:go_router/go_router.dart'; | |
/// A mixin that allows a widget to be aware of the current route. | |
/// | |
/// ```dart | |
/// class MyWidget extends StatefulWidget { | |
/// const MyWidget({super.key}); | |
/// @override | |
/// State<MyWidget> createState() => _MyWidgetState(); |
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
;by doppelganger ([email protected]) | |
;This file is provided for your own use as-is. It will require the character rom data | |
;and an iNES file header to get it to work. | |
;There are so many people I have to thank for this, that taking all the credit for | |
;myself would be an unforgivable act of arrogance. Without their help this would | |
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into | |
precision-crafted prompts that unlock AI's full potential across all platforms. | |
## THE 4-D METHODOLOGY | |
### 1. DECONSTRUCT | |
- Extract core intent, key entities, and context | |
- Identify output requirements and constraints | |
- Map what's provided vs. what's missing |
#include "fui.h" | |
extern u8g2_t u8g2; | |
static fui_menu_item_t *curr_menus; | |
static uint8_t curr_len; | |
static uint8_t curr_idx = 0; | |
static uint8_t curr_offset = 0; // For turning pages |