- https://do512family.com/this-weekend/
- https://freefuninaustin.com/
- https://library.austintexas.gov/events/calendar
- https://www.westbanklibrary.com/calendar/
- https://www.bookpeople.com/event
- https://www.altedaustin.com/calendar/
- https://austinfamily.com/events/#!/
- https://www.austinchronicle.com/columns/day-trips/
- https://www.instagram.com/austinwithkids/?hl=en
Currently considering https://github.com/webdriverio/webdrivercss
Core Goals:
- Can test in up-to-date versions of all major browsers
- Can test on up-to-date versions of all major OSes
- Can test in IE9 (because Bootstrap v4 will support IE9+)
- Don't want to have to setup/maintain our own cluster of VMs running all the necessary OSes (and all the versions of Windows)
- Workflow for management of reference/baseline/norm screenshots
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 | |
// This script prepends the elapsed time for each entry of an Ansible log | |
// file (see: http://stackoverflow.com/q/34211898/147937 for inspiration and | |
// additional background information). This script is intended to be used | |
// only on the "TASK:" lines from the logs. For example: | |
// $ grep "TASK:" ansible.log | php ~/tansible.php | |
while(!feof(STDIN)) { | |
$line = fgets(STDIN); | |
$exploded_line = explode(' ', $line); | |
if (isset($exploded_line[1])) { |
- drupal.org
- Drupal Planet - latest blog posts from a wide variety of people working with Drupal
- API documentation
- general developer documentation
- Examples for Developers - small example modules that demonstrate how to work with various APIs
- Writing secure code
- Security advisories
Stash | ←→ | Workspace★ | ←→ | Index (or “Staging” or “Cache”) | ←→ | Local Repository | ←→ | Remote Repository |
italics | variable |
[brackets] | optional argument |
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/bash | |
# Follow the steps below to configure Quickstart as a continuous integration appliance, complete with Jenkins, | |
# Selenium Builder, Selenium Server, PHPUnit, and Selenium Zoetrope. The script also configures and runs an | |
# example Jenkins test job for Quickstart's example6.dev site, including Simpletest module testing and | |
# Coder module checks. | |
# | |
# 1. Download Quickstart and follow the installation instructions: | |
# http://drupal.org/project/quickstart | |
# 2. Open a Terminal window (Applications > Accessories > Terminal) and run the following command: |
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
javascript: | |
(function(){ | |
/*@author Matt Vance (borrowing heavily from Pablo Cantero's pageChangesNotifier.js - https://gist.github.com/751586) */ | |
var xmlHttp=getXMLHttpObj(); | |
if(xmlHttp==null){ | |
alert('Failed to load XMLHTTP'); | |
return; | |
} | |
var actual=getPageContent(xmlHttp,window.location.href); | |
switch(actual){ |