Skip to content

Instantly share code, notes, and snippets.

View aaronj1335's full-sized avatar
🤠

Aaron Stacy aaronj1335

🤠
View GitHub Profile
java.lang.NoSuchMethodError: com.android.tools.idea.gradle.util.Projects.requiredAndroidModelMissing(Lcom/intellij/openapi/project/Project;)Z
at com.google.idea.blaze.android.run.BlazeAndroidRunConfigurationValidationUtil.validateModule(BlazeAndroidRunConfigurationValidationUtil.java:76)
at com.google.idea.blaze.android.run.binary.BlazeAndroidBinaryRunConfigurationHandler.validate(BlazeAndroidBinaryRunConfigurationHandler.java:146)
at com.google.idea.blaze.android.run.binary.BlazeAndroidBinaryRunConfigurationHandler.checkConfiguration(BlazeAndroidBinaryRunConfigurationHandler.java:135)
at com.google.idea.blaze.base.run.BlazeCommandRunConfiguration.checkConfiguration(BlazeCommandRunConfiguration.java:238)
at com.intellij.execution.impl.RunnerAndConfigurationSettingsImpl.checkSettings(RunnerAndConfigurationSettingsImpl.java:432)
at com.intellij.execution.impl.RunnerAndConfigurationSettingsImpl.checkSettings(RunnerAndConfigurationSettingsImpl.java:427)
at com.intellij.execution.impl.RunManagerImpl.lambd
Executing tasks: [:app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies]
Configuration on demand is an incubating feature.
google-services plugin could not detect any version for com.google.android.gms, default version: 8.3.0 will be used.
please apply google-services plugin at the bottom of the build file.
Incremental java compilation is an incubating feature.
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
+---------------------------+---------+
| Gem | Version |
+---------------------------+---------+
| jekyll | 3.0.3 |
| jekyll-sass-converter | 1.3.0 |
| jekyll-textile-converter | 0.1.0 |
| kramdown | 1.10.0 |
| rdiscount | 2.1.8 |
| redcarpet | 3.3.3 |
| RedCloth | 4.2.9 |
import postcss from 'postcss';
import customProperties from 'postcss-custom-properties';
import {reduce} from 'lodash';
import LineToLineMappedSource from 'webpack-core/lib/LineToLineMappedSource';
export default function() {
this.plugin('compilation', function(compilation) {
compilation.plugin('optimize-chunk-assets', function(chunks, callback) {
compilation.assets = reduce(compilation.assets, (assets, asset, name) => {
if (/\.css$/.test(name)) {
Gem Local GitHub
jekyll 2.4.0 2.4.0
jekyll-coffeescript 2.0.1 1.0.1
jekyll-sass-converter 1.2.0 1.2.0
kramdown 1.5.0 1.5.0
maruku 0.7.0 0.7.0
rdiscount 2.1.7 2.1.7
redcarpet 3.1.2 3.1.2
RedCloth 4.2.9 4.2.9
liquid 2.6.2 2.6.2
@aaronj1335
aaronj1335 / github-pages.txt
Created May 30, 2015 19:58
github-pages output
astacy∂ƃuɐqzıʍ ☠ ~/code/austinjavascript.github.io 02:54:35 May30
§ github-pages health-check
Checking domain austinjavascript.com...
Everything looks a-okay! :)
astacy∂ƃuɐqzıʍ ☠ ~/code/austinjavascript.github.io 02:55:21 May30
§ github-pages versions
+-----------------------+---------+
| Gem | Version |
+-----------------------+---------+
{
"name": "admin-app",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "true",
"dev": "./bin/dev.js",
"build": "./bin/build.js"
},
function Button() {}
Button.prototype = {
color: 'blue',
border: '1px solid black'
};
// use classical inheritance or something like functional mixins to replicate
// the cascading nature of stylessheets
function ButtonActive() {}
ButtonActive.prototype = Object.create(Button.prototype);
var inUseFilterIds = {};
var start = Date.now();
function elapsed(start) {
return (Date.now() - start) / 1e3;
}
print('creating lookup of in-use filter id\'s');
db.broadcast.find().forEach(function(broadcast) {
module.exports = {
listenTo: function(other, event, callback) {
other.on(event, callback, this);
this._eventEmitters = this._eventEmitters || [];
this._eventEmitters.push([other, event]);
},
componentWillUnmount: function() {
(this._eventEmitters || []).forEach(function([other, event]) {
other.off(event, null, this);