I hereby claim:
- I am BlackIkeEagle on github.
- I am blackikeeagle (https://keybase.io/blackikeeagle) on keybase.
- I have a public key whose fingerprint is DB22 77BC D500 AA38 2561 0BDD DB32 3392 796C A067
To claim this, I am signing this object:
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: GnuPG v1.4.11 (GNU/Linux) | |
mQINBE6yuvYBEACur8WU+4wwMMydKHfHtA6Oh6m1Joev/5LKG5KpwZzjeYiiMcqz | |
f4xhaS2aFY3o15X+VX25GpYbHHOCcrpnkLdkmn/xX/gRJV2fq9OBzypHAfshvlF/ | |
rtLi2LaaE7QlEBJ8T5ijRVK0acZA5Pzr0uMhhL3ioIbqzYpJ0tzJdXQee2nfyGGR | |
cYJ/JDBge3ppwk61piEEd1KhW3O3w007PNY9sbN4a5MvuDCtIt6CAG0chIMEkfn6 | |
L9gCFtz9uD2+0vIdDzB8t2+wN58OPIdMyTnejQ0/P+vsODuTH6+RIGgFZ3qwCaxt | |
gNKzyh4asGhzpsSNgvSH+T66bp30CsQE9veVHbbzJfHCGQ1cLBz2qCa6qyUYpeqd | |
3CH+E3LxRfpyhYB55MheXkY1Bh+8k6TmxA3LsIxCidE1zSNwhmKvrsEkY3WCMMMC |
#!/bin/bash | |
# vi:set ts=2 sts=2 sw=2 et: | |
case "$1" in | |
'backup') | |
currdir=$(pwd); | |
( | |
cd "$HOME" | |
tar -cJf "$currdir/backup-opera-developer-$(date +%Y%m%d).tar.xz" \ | |
.config/opera-developer \ |
I hereby claim:
To claim this, I am signing this object:
The following is a quick guide to get tthis working on various Linux distros. As a side note, if you have Chrome installed alongside Vivaldi, Netflix should also work after making these changes.
#!/bin/bash | |
chmod +x bin/magento | |
( | |
cd vendor/bin | |
# fix composer | |
rm composer | |
ln -s ../composer/composer/bin/composer | |
chmod +x ../composer/composer/bin/composer | |
# fix jsonlint |
# -*- mode: ruby -*- | |
# vi: set ft=ruby ts=2 sw=2 sts=2 : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "bento/freebsd-11.1" | |
config.ssh.shell = "sh" | |
config.vm.synced_folder '.', '/vagrant', disabled: true | |
config.vm.network :private_network, ip: "192.168.254.241" |
zend_extension=xdebug.so | |
xdebug.remote_enable = 1 | |
xdebug.remote_connect_back = 1 | |
xdebug.max_nesting_level=1000 |
From 49de268ad2d7f217579090da90a5d93cad281477 Mon Sep 17 00:00:00 2001 | |
From: BlackEagle <[email protected]> | |
Date: Tue, 18 Mar 2025 09:06:21 +0100 | |
Subject: [PATCH] Bluetooth: btintel, don't reclassify signal for GfP2 and GaP | |
Should fix issue with LE devices not being found or able to connect. | |
--- | |
drivers/bluetooth/btintel.c | 3 --- | |
1 file changed, 3 deletions(-) |
arch/x86/coco/tdx/tdx.c:1080:13: error: no member named 'safe_halt' in 'struct pv_irq_ops' | |
1080 | pv_ops.irq.safe_halt = tdx_safe_halt; | |
| ~~~~~~~~~~ ^ | |
arch/x86/coco/tdx/tdx.c:1081:13: error: no member named 'halt' in 'struct pv_irq_ops' | |
1081 | pv_ops.irq.halt = tdx_halt; | |
| ~~~~~~~~~~ ^ | |
2 errors generated. | |
make[5]: *** [scripts/Makefile.build:229: arch/x86/coco/tdx/tdx.o] Error 1 | |
make[4]: *** [scripts/Makefile.build:478: arch/x86/coco/tdx] Error 2 | |
make[3]: *** [scripts/Makefile.build:478: arch/x86/coco] Error 2 |