All Questions

1
answer

Install Laravel Site on Windows Server

I've never had this experience of putting a website on the air using Windows Server 2012 on Locaweb. I placed the site in a folder called 'sitenovo'. And when I run the site, it does this:    HTTP Error 500.0 - Internal Server Error   C: \...
asked on 02.07.2016 / 16:50
1
answer

How to model in a correct way

I have the following table structure: First: Is this modeling right? Second: is there any way to improve? Reduce the number of tables? The system will work as follows: Each Candidate has a Professional Purpose. And each Profess...
asked on 26.06.2016 / 22:20
1
answer

How to handle requirements that "mix" domain and interface?

Whenever I develop some software I try to leave the domain model without being influenced by issues relating to other layers of the application such as general technologies and interface issues. In fact, the domain model contains a code templ...
asked on 08.07.2016 / 04:35
1
answer

How to fit a Lowess curve into longitudinal data using R?

I have the following data: structure(list(X26 = c(1.69, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), X27 = c(0.94, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N...
asked on 20.06.2016 / 16:31
1
answer

Get the name and date value (using datepicker), and then calculate using only (JQUERY),

$(function () { $("#datepicker").datepicker({ }); }); <body> <form id="formu"> Nome:...
asked on 30.06.2016 / 16:36
1
answer

Passing model via parameter dynamically in .NET MVC

I created this function to generate a handle (or slug , as you prefer) for the model users, the problem is that I would like to make it more "modular", so I can easily implement in any other model you also need to generate a handle...
asked on 24.06.2016 / 18:41
2
answers

Legend on bookmarks in google maps

I created a dynamic map that displays multiple markers as per the query specified by the user. When I click on the marker, the information bubble usually appears with the data that I requested it to appear. So far so good! But, I need to display...
asked on 20.06.2016 / 23:41
1
answer

How to configure Require.JS

Hello people, I'm in doubt to set up RequireJS correctly, but I also have doubts about organizing Trees to set baseUrl and so I'll demonstrate how I'm setting up: . ├── index.html ├── js │ ├── boot.js │ ├── main.js │ ├──...
asked on 06.07.2016 / 04:56
1
answer

Definitely solve problems with strange characters in Java

I had a problem and resolved it as follows: javac -encoding UTF-8 nomedoarquivo.java How can I make this command set for all files already?     
asked on 04.07.2016 / 06:41
1
answer

JPA return from the Many side of an entity @OneToMany using @OrderBy

I have the following Cliente entity that has Pedidos . The relationship between clients and requests is mapped with Cliente @OneToMany and Pedidos @ManyToOne . What I need is for the Customer Requests list to be sorted by...
asked on 15.08.2018 / 15:30