Skip to content

Instantly share code, notes, and snippets.

View nbbrdn's full-sized avatar

Nikolay Bayborodin nbbrdn

View GitHub Profile
background_opacity: 0.92
font:
size: 14
window:
padding:
x: 0
y: 0
decorations: full
dynamic_padding: true
@nbbrdn
nbbrdn / server.go
Created November 2, 2023 07:13
Minimal Go Web Server
package main
import (
"fmt"
"net/http"
)
func main() {
server := &http.Server{
Addr: ":3000",
@nbbrdn
nbbrdn / BuildingPythonFromSource.md
Last active October 26, 2023 01:28
Building Python from source

Building Python from source

  1. Download the compressed source tarball from python.org by executing the following wget command:
wget https://www.python.org/ftp/python/3.9.18/Python-3.9.18.tgz
  1. Unpack the downloaded archive and navigate to the resulting directory:
tar -xvf Python-3.9.18.tgz
cd Python-3.9.18
@nbbrdn
nbbrdn / alacritty.yml
Created December 14, 2022 12:53
Alacritty config
background_opacity: 0.92
font:
size: 14
window:
padding:
x: 0
y: 0
decorations: full
dynamic_padding: true