- Shall i implement it?
- No ...
| #!/usr/bin/env python3 | |
| # blkenvflash_mac_pwrite.py — fast Luckfox TF writer (macOS), uses pwrite() | |
| # fork of BLKENVFLASH by Rene K. Mueller <spiritdude@gmail.com> | |
| # License: MIT | |
| # | |
| # History: | |
| # 2024/06/18: after the hint by A. Schuetz https://github.com/LuckfoxTECH/luckfox-pico/issues/129 was able to make script functional | |
| # 2024/06/10: start |
<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>
<general_guidelines>
- NEVER use meta-phrases (e.g., "let me help you", "I can see that").
- NEVER summarize unless explicitly requested.
- NEVER provide unsolicited advice.
- NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
- ALWAYS be specific, detailed, and accurate.
- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide, https://ios.cfw.guide/sideloading-apps/
An Atmosphere Conf 2025 Lightning Talk
I recently embarked on the task of adding Bluesky Oauth Login to Coral by Vox Media (a popular comments tool) as an open source contribution.
In this talk I will give a brief overview of how that went, and what you should know before attempting to create your own atprotocol oauth clients.
| https://web.archive.org/web/20231210142748/https://objects.githubusercontent.com/github-production-release-asset-2e65be/564082244/0004849b-4e87-49c6-9330-e8c164b019b7?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20231210%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20231210T142748Z&X-Amz-Expires=300&X-Amz-Signature=955a97ec9f9df7a70a1e09b95e06f74e7440fa5563c41eb0e8578cb304568bd2&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=564082244&response-content-disposition=attachment%3B%20filename%3DBeRealBea-1.3.3-1.19.0.ipa&response-content-type=application%2Foctet-stream | |
| https://web.archive.org/web/20231210142828/https://objects.githubusercontent.com/github-production-release-asset-2e65be/564082244/0004849b-4e87-49c6-9330-e8c164b019b7?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20231210%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20231210T142828Z&X-Amz-Expires=300&X-Amz-Signature=3e49f0f63642b5b142ff09f8333dfca1595ad23d03dc655610710c389cb7fdd4&X-Amz-SignedH |
| #include <Arduino.h> | |
| static const int RXPin = 17, TXPin = 18; | |
| static const uint32_t GPSBaud = 115200; | |
| String rev; | |
| void SentSerial(const char *p_char) { | |
| for (int i = 0; i < strlen(p_char); i++) { | |
| Serial1.write(p_char[i]); |
Turn cocopilot into github enterprise server, so that we can use CoCoPilot without patching Copilot plugin.
- Add the following JS to a cloudflare worker.
- Add Cloudflare Worker Routes:
*cocopilot-gh-enterprise.XXXXXXXX.XXX. You should also add DNS recordscocopilot-gh-enterprise.XXXXXXXX.XXX&*.cocopilot-gh-enterprise.XXXXXXXX.XXXto make the route available - Setting GitHub Enterprise URL to
cocopilot-gh-enterprise.XXXXXXXX.XXX
This guide will walk through how to decompile/reverse engineer IL2CPP games for modding usage.
Note: expect this entire process to take upwards of an hour. Have something ready to do on the side while waiting for processing to finish.
- Download Il2CppDumper
