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
| # Write local | |
| git config --local commit.gpgsign false | |
| # Read local (if never set, can be an empty value) | |
| git config --local commit.gpgsign |
Fixes the "my bot keeps forgetting stuff" problem through active enforcement, not passive suggestions.
AGENTS.mdsays "read your notes" but agents ignore it under attention pressure- Sessions get compacted/reset and context is lost
- Multiple sessions (Telegram topics, Discord channels) don't share state
- Agents forget to checkpoint after doing work
... via OpenSSL and Traefik
A HTTPS tunnel for SSH (Secure Shell) is a useful tool for accessing a remote server in a secure manner when the connection is limited or restricted by a firewall or network security measures. It provides a secure way to bypass these restrictions and access the remote server securely over the internet. The HTTPS protocol, which is used to secure web traffic, is utilized to create a secure connection to the remote server. The data transmitted over this connection is
A comprehensive guide to writing plugins for OpenCode that extend agent behavior with hooks, custom tools, and event handling.
- Create a TypeScript file in
.opencode/plugin/(project) or~/.config/opencode/plugin/(global) - Export a named plugin function
- Restart OpenCode
- Prerequisites
- Step 1: Download the stock ROM for Xiaomi TV Box S 2nd Gen
- Step 2: Extract boot image from the OTA archive
- Step 3: Update the system with downloaded OTA archive
- Step 4: Patch boot image with Magisk
- Step 5: Unlock bootloader with
fastboot - Step 6: Reboot to system and complete setup
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 | |
| # script that creates clang/llvm cross toolchain for aarch64 android target | |
| # compile a hello world program that runs on AOSP Android: | |
| # test with: adb push hello /data/cache && adb shell /data/cache/hello | |
| # GCC: | |
| # C: aarch64-linux-android-gcc hello.c -o hello -pie | |
| # C++: aarch64-linux-android-g++ hello.cc -o hello -pie -fPIC -static-libgcc \ | |
| # -nostdlib -L/usr/local/aarch64-linux-android/lib -lc++ -lc -nostdinc++ \ | |
| # -I/usr/local/aarch64-linux-android/include/c++/v1 -std=c++11 | |
| # Clang/LLVM: |
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 8.1 Update 3 - November 2014 Rollup | |
| More Info & Download Link: http://www.nsaneforums.com/topic/235775-windows-81-with-update-3-november-2014-rollup-msdn-release/ | |
| ======================== | |
| Languages: English | |
| ======================== | |
| Windows 8.1 Pro VL with Update (x86) - DVD (English) | |
| ISO English Release Date: 12/15/2014 Details 2916 MB | |
| File Name: en_windows_8.1_pro_vl_with_update_x86_dvd_6050918.iso | |
| Languages: English | |
| SHA1: E46F44CD74F812EC3FE2E854317A088E85322A68 |
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 | |
| ; Per-user telnet URL mapping | |
| ; | |
| ; Works w/ Firefox and Chrome under Windows 7 | |
| ; | |
| ; Be sure to replace the path to PuTTY with the correct destination | |
| ; | |
| [HKEY_CURRENT_USER\Software\Classes\telnet] |
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
| #include <SDL2/SDL.h> | |
| #include <SDL2/SDL_syswm.h> | |
| #include <bgfx/bgfx.h> | |
| #include <bgfx/platform.h> | |
| #include <bx/bx.h> | |
| #include <bx/mutex.h> | |
| #include <bx/thread.h> | |
| void threadInit() | |
| { |
NewerOlder

