Skip to content

Instantly share code, notes, and snippets.

@thanhtoan1196
thanhtoan1196 / _sns_description
Created January 15, 2020 02:30 — forked from akiatoji/_sns_description
AWS SNS Sample code.
Notes on how to use AWS SNS:
1. Subscribe an HTTP endpoint (i.e. http://myhost/sns_endpoint) on AWS Console
2. AWS will send subscription confirmation right away
3. SNS_controller responds to subscription confirmation by sending confirmation using Fog.
4. Once AWS is happy, you can start sending notifications to your end point via SNS.
010-editor: 010 Editor
0-ad: 0 A.D.
0xed: 0xED
115browser: 115Browser, 115浏览器
1clipboard: 1Clipboard
1password: 1Password
1password-cli: 1Password CLI
245cloud: 245cloud
33-rpm: 33 RPM
360safe: 360 Total Security
@thanhtoan1196
thanhtoan1196 / subtitle-extract.md
Created December 8, 2019 14:03 — forked from pavelbinar/extract-subtitles-from-mkv.md
Extract subtitles from .mkv files on Mac OS X

Extract Subtitles From .mkv

This instructions whall work on any system (Mac OS X, Linux) supporting installation of mkvtoolnix

Install mkvtoolnix

If you don't have Homebrew installed, do it first, the continue with following command:

brew install mkvtoolnix
@thanhtoan1196
thanhtoan1196 / my hosts
Created May 14, 2019 07:39 — forked from ptk911/my hosts
Link tải tool getlink Fshare, 4share, tailieu, mp3/tv.zing, nhaccuatui, chiasenhac....
1. GetLink Fs4sTL:
<version1>5.7b</version1>
<download1>https://www.fshare.vn/file/GD7M96QXA84K</download1>
link tải: https://www.upload.ee/files/9691451/GetLink_Fs4sTL_5.7b.exe.html
2. Music-Video Downloader:
<version2>4.2</version2>
<download2>https://www.fshare.vn/file/CDI762GUM96U</download2>
link tải: https://www.upload.ee/files/9652713/Music-Video_Downloader_4.2.exe.html

install nodejs

sudo apt-get update
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev nodejs yarn
minSdkVersion = 21
targetSdkVersion = 23
compileSdkVersion = 26
buildToolsVersion = "26.0.2"
kotlinVersion = "1.2.10"
supportLibraryVersion = "26.0.2"
constraintLayoutVersion = "1.0.2"
multidexVersion = "1.0.1"
@thanhtoan1196
thanhtoan1196 / build.gradle
Created September 16, 2017 04:32 — forked from maxirosson/build.gradle
Versioning Android apps
apply plugin: 'com.android.application'
ext.versionMajor = 1
ext.versionMinor = 2
ext.versionPatch = 3
ext.versionClassifier = null
ext.isSnapshot = true
ext.minimumSdkVersion = 15
android {
@thanhtoan1196
thanhtoan1196 / ansible_semaphore_ubuntu.md
Last active September 16, 2017 03:46 — forked from thedumbtechguy/ansible_semaphore_ubuntu.md
Install Ansible Semaphore on Ubuntu

Ansible Installation

Ansible is a powerful configuration management tool that we use in managing our infrastructure and applications.

It requires a centralized Control server and can connect to hosts over an array of connection types including SSH.

Controller Setup

The Ansible controller will run our playbooks. This needs both Ansible and Semaphore (web based management console) setup.

@thanhtoan1196
thanhtoan1196 / phabricator.md
Last active September 16, 2017 03:47
phabricator

Phabricator Ubuntu Installation Guide

This is a supplement to the official Phabricator Installation Guide, because their guide will leave you with all kinds of permission and config errors and ~15,000 setup issues on startup.

Install bonus packages:

sudo apt-get install python-pygments

And create repo directory if phabricator will be hosting repos:

RxRecyclerView.scrollEvents(binding.recyclerView)
.compose(bindUntilEvent(ActivityEvent.DESTROY))
.map(scrollEvent -> {
boolean isBottom = false;
if (ConfigUtils.isOrientationPortrait(this)) {
isBottom = layoutManager.findLastCompletelyVisibleItemPositions(
new int[2])[1] >= mImages.size() - 4;
} else if (ConfigUtils.isOrientationLandscape(this)) {
isBottom = layoutManager.findLastCompletelyVisibleItemPositions(
new int[3])[2] >= mImages.size() - 4;