Skip to content

Instantly share code, notes, and snippets.

View helomri's full-sized avatar

Haroun El Omri helomri

  • France
  • 12:47 (UTC +01:00)
View GitHub Profile
@helomri
helomri / 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
@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