- SSH into your Synology
- Find the corresponding folders in the filesystem.
=> Private Photo Station folder: /volume1/homes/USER/photo => Moments folder: /volume1/homes/USER/Drive/Moments
- Mount Photo Station folder into Moments using
Command
=> Private Photo Station folder: /volume1/homes/USER/photo => Moments folder: /volume1/homes/USER/Drive/Moments
Command
# open project and Run project and create the iOS App | |
# Get the simulator ID | |
instruments -s devices | |
# Go to folder of simulator | |
open ~/Library/Developer/CoreSimulator/Devices/[Simulator UDID] | |
# Get the app | |
cd data/Containers/Bundle/Application |
# Install Required Software | |
brew cask install caskroom/versions/java8 | |
brew cask install android-sdk | |
brew cask install intel-haxm | |
# Set path | |
export ANDROID_SDK_ROOT="/usr/local/share/android-sdk" | |
# List out existing playstore image | |
# sdkmanager --list | grep "playstore" |
# Installation Jenkins: | |
brew update && brew install jenkins | |
# Java Runtime Environment: | |
brew cask install java | |
# Config Launch: | |
ln -sfv /usr/local/opt/jenkins/*.plist ~/Library/LaunchAgents | |
sudo cp -fv /usr/local/opt/jenkins/*.plist /Library/LaunchDaemons | |
sudo chown `whoami` /Library/LaunchDaemons/homebrew.mxcl.jenkins.plist |
Open->In Progress: Start development
In Progress->Blocked: Blocked by external
Blocked-->In Progress: Dependency resolved
In Progress->Development Done: Pending to release a build/\ndeploy to testable server
Development Done-->In Progress: Code review/ \n Marge failed
Development Done->QA Ready: Ready to testing
QA Ready-->Reopen: Failed
Reopen-->In Progress: Restart the development
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
adb tcpip 5555 | |
adb connect <DEVICE_IP_ADDRESS>:5555 |
Google Play: | |
keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore -list -v | |
Facebook: | |
keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64 |
#Nginx => Unicorn > Rails
##Nginx Setting
vim /etc/nginx/conf.d/default.conf
upstream app {
# Path to Unicorn SOCK file, as defined previously
server unix:/tmp/unicorn.myapp.sock fail_timeout=0;
ps aux | grep 'unicorn' | awk '{print $2}' | xargs sudo kill -9 |