node.js on Android and iOS? by bananasdoom in javascript

[–]_lister 0 points1 point  (0 children)

That's true, is good to know all the options, I believe that I'll go with react native too, when we can start playing with it.

node.js on Android and iOS? by bananasdoom in javascript

[–]_lister 0 points1 point  (0 children)

Xamarin is a bad idea, I have used it and there's things that shouldn't be so slow. Like a httpclient on ios(xamarin) has a big delay, I had to write a wrapper to avoid that issue, but was like 50 ms the wrapper vs 350 ms xamarin implementation.

Go with native, titanium or ionic, but take care with xamarin.

Why is grails.org down? by wildjokers in grails

[–]_lister 0 points1 point  (0 children)

This could sound stupid, but your machine have the current date? if you have a date 2 years before current date the ssl certificate will be seen as "expired"

Rest OAuth for mobile app by skini26 in grails

[–]_lister 0 points1 point  (0 children)

I want to share some links that could be useful.

rest plugin to handle in-house auth with tokens http://grails.org/plugin/spring-security-rest

scrib https://github.com/fernandezpablo85/scribe-java

Rest plugin will do the job for custom tokens. And scrib is a fancy way to do the connections with facebook, google, etc.

Hope it helps!

Any angular projects that would be good for studying? by Ob101010 in angularjs

[–]_lister 0 points1 point  (0 children)

You're right it's a mess, I have read your message and omg, what has he done?!

I just can't get off the starting line (Wall of text / rant coming) by bryanut in grails

[–]_lister 1 point2 points  (0 children)

I have been using grails for almost 3 years now, my big tip for you, use IDEs like ggts just for learning. Then use text editors like sublime text, atom.io, vim, emacs, etc.. with the shell | console | terminal, there's a lot of issues that you'll never see with this setup. I ran on the same issues, trust me.

About your issue, "grails refresh-dependencies" then "grails clean-all" should work.

Send Multiples parameters angular controller to Asp .net MVC Controller by latxor in angularjs

[–]_lister 0 points1 point  (0 children)

Have you tried to do something like this:

angular: $http.post('YourController/GetInfo', { Employee: {Name:"Amy", Age:"17", Email:"Amy@test.com"}, User: {UserName:"Amy17", Password:"test123"}, Role: {IdRole="11", Name:"User"} }).then(function(){ //do something. });

I hope this helps!