Skip to content

Instantly share code, notes, and snippets.

View Lu1zLuna's full-sized avatar
🐙
Focusing

Luiz Luna Lu1zLuna

🐙
Focusing
View GitHub Profile
@morrolinux
morrolinux / instructions.md
Last active February 21, 2025 22:06
FIrefox - Vertical tab bar with auto hide

What to expect

Graphical aspect may vary depending on your choices in following the instructions below, but the end result should look something like this:

immagine

Enable Firefox features

@Lu1zLuna
Lu1zLuna / ContaBancaria.cs
Last active July 27, 2022 05:47
Programa que simula o cadastro de uma conta bancária, com funções de depósito e saque de saldo. Utilizando os princípios de POO que aprendi até o momento.
using System;
using System.Globalization;
namespace ExercicioContaBancaria {
internal class ContaBancaria {
#region Atributos
public double Saldo { get; private set; }
public int NumeroConta { get; private set; }
public string Nome { get; set; }
@sweethuman
sweethuman / UsefulMaterials.md
Last active January 10, 2025 21:19
Useful materials to checkout. In case you want to learn more.

Useful Articles, Videos and Tools

You can check them out if you want to learn more. Some are theoretical, some are more practical. You can look through them.

YouTube

Channels

IAmTimCorey (C# mostly)
Christopher Okhravi (General videos, about programming concepts, ideas and rules)

@indyfromoz
indyfromoz / aspnet-mvc.gitignore
Created November 19, 2012 06:44
.Gitignore for ASP.NET MVC
###################
# compiled source #
###################
*.com
*.class
*.dll
*.exe
*.pdb
*.dll.config
*.cache