-
Boot into Windows.
-
Using Windows' partition tool
Disk Management
, resize the Windows partition to create a blank area as large as you desire. -
Insert your Linux install media.
-
Reboot into your Linux install media.
-
Do the Linux partitioning from your Linux install media.
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 ?> | |
<div id="disqus_thread"></div> | |
<!-- Disqus comment code from http://disqus.com/admin/universalcode/ --> | |
<script type="text/javascript" src="<?php print($template_dir_url); ?>custom/comments-disqus-js.js"> | |
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ | |
var disqus_shortname = 'benlk'; // required: replace example with your forum shortname | |
/* * * More information available at http://help.disqus.com/customer/portal/articles/472098-javascript-configuration-variables */ | |
var disqus_identifier = <?php echo( "'" . $slug . "'" ) ?>; // optional . this line sets a unique identifier that disqus uses to track comments by post. Change it to something else if you want to. | |
var disqus_title = <?php echo( "'" . $post_title . "'" ) ?>; // this sets the post title, for Disqus\' purposes. |
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
### Keybase proof | |
I hereby claim: | |
* I am benlk on github. | |
* I am benlk (https://keybase.io/benlk) on keybase. | |
* I have a public key whose fingerprint is 4C2D F6E4 5925 87CB 9DCF 8CBF E6E2 B01D C9C6 01F7 | |
To claim this, I am signing this object: |
The goal of this project is to use Phpdoc against Largo to generate GitHub Wiki pages using phpdoc and phpdoc-md.
The entirety of their documentation on templates and custom templates:
- http://www.phpdoc.org/templates
- http://www.phpdoc.org/docs/latest/getting-started/changing-the-look-and-feel.html
- http://www.phpdoc.org/docs/latest/references/configuration.html
Thoughts:
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
var quoteHTML = "34. If you’re leaving scorch-marks, you need a bigger gun. "; | |
quoteHTML.replace(/(^\d+[.,:;](\ |\d+\ ))/m, '<span class="dnumber">$1<\/span>'); | |
console.log(quoteHTML); | |
// returns '34. If you’re leaving scorch-marks, you need a bigger gun. ' | |
// goal is to: | |
// - match 1. 22. 33.44 44:55 5:66 at the start of a line, followed by a space | |
// - wrap it in <span class="dnumber"></span> | |
// ideal output '<span class="dnumber">34. </span>If you’re leaving scorch-marks, you need a bigger gun. ' |
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 | |
/* | |
* I see lots of cute 404 pages with funny messages. | |
* Most 404 pages don't tell you what link you used to get to the 404, | |
* and they don't really give you options on how to get to where you want to go | |
* other than "Click here to return to our front page." | |
* That approach is as bad as http://xkcd.com/869/ | |
* Sadly, this page doesn't do anything fancy like list other articles. | |
- A WordPress multisite database loaded on your Vagrant box, accessible at
vagrant.dev
with the IP address 192.168.33.10 (See yourVagrantfile
and/etc/hosts
) - WordPress already installed and configured on your Vagrant box
- WP-CLI installed on your Vagrant box
- The main site of your network is
network.org
and the project site isproject.org
- If you do not possess admin credentials for the network, we will create a new admin, whose username is
admin
and whose password ispassword
. - If you want to be able to undo this, run
vagrant plugin install vagrant-vbox-snapshot
from the Vagrant host. To take a snapshot, runvagrant snapshot take default [optional-name-for-snapshot]
. Take one before starting, and then at the start of every major section here.
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
#!/bin/sh | |
# copied from http://zeroset.mnim.org/2013/03/14/sftp-support-for-curl-in-ubuntu-12-10-quantal-quetzal-and-later/ | |
mkdir /tmp/curl | |
cd /tmp/curl | |
sudo apt-get update | |
sudo apt-get install build-essential debhelper libssh2-1-dev | |
apt-get source curl | |
sudo apt-get build-dep curl | |
cd curl-* | |
dpkg-buildpackage |
OlderNewer