This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Docker image | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
push_to_registry: | |
name: Push Docker image to Docker Hub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -z "$1" ]; then | |
echo "Usage: $0 \"Your commit message\"" | |
exit 1 | |
fi | |
git add . | |
git commit -m "$1" | |
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const port = 7271 | |
const express = require('express'); | |
const app = express(); | |
const si = require('systeminformation'); | |
const os = require('os'); | |
function formatBytes(bytes, decimals = 2) { | |
if (bytes === 0) return '0 Bytes'; | |
const k = 1024; | |
const dm = decimals < 0 ? 0 : decimals; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./o. srizan@srizan-ryzen | |
./sssso- ------------------- | |
`:osssssss+- OS: EndeavourOS Linux x86_64 | |
`:+sssssssssso/. Kernel: 6.3.7-arch1-1 | |
`-/ossssssssssssso/. Uptime: 2 hours, 46 mins | |
`-/+sssssssssssssssso+:` Packages: 1855 (pacman), 36 (flatpak) | |
`-:/+sssssssssssssssssso+/. Shell: bash 5.1.16 | |
`.://osssssssssssssssssssso++- Resolution: 1366x768 | |
.://+ssssssssssssssssssssssso++: DE: GNOME 44.2 | |
.:///ossssssssssssssssssssssssso++: WM: Mutter |
Today I'll be showing how to use any font that is on the Google Fonts website right on Discord!
Go to the website and install it.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { commandModule, CommandType } = require('@sern/handler'); | |
import axios, { AxiosError, AxiosResponse } from "axios"; | |
import { ApplicationCommandOptionType } from "discord.js"; | |
import { publish } from "../../src/plugins/publish"; | |
export default commandModule({ | |
name: 'shorten', | |
type: CommandType.Slash, | |
plugins: [], | |
description: 'Shorten a link!', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Aquatic Assault | |
https://www.minecraftskins.com/uploads/skins/2020/12/16/aquatic-assault---incinerator-v2--16068107.png?v302 | |
WilburSoot | |
https://imgur.com/5weNBEM | |
Panda | |
https://es.namemc.com/texture/cfa633ed81b8f521.png | |
Panda Hugo | |
https://www.minecraftskins.com/uploads/skins/2020/12/17/panda-boy-16082392.png?v302 | |
Skin Alma | |
https://www.minecraftskins.com/uploads/skins/2015/07/30/skin_20150730135317110577.png?v357 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install apt-transport-https curl | |
sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg | |
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list | |
sudo apt update | |
sudo apt install brave-browser |