- Have you supported infrastructure for large scale websites before?
- What was your role on the team?
- What's something that you learned in the last year?
- What are you looking forward to learning?
- What would you say has been the biggest success in recent years?
- What has been most challenging?
- Did your team provide 24 hour support?
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
Licensed to the Apache Software Foundation (ASF) under one | |
or more contributor license agreements. See the NOTICE file | |
distributed with this work for additional information | |
regarding copyright ownership. The ASF licenses this file | |
to you under the Apache License, Version 2.0 (the | |
"License"); you may not use this file except in compliance | |
with the License. You may obtain a copy of the License at |
This file contains hidden or 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 | |
/** | |
* Configuration for "min", the default application built with the Minify | |
* library | |
* | |
* @package Minify | |
*/ | |
$dev = '/Users/christian.harden/WWW/site/NFL-site-web/src/main/webapp'; |
This file contains hidden or 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
// Running compass with the following flags during the talk | |
// $ compass watch -s expanded | |
//////////////////////////////////////////////////////////// | |
// 1. Difference between MIXIN and PLACEHOLDER | |
// A placeholder does not duplicate the CSS rules for each selector, but applies all selectors to one set of CSS rules by comma separating the selectors | |
// ex: .example1, .example2 { ... some css rules... } |
- Tell me about your current or last job and role?
- Are there any specific things you're looking for in your next position?
- Are you a specialist in any particular area of QA Engineering?
- Are there any areas of QA Engineering that are of particular interest to you learn?
- When is a good time for you to be involved in a project? (strategy? early technical analysis? after beta?)
- What are some common deliverables early on?
- What factors do you measure to gauge the level of "success" of a project?
- Your most recent relevant project:
This file contains hidden or 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
let isObject = (obj) => { | |
let type = typeof obj; | |
return type === "function" || type === "object" && !!obj; | |
}; | |
let deepExtend = (obj, ...args) => { | |
if (!isObject(obj)) { | |
return obj; |
This file contains hidden or 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
/* @flow */ | |
const compose = (...objects: *) => | |
objects.reduce((merged, current) => { | |
Object.keys(current).forEach(methodKey => { | |
if (typeof current[methodKey] === 'function' && merged[methodKey]) { | |
const mergedMethod = merged[methodKey]; | |
// eslint-disable-next-line no-param-reassign | |
merged[methodKey] = (...args) => { | |
const mergedResult = mergedMethod(...args); | |
const currentResult = current[methodKey](...args); |
This file contains hidden or 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
# change python version as needed | |
python_bin = $(wildcard ~/.pyenv/versions/3.6.9/bin/python3.6) | |
shell_src = $(shell echo *.sh) | |
.PHONY: shellcheck | |
shellcheck: ve | |
echo $(shell_src) | xargs shellcheck -x | |
.PHONY: ve | |
ve: |
OlderNewer