TABLE WITHOUT ID
choice(striptime(date(today)) - striptime(file.mtime) <= dur("2 days"),
"<span style=color:#859900;>●</span> ",
choice(striptime(date(today)) - striptime(file.mtime) < dur("1 week"),
"<span style=color:#b58900;>◐</span> ",
"<span style=color:#dc322f;>⊗</span> "
)
) +
author | title | date | description | tags | ||||
---|---|---|---|---|---|---|---|---|
Hugo Authors |
Markdown Syntax Guide (modified es) |
2023-01-09 |
Sample article showcasing basic Markdown syntax and formatting for HTML elements. |
|
Sample Markdown syntax file, modified from Hugo source by ES for Markdown editor comparison.
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
IAM Policies | |
--- | |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": "secretsmanager:GetSecretValue", | |
"Resource": "*" |
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
cask_args appdir: "/Applications" | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-drivers" | |
tap "homebrew/cask-fonts" | |
tap "homebrew/core" | |
brew "fish" | |
brew "git" | |
brew "httpie" | |
brew "github/gh/gh" |
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
alias l='exa -1a' # Lists in one column, hidden files. | |
alias ll='exa -l' # Lists human readable sizes. | |
alias lr='ll -R' # Lists human readable sizes, recursively. | |
alias la='ll -a' # Lists human readable sizes, hidden files. | |
alias lm='la | "$PAGER"' # Lists human readable sizes, hidden files through pager. | |
alias lx='ll --sort=Extension' # Lists sorted by extension (GNU only). | |
alias lk='ll --sort=size -r' # Lists sorted by size, largest last. | |
alias lt='ll --sort=modified -r' # Lists sorted by date, most recent last. | |
alias lc='lt -m' # Lists sorted by date, most recent last, shows change time. | |
alias lu='lt -u' # Lists sorted by date, most recent last, shows access time. |
To use media keys on the Ducky One 2 Skyline, you must record a macro to bind the media function to a hotkey combination, i.e. Fn
plus some key.
Important: In the instructions below, "Press X+Y+Z
" means press and hold key X
, press and hold key Y
, press and hold key Z
in that order, and then release all three.
As an example, to bind Fn+PgUp
to the play/pause media function:
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
/** | |
* | |
* Gulpfile setup | |
* | |
* @since 1.0.0 | |
* @authors Ahmad Awais, @digisavvy, @desaiuditd, @jb510, @dmassiani and @Maxlopez | |
* @package neat | |
* @forks _s & some-like-it-neat | |
*/ |
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
<script> | |
jQuery(document).bind('gform_post_render', function(){ | |
// destroy default Gravity Form datepicker | |
jQuery("#input_2_3").datepicker('destroy'); | |
// create new custom datepicker | |
var oneWorkingDays = new Date(); | |
var adjustments = [0, 1, 1, 1, 1, 1, 0]; // Offsets by day of the week | |
oneWorkingDays.setDate(oneWorkingDays.getDate() + 1 + adjustments[oneWorkingDays.getDay()]); | |
jQuery("#input_2_3").datepicker({ beforeShowDay: jQuery.datepicker.noWeekends, minDate: '+1d', gotoCurrent: true, prevText: '', showOn: 'both', buttonImage: '/wp-content/plugins/gravityforms/images/calendar.png', buttonImageOnly: true }); |
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 | |
class RW_GF_Age_Calculation { | |
public function __construct() { | |
add_action( 'init', array( $this, 'init' ) ); | |
} | |
function init() { | |
if ( ! class_exists( 'GFForms' ) || ! property_exists( 'GFForms', 'version' ) && version_compare( GFForms::$version, '1.9', '>=' ) ) { |
NewerOlder