Install the server:
sudo apt-get install postgresql-9.1 postgresql-contrib-9.1 pgadmin3
Execute the psql command under user postgres
(sudo -u postgres)
and connect to database postgres
(psql postgres):
// Returns a function, that, as long as it continues to be invoked, will not | |
// be triggered. The function will be called after it stops being called for | |
// N milliseconds. If `immediate` is passed, trigger the function on the | |
// leading edge, instead of the trailing. | |
function debounce(func, wait, immediate) { | |
var timeout; | |
return function() { | |
var context = this, args = arguments; | |
clearTimeout(timeout); |
<?xml version="1.0" encoding="utf-8"?> | |
<edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:sap="http://www.sap.com/Protocols/SAPData"> | |
<edmx:Reference Uri="http://s4-1610.creetion.com:50000/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMON',Version='0001',SAP__Origin='')/$value" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"> | |
<edmx:Include Namespace="com.sap.vocabularies.Common.v1" Alias="Common"/> | |
</edmx:Reference> | |
<edmx:DataServices m:DataServiceVersion="2.0"> | |
<Schema Namespace="EAM_OBJPG_MAINTNOTIFICATION_SRV" xml:lang="en" sap:schema-version="1" xmlns="http://schemas.microsoft.com/ado/2008/09/edm"> | |
<EntityType Name="NotificationTypeImage" m:HasStream="true" sap:content-version="1"> | |
<Key> | |
<PropertyRef Name="RequestImage"/> |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" | |
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
<style> | |
.form-group.required .control-label:after { | |
content:" *"; | |
} | |
</style> | |
<div class="panel panel-default"> |
# open current directory in git kraken | |
git config --global alias.kraken '!gitkraken -p `pwd` >/dev/null 2>&1 &' | |
# revert a file | |
git config --global alias.revert 'reset HEAD --' |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Sign up to {this}</title> | |
<link rel="stylesheet" type="text/css" href="stylesheet.css" /> | |
<script type="text/javascript" src="script.js"></script> | |
</head> | |
<body> | |
<form method="post" target="#" onsubmit="return validate()"> |
wget --recursive --level=1 --no-clobber --page-requisites --html-extension --convert-links --no-parent $@ |
sudo hdparm -I `sudo fdisk -l | grep Disk\ / | awk '{print $2}' | sed -e 's/.$//' ` | grep --c |
ps -ef | grep -v grep | grep -i --color=auto $@ |
Object.prototype.mixin = (aClass) -> | |
for key, value of aClass | |
@[key] = value | |
for key, value of aClass.prototype | |
@::[key] = value | |
@ | |
class Voertuig | |
constructor: (@naam, @snelheid=0)-> |