Skip to content

Instantly share code, notes, and snippets.

@culy247
culy247 / holidays.json
Created January 19, 2023 03:28
Holiday 2022-2023
[
{
"id": "a0ea6bdb-2210-46fb-8eba-3b369092194c",
"year": 2022,
"month": 1,
"day": 1,
"date": "2022-01-01",
"description": "元日",
"created_at": "2023-01-19T03:27:03.678500Z",
"updated_at": "2023-01-19T03:27:03.678500Z"
@culy247
culy247 / postman.desktop
Last active January 13, 2023 07:19
ubuntu postman desktop entry
[Desktop Entry]
Encoding=UTF-8
Version=1.0
Name=Postman
Comment=Postman Native App
Exec=/home/username/Postman/Postman — %u
Icon=/home/username/Postman/logo.png
Terminal=false
StartupWMClass=postman
Type=Application
@culy247
culy247 / update-ca-centos-7.sh
Created December 26, 2022 05:01
Update Security Communication RootCA2 on centos 7
#!/bin/bash
# run this script with root user
# check Security Communication RootCA2 exists?
# uncomment to run check
# trust list | grep "Security Communication RootCA2"
curl https://www.cybertrust.co.jp/sureserver/download-ca/scrca2.txt -o /etc/pki/ca-trust/source/anchors/cybertrust.perm
update-ca-trust
@culy247
culy247 / countryPhoneCodes.json
Created October 25, 2022 04:11 — forked from pickletoni/countryPhoneCodes.json
JSON array of 248 countries with phone codes and ISO country code
[{"country":"Afghanistan","code":"93","iso":"AF"},
{"country":"Albania","code":"355","iso":"AL"},
{"country":"Algeria","code":"213","iso":"DZ"},
{"country":"American Samoa","code":"1-684","iso":"AS"},
{"country":"Andorra","code":"376","iso":"AD"},
{"country":"Angola","code":"244","iso":"AO"},
{"country":"Anguilla","code":"1-264","iso":"AI"},
{"country":"Antarctica","code":"672","iso":"AQ"},
{"country":"Antigua and Barbuda","code":"1-268","iso":"AG"},
{"country":"Argentina","code":"54","iso":"AR"},
@culy247
culy247 / snap-revision-old-remove.sh
Created August 11, 2022 06:46
Remove snap old revisions
#!/bin/bash
# Removes old revisions of snaps
# CLOSE ALL SNAPS BEFORE RUNNING THIS
set -eu
snap list --all | awk '/disabled/{print $1, $3}' |
while read snapname revision; do
snap remove "$snapname" --revision="$revision"
done
@culy247
culy247 / navicat.desktop
Created August 11, 2022 01:22
Create ubuntu desktop entry
[Desktop Entry]
Comment=Run Navicat
Exec=bash -c /home/user/navicat/navicat15.AppImage
GenericName=Navicat
Icon=/home/user/navicat/navicat-icon.png
Name=Navicat
Type=Application
Terminal=false
<?php   /* * File: SimpleImage.php * Author: Simon Jarvis * Copyright: 2006 Simon Jarvis * Date: 08/11/06 * Link: http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details: * http://www.gnu.org/licenses/gpl.html * */   class SimpleImage {   var $image; var $image_type;   function load($filename) {   $image_info = getimagesize($filename); $this->image_type = $image_info[2]; if( $this->image_type == IMAGETYPE_JPEG ) {   $this->image = imagecreatefromjpeg($filename); } elseif(
@culy247
culy247 / regex-japanese.txt
Created October 15, 2021 04:57 — forked from terrancesnyder/regex-japanese.txt
Regex for Japanese
Regex for matching ALL Japanese common & uncommon Kanji (4e00 – 9fcf) ~ The Big Kahuna!
([一-龯])
Regex for matching Hirgana or Katakana
([ぁ-んァ-ン])
Regex for matching Non-Hirgana or Non-Katakana
([^ぁ-んァ-ン])
Regex for matching Hirgana or Katakana or basic punctuation (、。’)
@culy247
culy247 / nginx.conf
Created August 23, 2021 04:48 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@culy247
culy247 / autopgsqlbackup
Created June 28, 2021 06:24 — forked from matthewlehner/autopgsqlbackup
Auto PostgreSQL backup script.
#!/bin/bash
#
# PostgreSQL Backup Script Ver 1.0
# http://autopgsqlbackup.frozenpc.net
# Copyright (c) 2005 Aaron Axelsen <[email protected]>
#
# This script is based of the AutoMySQLBackup Script Ver 2.2
# It can be found at http://sourceforge.net/projects/automysqlbackup/
#
# The PostgreSQL changes are based on a patch agaisnt AutoMySQLBackup 1.9