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
-----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{ |