Boot up with an Fedora Live USB stick.
- Run
vgsto check if there's any space:
$ sudo vgs
VG #PV #LV #SN Attr VSize VFree
fedora 1 3 0 wz--n- <237.28g 0 | Some Jenkinsfile examples |
| default['sshd']['sshd_config']['AuthenticationMethods'] = 'publickey,keyboard-interactive:pam' | |
| default['sshd']['sshd_config']['ChallengeResponseAuthentication'] = 'yes' | |
| default['sshd']['sshd_config']['PasswordAuthentication'] = 'no' |
A list of topics to study before implementing a large and scalable React + Redux application.
| #!/usr/bin/env bash | |
| # Works fine on Ubuntu 14.0.4 LTS | |
| NGINX_VERSION="1.9.9" | |
| NCHAN_VERSION="0.97" | |
| HEADERS_MORE_VERSION="0.29" | |
| DEV_KIT_VERSION="0.2.19" | |
| ECHO_VERSION="0.58" | |
| FANCY_INDEX_VERSION="0.3.5" |
| <?php | |
| /** | |
| * Sync Groups from WordPress to Discourse | |
| * | |
| * First creates 'groups' meta_key (which should be customized to your needs) | |
| * Then it monitors for changes in the 'groups' meta_value and connects to Discourse API to sync groups | |
| * | |
| * WordPress References | |
| * https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/meta.php?order=name#L235 | |
| * http://wordpress.stackexchange.com/questions/16835/how-to-hook-update-post-meta-and-delete-post-meta |
| import os | |
| import pytest | |
| from alembic.command import upgrade | |
| from alembic.config import Config | |
| from project.factory import create_app | |
| from project.database import db as _db |