Download Dell Display Manager from the Dell website: https://www.dell.com/support/kbdoc/de-de/000060112/was-ist-dell-display-manager
References from the Dell Forum:
Listado de Proxies para Telegram | |
Copia y pega los enlaces en el navegador para que se abran con Telegram. | |
Añade los servidores y DESACTIVA el proxy mientras no lo necesites. | |
Podéis gestionarlos desde Ajustes > Datos y almacenamiento > Proxy | |
*23/03/2024* | |
tg://proxy?server=proxy.digitalresistance.dog&port=443&secret=d41d8cd98f00b204e9800998ecf8427e |
Note: Commands that are prefaced with one backtick (`) are entered directly into the terminal. Commands with two backticks (``) are entered into the gdisk prompt. Each step is explained in English with the corresponding terminal command below it. This was done on MacOS 12.3 Monterey with an M1 processor but should work without problem on any modern MacOS, M1 or otherwise. You will end up formatting the ROM partition completely, so it is best to do this before you waste time copying any rom files over. | |
1. Back up the CFW folder from the ROMS partition. If the image named both partitions "No Name" rename the one with the CFW folder "ROMS" and the other partition "MISC" before starting this. This can be done in the Finder just like renaming any other file. | |
2. Install gdisk using homebrew. If you don't have Homebrew already installed please visit https://brew.sh/ for details on how to install it. | |
`brew install --cask gdisk | |
3. Use diskutil to get the list of mounted drives and look for the micro SD card path, m |
// ==UserScript== | |
// @name TweetXer | |
// @namespace https://github.com/lucahammer/tweetXer/ | |
// @version 0.6.6 | |
// @description Delete all your Tweets for free. | |
// @author Luca | |
// @match https://x.com/* | |
// @icon https://www.google.com/s2/favicons?domain=twitter.com | |
// @grant unsafeWindow | |
// ==/UserScript== |
/* | |
MIT License | |
Copyright (c) 2024 Reda El Madini | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all |
Download Dell Display Manager from the Dell website: https://www.dell.com/support/kbdoc/de-de/000060112/was-ist-dell-display-manager
References from the Dell Forum:
@Composable | |
fun CameraPreview( | |
modifier: Modifier = Modifier, | |
cameraSelector: CameraSelector = CameraSelector.DEFAULT_BACK_CAMERA, | |
scaleType: PreviewView.ScaleType = PreviewView.ScaleType.FILL_CENTER, | |
onBarCodesFound: (barCodes: List<Barcode>) -> Boolean, | |
) { | |
val lifecycleOwner = LocalLifecycleOwner.current | |
val context = LocalContext.current |
I was unable to change the MAC address of the Wi-FI device on a MacBook Air (M1 2020) running macOS Monterey due to the following error: ifconfig: ioctl (SIOCAIFADDR): Can't assign requested addres
.
By running the commands in following sequence I was able to change it successfully:
networksetup -setairportpower en0 on
ifconfig en0 ether <mac-address-here>
networksetup -detectnewhardware
@file:Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER") | |
// Tooltip implementation for AndroidX Jetpack Compose | |
// See usage example in the next file | |
// Tested with Compose version **1.1.0-alpha06** | |
// Based on material DropdownMenu implementation. | |
import androidx.compose.animation.core.MutableTransitionState | |
import androidx.compose.animation.core.animateFloat |
#! /usr/bin/env python | |
# hg658c.wordpress.com | |
""" | |
To decrypt encrypted values in the config, use | |
echo -n "Lp0xkiAANwcYpVPbI3D/Mg==" | base64 -d | openssl enc -d -aes-128-cbc | |
-K DBAF3361E81DA0EF5358A1929FC90A80 -iv 629EA150533376741BE36F3C819E77BA -nopad | |
""" | |
import sys | |
import os | |
from binascii import hexlify, unhexlify |