Skip to content

Instantly share code, notes, and snippets.

@materro
materro / Google Python Style Guide.md
Created December 15, 2022 14:18
Google Python Style Guide
@materro
materro / Python 3.11 Install from source.md
Last active July 5, 2024 01:55
Install Python 3.11 from source in local directory on Ubuntu Precise

Install Python 3.11 in local directory on Ubuntu Precise

I needed to install the latest version of Python on an old version of Ubuntu. I succeeded 😊 Below I've written out the instructions on how I realized it.

Dependencies

Run every command as root 🔥

Install required dependencies

apt-get install libffi-dev libgdbm-dev libreadline6-dev liblzma-dev
@materro
materro / PerlReferences.md
Created November 18, 2022 12:46 — forked from afair/gist:2402068
Perl References for Kittens

Perl References

Simple Perl variables are called scalars. Examples of scalar values are

   $number      = 123;
   $string      = "String";
   $file_handle = open "<filename";
   $null_value  = undef;
 $instance = MyClass-&gt;new;