Add to uBlock/Adblock:
This file contains hidden or 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 | |
# By Chih-Wei Huang <[email protected]> | |
# License: GNU Generic Public License v2 | |
continue_or_stop() | |
{ | |
echo "Please Enter to continue or Ctrl-C to stop." | |
read | |
} |
This file contains hidden or 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== | |
// @id LezPopMerda | |
// @name LezPop AdBlock Block | |
// @namespace https://lezpopkek.com | |
// @version 0.1 | |
// @author Stocazzo <[email protected]> | |
// @description LezPop AdBlock Block | |
// @domain lezpop.it | |
// @match http://*.lezpop.it/* | |
// @match https://*.lezpop.it/* |
This file contains hidden or 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
# Maintainer: Davide Depau <[email protected]> | |
# Contributor: Ivan Shapovalov <[email protected]> | |
# Contributor: Sven Greiner <[email protected]> | |
# Contributor: vldmr <[email protected]> | |
# Contributor: Thomas Krug <[email protected]> | |
# Contributor: Matthew Bauer <[email protected]> | |
pkgname=libfprint-vfs0090-git | |
epoch=1 | |
pkgver=0.7.0.r87.g877aba1 |
This file contains hidden or 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 | |
# Update last line with paths to Secure Boot keys | |
rootdev="$(mount | grep " on / " | awk '{ print $1 }')" | |
rootfstype="$(mount | grep " on / " | awk '{ print $5 }')" | |
echo -e "$(</usr/lib/os-release)\nVERSION_ID=rolling" > /tmp/os-release | |
cat /boot/intel-ucode.img /boot/initramfs-linux.img > /tmp/initrd.img | |
echo "options root=$rootdev rootfstype=$rootfstype rd.luks.options=discard rw quiet splash" > /tmp/cmdline.txt |
This file contains hidden or 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
# Maintainer: Davide Depau <[email protected]> | |
# Contributor: Ivan Shapovalov <[email protected]> | |
# Contributor: Sven Greiner <[email protected]> | |
# Contributor: vldmr <[email protected]> | |
# Contributor: Thomas Krug <[email protected]> | |
# Contributor: Matthew Bauer <[email protected]> | |
pkgname=libfprint-validity90 | |
pkgver=r111.baab930 | |
pkgrel=1 |
This file contains hidden or 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 | |
echo "Adding Android entry to GRUB" | |
sudo tee -a /etc/grub.d/41_custom << EOF | |
menuentry "Android 7.1.2" { | |
insmod part_gpt | |
insmod fat | |
search --set=root --file /android-2017-10-24/kernel | |
#set root='hd0,gpt1' |
This file contains hidden or 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 python | |
# -*- coding: utf-8 -*- | |
from apds9930 import APDS9930 | |
from apds9930.values import ALL, OFF | |
from time import sleep | |
busno = int(raw_input("Please select an I²C bus number: ")) | |
a = APDS9930(busno) |
This file contains hidden or 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
#define DEBUG | |
#define BLUETOOTH | |
#define BT_HC06 | |
#include <CmdMessenger.h> | |
#include <stdlib.h> | |
#ifdef BLUETOOTH | |
#include <SoftReset.h> | |
#endif |