- these are the calls used by the dexcom uploader app
- these are in no particular order!
User-Agent: Dexcom%20Share/3.0.2.11 CFNetwork/672.0.2 Darwin/14.0.0
GET
| #!/usr/bin/env python3 | |
| from __future__ import annotations | |
| import secrets | |
| import gzip | |
| import json | |
| import uuid | |
| import requests | |
| from dataclasses import dataclass, asdict, is_dataclass, field | |
| from Crypto.PublicKey import RSA | |
| from Crypto.Cipher import AES, PKCS1_v1_5 |
| """ | |
| Hello, here is a script to restore a deleted PR even if you don't have it locally : | |
| Run it in the project folder with the project and PR number as argument : | |
| openfisca-core> python3 recover_pr.py openfisca/openfisca-core 1338 | |
| It will give you the command line to restore : | |
| Analyzing PR openfisca/openfisca-core#1338... | |
| Found force-push event by Ndpnt on 2025-11-25T21:32:00Z | |
| Before: 65a22ed928d579284a36c1252be67d8f43d9f0dd | |
| After: d2e7131536b0087227353a220a58577eca98c169 | |
| ---------------------------------------- |
Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.
Below you will find the Beast Mode prompt in various versions - starting with the most recent - 3.1
GitHub Copilot Custom Agent Mode
I modified that beast mode to be more robust, and I love it. Refactored an entire older repo I made from years ago just for fun and was able to do perfectly
I call it "Extensive Mode"
"Extensive Mode.chatmode.md"
The tools should be customized per environment and what you have available,
Post by cjstm » Tue Mar 31, 2009 1:06 am
So you have ampache-3.4.4-0ubuntu1 installed and you want to give 3.5x a try, but wait 3.5 is not in the archives yet? Or better yet, you have PHP-5.2.6-0ubuntu1 installed and a newer version of PHP has come out and you want it now and not 6 months from now when the next release of Ubuntu comes out. Well the nice people at Debian/Ubuntu have developed a couple of tools to help you out. uscan and uupdate, which are part of the devscripts package, will help you update ANY Ubuntu/Debian package that has a watch file.
The first thing we need to do is install some needed packages.
| Based on http://blog.fili.nl/updating-a-debian-package-with-a-new-upstream-release/ | |
| wget {URL OF NEW UPSTREAM SOURCE TAR.GZ} | |
| sudo apt-get install devscripts | |
| sudo apt-get build-dep {PACKAGENAME} | |
| sudo apt-get source {PACKAGENAME} | |
| cd {PACKAGESOURCE-DIR} | |
| uupdate ../{NEW UPSTREAM SOURCE TAR.GZ} -v {NEW UPSTREAM VERSION} |