Skip to content

Instantly share code, notes, and snippets.

View LukasReschke's full-sized avatar

Lukas Reschke LukasReschke

View GitHub Profile

Keybase proof

I hereby claim:

  • I am lukasreschke on github.
  • I am reschkelukas (https://keybase.io/reschkelukas) on keybase.
  • I have a public key ASBbP0lVX_WbAW_JqSQttb0PN-FmfV3jq8DufwXXj5CoBgo

To claim this, I am signing this object:

PMSRE Individual Contributor License Agreement
Thank you for your interest in contributing to PMSRE ("We" or "Us").
This contributor agreement ("Agreement") documents the rights granted by contributors to Us. To make this document effective, please sign it and send it to Us by electronic submission, following the instructions at https://cla-assistant.io/lukasreschke/pmsre. This is a legally binding document, so please read it carefully before agreeing to it. The Agreement may cover more than one software project managed by Us.
1. Definitions
"You" means the individual who Submits a Contribution to Us.
"Contribution" means any work of authorship that is Submitted by You to Us in which You own or assert ownership of the Copyright. If You do not own the Copyright in the entire work of authorship, please follow the instructions in .
"Copyright" means all rights protecting works of authorship owned or controlled by You, including copyright, moral and neighboring rights, as appropriate, for the full term of thei
diff --git a/js/require_config.js b/js/require_config.js
index 7e90525..5b1a5d1 100644
--- a/js/require_config.js
+++ b/js/require_config.js
@@ -11,8 +11,8 @@
*/
(function() {
- 'use strict';
FROM nginx:latest
EXPOSE 80
RUN apt-get update
RUN apt-get -y upgrade
RUN apt-get -y install curl php5-fpm vim
COPY default.conf /etc/nginx/conf.d/default.conf
RUN mkdir -p /var/www/nextcloud/
COPY index.php /var/www/nextcloud/index.php
RUN chown -R nginx:nginx /var/www/
This file has been truncated, but you can view the full file.
#0 malloc_printerr (ptr=<optimized out>, str=<optimized out>, action=<optimized out>) at malloc.c:4992
buf = "0\335\343VUU\000\000\360\317?Ww\002\000\000\300"
cp = <optimized out>
#1 malloc_consolidate (av=av@entry=0x7ffff751e760 <main_arena>) at malloc.c:4157
fb = <optimized out>
maxfb = <optimized out>
p = <optimized out>
nextp = <optimized out>
unsorted_bin = <optimized out>
first_unsorted = <optimized out>
@LukasReschke
LukasReschke / consultants.json
Last active February 5, 2016 17:18
Filtering consultants for Jos
[
{
"title":"ACP IT Solutions",
"url":"http:\/\/www.acp.de",
"flags":[
"de"
],
"hosting":true,
"specializes":[
"ACP realizes End-to-End solutions for companies, authorities and organizations of all sizes. We supply services, from PC maintenance to managed services, hardware, software, solutions and IT financing, as well as concepts for virtualization, storage and back up."
@LukasReschke
LukasReschke / move.php
Created October 15, 2015 21:25
How to move a folder in ownCloud using the Node API
<?php
require_once './lib/base.php';
$rootFolder = \OC::$server->getRootFolder();
$folderToMove = $rootFolder->get('/admin/files/folderToMove');
$folderToMove->move('/admin/files/NewPath');
<?php
require_once('./lib/base.php');
use Sabre\DAV\Client;
$settings = [
'baseUri' => 'http://localhost/master/remote.php/webdav/',
'userName' => 'admin',
'password' => 'admin',
<?php
/**
* ownCloud
*
* @author Frank Karlitschek
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
env:
global:
- CORE_BRANCH=master