Skip to content

Instantly share code, notes, and snippets.

@JaKXz
JaKXz / crash.txt
Created July 24, 2015 02:25
github desktop crash
Date/Time: 2015-07-23 22:22:17 -0400
OS Version: 10.10.4 (Build 14E46)
Architecture: x86_64
Report Version: 21
Command: GitHub Desktop
Path: /Applications/GitHub Desktop.app/Contents/MacOS/GitHub Desktop
Version: Bae Branch (208.2)
Parent: launchd [1]
PID: 5838
@JaKXz
JaKXz / webdriver.log
Created June 10, 2015 04:59
Selenium webdriver standalone safari fail
22:37:28.512 INFO - Executing: [get text: 7 [org.openqa.selenium.remote.RemoteWebElement@7892774a -> unknown locator]])
22:37:28.530 INFO - Done: [get text: 7 [org.openqa.selenium.remote.RemoteWebElement@7892774a -> unknown locator]]
22:37:28.545 INFO - Executing: [delete session: 01363dfa-641f-4fdc-a906-7e5e1322416e])
22:37:29.119 INFO - Done: [delete session: 01363dfa-641f-4fdc-a906-7e5e1322416e]
22:37:29.315 INFO - Shutting down
22:37:29.316 INFO - Stopping Safari
22:37:29.384 INFO - Stopping server
22:37:29.384 INFO - Stopping server
22:37:29.391 INFO - Shutdown complete
22:37:29.391 INFO - Shutting down
@JaKXz
JaKXz / .hound.yml
Last active August 29, 2015 14:16
hound not using my .jshintrc :(
java_script:
config_file: .jshintrc
ignore_file: .js_ignore
@JaKXz
JaKXz / .editorconfig
Last active November 7, 2022 06:09
Starter for writing projects.
root = true
[*]
# Change these settings to your own preference
indent_style = space
indent_size = 2
# We recommend you to keep these unchanged
@JaKXz
JaKXz / Cordova-npm-error
Created June 24, 2014 00:56
After installing cordova (and installing cordova-lib explicitly) seeing this error when listing global packages.
npm ll -g cordova
glob error { [Error: EMFILE, readdir '/usr/local/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is']
errno: 20,
code: 'EMFILE',
path: '/usr/local/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is' }
glob error { [Error: EMFILE, readdir '/usr/local/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray']
errno: 20,
code: 'EMFILE',
path: '/usr/local/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray' }
glob error { [Error: EMFILE, readdir '/usr/local/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder']
@JaKXz
JaKXz / Gruntfile.js
Last active August 29, 2015 13:58
merged gruntfile not populating vendor js
// Generated on 2014-03-25 using generator-angular-fullstack 1.3.2
'use strict';
// # Globbing
// for performance reasons we're only matching one level down:
// 'test/spec/{,*/}*.js'
// use this if you want to recursively match all subfolders:
// 'test/spec/**/*.js'
module.exports = function (grunt) {
:proguardReleaseTest
Note: there were 12 duplicate class definitions.
Warning: org.apache.maven.artifact.ant.shaded.interpolation.EnvarBasedValueSource: can't find superclass or interface hidden.org.codehaus.plexus.interpolation.EnvarBasedValueSource
Warning: org.apache.maven.artifact.ant.shaded.interpolation.Interpolator: can't find superclass or interface hidden.org.codehaus.plexus.interpolation.Interpolator
Warning: org.apache.maven.artifact.ant.shaded.interpolation.InterpolatorFilterReader: can't find superclass or interface hidden.org.codehaus.plexus.interpolation.InterpolatorFilterReader
Warning: org.apache.maven.artifact.ant.shaded.interpolation.MapBasedValueSource: can't find superclass or interface hidden.org.codehaus.plexus.interpolation.MapBasedValueSource
Warning: org.apache.maven.artifact.ant.shaded.interpolation.ObjectBasedValueSource: can't find superclass or interface hidden.org.codehaus.plexus.interpolation.ObjectBasedValueSource
Warning: org.apache.maven.artifact.ant.shaded.
<?xml version="1.0" encoding="UTF-8"?>
<project name="My Project" default="help" xmlns:sonar="antlib:org.sonar.ant">
<!-- Define the SonarQube global properties (the most usual way is to pass these properties via the command line) -->
<property name="sonar.jdbc.url" value="jdbc:mysql://localhost:3306/sonar?useUnicode=true&amp;characterEncoding=utf8" />
<property name="sonar.jdbc.username" value="sonar" />
<property name="sonar.jdbc.password" value="sonar" />
<!-- Define the SonarQube project properties -->
<property name="sonar.projectKey" value="my-project" />