When you read about software architecture on the web, sometimes the term spaghetti code is used, referring to something that should be avoided. >
But I never quite understood what "spaghetti code" means.
I'm trying to make the user, by clicking on the link received via email, be redirected to a specific view of my app. It would be something like: 'myapp: // app-custom-path'. I'm using Ionic. Could someone give me a light?
I have a query that brings me the first 3 letters of the name of a month with the last two digits of the year for example: JAN.16 in my combobox it brings me months independent for example: JAN.16 FEV.16 ... and on and on.
I wanted the combob...
Hello.
I'm learning procedures and I have a question:
DELIMITER $$
CREATE PROCEDURE 'atualiza_telefone' (IN telefone INT)
BEGIN
IF (telefone IS NULL) THEN
SELECT * FROM cliente;
ELSE UPDATE cliente
SET telefone = "4444-4444"
WHERE seg...
A WAR project that I'm trying to use base to run mvn archetype:create-from-project causes the following exception stack after trying to read one of the .java files:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-ar...
I remember that there used to be a Safari for Windows, which does not receive any updates, but even with it it was necessary to have an Apple developer license, at the time it was free to develop pro safari (I think it is still enough to access...
How to make pseudo predictions out of the sample, through rolling regressions and with moving window containing 50 observations, for t = 51 to 100? One of the forecasts should be made from an AR (1). Another will be made from a random walk, that...
Since the word let was introduced in ECMAScript I have only heard about it, so far I have not seen any practical examples and to be honest I do not know very well what a let variable is and how it behaves. The only thing I unders...
Is it possible to link between two different databases in one Migration? I'm using Postgres.
What I have:
$table->integer('id_cliente_produto')->unsigned();
$table->foreign('id_cliente_produto')->references('id_cliente_produto')...