I wanted to get a VM configured quickly for building Craft sites, this is what I did:
https://puphpet.com/#deploy-target
I want a local VM working with Vagrant + VirtualBox.
| runtime macros/matchit.vim | |
| set mouse=a | |
| :imap jk <Esc> | |
| :set relativenumber | |
| set t_Co=256 | |
| syntax on | |
| colorscheme Tomorrow-Night |
| def something | |
| puts 'awesome' | |
| end |
| # Ability to put ^ in validation messages to override the prefix | |
| gem "custom_error_message" |
| from bs4 import BeautifulSoup | |
| import requests | |
| story_qty = int(raw_input('How many stories do you want to get? ')) | |
| page = 1 | |
| story_count = 0 | |
| stories = [] | |
| # Get the data to filter for a given page | |
| def getPageData(): |
I wanted to get a VM configured quickly for building Craft sites, this is what I did:
https://puphpet.com/#deploy-target
I want a local VM working with Vagrant + VirtualBox.
| <ul id="todo-list"> | |
| <script id="metamorph-3-start" type="text/x-placeholder"></script><script id="metamorph-0-start" type="text/x-placeholder"></script> | |
| <li class="" data-bindattr-1="1"> | |
| <input type="checkbox" class="toggle"> | |
| <label><script id="metamorph-4-start" type="text/x-placeholder"></script>Learn Ember.js<script id="metamorph-4-end" type="text/x-placeholder"></script></label><button class="destroy"></button> | |
| </li> | |
| <script id="metamorph-0-end" type="text/x-placeholder"></script><script id="metamorph-1-start" type="text/x-placeholder"></script> | |
| <li class="" data-bindattr-2="2"> | |
| <input type="checkbox" class="toggle"> | |
| <label><script id="metamorph-5-start" type="text/x-placeholder"></script>...<script id="metamorph-5-end" type="text/x-placeholder"></script></label><button class="destroy"></button> |
| <?php | |
| /** | |
| * General Configuration | |
| * | |
| * All of your system's general configuration settings go in here. | |
| * You can see a list of the default settings in craft/app/etc/config/defaults/general.php | |
| * | |
| * Current as of Craft 1.3.2473 | |
| */ |
| {exp:channel:entries | |
| channel="procedures" | |
| disable="{global:disabled_params_strict}" | |
| dynamic="no" | |
| orderby="title" | |
| sort="asc"} | |
| {if count == '1' OR count == '4' OR count == '7'} | |
| <ul class="navGlobal_desktop-list"> | |
| {/if} |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
| /** | |
| * ExpressionEngine - by EllisLab | |
| * | |
| * @package ExpressionEngine | |
| * @author ExpressionEngine Dev Team | |
| * @copyright Copyright (c) 2003 - 2011, EllisLab, Inc. | |
| * @license http://expressionengine.com/user_guide/license.html | |
| * @link http://expressionengine.com |