- Statamic 3 Dev Blog: https://v3.statamic.com/blog
- My site: https://jackmcdade.com
- Synthwave Mixtapes Vol 1: https://open.spotify.com/user/22cuxumkwbp65vt254rvajfma/playlist/30zlEDdmX3asXvDYXnSyXY?si=T7xoXWfkTk2FRINe8UYmyw
- Synthwave Mixtapes Vol 2: https://open.spotify.com/user/22cuxumkwbp65vt254rvajfma/playlist/7bp5BwqTsg30J1XBMxyf3W?si=jKReIRfjSFOXs33K5GbWvw
- Synthwave Mixtapes Vol 3: https://open.spotify.com/user/22cuxumkwbp65vt254rvajfma/playlist/63Btx5Cf3PjWKHa2HG2ktp?si=GP2k-E5_QbqbG9XQ2GI9iw
- Synthwave Mixtapes Vol 4: https://open.spotify.com/user/22cuxumkwbp65vt254rvajfma/playlist/1JCdk4wLKHqiG2iWfMkFVb?si=wVBJKbsNRHSR7i3JRO6_XA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Stylebot Overrides | |
https://chrome.google.com/webstore/detail/stylebot/oiaejidbmkiecgbjeifoejpgmdaleoha/related?hl=en-US | |
*/ | |
li a span { | |
text-transform: capitalize; | |
} | |
li.c-feature-nav__link { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name example.com; | |
root /var/www/example.com/public/; | |
ssl_protocols TLSv1.2; | |
index index.html index.htm index.php; | |
charset utf-8; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
.env | |
node_modules/ | |
bower_components/ | |
local/cache/* | |
local/storage/* | |
local/temp/* | |
installer.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title: 'Site Settings' | |
hide: true | |
sections: | |
main: | |
fields: | |
head_scripts: | |
mode: table | |
fields: | |
description: | |
type: text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Blend Modes | |
========================================================================== */ | |
.mix-overlay { mix-blend-mode: overlay; } | |
.mix-multiply { mix-blend-mode: multiply; } | |
.mix-screen { mix-blend-mode: screen; } | |
.mix-lighten { mix-blend-mode: lighten; } | |
.mix-soft-light { mix-blend-mode: soft-light; } | |
.mix-difference { mix-blend-mode: difference; } | |
.mix-color { mix-blend-mode: color; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Quick and dirty Instagram scraper | |
private function scrape($username) | |
{ | |
$source = file_get_contents('http://instagram.com/' . $username); | |
$shards = explode('window._sharedData = ', $source); | |
$json_response = explode(';</script>', $shards[1]); | |
$response_array = json_decode($json_response[0], TRUE); | |
$nodes = array_get($response_array, 'entry_data:ProfilePage:0:user:media:nodes'); | |
$data = array(); |
I hereby claim:
- I am jackmcdade on github.
- I am jackmcdade (https://keybase.io/jackmcdade) on keybase.
- I have a public key ASAE1ElB7dMGW84pJKYaEsocav0Cen8ZFQVG085aOci6BAo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ xml_header }} | |
<rss version="2.0"> | |
<channel> | |
{{ get_content from="/blog" }} | |
<title>{{ title | cdata }}</title> | |
<link>{{ site_url }}</link> | |
<description>{{ content | cdata }}</description> | |
{{ /get_content }} | |
<lastBuildDate>{{ collection:blog limit="1" }}{{ date format="r" }}{{ /collection:blog }}</lastBuildDate> | |
<language>en-us</language> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name example.com; | |
root /var/www/example.com/public/; | |
ssl_protocols TLSv1.2; | |
index index.html index.htm index.php; | |
charset utf-8; |
NewerOlder