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
# Laravel queue worker using systemd | |
# ---------------------------------- | |
# | |
# /lib/systemd/system/queue-main.service | |
# | |
# run this command to enable service: | |
# systemctl enable queue-main.service | |
[Unit] | |
Description=Laravel queue worker |
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
<sql> | |
CREATE FUNCTION `alphanum`( str CHAR(255) ) RETURNS char(255) CHARSET utf8 | |
BEGIN | |
DECLARE i, len SMALLINT DEFAULT 1; | |
DECLARE ret CHAR(255) DEFAULT ''; | |
DECLARE c CHAR(1); | |
SET len = CHAR_LENGTH( str ); | |
REPEAT | |
BEGIN | |
SET c = MID( str, i, 1 ); |