This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name OBS Disable link underlining | |
// @namespace frispete | |
// @version 0.1 | |
// @description Disable the ugly underlined links in OBS | |
// @author frispete | |
// @match https://build.opensuse.org/* | |
// @grant GM_addStyle | |
// @run-at document-end | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#ssb=$(ls -d ~/.mozilla/firefox/*.default-esr68/sessionstore-backups) | |
ssb=$(find ~/.mozilla/firefox -regex '.*.default-[0-9]+')/sessionstore-backups | |
err() { | |
echo $* >&2 | |
exit 2 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Enable autocomplete attributes | |
// @namespace frispete | |
// @version 0.1 | |
// @description This plugin gives the control about your passwords back to your browser and allows the browser to store every password. | |
// @include http://* | |
// @include https://* | |
// @copyright 2014, David, 2021, frispete | |
// forked from: https://gist.github.com/david0/9327296 | |
// Usage: Install TamperMonkey, load this page and push raw view of script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( 9/93) Installing: nvidia-gfxG05-kmp-preempt-450.66_k5.8.9_3-23.10.x86_64 ..........................................................................................................[done] | |
Additional rpm output: | |
/usr/src/kernel-modules/nvidia-450.66-preempt / | |
rm -f -r conftest | |
make[1]: Entering directory '/usr/src/linux-5.8.9-3' | |
make[2]: Entering directory '/usr/src/linux-5.8.9-3-obj/x86_64/preempt' | |
CLEAN /usr/src/kernel-modules/nvidia-450.66-preempt | |
CLEAN /usr/src/kernel-modules/nvidia-450.66-preempt/Module.symvers | |
make[2]: Leaving directory '/usr/src/linux-5.8.9-3-obj/x86_64/preempt' | |
make[1]: Leaving directory '/usr/src/linux-5.8.9-3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
meetsh=$(basename "$0") | |
meetctl=$(basename "${0%%.sh}") | |
# jitsi components | |
jitsi=(-f docker-compose.yml) | |
jitsilst=$meetctl.lst | |
test -f $jitsilst && { | |
# read list of additional jitsi components | |
while read line; do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fetched blobs: | |
git clone https://github.com/exynos5420/proprietary_vendor_samsung.git | |
symlinked blobs into vendor/samsung: | |
$> cd vendor/samsung | |
$> ln -s ../../../exynos5420/proprietary_vendor_samsung/klimtlte | |
$> ln -s ../../../exynos5420/proprietary_vendor_samsung/klimt-common | |
$> ln -s ../../../exynos5420/proprietary_vendor_samsung/tabs-common |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf8 -* | |
import os | |
import mmap | |
import ctypes | |
import logging | |
import weakref | |
from contextlib import contextmanager |