Skip to content

Instantly share code, notes, and snippets.

View hatzipanis's full-sized avatar
👏

Alex Hatzipanis hatzipanis

👏
View GitHub Profile
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "GitHubIssueSchema",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"summary": {
"type": "string"
@hatzipanis
hatzipanis / .htaccess
Created May 1, 2017 19:24
www to non-www redirect with Craft
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
@hatzipanis
hatzipanis / bem-examples.md
Last active August 29, 2015 14:25
A collection of learning resources and examples of BEM in the wild.