All Questions

1
answer

How to implement a LOG of updates with ASP.NET MVC?

I would like ideas on how to implement a generic update LOG in DB (Entity Framework 6+) that would allow me to discover information such as: System user X on date Y changed name and date of birth (from, to) in the customer registry. I think i...
asked on 16.06.2014 / 14:03
1
answer

Execution flow of a try / catch / finally block

How does the execution flow in a try/catch/finally block work in the example below? public class ExceptionTest { public static void makeException() throws ExceptionAlpha, ExceptionBeta, ExceptionGamma { throw new Exception...
asked on 02.08.2014 / 18:40
4
answers

How to execute a PHP function in the background?

I'm using the cPanel API to add dynamically parked domains. So far so good, I send the required data via jQuery.post() only this process takes a while to complete, about 1 minute. Are there any alternatives for the process to continue...
asked on 12.08.2014 / 06:06
1
answer

Javascript function declaration [duplicate]

What are the differences in declaring a function in these two ways: Mode 1 var funcao = function() { // ... }; Mode 2 function funcao() { // ... } What are the advantages and disadvantages of each?     
asked on 03.09.2014 / 22:43
1
answer

How do I make a ListView with components next to the text in each row?

Several current Androids systems have menus like the example below: PleasenotethatanywhereItapmyblueareaunder"Access to my location" it turns the switch on and off and enables or disables the block under "Location Sources" and also does the...
asked on 16.07.2014 / 15:51
1
answer

htaccess for web.config

I moved my site to the Windows Azure platform and their server is IIS and my old one was apache so the routes configured in htaccess are not working, I need to know how to convert this: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-...
asked on 27.06.2014 / 15:34
2
answers

Event fires only second, after sequence of user actions

I have a form where there is a table. At the bottom of this, there are buttons to manipulate the rows of the table, and only the selected ones will be affected. StepstoReproduceProblem jsfiddle to check the problem result of fiddle to t...
asked on 17.05.2014 / 01:31
1
answer

Float rounding in C

I need to return a value float with 1 decimal place, however it is returning with the value rounded. I have the following code: float n1 = 4; float n2 = 9; float total = n2 / n1 ; printf("Media: %.1f ", total ); //aqui, o resultado é 2....
asked on 23.05.2014 / 20:21
2
answers

What is a domain class?

What is a domain class? Why "domain"? Are there methods that it should not have (which is not of its function to have certain type of method)? Does it support what types of methods?     
asked on 14.05.2018 / 17:04
1
answer

What is the size limit of IndexedDB technology?

Today at work, I mentioned the IndexedDB technology to solve a problem here in the company, but there were several doubts, one of them being: What is the limit of data that can be stored in an IndexedDB? Still related as DB dime...
asked on 21.08.2018 / 16:41