Posts by cido18 • 325 points
15 posts
-
0
votes2
answers175
viewsQ: Doubt Gem Devise
Hello, I’m using Gem Aim for a project of my own and a question has arisen, how do I leave only one route free, for example I want all other routes need login and password less the main page. I did…
-
1
votes2
answers66
viewsQ: Symbols on the Rails
After creating a template in Rails it is possible to change the created Symbol? For example I created a template called transaction, Rails creates plural transaction but I would like to change this…
-
0
votes1
answer89
viewsA: How to find the coordinates of a click on the Babylon.js site?
Hello, There is the onPointerDown event in Babylon where you can catch the events follows the documentation and a example. I hope it helps.…
-
0
votes1
answer85
viewsA: Start Devtools with custom options in Electron
Hello, From what I saw in the documentation of Electron loads all devtools, the most you can do is add some extension, maybe you have one that uses only the console:…
-
3
votes0
answers717
viewsQ: Error using npm in Windows 10
I have a problem when I will try to start an application using nodejs in Windows 10. Every time I use any npm command (except -v) the following error is displayed Error: Cannot find module 'verror'…
-
2
votes0
answers154
viewsQ: Data Field Returning Undefined
I am trying to capture a value of a component using Angularjs 1.X, but of the class that created only a date field is not being filled the same returns Undefined. Follow my controller:…
-
0
votes1
answer498
viewsQ: Serialization Localdatetime
I am trying to serialize an object that has a date with the Localdatetime class using Spring Boot, but the following error: 2016-10-09 18:28:26.218 WARN 17395 --- [ XNIO-2 task-2]…
-
1
votes0
answers48
viewsQ: Error using TDD with Ruby
Hello, I’m starting to study about TDD with Ruby on Rails and I’m following a tutorial from Nando Viera[1], but when trying to run a rake:test:Units the following error is returned:…
-
7
votes2
answers2506
viewsQ: Creating two projects in a single Git repository
I am creating a project in Java web and want to create another project on Android. But I would like to create only one repository and within it own these two projects with their respective trees…
-
0
votes2
answers56
viewsA: Matcher be_true ruby/rspec
Answer: Which version of Rspec are you using? You can try be_truthy if you are Rspec 3. - @Bruno dos Santos
-
1
votes2
answers56
viewsQ: Matcher be_true ruby/rspec
I’m starting to study about ruby/rspec by following a book, but I’m not making progress using the matcher be_true. Follow below the error: BagOfWords#push is possible to put words on it (FAILED - 1)…
-
4
votes1
answer1064
viewsQ: Unit tests on Android
How to test unit on Android? How far I searched is only possible to use the framework Robotium. There is another way to test unit on Android?…
-
0
votes2
answers816
viewsA: Address conversion on Google Maps
I found the answer (delayed but found!). Android has a class called Geocoder, that allows you to make these conversions. You also need to give permission to access the internet and GPS:…
-
1
votes2
answers816
viewsQ: Address conversion on Google Maps
I’m making an App to search addresses on Google Maps. Is there any way to convert a String in Location, so I can take longitude and latitude? Or is there a better way?…
-
1
votes1
answer411
viewsQ: Actionbar and Splitactionbar on Android
I’m trying to create an Android application with a menu at the top and one at the bottom. Searching I found the SplitActionBar but when I use it the whole part of ActionBar is in the footer. It is…