Skip to content

Instantly share code, notes, and snippets.

@Norcoen
Norcoen / test.snippet
Created May 7, 2015 14:14
Test Snippet
// Länder sollen Vertikal von A-Z anstatt Horizontal sortiert werden
function sort_market_verticaly($markets, $marketColumns = 5) {
$countMarkets = count($markets);
$numMarketsPerBlock = intval($countMarkets / $marketColumns);
$leftOver = $countMarkets % $marketColumns;
$newSortMarkets = array();
for ($i = 0, $marketCount = 0; $i < $marketColumns && $marketCount < $countMarkets; $i++) {
for ($j = 0; $j < $numMarketsPerBlock; $j++) {
$newSortMarkets[$i][] = $markets[$marketCount];
@Norcoen
Norcoen / flatArray.php
Created November 27, 2015 12:28
php function that Recursively converts nested array into a flat one with preserved keys connected with connector.
<?php
/**
* Recursively converts nested array into a flat one with keys preserving.
* @param array $result Resulting array
* @param array $array Source array
* @param string $prefix Key's prefix
* @param string $connector Levels connector
*/
function flatArray(array &$result, array $array, $prefix = null, $connector = '.') {
foreach ($array as $key => $value) {
@Norcoen
Norcoen / PHPExcel_Basics.md
Created January 5, 2016 15:45 — forked from r-sal/PHPExcel_Basics.md
PHPExcel Notes and code snippets

Basics

Creating a new PHPExcel Object.

    $this->PHPExcel = new PHPExcel();

Working with sheets

Creating a new sheet:

@Norcoen
Norcoen / iptables.sh
Created February 10, 2016 09:07 — forked from thomasfr/iptables.sh
iptable rules to allow outgoing DNS lookups, outgoing icmp (ping) requests, outgoing connections to configured package servers, outgoing connections to all ips on port 22, all incoming connections to port 22, 80 and 443 and everything on localhost
#!/bin/bash
IPT="/sbin/iptables"
# Server IP
SERVER_IP="$(ip addr show eth0 | grep 'inet ' | cut -f2 | awk '{ print $2}')"
# Your DNS servers you use: cat /etc/resolv.conf
DNS_SERVER="8.8.4.4 8.8.8.8"
# Allow connections to this package servers
@Norcoen
Norcoen / recursive_array_walk_recursive.php
Created February 26, 2016 15:11 — forked from seromenho/recursive_array_walk_recursive.php
array_walk_recursive working for objects.
<?php
class A
{
private $ab = 5;
public $ac = 6;
}
/**
* WARNING: This https://bugs.php.net/bug.php?id=45937 seems not yet solved
@Norcoen
Norcoen / vm-resize-hard-disk.md
Created March 1, 2016 15:45 — forked from christopher-hopper/vm-resize-hard-disk.md
Resize a Hard Disk for a Virtual Machine provisioned using Vagrant from a Linux base box to run using VirutalBox.

Resize a Hard Disk for a Virtual Machine

Our Virtual Machines are provisioned using Vagrant from a Linux base box to run using VirutalBox. If the Hard Disk space runs out and you cannot remove files to free-up space, you can resize the Hard Disk using some VirtualBox and Linux commands.

Some assumptions

The following steps assume you've got a set-up like mine, where:

@Norcoen
Norcoen / code.md
Created May 2, 2016 13:49 — forked from weakish/code.md
The Six Most Common Species Of #Code #java #fun
@Norcoen
Norcoen / reset_iptables.sh
Created May 27, 2016 22:14
Reset iptables
# IPv6
##
## set default policies to let everything in
ip6tables --policy INPUT ACCEPT;
ip6tables --policy OUTPUT ACCEPT;
ip6tables --policy FORWARD ACCEPT;
##
## start fresh
@Norcoen
Norcoen / Documentation.md
Created June 20, 2016 09:39 — forked from KartikTalwar/Documentation.md
Rsync over SSH - (40MB/s over 1GB NICs)

The fastest remote directory rsync over ssh archival I can muster (40MB/s over 1gb NICs)

This creates an archive that does the following:

rsync (Everyone seems to like -z, but it is much slower for me)

  • a: archive mode - rescursive, preserves owner, preserves permissions, preserves modification times, preserves group, copies symlinks as symlinks, preserves device files.
  • H: preserves hard-links
  • A: preserves ACLs
@Norcoen
Norcoen / hexdump.php
Created July 8, 2016 12:52
Dump PHP String as HEX
<?php
/* Found at http://stackoverflow.com/questions/1057572/how-can-i-get-a-hex-dump-of-a-string-in-php */
function hex_dump($data, $newline="\n")
{
static $from = '';
static $to = '';
static $width = 16; # number of bytes per line