Skip to content

Instantly share code, notes, and snippets.

@remy
remy / ActiveLink.js
Last active May 3, 2025 03:03
Next.js version of `activeClassName` support.
@BlaiseRideout
BlaiseRideout / setup.yaml
Last active January 25, 2023 04:07
Ansible script to setup my personal Linux environment
---
- hosts: localhost
connection: local
become: yes
become_user: root
become_method: sudo
tasks:
- name: Google Chrome PGP Key
apt_key: url=https://dl.google.com/linux/linux_signing_key.pub state=present
@luetkemj
luetkemj / wp-query-ref.php
Last active April 6, 2025 09:15
WP: Query $args
// This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.github.io
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php
*/