-
Starting in crDroid 10.x (Android 14.0) and onwards, we're using retrofitted dynamic partitions to avoid the constant threat of running out of space in the GPT system partition with any sizeable Google Apps package. Don't panic.
This will not permanently alter or damage your device, as it makes no changes to the underlying GPT partition table. Following any ROM's installation guide will overwite the changes, so there are no extra steps to "convert back to normal partitions".
This does mean that you cannot use TWRP or other custom recovery to install crDroid on the OnePlus 6-series, as they do not have the necessary kernel and dynamic partition layout changes compiled in to support the way we're doing things.
-
Phone setup:
// | |
// MacOS Accessibility Notifications | |
// Notice: this version doesn't take into account new apps after this code is executed | |
// Created by Phi Hiep Nguyen and AI on 2024-10-08. | |
// | |
import Cocoa | |
import Foundation | |
// AppObserver: Monitors and reports application activation events on macOS |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Power Saving Mode detection</title> | |
</head> | |
<body> | |
<div>Power Saving Mode? <code id="powerSavingMode"></code></div> | |
<script type="module"> |
.env
file for me sparing me the need to pollute my session with environment variables.
I've been using Fish shell for years which is great and all, but one thing that has got me frustrated is using it with .env
files.
When attempting to run source .env
in a project, I usually encounter this problem:
//Promise.allSettled() vs Promise.all() | |
//allSettled: returns when all promises have either resolved or rejected | |
const getGitHubUser = async (usernames: []) => { | |
const result = await Promise.allSettled( | |
usernames.map(async (name: string) => { | |
try { | |
const response = await fetch( | |
`https://api.github.com/users/${name}` | |
) |
{ | |
"agent": { | |
"metrics_collection_interval": 10, | |
"logfile": "/opt/aws/amazon-cloudwatch-agent/logs/amazon-cloudwatch-agent.log" | |
}, | |
"metrics": { | |
"metrics_collected": { | |
"cpu": { | |
"resources": [ | |
"*" |
The following sample codes are not valid for the listed services but should allow basic testing of an authenticator application. Clicking on a QR code image will display just that code so it is easier to scan without interference from the other codes.
You can use this site to generate more QR codes as needed. It will also let you verify the produced codes against its own calculated code.
Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex
/** | |
* xClip (Reverse Clip) for Windows | |
* Author: Abhishek Bhattacharya <[email protected]> | |
* | |
* Build Environment: | |
* Windows 10 Version 1607 (Windows 7 or above should work fine) | |
* MinGW g++ (GCC) 5.3.0 or above (with flag --std=c++11) | |
* UPX x3.91 or above | |
* Runtime Environment: | |
* Windows 7 or above |