All Questions

1
answer

Relationship between RUP and Agile Methodologies

I see some books considering RUP as agile and others not. The more traditional books do not consider it agile, which sounds more correct because historically it did not appear in the "boom" of the agile manifesto and there are sister metologies...
asked on 10.05.2017 / 15:15
1
answer

Background in JDesktopPane without losing quality and expandable

I have code to add a background image to a JDesktopPane and it works perfectly on 16:10 widescreen screens. However, when the screen is a bit wider (16: 9), it does not fill the rest of the background. I've seen some other possible ways t...
asked on 16.05.2017 / 14:56
1
answer

GIT Change branch without committing or discarding current changes

I need to send my current changes to another branch. When giving git checkout branch-name it asks me to commit or change the current changes, I do not want any of these options. How can I proceed?     
asked on 18.05.2017 / 22:44
1
answer

Select with YEAR and MONTH together

Is it possible to combine the year and the month together, and to pass the 20017-06 to the select? SELECT SUM(valor) FROM contas where YEAR(data) = '2017' and MONTH(data) = '06'     
asked on 06.06.2017 / 00:21
1
answer

Doubt with JavaScript arrow function

In the code below, the showName() method will of course return undefined , as it will fetch a name property in the scope where the obj is inserted. My question is, in that case would I have to use a conventional function, the ar...
asked on 01.06.2017 / 22:23
1
answer

Visual Studio Indentation Configuration

I'm starting to program C # in VS (if someone knows a better IDE, thank you) and it has a quirk that's pissing me off: I use the key indentation as follows: for(;;){ //code } But VS , when you enter with the keys together (for (;;)...
asked on 10.05.2017 / 04:09
1
answer

Trigger for update before insert

My database has two tables, the notification and the service, as the image shows. Inthenotificationtablethedefaultstatusvalueis"open." I tried to do a trigger that updates the default status "open" to "on-call" after a new call is entered...
asked on 16.06.2017 / 22:03
2
answers

Web server on Go apparently is not creating new requests

I'm now starting to develop in Go, and I'm currently studying Go for Web development, so through examples I've started a simple server in Go: package main import ( "fmt" "log" "net/http" "time" "github.com/gorilla/mux" ) var Nome...
asked on 14.06.2017 / 20:13
2
answers

LinkedIn profile plugin on website

Dear, I would like to add my LinkedIn profile to my site made in HTML, I thought it was just copying the code generated in the link: link , but adding it after <body> nothing happens. Would anyone know how to include the correct wa...
asked on 05.06.2017 / 21:38
1
answer

Get properties of a class with condition. C # [closed]

I would like to get the properties of my Parent object, but would not like to get the property (States) from my Country class. I tried the way it is in the "Test" class and I could not because I did not know the Type that is the IEnumerable....
asked on 08.06.2017 / 22:40