Skip to content

Instantly share code, notes, and snippets.

View orrisroot's full-sized avatar
🥰
Wish for your happiness

Yoshihiro OKUMURA orrisroot

🥰
Wish for your happiness
  • RIKEN
View GitHub Profile
<?php
$text = 'hkHlLFwvwYoo1IcY';
//$text = 'hkHlLFwvwYoo1I';
//$text = 'hkHlLFwv';
$key = md5('SAMPLE SALT');
$em = encrypt_m($text, $key);
$eo = encrypt_o($text, $key);
@orrisroot
orrisroot / 99-CUSTOM.ini
Last active May 16, 2023 00:53
My php custom configuration.
[PHP]
output_buffering = Off
expose_php = Off
max_execution_time = 300
max_input_time = 600
memory_limit = 1G
post_max_size = 1G
upload_max_filesize = 1G
allow_url_fopen = Off
[Date]
@orrisroot
orrisroot / install-recent-git-el7.sh
Last active April 18, 2023 08:44
Install recent git rpm package (IUS version) on CentOS 7
#!/bin/sh
sudo yum install epel-release
sudo yum install https://repo.ius.io/ius-release-el7.rpm
sudo yum update
sudo yum install git236
@orrisroot
orrisroot / replace_owner.py
Last active April 2, 2018 11:53
mailman withlist script to replace list owner address
#!/usr/bin/python
"""Replace list's owner address.
This script is intended to be run as a bin/withlist script, i.e.
% bin/withlist -l -r replace_owner listname from_address to_address
If run standalone, it prints this help text and exits.
"""
@orrisroot
orrisroot / backup.sh
Last active November 13, 2023 00:49
cron daily backup script
#!/bin/bash
export LANG=C
BACKUPDIR=/backup/daily
DATE=`date`
if test ! -d $BACKUPDIR; then
mkdir -p $BACKUPDIR
chmod 700 $BACKUPDIR
@orrisroot
orrisroot / .zshrc
Created February 21, 2020 15:37
zshrc on macOS catalina
bindkey '^P' history-search-backward
bindkey '^N' history-search-forward
@orrisroot
orrisroot / deploy-hook.sh
Last active October 20, 2021 08:23
Service restart script for Let's encrypt renewal hooks (deploy)
#!/bin/bash
SERVICE_NAME=postfix
SERVICE_DOMAINS=example.com
IS_ACTIVE=$(systemctl is-active ${SERVICE_NAME})
if [ "${IS_ACTIVE}" != "active" ]; then
exit 0
fi
@orrisroot
orrisroot / get-ipv6-global-addr.sh
Created April 26, 2020 02:00
Get IPv6 global address
#!/bin/bash
DEVICE=$1
ip addr show dev ${DEVICE} | sed -e 's/^.*inet6 \([^ ]*\)\/.*scope global.*$/\1/;t;d'
@orrisroot
orrisroot / .php-cs-fixer.php
Last active July 27, 2022 03:30
default php-cs-fixer configuration for my projects
<?php
declare(strict_types=1);
$config = new PhpCsFixer\Config();
return $config
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
@orrisroot
orrisroot / rpmcheck.sh
Last active December 3, 2021 08:33
configuration check script after update rpm packages
#!/bin/bash
# VERSION:20211203
_uid=$(id -u)
if test $_uid -ne 0; then
echo "Error : This script have to run as root"
exit 1
fi