This is the method I used to install Arch on the yoga slim 7x. This is from memory so I may have forgotten things
- disable bitlocker in windows
- resize the windows partition
- disable secure boot in BIOS
-- copy.lua | |
-- | |
-- Lua functions of varying complexity to deep copy tables. | |
-- | |
-- 1. The Problem. | |
-- | |
-- Here's an example to see why deep copies are useful. Let's | |
-- say function f receives a table parameter t, and it wants to |
/** | |
* Polyfill for WebView2 Drag and Drop Bug | |
* | |
* This polyfill patches a known bug in WebView2 where drag and drop functionalities are | |
* not working as expected. This script provides a mock implementation to temporarily | |
* overcome the issue. | |
* | |
* More information: | |
* - https://github.com/MicrosoftEdge/WebView2Feedback/issues/2805 | |
* - https://github.com/dotnet/maui/issues/2205 |
If you are not interested in the technical details and only want to get Listen to work:
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
Audience – Aspire integrators, advanced users, and contributors who are defining custom resource types, implementing publishers, or working across both runtime and publish workflows.
Just getting started? Jump straight to Quick Start and come back later for the deep‑dive.
A two‑minute "hello‑world" that shows the happy path.
# Tailwind CSS LLMs.txt Documentation | |
> This document provides a comprehensive overview of Tailwind CSS utility classes, examples, and customization options. It covers various CSS properties like layout, spacing, typography, backgrounds, borders, effects, transitions, transforms, and more, explaining how to use Tailwind's utility classes to style web elements effectively and responsively. | |
This document details the documentation of Tailwind CSS utilities. It explains how Tailwind scans source files for classes, the importance of using complete class names, and how utility classes can be applied conditionally using variants for states (hover, focus), responsive breakpoints, dark mode, and other conditions. It also covers customization via theme variables and adding custom styles. | |
**Core Concepts (from styling-with-utility-classes.mdx & responsive-design.mdx):** | |
* **Utility-First:** Style elements by combining many single-purpose utility classes directly in HTML. | |
* **Constraint-Based:** Utilities general |
QEMU requires brew in OSX, so we need to install brew first.
To install brew we need to have the developer tools enabled in our system. In order to install those tools, we have two options.
xcode-select --install
import androidx.compose.runtime.Composable | |
import androidx.compose.runtime.getValue | |
import androidx.compose.runtime.mutableStateOf | |
import androidx.compose.runtime.setValue | |
import androidx.compose.ui.platform.SoftwareKeyboardController | |
import kotlinx.coroutines.CoroutineScope | |
import kotlinx.coroutines.delay | |
import kotlinx.coroutines.launch | |
public abstract class KeyboardController( |
[Unit] | |
Description=Set NVIDIA power limit above default | |
[Service] | |
Type=oneshot | |
ExecStartPre=/usr/bin/nvidia-smi -pm 1 | |
ExecStart=/usr/bin/nvidia-smi -pl 275 |