David J. Y. Tang
David J. Y. Tang
I'm working in a npm project. package.json is not bumped as well. standard-version: 7.0.1 I tried using a fresh `npm init`ed project. version bumping works correctly. Now I turn to...
Weird. I think I found the reason. Let's say my project name is `dassai`. The generated artifact is `dassai-1.2.3`. I don't want to accidentally commit the artifact and naturally my...
Just a hunch. I wonder what happens if you removed the entire `.gitignore` file.
https://stackoverflow.com/questions/8051516/how-to-establish-a-tcp-socket-connection-from-a-web-browser-client-side > Allowing regular socket connections directly from the browser is never going to happen because it opens up a huge risk. WebSockets is about as close to raw sockets...
Same here... Sorry about pasting long error message. Result of running `gradle build`: ``` java.lang.NoClassDefFoundError: org/springframework/web/WebApplicationInitializer at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:763) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) at java.net.URLClassLoader.defineClass(URLClassLoader.java:467) at java.net.URLClassLoader.access$100(URLClassLoader.java:73) at java.net.URLClassLoader$1.run(URLClassLoader.java:368) at...
My colleague released that if you remove this line from your gradle build, ``` - apply plugin:"eclipse" ``` this error will be gone.
I also encountered `E11000 duplicate key error index` error when making a new MongoClient after closing a old MongoClient using the same connection string. Once I change the port number...