Skip to content

Instantly share code, notes, and snippets.

View trantrongbinh's full-sized avatar
😎
Pending!

Trần Trọng Bình trantrongbinh

😎
Pending!
View GitHub Profile
@trantrongbinh
trantrongbinh / laravellocal.md
Created June 26, 2018 07:48 — forked from hootlex/laravellocal.md
Run laravel project locally

##Windows users:

cmder will be refered as console

##Mac Os, Ubuntu and windows users continue here:

  • Create a database locally named homestead utf8_general_ci
@trantrongbinh
trantrongbinh / README.md
Created January 27, 2019 09:45 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@trantrongbinh
trantrongbinh / array_dupplicate_counter.js
Created July 24, 2019 06:36 — forked from ralphcrisostomo/array_dupplicate_counter.js
Javascript: Count duplicates in an array
/**
Problem:
You have a javascript array that likely has some duplicate values and you would like a count of those values.
Solution:
Try this schnippet out.
*/
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 (、。’)
@trantrongbinh
trantrongbinh / gist:7f3c6b6c9c2590e81fa9d53203c08d32
Created February 19, 2020 01:51 — forked from tayvano/gist:6e2d456a9897f55025e25035478a3a50
complete list of ffmpeg flags / commands
Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options
This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full.
usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}…
Getting help:
-h — print basic options
-h long — print more options
-h full — print all options (including all format and codec specific options, very long)
@trantrongbinh
trantrongbinh / README.md
Created May 23, 2020 16:54 — forked from tmilos/README.md
Modified Preorder Tree Traversal

Modified Preorder Tree Traversal

Hierarchical data metrics that allows fast read operations on tree like structures.

Based on Left and Right fields that are set during tree traversal. When entered into node value is set to it's Left, when exiting node value is set to it's Right.

Sample implementation

@trantrongbinh
trantrongbinh / kill_port_process.sh
Created June 7, 2020 05:05 — forked from marcosvidolin/kill_port_process.sh
Linux: How to list and kill a process using a port
# to list all ports that are used
sudo netstat -ntlp | grep LISTEN
# you can obtain a specific port using the following command
sudo netstat -ntlp | grep :8080
# when you execute the command above you will see something like that
tcp 0 0 0.0.0.0:27370 0.0.0.0:* LISTEN 4394/skype
tcp 0 0 127.0.1.1:53 0.0.0.0:* LISTEN 2216/dnsmasq
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 4912/cupsd
@trantrongbinh
trantrongbinh / encoding-video.md
Created August 29, 2020 04:11 — forked from glen-cheney/encoding-video.md
Encoding video for the web

Encoding Video

Installing

Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.

brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
@trantrongbinh
trantrongbinh / API.md
Created March 5, 2021 09:47 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@trantrongbinh
trantrongbinh / bash_move_file.md
Created June 10, 2021 01:39
Bash find file and move
#!/bin/bash

FORDER_M3U8="/data2/upload2/process/video/*"
FORDER_MP4="/data2/upload2/[email protected]/video"
FOLDER_MOVE="/backup/backup_m3u8/upload2_data2"
LOG="/backup/backup_m3u8/logs.txt"

for f in $FORDER_M3U8; do
 if test -f "$FORDER_MP4/raw-file-$(basename $f).mp4"; then