I no longer mantain this list. There are lots of other very comprehensive JavaScript link lists out there. Please see those, instead (Google "awesome JavaScript" for a start).
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
<?php if (($wp_query->current_post +1) == ($wp_query->post_count)) { | |
echo 'This is the last post'; | |
} ?> | |
<?php if (($wp_query->current_post +1) != ($wp_query->post_count)) { | |
echo 'This is the not the last post'; | |
} ?> |
Since Twitter doesn't have an edit button, it's a suitable host for JavaScript modules.
Source tweet: https://twitter.com/rauchg/status/712799807073419264
const leftPad = await requireFromTwitter('712799807073419264');
-
Kinesis Freestyle (Terrible key switches. Mushy and un-lovable)
-
Kinesis Freestyle Edge (Traditional layout with too many keys, mech switches, proably too big to be tented easily/properly)
-
Matias Ergo Pro (Looks pretty great. Have not tried.)
-
ErgoDox Kit (Currently, my everyday keyboard. Can buy pre-assembled on eBay.)
-
ErgoDox EZ (Prolly the best option for most people.)
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
#! /usr/bin/env python3 | |
from ns1 import NS1 | |
import pprint | |
import subprocess | |
import keyboard | |
NS1_API_KEY = "<INSERT API KEY>" | |
ZONE_NAME = '<INSERT ZONE NAME>' |
This collection on standards by HQHow.com
- Escape, echo, sanitize,...validate input data
- Every echo must include text-domain for the translation
- If there's empty file, delete it
- If there's the commented code, delete it on the production commit.
- If you want to regist the resources file, like CSS or JS, you must pay attention to the - performance and how it will affect to user's site
- For every output class name, they must have the plugin prefix, i.e InnoRef, the prefix should be inr-your-class-name
- Try not to override the basic elements like a, b, strong, i....you will want to mantain the consistancy of the UI through out the website
- If you want to call and run AJAX, you just do it via wp-ajax.php action, and must pay attention to logged in/out user case.