Skip to content

Instantly share code, notes, and snippets.

View cleciobarbosa's full-sized avatar

Clécio Barbosa cleciobarbosa

View GitHub Profile
@cleciobarbosa
cleciobarbosa / windows-11-keys.md
Created March 8, 2025 03:18 — forked from sevynkooper/windows-11-keys.md
Windows 11 Product Keys

NOTE

Please note that these are NOT valid Windows 11 product or license keys for Windows activation.

These keys merely designate the edition of Windows that will be installed during the setup process. However, they do not serve to activate or provide a legitimate license for the Windows installation.

Consequently, while these keys can help determine which version of Windows will be installed, they are insufficient for activating or legally licensing the operating system on your device.

Proper activation and licensing require valid product keys obtained through legitimate means.

@cleciobarbosa
cleciobarbosa / windows-keys.md
Created March 8, 2025 03:18 — forked from rvrsh3ll/windows-keys.md
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

using System.Linq;
public static class Kata
{
public static int Solution(int n)
{
return Enumerable.Range(0, n).Where(e => e % 3 == 0 || e % 5 == 0).Sum();
}
}

laragon-multi-php-version-via-package-manager

Manage your php version via Laragon PHP UI switcher with help of powershell package manager.

For this sake ill be using https://github.com/mlocati/powershell-phpmanager) package manage to handle multi version instead of download the zip file manually. The reason why i want to using this package manager is because it easy for me to add new extension like how linux and mac do. For example, installing imagick on windows is such a hassle. Not to mention if you keep switching your laptop or pc it could make it hard to just install all back without any semi or automated script laying around.

@cleciobarbosa
cleciobarbosa / .gitlab-ci.yml
Created October 1, 2021 17:39 — forked from empeje/.gitlab-ci.yml
API Docs Using Swagger + Redoc
pages:
image: node:latest
stage: deploy
script:
- npm install -g redoc-cli
# public/index.html is the output
# documentation/openapi.yaml is the input
- redoc-cli bundle -o public/index.html documentation/openapi.yaml
artifacts:
paths:
@cleciobarbosa
cleciobarbosa / deployment_guide.md
Created March 2, 2021 12:02 — forked from vicgonvt/deployment_guide.md
Deployment Guide for Ubuntu Server from Scratch with Laravel