Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* Created by PhpStorm.
* User: lucius
* Date: 19.10.16
* Time: 16:49
*/
namespace Concrete\Package\BasicTablePackage\Src\DiscriminatorEntry;
@BacLuc
BacLuc / redirect to https
Created February 22, 2017 20:32
redirect to https
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
@BacLuc
BacLuc / CsvResponse.php
Last active March 20, 2017 14:41 — forked from mathewbyrne/CsvResponse.php
A small Symfony 2 class for returning a response as a CSV file. Based on the Symfony JsonResponse class.
<?php
namespace Jb\AdminBundle\Http;
use Symfony\Component\HttpFoundation\Response;
class CsvResponse extends Response
{
protected $data;
protected $originalData;
@BacLuc
BacLuc / listtest_Language.java
Created May 12, 2017 13:32
test remove elements with various methods
package listtest;
/**
* Created by lucius on 12.05.17.
*/
public class Language {
private String name;
public Language(String name) {
this.name = name;
@BacLuc
BacLuc / WarmUp.java
Last active May 16, 2017 11:15
count two following x with overlapping
class Main{
int countXX(String str) {
boolean lastOneIsX = false;
int countXX = 0;
for(int i=0;i<str.length(); i++){
if(str.charAt(i)=="x".charAt(0)){
if(lastOneIsX){
countXX++;
}
lastOneIsX = true;
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
package com.company;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
@BacLuc
BacLuc / Regex.java
Created May 16, 2017 18:56
java regex
package com.company;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Regex {
public static void main(String[] args) {
@BacLuc
BacLuc / merge-single-pdfs
Created July 1, 2018 13:55
merge pdfs of single info for scout camp with common infos
#!/bin/bash
DIR="Einzelne"
DIR_MERGED="Einzelne-merged"
for filename in $(ls $DIR); do
FROM=$DIR/$filename
TO=$DIR_MERGED/$filename
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=$TO $FROM lagerinfo_notfallblatt.pdf
done
<?php
/*
Skript um Samstage auszurechnen
*/
echo "<html>
<body>
<form action='' method='post'>
<input type='date' name='anfangsdatum' value='".date("Y-m-d")."'>