I hereby claim:
- I am gamussa on github.
- I am gamussa (https://keybase.io/gamussa) on keybase.
- I have a public key whose fingerprint is 1B76 A73D 0DCA 3B8F B09A 2027 EFC7 C238 C9E7 FE3C
To claim this, I am signing this object:
ApplicationContext applicationContext = | |
new GenericGroovyApplicationContext("classpath:config/appConfig.groovy"); |
package config | |
import com.farata.course.mwd.auction.data.DataEngine | |
import com.farata.course.mwd.auction.service.ProductService | |
beans { | |
xmlns([context: 'http://www.springframework.org/schema/context']) | |
context.'property-placeholder'(location: 'classpath:app.properties') | |
context.'component-scan'('base-package': "com.farata.course.mwd") |
task karma(type: Exec){ | |
workingDir "${project.webAppDirName}" | |
executable 'karma' | |
args 'start', '--single-run', 'true' | |
} | |
test { | |
doLast{ | |
tasks.karma.execute() | |
} |
runTest | |
"java.lang.AssertionError: Failed executing test test/script/basic/JDK-8048079_2.js | |
at jdk.nashorn.internal.test.framework.ScriptRunnable.runTest(ScriptRunnable.java:76) | |
at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:483) | |
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:80) | |
at org.testng.internal.Invoker.invokeMethod(Invoker.java:714) | |
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:901) | |
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1231) |
I hereby claim:
To claim this, I am signing this object:
Apr 22, 2014 11:27:24 AM org.apache.catalina.startup.ContextConfig parseWebXml | |
SEVERE: Parse error in application web.xml file at jndi:/localhost/MyApp/WEB-INF/web.xml | |
java.io.FileNotFoundException: Could not resolve XML resource [null] with public ID [null], system ID [generated/djn-settings.inc] and base URI [jndi:/localhost/ClearShar/WEB-INF/web.xml] to a known, local entity. | |
at org.apache.tomcat.util.descriptor.LocalResolver.resolveEntity(LocalResolver.java:136) | |
at com.sun.org.apache.xerces.internal.util.EntityResolver2Wrapper.resolveEntity(EntityResolver2Wrapper.java:176) | |
at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.resolveEntityAsPerStax(XMLEntityManager.java:985) | |
at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.startEntity(XMLEntityManager.java:1199) | |
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEntityReference(XMLDocumentFragmentScannerImpl.java:1907) | |
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentConten |
# vim:ft=zsh ts=2 sw=2 sts=2 | |
# | |
# Based on agnoster's Theme - https://gist.github.com/3712874 | |
# A Powerline-inspired theme for ZSH | |
# | |
# # README | |
# | |
# inspired by blog of Remy Sharp http://remysharp.com/2013/07/25/my-terminal-setup/ | |
# | |
# In order for this theme to render correctly, you will need a |
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
sleep 1 | |
done |
Based on Sitepen’s TypeScript Cheat Sheet
1 | 2 |
---|