Skip to content

Instantly share code, notes, and snippets.

View phil2phil's full-sized avatar

Philipp Schweers phil2phil

View GitHub Profile
@phil2phil
phil2phil / vertical-timeline.html
Created November 28, 2017 16:58
Vertical timeline
<!DOCTYPE html>
<html>
<head>
<style>
.wrapper {
max-width: 200px;
border-right: 1px solid green;
padding-right: 10px;
}
@phil2phil
phil2phil / draw_spiral.php
Last active June 23, 2017 06:39
dailyprogrammer challenge on reddit: spiral
<?php
// https://www.reddit.com/r/dailyprogrammer/comments/6i60lr/20170619_challenge_320_easy_spiral_ascension/
/**
* @param array $arguments
* @return int
*/
function check_args_and_get_number(array $arguments)
{
$parameter_name = 'n';