-
Launch Terminal on Mac.
-
To enable aptX, type in the following command:
sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true
- To enable AAC, type the following:
#!/usr/bin/env python3 | |
# brew install pygit2 | |
# pip3 install pygit2 | |
from pygit2 import Repository | |
import sys | |
import re | |
regex = r"^([a-z]{1,5})/([A-Z]{1,5}-[0-9]{1,4})" |
Launch Terminal on Mac.
To enable aptX, type in the following command:
sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true
curl -i https://cloudflare.com/cdn-cgi/trace | grep ip | awk -F'=' '{print $2}' |
import React from "react"; | |
/** | |
* Performs partial object update | |
* @param obj | |
* @param value | |
* @param path | |
*/ | |
export function partialUpdateObject<T=any>(obj: T, value: any, path: string[]): T { | |
const key = path.pop(); |
#!/bin/env bash | |
# nvidia-remove - Disables NVIDIA GPU | |
# | |
# See: http://us.download.nvidia.com/XFree86/Linux-x86_64/455.45.01/README/dynamicpowermanagement.html | |
# Root user ID | |
ROOT_UID=0 | |
# NVIDIA PCI Vendor ID | |
NV_PCI_VENDOR_ID='0x10de' |
pkg update && pkg install resolv-conf proot proot-distro -y
proot-distro install ubuntu
proot-distro login ubuntu
Установка
#!/usr/bin/sh | |
# Source: /data/data/com.jamworks.bxactions/files/start_easy_remap.sh | |
pm enable com.samsung.android.bixby.agent | |
pm grant com.jamworks.bxactions android.permission.READ_LOGS | |
pm grant com.jamworks.bxactions android.permission.WRITE_SECURE_SETTINGS | |
logcat -c | |
am force-stop com.jamworks.bxactions |
package main | |
import ( | |
"context" | |
"time" | |
"github.com/prometheus/client_golang/prometheus" | |
) | |
type IntervalFunc = func(now time.Time) time.Duration |