Vasily Chinarev

Results 10 comments of Vasily Chinarev

Having the same issue. Started a new project and configured it in .scala file like this: ``` scala import sbt._ import Keys._ object IntegrationBuild extends Build { lazy val root...

Yep. I have a JDK named "1.7" configured, but it seems that gen-idea adds another JDK named "1.7 (2)" and it is somehow misconfigured... Here's a screenshot. ![2013-04-30 18 32...

It isn't by default, and date inputs don't do that. You can play with it on [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date) and see for yourself. This is how Firefox handles `0` in month: Input's...

@kalp2525 What do you get, when you input `0` in month part of the input?

I've checked FF 110.0 on macOS and Windows. Both give me this: Maybe this behaviour is locale-related? I'm on `ru_RU`

Given https://github.com/facebookincubator/create-react-app/issues/1065 this feature would be indeed awesome.

I used to get that error when some columns of returned cursor contained explicit uncasted NULL. CAST (NULL as the type of the column) should help (if you have control...

My problem was solved when I changed `select ..., NULL from DUAL` to `select ..., CAST (NULL AS VARCHAR2)) from DUAL`

Is there any solution to this? Removing `node_modules` and `package-lock.json` didn't help.