Skip to content

Instantly share code, notes, and snippets.

View tbvinh's full-sized avatar
🧑‍🍼
I may be slow to respond.

Vinh Tran tbvinh

🧑‍🍼
I may be slow to respond.
  • Ho Chi Minh - Vietnam
View GitHub Profile
@tbvinh
tbvinh / hello.html
Created July 19, 2024 11:28
The simple sample of AI chatbot in HTML and javascript
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hello.html</title>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/universal-sentence-encoder@latest"></script>
<style>
@tbvinh
tbvinh / gist:e6b1c014604d504c58e2bbfa0ddc5bce
Created September 6, 2023 05:06
Install cert for Glassfish
1.java InstallCert
2. keytool -exportcert -alias [domain]-1 -keystore jssecacerts -storepass changeit -file [domain].cer
3. sudo keytool -importcert -alias [domain]-1 -keystore ~/glassfish5/glassfish/domains/domain1/config/cacerts.jks -storepass changeit -file [domain].cer
JAVA: InstallCert.java
==================================================
//https://github.com/escline/InstallCert
@tbvinh
tbvinh / delFromFile.sh
Created June 13, 2023 12:52
del all files in a file
TO_BE_DEL="$1"
IFS=""
while read -r file ; do
rm -rf "$file"
done < "$TO_BE_DEL"
#usage: delFromFile.sh file.txt
#!/bin/sh
# wget -O backup-apache-mysql-wwwfolder.sh https://gist.githubusercontent.com/tbvinh/51bc2b297b1b864546ba42e4b2a92a04/raw/backup-apache-mysql-wwwfolder.sh?rnd=`date +%s`
## 0 ======================
echo 1. Backup apache .conf files
echo 2. Backup www/ folder
echo 3. Backup mysql
## 1 ======================
@tbvinh
tbvinh / backup-server.md
Last active December 15, 2022 11:59
BACKUP MYSQL USER, APACHE FOLDER, WWW/ FOLDER
#!/bin/bash
# wget -O export-mysql-user.sh https://gist.githubusercontent.com/tbvinh/c66051969dfd3840075b394ee1ab3e0d/raw/export-mysql-user.sh?rnd=`date +% `
echo ==========CREATE USER==========
mysql -uroot -sNe " \
SELECT \
CONCAT( 'CREATE USER \'', User, '\' IDENTIFIED BY \'cha@NG1t@#&\'\;' ) AS User \
@tbvinh
tbvinh / delete-mosquitto.sh
Created December 15, 2022 07:34
Remove Mosquitto
#!/bin/sh
# wget -O delete-mosquitto.sh https://gist.githubusercontent.com/tbvinh/8b32aaf8255160850353858e5f2804dd/raw/delete-mosquitto.sh?rnd=`date +%s`
if [ $# -eq 0 ]
then
echo "No arguments supplied, e.g: $0 domain.com"
exit 0
fi
#!/bin/bash
## usage:
## ============================
## 1. wget -O create-apache-domain.sh https://gist.githubusercontent.com/tbvinh/f1b88a41ccf7d7c9f3056af5592b51eb/raw/create-apache-domain.sh?rnd=`date +%s`
## 2. e.g: /bin/sh create-apache-domain.sh cskh.mobi
## INSTALL SSL SINGLE DOMAIN
##==============================
<VirtualHost *:80>
ServerName myoser.com
ServerAlias *.myoser.com
DocumentRoot /var/www/myoser.com/htdocs
<Directory /var/www/myoser.com/htdocs>
Options Indexes FollowSymLinks
AllowOverride All
#!/bin/bash
## USAGE
## wget -O install-wordpress.sh https://gist.githubusercontent.com/tbvinh/531501243d02380955d97a5c90deeaa1/raw/install-wordpress.sh?rnd=`date +%s`
## /bin/bash install-wordpress.sh domain.com
##================================================
## NOTE: neet wp-cli
## curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
## chmod +x wp-cli.phar