- 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
| if (!Function.prototype.bind) { | |
| Function.prototype.bind = function (oThis) { | |
| if (typeof this !== "function") { | |
| // closest thing possible to the ECMAScript 5 internal IsCallable function | |
| throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); | |
| } | |
| var aArgs = Array.prototype.slice.call(arguments, 1), | |
| fToBind = this, | |
| fNOP = function () {}, |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/usr/bin/env bash | |
| apt-get -y update | |
| apt-get -y install build-essential zlib1g-dev libssl-dev libreadline5-dev libyaml-dev | |
| cd /tmp | |
| wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz | |
| tar -xvzf ruby-1.9.3-p125.tar.gz | |
| cd ruby-1.9.3-p125/ | |
| ./configure --prefix=/usr/local | |
| make | |
| make install |
| /** | |
| * Module dependencies. | |
| */ | |
| var express = require('express'); | |
| var app = module.exports = express.createServer(); | |
| io = require('socket.io').listen(app), |
| #!/bin/bash | |
| # | |
| # -------------------------------------------------------------------------------------- | |
| # http://blog.gantrithor.com/post/12535461464/carefree-coffeescript-auto-compiler-part-3 | |
| # -------------------------------------------------------------------------------------- | |
| DIR_ROOT="$(cd "$(dirname "$0")" && pwd)" | |
| function compile_tree() { | |
| find "$1" -name "*.coffee" -type f | while read PATH_COFFEE; do |