ubuntu – How to allow Diaspora to start when server boot up – Stack Overflow

# This is the init script for starting up the# Diaspora## chkconfig: 345 91 10# description: Starts and stops the Diaspora daemon.#PROC_NAME=DiasporaDIASPORA_HOME=/home/diaspora# Change the user to whichever user you needRUN_AS_USER=diasporastartup=”cd $DIASPORA_HOME; ./script/server”# Replace by stop/shutdown command#shutdown=”$DIASPORA_HOME/script/server”start(){ echo -n $”Starting $PROC_NAME service: ” su -l $RUN_AS_USER -c “$startup” RETVAL=$? echo}stop(){ echo -n $”Stoping $PROC_NAME service: ” …

More

Welcome – Polymer

Web Components usher in a new era of web development based on encapsulated and interoperable custom elements that extend HTML itself. Built atop these new standards, Polymer makes it easier and faster to create anything from a button to a complete application across desktop, mobile, and beyond. Source: Welcome – Polymer

Tomcat clustering and session replication tutorial | Examples Java Code Geeks

1. IntroductionIn this example we will discuss Apache Tomcat Servlet/JSP container’s clustering and session replication related configurations. Apache Tomcat server is lightweight server that is relatively easy to set-up. It has many features that enable high flexibility. Tomcat can be fine-tuned to do well for some traffic, but if your traffic is expected to be …

More