have MOK enrolled but grub gives you shit with bad shim signature when starting memtest86+?
fear no more, this is the script that will sign your mt86 binary so that secure enabled system can load it
| # /etc/sensors.d/b760m.conf | |
| # ASUS TUF GAMING B760M-PLUS WIFI D4 -- Nuvoton NCT6798D (nct6798-isa-0290) | |
| # SilverStone ALTA G1M | |
| # Apply with: sudo sensors -s | |
| chip "nct6798-*" | |
| # ============ Temperatures ============ | |
| label temp1 "Motherboard" # SYSTIN |
have MOK enrolled but grub gives you shit with bad shim signature when starting memtest86+?
fear no more, this is the script that will sign your mt86 binary so that secure enabled system can load it
USB ID 1b1c:0c04 is shared by several legacy Corsair Link devices, including
at least:
They all present as a single "Integrated USB Bridge" HID endpoint that fronts
Probes zeVirtualMemQueryPageSize across a range of allocation sizes to see how Battlemage L0 actually scales the page size and compares that with what public API returns.
Device: Intel(R) Arc(TM) Pro B60 Graphics
request | page size
-------------+-------------
1 B | 64.00 KiB
4.00 KiB | 64.00 KiB
64.00 KiB | 64.00 KiB
1.00 MiB | 64.00 KiB
| composer.lock | |
| vendor |
| #!/usr/bin/ruby | |
| # | |
| # Usage: | |
| # ruby ./merge_dna_files.rb file,file1,file2... > merged_file.txt | |
| # | |
| # Example: | |
| # ruby ./merge_dna_files.rb AncestryDNA.txt genome_John_Doe_v4_Full_20170428065226.txt > merged_raw.txt | |
| # | |
| # Supports 23andMe, AncestryDNA, and Genes for Good 23andMe compatible file formats. | |
| # The result will be in 23andMe file format. |
| # add to .profile | |
| set-title () { | |
| # If the length of string stored in variable `PS1_BAK` is zero... | |
| # - See `man test` to know that `-z` means "the length of STRING is zero" | |
| if [[ -z "$PS1_BAK" ]]; then | |
| # Back up your current Bash Prompt String 1 (`PS1`) into a global backup variable `PS1_BAK` | |
| PS1_BAK="$PS1" | |
| fi |
| git ls-files | xargs -n1 git blame --line-porcelain | sed -n 's/^author //p' | sort -f | uniq -ic | sort -nr |
| <?php class Sports_Bench_Team_REST_Controller extends WP_REST_Controller { | |
| /** | |
| * Register the routes for the objects of the controller. | |
| */ | |
| public function register_routes() { | |
| $namespace = 'sportsbench'; | |
| $base = 'teams'; | |
| register_rest_route( $namespace, '/' . $base, array( | |
| array( |
| <?php | |
| function testPerformance($name, Closure $closure, $runs) | |
| { | |
| $start = microtime(true); | |
| for (; $runs > 0; $runs--) | |
| { | |
| $_ = $closure(); | |
| } | |
| $end = microtime(true); |