- Shall i implement it?
- No ...
Discover gists
Use mksquashfs to create a compressed image from a directory. Depending on how compressible the files are you could put on much more than 4.7 GB on a single disc.
mksquashfs /path/to/my/directory image.sqfs
You can use a different compression algorithm with e.g. -comp zstd or append multiple times to one archive to fill it up to almost the allowable size.
Add this file to your AI assistant's system prompt or context to help it avoid common AI writing patterns. Source: tropes.fyi by ossama.is
Migrating a standalone GitHub repository into a larger monorepo while preserving the invaluable commit history is a common challenge for development teams. This process allows for better code sharing, simplified dependency management, and streamlined builds.
The most effective and recommended method involves using the powerful git filter-repo tool, followed by a strategic merge into the destination monorepo.
| name | description |
|---|---|
elite-frontend-ux |
Create distinctive, production-grade frontend interfaces with expert-level UX design. Use when building SaaS dashboards, landing pages, marketing sites, React/Vue components, HTML/CSS layouts, or any web UI. Combines bold aesthetic direction with systematic design tokens, WCAG accessibility, conversion optimization, and Tailwind/React best practices. Produces polished, memorable interfaces that avoid generic AI aesthetics while meeting professional standards. |
Create distinctive, production-grade interfaces that combine bold aesthetics with systematic UX excellence. Every output must be visually striking AND functionally flawless.
| use bip39::{Language, Mnemonic}; | |
| use bitcoin::{bip32::Xpriv, Network}; | |
| const MNEMONIC: &str = "bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon bacon"; | |
| fn main() { | |
| let mnemonic = Mnemonic::parse_in(Language::English, MNEMONIC).unwrap(); | |
| println!("{}", mnemonic.to_string()); | |
| let seed = mnemonic.to_seed(""); | |
| let xpriv = Xpriv::new_master(Network::Regtest, &seed).unwrap(); | |
| println!("{}", xpriv.to_string()); |