If multiple input files are given, pandoc will concatenate them all (with blank lines between them) before parsing. -- from Pandoc website
Pandoc command:
pandoc -s input1.md input2.md input3.md -o output.html
| phpcs --standard=tests/build/phpcs.xml --report=summary . | |
| PHP CODE SNIFFER REPORT SUMMARY | |
| -------------------------------------------------------------------------------- | |
| FILE ERRORS WARNINGS | |
| -------------------------------------------------------------------------------- | |
| /usr/local/zend/apache2/htdocs/project/application/Bootstrap.php 1 4 | |
| ...2/htdocs/Project/application/controllers/ActivityController.php 3 1 | |
| ... |
If multiple input files are given, pandoc will concatenate them all (with blank lines between them) before parsing. -- from Pandoc website
Pandoc command:
pandoc -s input1.md input2.md input3.md -o output.html
| #!/bin/bash | |
| mkdir -p ~/.ssh | |
| # generate new personal ed25519 ssh keys | |
| ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "rob thijssen <rthijssen@gmail.com>" | |
| ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_robtn -C "rob thijssen <rob@rob.tn>" | |
| # generate new host cert authority (host_ca) ed25519 ssh key | |
| # used for signing host keys and creating host certs |
| <?php | |
| function woocommerce_version_check( $version = '2.1' ) { | |
| if ( function_exists( 'is_woocommerce_active' ) && is_woocommerce_active() ) { | |
| global $woocommerce; | |
| if( version_compare( $woocommerce->version, $version, ">=" ) ) { | |
| return true; | |
| } | |
| } | |
| return false; | |
| } |
| <?php | |
| /* Add Image Upload to Series Taxonomy */ | |
| // Add Upload fields to "Add New Taxonomy" form | |
| function add_series_image_field() { | |
| // this will add the custom meta field to the add new term page | |
| ?> | |
| <div class="form-field"> | |
| <label for="series_image"><?php _e( 'Series Image:', 'journey' ); ?></label> |
| # Note : Found somewhere on internet... Source lost | |
| backend ldap_balancer | |
| mode tcp | |
| balance roundrobin | |
| server SERVER_NAME SERVER_ADDR:389 maxconn 100 check | |
| option tcpka | |
| timeout server 2s | |
| timeout connect 1s | |
| # Below, ldap check procedure : | |
| option tcp-check |
| /******************************************************************************* | |
| * Description: | |
| * | |
| * Gulp file to push changes to remote servers (eg: staging/production) | |
| * | |
| * Usage: | |
| * | |
| * gulp deploy --target | |
| * | |
| * Examples: |
Last Updated: March 2023
IMPORTANT: Ignore the out-of-date steps below for getting Chromium keys.
Instead, read this up-to-date guide (Jan 2023) written by @LearningToPi.
P.S. Thank you to every contributor below who provided tips over the years on what should be a straightforward process: setting up Chromium for local development.
Long live the web!
| [merge] | |
| tool = vimdiff | |
| [mergetool] | |
| prompt = true | |
| [mergetool "vimdiff"] | |
| cmd = nvim -d $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J' | |
| [difftool] | |
| prompt = false | |
| [diff] | |
| tool = vimdiff |