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
| INFO global: Vagrant version: 2.4.7 | |
| INFO global: Ruby version: 3.4.4 | |
| INFO global: RubyGems version: 3.6.7 | |
| INFO global: VAGRANT_DISABLE_STRICT_DEPENDENCY_ENFORCEMENT="1" | |
| INFO global: VAGRANT_INSTALLER_ENV="1" | |
| INFO global: VAGRANT_INSTALLER_VERSION="2" | |
| INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/gems/vagrant-2.4.7/bin/vagrant" | |
| INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded" | |
| INFO global: VAGRANT_LOG="debug" | |
| WARN global: vagrant ssl helper was not found, continuing... |
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
| DEBUG: No dangling containers to remove | |
| INFO: Repository started | |
| { | |
| "renovateVersion": "32.194.3" | |
| } | |
| DEBUG: Using localDir: /mnt/renovate/gh/ddterm/gnome-shell-extension-ddterm | |
| DEBUG: PackageFiles.clear() - Package files deleted | |
| { | |
| "baseBranches": [] | |
| } |
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
| Computer Information: | |
| Manufacturer: Unknown | |
| Model: Unknown | |
| Form Factor: Desktop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: GenuineIntel | |
| CPU Brand: Intel(R) Core(TM) i7-7820X CPU @ 3.60GHz | |
| CPU Family: 0x6 |
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
| # Arch Linux development installkernel script | |
| # Andrew Schwartzmeyer <andrew@schwartzmeyer.com> | |
| # See `Documentation/kbuild/kbuild.txt` | |
| # Copy to `/sbin/installkernel` | |
| # Use with `sudo make install` | |
| # Copy the kernel image | |
| cp -v $2 $4/vmlinuz-linux-$1 | |
| # Make initial RAM disk |
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
| exec git show --format=email HEAD | ./scripts/checkpatch.pl --strict --codespell --codespellfile=$(python -c "import site; print(site.getsitepackages()[0])")/codespell_lib/data/dictionary.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
| #include <string> | |
| #include <unordered_map> | |
| #include <unordered_set> | |
| #include <shared_mutex> | |
| struct i_db | |
| { | |
| bool begin_transaction(); | |
| bool commit_transaction(); | |
| bool abort_transaction(); |
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
| [ 2.922936] table->FanMaximumRpm = 3300 | |
| [ 2.922937] table->FanThrottlingRpm = 2400 | |
| [ 2.922937] table->FanAcousticLimitRpm = 1500 | |
| [ 2.922938] table->FanTargetTemperature = 70 | |
| [ 2.922948] table->FanPwmMin = 71 | |
| [ 2.922949] table->FanTargetGfxclk = 852 | |
| [ 2.922949] table->FanGainEdge = 400 | |
| [ 2.922949] table->FanGainHotspot = 400 | |
| [ 2.922950] table->FanGainLiquid = 400 | |
| [ 2.922950] table->FanGainVrVddc = 400 |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <GPU DevID="687F" RevID="C1"> | |
| <PPW Value="3"/> | |
| <FEATURE ID="4" Enabled="True"> | |
| <STATES> | |
| <STATE ID="0" Enabled="True" Value="852"/> | |
| <STATE ID="1" Enabled="True" Value="991"/> | |
| <STATE ID="2" Enabled="True" Value="1084"/> | |
| <STATE ID="3" Enabled="True" Value="1138"/> | |
| <STATE ID="4" Enabled="True" Value="1200"/> |
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
| Set WshShell = CreateObject("WScript.Shell") | |
| MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) | |
| Function ConvertToKey(Key) | |
| Const KeyOffset = 52 | |
| i = 28 | |
| Chars = "BCDFGHJKMPQRTVWXY2346789" | |
| Do | |
| Cur = 0 | |
| x = 14 |
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
| import argparse | |
| import time | |
| import zmq | |
| def run_benchmark(endpoint): | |
| c = zmq.Context() | |
| s = c.socket(zmq.PULL) | |
| s.connect(endpoint) |
NewerOlder