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 / taxi.properties
Created August 10, 2020 10:18
derby property {ij -p taxi.properties delete-all.sql}
-Dij.protocol=jdbc:derby:
-Dderby.system.home=D:\Projects\VinaTaxi\Database
-Dij.database=database.derby.v2;create=false
-Dij.user=APP
-Dij.password=APP
-Dij.showErrorCode=true
-Dij.exceptionTrace=true
-Duser.language=en
-Duser.region=US
-Dderby.ui.locale=en
@tbvinh
tbvinh / Convert.java
Created August 10, 2020 10:21
convert VNI to Unicode vietnamese charaters
/*
javac convert.java
java convert file1.txt file2.txt
*/
import java.io.*;
import java.nio.charset.StandardCharsets;
public class convert {
@tbvinh
tbvinh / Module1.bas
Created August 10, 2020 10:26
Create Derby SQL from MS Access VBA
Attribute VB_Name = "Module1"
Option Compare Database
Option Explicit
Public Sub sp_help()
Dim db As DAO.Database
Dim tbl As DAO.TableDef
Dim fld As DAO.Field
Dim sStmt As String
@tbvinh
tbvinh / Dropbox API.txt
Last active August 12, 2020 07:49
Dropbox API steps sample
step1: Begin authorization, Appkey=y3kthiwm35u9rkb
https://www.dropbox.com/1/oauth2/authorize?client_id=y3kthiwm35u9rkb&response_type=code
return
QZeVpNETOYAAAAAAAAAADntntoFJ8KHbPecSHzxZz64
step2: Obtain an access token
curl https://api.dropbox.com/oauth2/token \
-d code=QZeVpNETOYAAAAAAAAAAD9K82SUt7z8OAuWSyce3ReY \
@tbvinh
tbvinh / mysql-create-user.sql
Last active August 13, 2020 09:59
Create an user and create a mysql Database
CREATE USER 'vinhtran'@'localhost' IDENTIFIED BY 'password';
CREATE DATABASE <db> set UTF8 collate utf8_bin;
GRANT ALL PRIVILEGES ON db.* TO 'vinhtran'@'localhost';
FLUSH PRIVILEGES;
@tbvinh
tbvinh / reactn-hook-componentdidmount.js
Last active August 14, 2020 06:51
componentDidMount useEffect [hook function react native]
//Component type:
import React, { Component } from 'react'
export default class SampleComponent extends Component {
componentDidMount() {
// code to run on component mount
}
render() {
return (<div>foo</div>)
}
@tbvinh
tbvinh / crontab.sh
Created August 17, 2020 04:57
Edit crontab
sudo vi /etc/rsyslog.d/50-default.conf
uncomment: #cron.*
sudo service rsyslog restart
sudo systemctl status cron
EDITOR=vi crontab -e
sudo crontab -l
@tbvinh
tbvinh / install-Python-WxPython.txt
Last active September 24, 2020 15:14
Install python Zip pip wxPython
0
Download a zip file at:
https://www.python.org/downloads/windows/
Unzip to d:\python38
2. open CMD
cd /d d:\python38
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
3. edit "python38._pth"
@tbvinh
tbvinh / android-backup-apk-and-datas.md
Created September 24, 2020 10:09 — forked from AnatomicJC/android-backup-apk-and-datas.md
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Fetch application APK

To get the list of your installed applications:

@tbvinh
tbvinh / encrypt python source code.txt
Created September 25, 2020 14:35
encrypt python source code
Steps:
1. Install cython
#pip install cython
2. Compile cython to EXT/DLL
#python setup-cython.py build_ext --inplace