Easyest way would be to install hombrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- id: #censored# | |
alias: Air bad! | |
description: '' | |
trigger: | |
- type: carbon_dioxide | |
platform: device | |
device_id: #censored# | |
entity_id: sensor.qingping_air_monitor_lite_co2_carbon_dioxide | |
domain: sensor | |
above: 2000 |
# Put this file into C:\Users\<USER>\Documents\VirtualDJ\History | |
# | |
# To Allow PowerShell-Scripts: | |
# | |
# Open Pwershell and run: | |
# Set-ExecutionPolicy remotesigned | |
# | |
# and: | |
# Unblock-File updatePlayNow.ps1 | |
# |
# Jekyll ExtLinks plugin | |
# Adds custom attributes like rel="nofollow" to all external links. | |
# | |
# 1. Install: put it in your _plugins folder inside your Jekyll project | |
# source root. Install nokogiri (gem install nokogiri). | |
# | |
# 2. Configure plugin in _config.yml. Notice the indentation matters. Example: | |
# | |
# extlinks: | |
# attributes: {rel: nofollow, target: _blank} |
git checkout --orphan gh-pages | |
git rm -rf . | |
touch README.md | |
git add README.md | |
git commit -m "Init gh-pages" | |
git push --set-upstream origin gh-pages | |
git checkout master |
This is a set up for projects which want to check in only their source files, but have their gh-pages branch automatically updated with some compiled output every time they push.
You want a script that does a local compile to e.g. an docs/
directory. Let's call this compile.sh
for our purposes, but for your project it might be npm build
or gulp make-docs
or anything similar.
Check this script in to your project.
<table> | |
<?php | |
$taxonomies = array_post_taxonomies(get_the_id()); | |
foreach ($taxonomies as $taxonomie) { ?> | |
<tr> | |
<td><?php echo $taxonomie['title']; ?></td> | |
<td><?php echo $taxonomie['term']; ?></td> | |
</tr> | |
<?php | |
} ?> |
function array_post_taxonomies($the_id) { | |
$content = []; | |
$args = array( 'public' => true, '_builtin' => false ); | |
$output = 'objects'; | |
$operator = 'and'; | |
$taxonomies = get_taxonomies( $args, $output, $operator ); |