Skip to content

Instantly share code, notes, and snippets.

View giulianisanches's full-sized avatar

Giuliani Sanches giulianisanches

View GitHub Profile
@giulianisanches
giulianisanches / learning-kubernetes.md
Last active November 9, 2023 18:10
Learning Kubernetes

Kubernetes notes

Hello

Start minikube and open the dashboard

minikube start
minikube addons enable metrics-server
minikube dashboard
@giulianisanches
giulianisanches / turtle_mini_project.py
Last active November 13, 2016 12:59
Answer to the Quiz: Turtle - Mini Project
import turtle
def draw(size):
window = turtle.Screen()
window.bgcolor('white')
t = turtle.Turtle()
t.shape("triangle")
t.color("blue")
t.speed(10)
#!/usr/bin/env python
"""
NAME
****
normalize string - Format a string based on set of rules.
SYNOPSYS
#!/usr/bin/env perl
=pod
=head1 NAME
normalize string - Format a string based on set of rules.
=head1 SYNOPSIS
@giulianisanches
giulianisanches / README.md
Last active May 6, 2019 15:46
Learning Perl

Llama book

My answers to the exercises