Skip to content

Instantly share code, notes, and snippets.

View nm17's full-sized avatar
:octocat:
Msg me on Telegram at nvrm17 if you need anything.

Даниил Николаев (NeverMine) nm17

:octocat:
Msg me on Telegram at nvrm17 if you need anything.
  • Russian Federation
  • 08:19 (UTC +04:00)
View GitHub Profile
@nm17
nm17 / GPLv3.md
Created April 2, 2023 12:29 — forked from kn9ts/GPLv3.md
GPLv3 explained

GPL3 LICENSE SYNOPSIS

TL;DR* Here's what the license entails:

1. Anyone can copy, modify and distribute this software.
2. You have to include the license and copyright notice with each and every distribution.
3. You can use this software privately.
4. You can use this software for commercial purposes.
5. If you dare build your business solely from this code, you risk open-sourcing the whole code base.
@nm17
nm17 / office-2019-activate.bat
Created March 27, 2022 15:49 — forked from Daksh777/office-2019-activate.bat
Activate Office 2019 using a batch script legally by using KMS keys. (Run as administrator)
@echo off
title Activate Microsoft Office 2021 (ALL versions) for FREE - MSGuides.com&cls&echo =====================================================================================&echo #Project: Activating Microsoft software products for FREE without additional software&echo =====================================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2021&echo - Microsoft Office Professional Plus 2021&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2021VL_KMS*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo =====================================================================================&echo Activating your product...&cscript //nologo slmgr.vbs /ckms >nul&c