One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| var BaseObject = { | |
| create: function create() { | |
| var instance = Object.create(this); | |
| instance._construct.apply(instance, arguments); | |
| return instance; | |
| }, | |
| extend: function extend(properties, propertyDescriptors) { | |
| propertyDescriptors = propertyDescriptors || {}; |
| /*--- waitForKeyElements(): A utility function, for Greasemonkey scripts, | |
| that detects and handles AJAXed content. | |
| Usage example: | |
| waitForKeyElements ( | |
| "div.comments" | |
| , commentCallbackFunction | |
| ); |
| #!/bin/sh | |
| # Script to create a CATALINA_BASE directory for your own tomcat | |
| PROG=`basename $0` | |
| TARGET="" | |
| HPORT=8080 | |
| CPORT=8005 | |
| CWORD="SHUTDOWN" | |
| warned=0 | |
| warnlowport=0 |
| <!-- | |
| Netbeans Platform Download-and-Config | |
| Copyright 2013, 2016, Andrew Bythell <[email protected]> | |
| http://angryelectron.com/ | |
| This Ant script is used to download and configure the Netbeans platform, | |
| allowing Netbeans platform applications to be built without the IDE. | |
| --> | |
| <project name="configure-platform" default="configure" basedir="."> |
| /* | |
| In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp | |
| server, but for some reason omit a client connecting to it. I added an | |
| example at the bottom. | |
| Save the following server in example.js: | |
| */ | |
| var net = require('net'); |
| #! /bin/bash | |
| # | |
| # backup_redmine.sh | |
| # modified by [email protected] | |
| # Inspiration: https://gist.github.com/gabrielkfr/6432185 | |
| # | |
| # Distributed under terms of the MIT license. | |
| # -- VARS | |
| DAY=`date +"%Y%m%d"` |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉
~/.ssh/config, set each ssh key for each repository as in this exemple: