Skip to content

Instantly share code, notes, and snippets.

View theskyblockman's full-sized avatar
🧑‍🍳
Preparing something...

Haroun El Omri theskyblockman

🧑‍🍳
Preparing something...
View GitHub Profile
@jezdez
jezdez / is_emoji.py
Created December 7, 2015 19:36
A Python script to check if a character is or a text contains emoji
# -*- encoding: utf-8 -*-
# pip install emoji
import emoji
def char_is_emoji(character):
return character in emoji.UNICODE_EMOJI
@theskyblockman
theskyblockman / run.bash
Last active May 11, 2022 13:57
A plugin deployer to a spigot server for testing
#!/bin/bash
# How to run:
# Put this script where you want your servers to be located (in an empty folder)
# Have Java 17
# Have an internet connection
# And have an computer
if [ expr $# < 2 ]; then
read -p "Enter the plugin version: " jarVersion