- Shall i implement it?
- No ...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Compile: zig cc -target aarch64-linux-musl -static exp.c -o main_aarch64 | |
| // Embedded binary is for aarch64, the commented out is the original x86_64 one. | |
| #define _GNU_SOURCE /* See feature_test_macros(7) */ | |
| #define _FILE_OFFSET_BITS 64 | |
| #include <stdio.h> | |
| #include <stdlib.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Recipe: Qwen3.6-35B-A3B-FP8 | |
| # Qwen3.6-35B model in native FP8 quantization | |
| recipe_version: "1" | |
| name: Qwen3.6-35B-FP8 | |
| description: vLLM serving Qwen3.6-35B-FP8 | |
| # HuggingFace model to download (optional, for --download-model) | |
| model: Qwen/Qwen3.6-35B-A3B-FP8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| INSTALLS="" | |
| if command -v fio >/dev/null 2>&1; then | |
| echo "fio already installed" | |
| else | |
| INSTALLS="$INSTALL fio" | |
| fi |
Shift+Enter in Claude Code inserts a newline without submitting your prompt—essential for writing multi-line code or complex queries. However, getting this key combination to work reliably through a terminal stack involving iTerm2 and tmux requires configuration at multiple layers.
This guide explains both the fix and the reasoning behind it.
If you just want it working, here's what you need:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Control Panel\Desktop] | |
| "FontSmoothing"="2" | |
| "FontSmoothingGamma"=dword:00000000 | |
| "FontSmoothingContrast"=- | |
| "FontSmoothingOrientation"=dword:00000001 | |
| "FontSmoothingType"=dword:00000002 | |
| [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Avalon.Graphics\DISPLAY1] |
- Go to https://hexed.it/
- Click
Open Filein the top left corner, navigate to instalation folder and selectsublime_text.exe - On the
Search forbar in the left panel, input: 0F B6 51 05 83 F2 01 - Now in the editor, click on the first byte (0F) and start replacing each byte by: C6 41 05 01 B2 00 90
- Finally, in the top left corner again, click on
Save asand replace the old executable file with the newly created one.
Enjoy an Unlimited User License!
Warning
This is patched as of iOS/iPadOS 18.1 DevBeta 5. If you want to follow this, stay on Beta 4.
This actually downloads the models, and is NOT just new SiriUI. Hence, this process is complex and probably not worth it.
- What does not work: Writing Tools, Memories, Reduce Interruptions, Image Eraser and other tools that are within official Apple Intelligence on supported devices.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import usb.core | |
| import struct | |
| from collections import namedtuple | |
| APPLE_VID = 0x05ac | |
| Target = namedtuple("Target", ["vid", "pid", "name", "model", "total_size"]) |
NewerOlder