Skip to content

Instantly share code, notes, and snippets.

View phuongtailtranminh's full-sized avatar

Tran Minh Phuong phuongtailtranminh

  • Hanoi
View GitHub Profile
@phuongtailtranminh
phuongtailtranminh / Cloud Drive Service Price Comparation
Created May 15, 2017 03:48
Cloud Drive Service Price Comparation
[Google Drive] - Ref: https://www.google.com/drive/pricing/
100 GB - $1.99 / month
1TB - $9.99 / month
10 TB - $99.99 / month
15 GB - FREE
[DropBox] - Ref: https://www.dropbox.com/business/pricing
2TB - $12.50 / month
As much space as you - $20 / month
4GB - FREE
[OneDrive] - Ref: https://onedrive.live.com/about/en-US/plans/
@phuongtailtranminh
phuongtailtranminh / Run VLC from Command Line OSX
Created April 18, 2017 14:44
Run VLC from Command Line OSX
alias vlc="/Applications/VLC.app/Contents/MacOS/VLC"
@phuongtailtranminh
phuongtailtranminh / Download m3u8 files with ffmpeg
Created April 18, 2017 14:20
Download m3u8 files and join with ffmpeg
ffmpeg -i http://embed.wistia.com/deliveries/blahBlahYadaYada.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4
@phuongtailtranminh
phuongtailtranminh / MPC-HC Hanging Quick-fix
Created April 16, 2017 04:33
A quick-fix for MPC-HC hang when playing mp4 on windows 10
The issues: MPC-HC is hang when playing mp4 files on Windows 10 Creator
Quick-fix: Go to Options (O) -> Playback -> Output -> Change 'Directshow Video' to 'Video Mixing Renderer 9 (renderless)'
@phuongtailtranminh
phuongtailtranminh / OS X Sierra Change Flat Icon Tutorial
Last active July 7, 2017 03:50
The way to change flat icon on OS X Sierra
1. Concepts:
System Integrity Protection (SIP)
"Apple has enabled a new default security oriented featured called System Integrity Protection, often called rootless,
in Mac OS from versions 10.11 onward. The rootless feature is aimed at preventing Mac OS X compromise by malicious code,
whether intentionally or accidentally, and essentially what SIP does is lock down specific system level locations in the file
system while simultaneously preventing certain processes from attaching to system-level processes."
- OSXDaily [http://osxdaily.com/2015/10/05/disable-rootless-system-integrity-protection-mac-os-x/]
@phuongtailtranminh
phuongtailtranminh / Hibernate JodaDatetime and Jadira Type
Created March 4, 2017 08:21
Hibernate JodaDatetime and Jadira Type
@Basic
@Column(name = "created_date", nullable = true)
@Type(type="org.jadira.usertype.dateandtime.joda.PersistentLocalDateTime")
public DateTime getCreatedDate() {
return createdDate;
}
public void setCreatedDate(DateTime createdDate) {
this.createdDate = createdDate;
}
@phuongtailtranminh
phuongtailtranminh / Json Response Format Example
Last active February 25, 2024 14:31
Json Response Format Example
* Use Json Web Token (JWT) for authorization [https://jwt.io/]
- Flickr
Request Format: GET or POST [https://www.flickr.com/services/api/request.rest.html]
Successful Responses:
{
"stat": "ok",
"blogs": {
"blog": [
{
LightHouse aka Audit 2.0 (https://github.com/GoogleChrome/lighthouse) - Lighthouse analyzes web apps and web pages, collecting modern performance metrics and insights on developer best practices.
@phuongtailtranminh
phuongtailtranminh / iptables_rules.sh
Created December 3, 2016 14:02 — forked from virtualstaticvoid/iptables_rules.sh
25 Most Frequently Used Linux IPTables Rules Examples
# Modify this file accordingly for your specific requirement.
# http://www.thegeekstuff.com
# 1. Delete all existing rules
iptables -F
# 2. Set default chain policies
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP
@phuongtailtranminh
phuongtailtranminh / MySQL
Last active December 5, 2016 14:54
MySQL
# Fix mysqld start fail: (when backup server)
vim /etc/mysql/my.cnf -->
[mysqld]
innodb_force_recovery = 3
# Backup:
mysqldump -u root -p[password] [database_name] > dumpfilename.sql
# Restore:
mysql -u root -p[password] [database_name] < dumpfilename.sql
# Create user
CREATE USER 'finley'@'localhost' IDENTIFIED BY 'some_pass';