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
package main | |
// BUG: | |
// Start a debugging session from VSCode and attempt to copy | |
// the value from the variable. | |
// You only get the first 80 characters or so. | |
import "fmt" | |
func main() { |
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
# put this in: .github/workflows/docker.yml | |
# an actual working example of the docker/build-push-action | |
# to push images to the registry automatically from github | |
on: [push, pull_request] | |
name: Docker | |
jobs: |
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
# Keey the system quiet and cool by disabling Turbo Boost technology | |
# using Linux Systemd service without installing external scripts | |
# that could be a security issue. | |
# | |
# | |
# Installing: | |
# | |
# Create this file: /etc/systemd/system/IntelNoTurbo.service | |
# and COPY/PASTE the contents of this snippet there. | |
# |