Skip to content

Instantly share code, notes, and snippets.

View renebentes's full-sized avatar
💻

Rene Bentes Pinto renebentes

💻
View GitHub Profile
@LanceMcCarthy
LanceMcCarthy / README.md
Last active May 7, 2025 19:25
VS Live Episode: Resources for Publishing .NET MAUI Projects

.NET MAUI Publishing Resources

So you're done building your .NET MAUI application, congrats! Now it's time to publish them, This can be a tricky topic to navigate, even to dedicated DevOps engineers who do this regularly because of the number of moving pieces in the puzzle.

To help you, I have combined several resources that are a great place to get started. These are not only a good Getting Started experience, but it's also a good thing to bookmark as a quick look-up reference.

Table of Contents

@m-jovanovic
m-jovanovic / .editorconfig
Created June 7, 2023 12:17
Sample editor config with a bunch of rules turned off 😅
root = true
# C# files
[*.cs]
#### Core EditorConfig Options ####
# Indentation and spacing
indent_size = 4
indent_style = space
@rponte
rponte / using-uuid-as-pk.md
Last active January 19, 2026 17:56
Não use UUID como PK nas tabelas do seu banco de dados

Pretende usar UUID como PK em vez de Int/BigInt no seu banco de dados? Pense novamente...

TL;TD

Não use UUID como PK nas tabelas do seu banco de dados.

Um pouco mais de detalhes

@henriquepw
henriquepw / README.md
Last active August 12, 2025 01:32
my-readme-template

Your icon here

Your cool project

@brcmesquita
brcmesquita / gist:b5b887ee2aecd0c51da111d6eb13b88e
Last active February 24, 2026 23:15
Links para Sites de Vagas de Programação
# LISTA PARA JOBS E FREELAS #
Freelas, Estágios, Empregos, Trabalhos Remotos
Nacional & Internacional
99Freelas - https://www.99freelas.com.br/
AngelList - http://angel.co/
Back-end Brasil - https://github.com/backend-br/vagas
Comunica Freela - https://www.comunicafreelancer.com.br/
Crossover - http://crossover.com/
Crowd - https://www.crowd.br.com/
@mklement0
mklement0 / Enter-AdminPSSession.ps1
Last active May 29, 2025 00:41
Universal PowerShell script (PSv3+) that enters an admin (elevated) session on the local computer and optionally executes commands unattended
<#
Prerequisites: PowerShell v3+
License: MIT
Author: Michael Klement <mklement0@gmail.com>
DOWNLOAD and DEFINITION OF THE FUNCTION:
irm https://gist.github.com/mklement0/f726dee9f0d3d444bf58cb81fda57884/raw/Enter-AdminPSSession.ps1 | iex
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active March 18, 2026 16:57
Conventional Commits Cheatsheet
@jeromecoupe
jeromecoupe / webstoemp-gulpfile.js
Last active March 7, 2026 05:03
Gulp 4 sample gulpfile.js. For a full explanation, have a look at https://www.webstoemp.com/blog/switching-to-gulp4/
"use strict";
// Load plugins
const autoprefixer = require("autoprefixer");
const browsersync = require("browser-sync").create();
const cp = require("child_process");
const cssnano = require("cssnano");
const del = require("del");
const eslint = require("gulp-eslint");
const gulp = require("gulp");
app/
|- app.module.ts
|- app-routing.module.ts
|- core/
|- auth/
|- auth.module.ts (optional since Angular 6)
|- auth.service.ts
|- index.ts
|- othermoduleofglobalservice/
|- ui/
public struct OperationResult<T>
{
public T Result { get; set; }
public Exception Exception { get; }
public bool IsSuccess { get; }
public OperationResult(T result)
{
IsSuccess = true;
Exception = null;