Posts by tiagomac • 235 points
6 posts
-
0
votes1
answer131
viewsQ: Working with two different "remotes" with git
Would you like to know how I delete sensitive data (passwords and so on) from a remote repository commit, but keep it in another one? I explain: I have a repository on Github and another on Heroku,…
-
0
votes2
answers877
viewsQ: How to transform the value of a variable into the name of an object’s property?
I have this example of code: var a = 'foo'; var b = {a:'2'}; b.foo //undefined what I wish is that b.foo exists and returns "2" in this example, but when creating the variable "b" the variable "a"…
javascriptasked tiagomac 235 -
0
votes0
answers245
viewsQ: Doubt with JMS in Java and implementation
I need to do a simple Publisher/Subscriber in JMS, but I’m full of doubts about how it works since I don’t have much idea of the architecture nor the implementation in Java. From what I understand…
-
1
votes1
answer98
viewsQ: What is Actionbarsherlock for Android?
A former colleague used this framework/lib I do not know in a company project for Android and restricted the version to android 4.0+, but we need to run on Android version 2.3+... so I see no option…
-
5
votes1
answer1659
viewsQ: How to handle security in a REST application with Spring?
I would like to know how I could treat the security of a stateless REST application with Spring. Imagine that no user can access any content from /app/content if you have not identified first. There…
-
5
votes1
answer1582
viewsQ: How does authentication work in a stateless Restful environment?
My question is this:: Imagine 3 Tomcat servers (S1,s2,S3) and all 3 servers connect to a single sgbd server (s_bd1). The three Tomcat servers run an application that is of Restful and stateless…