Skip to content

Instantly share code, notes, and snippets.

@vnext-nguyen-quyen
vnext-nguyen-quyen / reset-trial-navicat.sh
Created October 3, 2023 02:09 — forked from nakamuraos/reset-trial-navicat.sh
Reset trial Navicat 15, Navicat 16 on Linux
#!/bin/bash
# Author: NakamuraOS
# https://github.com/nakamuraos
# Latest update: 30/03/2022
# Tested on Navicat 15.x, 16.x on Linux
RED="\e[1;31m"
ENDCOLOR="\e[0m"
@vnext-nguyen-quyen
vnext-nguyen-quyen / emeditor.key
Created September 9, 2023 14:43
emeditor v22 lifetime key
DEMZF-UCKEE-HB222-DJDDH-594U5
DMAZF-UCKEE-A6222-8CADP-HQZ7H
DPAZF-UCKEE-FH222-ET546-DLRGT
DRNZF-UCKEE-UK222-RWNLU-XVZH7
DSBZF-UCKEE-BF222-K24JB-S9JLC
DSHZF-UCKEE-D3222-NMB93-UKSQF
DTHZF-UCKEE-BW222-Q2BKZ-NXPU8
DVAZF-UCKEE-J7222-5UHCT-QSRFE
DVEZF-UCKEE-PR222-ZAPFE-4C49Q
1. Convert timestamp to microsecond bigint:
SELECT EXTRACT(EPOCH FROM to_timestamp('20210311 09','yyyymmdd TZH'))::bigint
2. Covnert string to timestampt with timemodified timezone +9:
to_timestamp(timemodified) >= to_timestamp(''20210309000000 09'',''yyyymmddhh24miss TZH'')
There are two ways to efficiently (read: quickly) load 7000 rows.
LOAD DATA INFILE -- After you have built a 7000-line CSV file.
"Batch" INSERT -- like INSERT INTO t (a,b) VALUES (1,2),(5,6),(9,2), ...; -- Be cautious about the number of rows. 100 to 1000 is a good range of what to do at a time.
max_allowed_packet=536870912 -- NO, not in a tiny 2GB VM; change to 16M. Other likely settings to check:
key_buffer_size = 10M
innodb_buffer_pool_size = 1GB
@vnext-nguyen-quyen
vnext-nguyen-quyen / gist:2da0ec8e47aed54c667fe41db5b0811e
Created July 13, 2023 05:01
PHP get memory and excution usage
# Check excution time in seconds
$start = microtime(true);
// Excute PHP scripts
echo "Total execution time in seconds: " . (microtime(true) - $start);
# Check memory usage in MiB
"Real RAM: ".(memory_get_peak_usage(true)/1024/1024)." MiB\n\n"
@vnext-nguyen-quyen
vnext-nguyen-quyen / install_mysql_client.sh
Created July 10, 2023 16:58
Install MySQL 8.0 client on Amazon Linux 2023
#!/bin/sh
# Docs: https://dev.mysql.com/doc/mysql-repo-excerpt/8.0/en/linux-installation-yum-repo.html
# Install repo
wget https://dev.mysql.com/get/mysql80-community-release-el9-1.noarch.rpm
sudo dnf install mysql80-community-release-el9-1.noarch.rpm
# Verify enabled mysql80-community repo
sudo dnf repolist enabled
@vnext-nguyen-quyen
vnext-nguyen-quyen / cron-tab-docker-logs.txt
Last active January 9, 2023 07:40
See cron log ouput with docker logs
1. Alpine (No need for redirection)
using the default cron utility (busybox)
## Dockerfile
=====
FROM alpine:3.7
# Setting up crontab
COPY crontab /tmp/crontab
@vnext-nguyen-quyen
vnext-nguyen-quyen / Noto-Sans-Jp.md
Created December 23, 2022 07:00 — forked from manabuyasuda/Noto-Sans-Jp.md
Noto Sans JPを使うための手順。

Noto Sans JP

Noto Sans JPをWebサイトで使う場合、大きく分けて2つの方法があります。

  1. CDNを使う場合
  2. サーバーにフォントファイルを置く場合

CDNの場合は、他のサイトを含めて一度でも読み込まれていればブラウザ側でキャッシュを持っているので、読み込み速度が速くなることが期待できます。
サーバーのフォントファイルはサブセット化(不要なデータを削除すること)でファイルサイズを削減できるメリットがあります。

基本的にはCDNを利用して、フォールバックとしてサーバーに置いたフォントファイルとシステムフォントを指定するのがいいでしょう。

@vnext-nguyen-quyen
vnext-nguyen-quyen / all_aws_lambda_modules_python.md
Created October 15, 2022 15:27 — forked from gene1wood/all_aws_lambda_modules_python.md
AWS Lambda function to list all available Python modules for Python 2.7 3.6 and 3.7
@vnext-nguyen-quyen
vnext-nguyen-quyen / amazon-linux2-userdata
Created October 6, 2022 08:52 — forked from Ammly/amazon-linux2-userdata
Amazon Linux 2 Laravel, Nginx, PHP7.4, Mariadb Userdata
#!/bin/sh
sudo yum update -y
sudo amazon-linux-extras install nginx1 php7.4 -y
sudo yum clean metadata
sudo yum install git mariadb-server php-{pear,cgi,common,curl,mbstring,gd,mysqlnd,gettext,bcmath,json,xml,fpm,intl,zip} -y
# Back up existing config
sudo cp -R /etc/nginx /etc/nginx-backup
sudo chmod -R 777 /var/log
sudo chown -R ec2-user:ec2-user /usr/share/nginx/html
echo "<?php phpinfo(); ?>" > /usr/share/nginx/html/index.php