I got an issue installing Nix on latest macOS 15.0 (Sequioa), looks like 3xx uids are reserved by some new built-in users.
This should fix your issue: NIX_FIRST_BUILD_UID=600
| -- Livox Mid-40 Protocol Dissector | |
| -- Based on Livox SDK Communication Protocol v1.3.0 | |
| -- Compatible with older Wireshark versions | |
| local livox_proto = Proto("livox", "Livox Mid-40 Protocol") | |
| -- Protocol fields | |
| local fields = livox_proto.fields | |
| fields.sof = ProtoField.uint8("livox.sof", "Start of Frame", base.HEX) | |
| fields.version = ProtoField.uint8("livox.version", "Protocol Version", base.DEC) |
| for image in (docker image ls --format json | jq -r .Repository) | |
| docker save $image > /tmp/images/(echo $image | string replace -a "/" "-").tar & | |
| end |
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA512 | |
| Every two years, I rotate my keys. This time, I did it properly. | |
| https://keybase.io/0x77dev/sigchain#41043405618604e21fd80cf51afcbc43bf26e5dc71897403615626f25666d42a0f | |
| https://keybase.io/0x77dev/sigchain#265300a3bb9196faccb722605acb9e8c3fdc7669b9cb119dd6d25347b154df5e0f | |
| https://keybase.io/0x77dev/pgp_keys.asc |
| #!/bin/bash | |
| RED='\033[1;31m' | |
| GRN='\033[1;32m' | |
| BLU='\033[1;34m' | |
| YEL='\033[1;33m' | |
| PUR='\033[1;35m' | |
| CYAN='\033[1;36m' | |
| NC='\033[0m' | |
| echo -e "${CYAN}*-------------------*---------------------*${NC}" |
I got an issue installing Nix on latest macOS 15.0 (Sequioa), looks like 3xx uids are reserved by some new built-in users.
This should fix your issue: NIX_FIRST_BUILD_UID=600
| #!/usr/bin/env bun | |
| import { createReadStream, createWriteStream, stat } from 'fs' | |
| import { basename } from 'path' | |
| import { Transform } from 'stream' | |
| import { promisify } from 'util' | |
| const MAX_SIZE = 100 * 1024 * 1024 // 100MB | |
| const splitFile = async (filePath: string): Promise<void> => { |
| https://twitter.com/linaasahi/status/1586575362225369088 | |
| @asahilina tweeted: | |
| ``` | |
| Hi everyone! I'm looking at per-device GPU data, and I want to collect examples! | |
| Can you help out by running this command from macOS? ✨ | |
| ioreg -l|egrep 'gpu-core-count|AGXParameterBufferMax|GPUConfiguration|shared-region-base|class IOPlatformExpertDevice|perf-states|OS Build' | |
| ``` |
| import asyncio | |
| from bleak import BleakScanner, BleakClient | |
| async def main(): | |
| devices = await BleakScanner.discover(service_uuids=["FEA6"]) | |
| print(devices) | |
| device = devices[0] | |
| if not device: | |
| print("No device found") | |
| exit(-1) |
I hereby claim:
To claim this, I am signing this object:
| import Fastify from "fastify"; | |
| import mercurius, { IResolvers, MercuriusContext } from "mercurius" | |
| const example = Fastify() | |
| const schema = ` | |
| extend type Query { | |
| test: Boolean! | |
| } | |
| type TestEvent{ |