Skip to content

Instantly share code, notes, and snippets.

View nolvuscodes's full-sized avatar
:octocat:
Background Ninja

Nolvus nolvuscodes

:octocat:
Background Ninja
View GitHub Profile
@nolvuscodes
nolvuscodes / bug_template.md
Created January 9, 2023 05:46 — forked from automationhacks/bug_template.md
Bug template to help in writing clear bug reports

Describe the bug

A clear and concise description of what the bug is.

To Reproduce

Expected behavior

A clear and concise description of what you expected to happen.

Priority

What is the impact of this bug on the user, how critical is to fix? P0, P1 .. P4

@nolvuscodes
nolvuscodes / AdminCommandPrompt.md
Last active August 3, 2022 05:53
Activate Windows 11 Home

The Command Prompt must be launched in Administrator Mode

  • C:\WINDOWS\system32>slmgr /ipk kmsclientkey

  • C:\WINDOWS\system32>slmgr /ipk kmsclientkey *****-*****-*****-*****-***** (get more info @https://msguides.com/windows-11)

  • C:\WINDOWS\system32>slmgr /ipk *****-*****-*****-*****-***** (use the same information you got from @https://msguides.com/windows-11)

  • C:\WINDOWS\system32>slmgr /skms s8.uk.to

@nolvuscodes
nolvuscodes / Getting into NFTs - README_FIRST.md
Last active January 21, 2022 14:51
Looking on Getting into NFT's? Read Here

Simple notes put together from me too you to help you on your journey on your search for simple answers on how to get into NFT's as a first time artist, videography or even Buyers. Check these notes out below.

Disclaimer:

Not perfectly in order but I promise it will answer some of your questions if not, at least one

TO BUY

==========================

Questions to ask

@nolvuscodes
nolvuscodes / Gitjicons.md
Last active January 5, 2022 00:22
Github Cheatsheet Updated

EMOJI CHEAT SHEET

People

:bowtie: :bowtie: 😄 :smile:
😆 :laughing: 😊 :blush: 😃 :smiley:
☺️ :relaxed: 😏 :smirk: 😍 :heart_eyes:
😘 :kissing_heart: 😚 :kissing_closed_eyes: 😳 :flushed:
@aklinker1
aklinker1 / create-mc-server.sh
Created July 31, 2021 20:53
Create Minecraft Server
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
# Create user if needed
id -u minecraft &> /dev/null
if [ $? -eq 1 ]; then
echo "Initial setup"
@nolvuscodes
nolvuscodes / gBROKIE
Created June 11, 2021 00:31
icueMike's Filter Blade for 1.13 & 1.14
#===============================================================================================================
# icueMike's Indepth Loot Filter - for Path of Exile
#===============================================================================================================
# VERSION: 8.0.0a.2021.106.21
# TYPE: 1-REGULAR
# STYLE: NORMAL
# AUTHOR: icueMike
# BUILDNOTES: Filter generated with Visual Code by Microsoft.
#
#------------------------------------
@automationhacks
automationhacks / bug_template.md
Last active June 24, 2024 10:06
Bug template to help in writing clear bug reports

Describe the bug

A clear and concise description of what the bug is.

To Reproduce

Expected behavior

A clear and concise description of what you expected to happen.

Priority

What is the impact of this bug on the user, how critical is to fix? P0, P1 .. P4

@BraXon-Devs
BraXon-Devs / Minecraft.bat
Last active April 20, 2019 04:44
Start your minecraft with a batch file(command line interface; CLI)
@echo off
if not defined PIL (
set PIL=1
start /min "" %~0
/high
/seperate
exit /b
)
Title ...... Loading
echo The Time Now is %DATE%
@thomasbnt
thomasbnt / code_colors_discordjs.md
Last active July 19, 2024 14:12
Code colors for embed discord.js

Here is an updated list of the colors that are currently implemented with a name. To using colors on discord.js, this is a typedef Colors, Colors.Aqua to get the Aqua color.

Name Int value Hex Code
Default 0 #000000
Aqua 1752220 #1ABC9C
DarkAqua 1146986 #11806A
Green 5763719 #57F287
DarkGreen 2067276 #1F8B4C
@oliveratgithub
oliveratgithub / made-with-love.html
Last active June 18, 2024 20:50
Various snippets to add "Made with love" to your website using HTML, CSS and JavaScript
<!-- Example #1 - no styling -->
Made with ❤ in Switzerland
Made with ♥ in Switzerland
Made with ♡ in Switzerland
Made with ❤️ in Switzerland
Made with ♥️ in Switzerland
<!-- Example #2 - inline-styled ❤ -->
Made with <span style="color: #e25555;">&#9829;</span> in Switzerland
Made with <span style="color: #e25555;">&hearts;</span> in Switzerland