Skip to content

Instantly share code, notes, and snippets.

@reflexxion
reflexxion / fibonacci.php
Created August 2, 2023 12:03
fibonacci.php
<?php
// Maximale Anzahl ermittelter Zahlen
$limit = 10;
$list = [];
while(count($list) < $limit) {
$currentValue = 0;
if (count($list) === 0) {
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
body, html {
margin:0;
@reflexxion
reflexxion / flow-3-settings.conf
Last active January 1, 2019 18:41
Neos nginx configuration (by @sorenmalling)
location ~ /\. {
deny all;
access_log off;
log_not_found off;
}
location = /favicon.ico {
log_not_found off;
access_log off;
}
@reflexxion
reflexxion / Caches.yaml
Last active May 2, 2018 12:45 — forked from aertmann/Caches.yaml
Flow configuration to avoid logout on flow:cache:flush
# Flow 3.0+
Flow_Session_Storage:
persistent: TRUE
Flow_Session_MetaData:
persistent: TRUE
# Flow 2.0-2.3
Flow_Session_Storage:
backendOptions: