Skip to content

Instantly share code, notes, and snippets.

View gerritvanaaken's full-sized avatar

Gerrit van Aaken gerritvanaaken

View GitHub Profile
{
"name": "Projektname",
"version": "0.0.1",
"description": "Beschreibung",
"repository": "https://gitlab.com/gerritvanaaken/projektname",
"author": "Gerrit van Aaken",
"scripts": {
"sass": "sass scss/screen.scss screen.css",
"sass:compressed": "sass scss/screen.scss screen.css --style=compressed",
"autoprefix": "postcss -o screen.css screen.css",
@gerritvanaaken
gerritvanaaken / pwforms.php
Last active January 17, 2023 09:01
Complete List of Processwire Form Params
// API
https://processwire.com/api/ref/inputfield/
// Form wrap
$form = wire('modules')->get("InputfieldForm");
$form->action = "./#anfrage";
$form->method = "post";
$form->attr("id+name",'contactform');
$form->attr('class', 'form formular__box');
@gerritvanaaken
gerritvanaaken / emobile-arguments.md
Last active June 25, 2017 16:14
Informationen für E-Auto-Bedenkenträger

Nur noch E-Zulassungen ab 2030?

Informationen für Bedenkenträger

Stand: 25. Juni 2017

1. Tankstellen haben nicht genug Platz für ladende E-Fahrzeuge.

Wenn die jetzigen Tankstellen die einzigen Orte wären, an denen man Elektroautos aufladen kann, wäre das korrekt. De facto lassen sich aber überall Ladesäulen aufstellen, wo elektrischer Strom verfügbar ist – insbesondere an Orten, wo das Fahrzeug sowieso einige Zeit steht (Parkplätze, Supermarkt, Arbeitsplatz oder in der eigenen Garage).

2. Lange Autobahnfahrten kosten viel Zeit.

object(Exception)#42 (7) {
["message":protected]=>
string(0) ""
["string":"Exception":private]=>
string(0) ""
["code":protected]=>
int(0)
["file":protected]=>
string(91) "/Users/gerritvanaaken/Code/wehrundweissweiler/panel/app/src/panel/models/page/blueprint.php"
@gerritvanaaken
gerritvanaaken / gist:10292962
Created April 9, 2014 17:09
SASS with Sourcemaps and Autoprefixer playing together
gulp.src('./css/*.scss')
.pipe(sass({ //ruby sass syntax!
style: 'compact',
sourcemap: true
}))
.pipe(prefix("ff >= 3.6", "ie >= 8", "Chrome >= 10", "iOS >= 5", "Android >= 2.3", "Safari >= 5"))
.pipe(gulp.dest('./css/'))