Skip to content

Instantly share code, notes, and snippets.

View devcut's full-sized avatar
🇨🇵
แมว

devcut

🇨🇵
แมว
View GitHub Profile
@devcut
devcut / dynamic-httpd-vhosts.conf
Last active January 15, 2020 10:15
Dynamic vhosts
<VirtualHost *:80>
ServerName localhost
DocumentRoot /Users/devcut/PhpstormProjects/
VirtualDocumentRoot /Users/devcut/PhpstormProjects/%1/public
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
<Directory "/Users/devcut/PhpstormProjects/*/public">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
@devcut
devcut / sibling-count.scss
Created December 10, 2019 10:43
Styling elements based on sibling count
@for $i from 1 through 4 {
li:first-child:nth-last-child(#{$i}), li:first-child:nth-last-child(#{$i}) ~ li {
width: 100% / #{$i};
}
}