grep -ir "python3_{10..11}" /var/db/repos/gentoo/* | wc -l
This file contains 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
################################################### | |
# | |
# ThinkPad T480 | |
# | |
# i7-8550U, 9th Gen Intel GFX, SSD WD NS720 512G | |
# | |
################################################### | |
# Prefer stability over agressive optimizations | |
# Use '-march=native' since working fine; check: 'echo | gcc -### -E - -march=native' |
This file contains 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
echo 'security.protocol=SSL' > ~/kafka-client.properties | |
export KAFKA_HEAP_OPTS='-Xmx2g' | |
# ./bin/kafka-consumer-groups.sh --bootstrap-server <host:port> --timeout 15000 --command-config kafka-client.properties --group '<consumer_group_name>' --topic '<topic>:<partition>' --reset-offsets --to-offset <offset> --dry-run | |
./bin/kafka-consumer-groups.sh --bootstrap-server '...amazonaws.com:9094' --timeout 15000 --command-config ~/kafka-client.properties --group 'kestra_executor_main' --topic 'kestra_execution:7' --reset-offsets --to-offset 8915 --dry-run | |
# append '--execute' to commit |
This file contains 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
https://github.com/tchiotludo/akhq/blob/0377877a2e55c2fc4b78394062c1bfefb61206b9/client/src/containers/Topic/Topic/TopicData/TopicData.jsx#L36 | |
https://github.com/tchiotludo/akhq/blob/0377877a2e55c2fc4b78394062c1bfefb61206b9/client/src/containers/Topic/Topic/TopicData/TopicData.jsx#L474 | |
https://github.com/remix-run/remix/issues/2813#issuecomment-1458138043 | |
https://stackoverflow.com/a/71205013/2088053 |
This file contains 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
https://dofsimulator.net/en/?x=EQaAyQEGgAAMIkwkAAADgAA |
This file contains 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
<template> | |
<el-select | |
:model-value="options" | |
@update:model-value="onInput" | |
multiple | |
filterable | |
allow-create | |
default-first-option | |
clearable | |
collapse-tags |
- Dependency - Fragile lib is fragile
- Automation - Is time spend automating worth it?
- The History of Unicode - Unicode is emojis
- tar - cheat is great
- Standards - Adding standards to make it standard
- Git Commit - Git self-discipline
- Git - Git commands are many
- Supported Features - Features or useful features?
- Wisdom of the Ancients - Sometimes Stack Overflow does not help
- ISO 8601 - YYYY-MM-DD
This file contains 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 | |
cd /usr/src/linux || { echo 'Failed to switch to /usr/src/linux' >&2; exit 1; } | |
chrt -i 0 ionice -c 3 make -j "$(nproc)" || \ | |
{ echo 'Failed to compile the kernel' >&2; exit 1; } |
This file contains 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
sensors: | |
# thinkpad_acpi | |
- tpacpi: /proc/acpi/ibm/thermal | |
indices: [0] | |
fans: | |
# thinkpad_acpi to allow disengaged and automatic modes | |
- tpacpi: /proc/acpi/ibm/fan | |
levels: |
NewerOlder