I hereby claim:
- I am rdoursenaud on github.
- I am rdoursenaud (https://keybase.io/rdoursenaud) on keybase.
- I have a public key ASCsNpaBh2xvtMNUop2jBO2Ga1LjKg_gOrMjHWHtfXoiGQo
To claim this, I am signing this object:
# Reverse proxy for Shinken 2.0.x on Debian Wheezy | |
# Place this file under /etc/nginx/sites-available | |
# Update your server_name | |
# Don't forget to enable the config and reload nginx | |
# Enjoy ^^ | |
server { | |
# IPv4 support | |
listen 80; | |
# IPv6 support | |
listen [::]:80; |
#!/bin/bash | |
# Inplace mode added by Raphaël Doursenaud <[email protected]> | |
PROGNAME=${0##*/} | |
INPUT='' | |
QUIET='0' | |
NOSTATS='0' | |
INPLACE='0' | |
max_input_size=0 | |
max_output_size=0 |
function deleteContactGroups() { | |
var groups = ContactsApp.getContactGroups(); | |
Logger.log("total: " + groups.length); | |
for (var i = 0; i < groups.length; i++) { | |
if (!groups[i].isSystemGroup()){ | |
groups[i].deleteGroup() | |
Logger.log("deleting: " + groups[i].getName() ); | |
} | |
} |
server { | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
keepalive_timeout 70; | |
server_name otrs.example.com; | |
root /opt/otrs/var/httpd/htdocs; | |
index index.html; | |
# SSL |
colorscheme:dolibarr | |
bright:1 | |
cs_re:yellow,red:.*EMERG.* | |
cs_re:white,red:.*ALERT.* | |
cs_re:green,red:.*CRIT.* | |
cs_re:red:.*ERR.* | |
cs_re:white,yellow:.*WARNING.* | |
cs_re:green,yellow:.*NOTICE.* | |
cs_re:green:.*INFO.* | |
cs_re:white:.*DEBUG.* |
* { | |
font-size: 12pt; | |
font-family: monospace; | |
font-weight: normal; | |
font-style: normal; | |
text-decoration: none; | |
color: black; | |
cursor: default; | |
} |
<?php | |
// Run with PHP 5.x and 7.x to see the differences. | |
// SETUP | |
class Test { | |
var $property = 1; | |
} | |
$array = [ | |
0 => 'property' |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# Copyright (C) 2016 Raphaël Doursenaud | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
#!/usr/bin/env python2.7 | |
# encoding=utf8 | |
# | |
# Copyright 2007 Google Inc. | |
# Copyright 2016 Raphaël Doursenaud | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# |