I hereby claim:
- I am XenHat on github.
- I am tahnex (https://keybase.io/tahnex) on keybase.
- I have a public key whose fingerprint is 14BC C7EF 1230 2F4F 8EC6 591C 7AE6 2037 1765 2F0B
To claim this, I am signing this object:
| /////////////////////////////////////////////////////////////////////////// | |
| // CCNG - Color Changer Next Gen by Miguael Liamano | |
| /////////////////////////////////////////////////////////////////////////// | |
| // This program is free software: you can redistribute it and/or modify | |
| // it under the terms of the GNU General Public License as published by | |
| // the Free Software Foundation, either version 3 of the License, or | |
| // (at your option) any later version. | |
| // | |
| // This program is distributed in the hope that it will be useful, | |
| // but WITHOUT ANY WARRANTY; without even the implied warranty of |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| # Automatically update your CloudFlare DNS record to the IP, Dynamic DNS | |
| # Can retrieve cloudflare Domain id and list zone's, because, lazy | |
| # Place at: | |
| # /usr/local/bin/cf-ddns.sh |
| $WMI = get-appxpackage -allusers | Where-Object { $_.name -NotMatch ".NET" <# NEVER DELET DIS #>` | |
| <# System Apps #>` | |
| -And $_.name -NotMatch "1527c705-839a-4832-9118-54d4Bd6a0c89" ` | |
| -And $_.name -NotMatch "AccountsControl" ` | |
| -And $_.name -NotMatch "BioEnrollment" ` | |
| -And $_.name -NotMatch "BrokerPlugin" ` | |
| -And $_.name -NotMatch "c5e2524a-ea46-4f67-841f-6a9465d9d515" ` | |
| -And $_.name -NotMatch "ChxApp" ` | |
| -And $_.name -NotMatch "communication" ` | |
| -And $_.name -NotMatch "ContactSupport" ` |
| {"lastUpload":"2022-01-02T08:49:16.852Z","extensionVersion":"v3.4.3"} |
| # if the command-not-found package is installed, use it | |
| if [ -x /usr/lib/command-not-found ] || [ -x /usr/share/command-not-found/command-not-found ]; then | |
| function command_not_found_handle() { | |
| # check because c-n-f could've been removed in the meantime | |
| if [ -x /usr/lib/command-not-found ]; then | |
| /usr/lib/command-not-found -- "$1" | |
| return $? | |
| elif [ -x /usr/share/command-not-found/command-not-found ]; then | |
| /usr/share/command-not-found/command-not-found -- "$1" | |
| return $? |
| #!/bin/bash | |
| mfg="apple" | |
| model="macbook" | |
| version="5,2" | |
| # Glob expression to match chips to dump. do not include asterisks, or rework the script. | |
| chip_mfg='Macronix' | |
| chip_model_glob="MX25L" | |
| chip_glob="Found ${chip_mfg} flash chip \"${chip_model_glob}" | |
| dump_folder=$(echo "$HOME/${mfg}_dump/${model}/${version}" | tr ',' '_' | tr '.' '_' | tr ' ' '_') | |
| for chip in $(sudo flashrom -p internal 2>&1 | grep "${chip_glob}" | cut -d ' ' -f 5 | tr -d '"'); do |
| # https://gist.github.com/XenHat/fafa4697b51c3279f74967609af03120 | |
| # | |
| # Settings | |
| # Needs quotes | |
| GitVersion="2.28.0" | |
| # | |
| # | |
| # | |
| # | |
| # Self-Elevate |
| #!/hint/bash | |
| # | |
| # /etc/makepkg.conf | |
| # | |
| ######################################################################### | |
| # SOURCE ACQUISITION | |
| ######################################################################### | |
| # | |
| #-- The download utilities that makepkg should use to acquire sources |