Posts by João Carlos • 83 points
6 posts
-
3
votes1
answer167
viewsQ: Git - Pull/Push with different repositories
I have a project that sends to 2 repositories at the same time using the same remote, example: [remote "origin"] url = https://gitlab.com/teste.git url = http://bitbucket.org/teste.git In this type…
-
2
votes1
answer48
viewsQ: Bitbucket management
Hello. I work in a company where to manage the projects we have a Bitbucket account that we treat as an administrator, and in addition each of the employees has their own account. All projects must…
-
0
votes2
answers880
viewsQ: End loop when an entry is empty
I have the following situation: A repeat loop that asks for name, and 2 notes, where the data input should end when an empty name is read, but in the way below the second time the program runs the…
-
1
votes0
answers68
viewsQ: What are Specifications, Frameworks and Interfaces?
Recently I started to study and research a little bit about Java EE, and some of the most appearing terms are: Specifications Frameworks and Interfaces I read about it, but I’m still confused.…
-
-2
votes1
answer208
viewsQ: What are DAO, MB, TO, SERVICE, MODEL, CONVERTER and HELPER classes?
In the projects of the company in which I work I see several classes with these appointments, as I am beginner in programming I’m not sure what they mean. Could you clear me of that doubt ?
-
1
votes3
answers3098
viewsQ: Use return of a function in another function
I have a function in Python that takes a text and returns 2 lists, one with all the words that appear and the other returns is the number of times each word appears. def frequencia(lista): conv =…