Dashing can be used to create a Dash docset.
Then
cd docs/_site
and
| -module(tailrecursion). | |
| -export([fac/1,loop/1,sum/1,maximum/1,fib/1,perfect/1]). | |
| fac(N) -> fac(N,1). | |
| fac(0,P) -> | |
| P; | |
| fac(N,P) when N>0 -> | |
| fac(N-1,P*N). | |
| loop(N) when N>0 -> |
| -module(tailrecursion). | |
| -export([fac/1,loop/1,sum/1,maximum/1,fib/1,perfect/1]). | |
| fac(N) -> fac(N,1). | |
| fac(0,P) -> | |
| P; | |
| fac(N,P) when N>0 -> | |
| fac(N-1,P*N). | |
| loop(N) when N>0 -> |
| -module(recursion). | |
| -export([fac/1,fib/1,pieces/1,multipieces/2]). | |
| fac(0) -> 1; | |
| fac(N) when N>0 -> fac(N-1)*N. | |
| fib(0) -> 0; | |
| fib(1) -> 1; | |
| fib(N) -> | |
| fib(N-1)+fib(N-2). |
| /* | |
| 1. HOOKS | |
| 2. SHORTCODES | |
| 3. FILTERS | |
| 4. EXTERNAL SCRIPTS | |
| 5. ACTIONS | |
| 6. HELPERS | |
| 7. CUSTOM POST TYPES | |
| 8. ADMIN PAGES |
| <?php | |
| /* ======================================================== | |
| * File : dumpyaml.php | |
| * Date : July 15, 2010 | |
| * Author : Jonathan Franzone | |
| * Author Website : http://www.franzone.com | |
| * | |
| * Script to generate YAML (http://www.yaml.org/) from | |
| * a MySQL database. Will generate YAML for either all | |
| * tables in the specified database, only the specified |
| { "name": "fastzen/wpdemo", "description": "Getting started with WordPress and Composer", "license": "MIT", "repositories": [ { "type":"composer", "url":"https://wpackagist.org" } ], "require": { "composer/installers": "~1.0", "mohiohio/graphql-wp": "~0.3.1" }, "extra": { "installer-paths": { "wp-content/plugins/{$name}": ["type:wordpress-plugin"], "wp-content/themes/{$name}": ["type:wordpress-theme"], "wp-content/mu-plugins/{$name}": ["type:wordpress-muplugin"] } }} |
| wp core download --path=wpclidemo | |
| cd wpclidemo | |
| wp core config --dbname=wpclidemo --dbuser=root --dbpass=password | |
| wp db create | |
| # The following installs correctly but reports an error when attempting to connect to SMTP | |
| wp core install --url=wpclidemo.dev --title="WP-CLI" --admin_user=wpcli --admin_password=wpcli --admin_email=info@wp-cli.org |
Dashing can be used to create a Dash docset.
Then
cd docs/_site
and
| ssh -i ~/.ssh/other_id_rsa.pub -vvv git@github.com |
| sudo apt-get install network-manager-openvpn | |
| sudo apt-get install network-manager-openvpn-gnome |