Skip to content

Instantly share code, notes, and snippets.

View Wanderson304's full-sized avatar
馃挱
Em constante aprendizagem...

Wanderson Silva Wanderson304

馃挱
Em constante aprendizagem...
View GitHub Profile
@Wanderson304
Wanderson304 / readme.md
Created April 18, 2025 13:58 — forked from troyfontaine/readme.md
Resize root partition (or how to remove the default /home partition) on CentOS 7 online

Resize root partition (or how to remove the default /home partition) on CentOS 7 online

This process requires that you are able to ssh OR log in locally using the root user account and that no services be running as users out of /home on the target machine.

The examples are from a default installation with no customization-you NEED to know what you're working with for volumes/partitions to not horribly break things.

By default, CentOS 7 uses XFS for the file system and Logical Volume Manager (LVM), creating 3 partitions: /,/home and swap.

NOTE: If you want to be sure that nothing is writing to /home you can either modify the host to boot into single-user mode OR try to use the systemctl isolate runlevel1.target command to switch (not tested! should work).

@Wanderson304
Wanderson304 / employee.json
Created January 8, 2025 05:21 — forked from voletiswaroop/employee.json
Sample employee json data
{
"employees":[
{
"userName":"Frontend",
"jobTitleName":"Frontend Developer",
"employeeCode":"E1",
"techstack":[
"React",
"javascript",
"html",
@Wanderson304
Wanderson304 / Service KMS
Created September 3, 2024 03:35 — forked from judero01col/Service KMS.md
Volume License Activation Key Service - KMS
## Find Available Target Editions
DISM.exe /Online /Get-TargetEditions
## Convert Server Standard 2019 Evaluation to Server Standard 2019
DISM /online /Set-Edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula
## How To Activate
slmgr /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
slmgr /skms [server]:[port]
slmgr /ato
@Wanderson304
Wanderson304 / tarefas.css
Created November 12, 2018 04:03 — forked from InFog/tarefas.css
CSS usado nos exemplos do sistema de tarefas do livro PHP e MySQL da Casa do C贸digo http://www.casadocodigo.com.br/products/livro-php-mysql
body {
font-family: Sans-serif;
color: #333;
}
h1 {
text-align: center;
}
.erro {