How do you manage the development of an application that is replicated to multiple clients?
My scenario:
One web application and 2 apps (1 for iOS and 1 for Android). For each client the base (master) is reused and specific resources...
I'm using mod_rewrite to rewrite the url, but I'd like to leave it fixed, eg:
www.meusite.com.br/index.html
www.meusite.com.br/produtos.html
www.meusite.com.br/contato.html
Ficar apenas:
www.meusite.com.br
How can I do this?
I'm developing the NFE in the Python language, I already generate the XML, I can send it to Webservice and I get the answer, what I need now is the digital signature
The signature is an xml tag with some values, follow the template
<NF...
A palindrome is a word or phrase that has the property of being read from right to left or from left to right. For example, strings "aaaaa" , "1221" , "bbaabb" are palindromes, however the string "chef" is not a palindr...
I'm trying to insert data into the database, but I have an error doing saveChanges(); after doing context.add() several times, it's happened after 500, 2200, and 5500 times.
Error:
The transaction associated with the current...
I'm migrating from a dbExpress system to FireDAC , the system is in three tiers >), I have changed components on the server side from SQLConnection to FDConnection , and SQLDataset to FDQuery , on the client side t...
I have two tables / entities in the database with the following attributes:
Car (code, plate, color)
Accessory (code, description).
public Carro buscarCarroComAcessorio(Long codigo) {
return (Carro) em.createQuery("select c from Carro...
I am creating a class that looks for database data to be displayed.
For example, one of the functions of the class is to pick the date, from a die, in the bank and display it on the screen. The way I'm doing, it's not working.
Follow my code...
I am developing a project with php and I decided to use R for statistical calculations.
But I'm not sure how to do this integration. If there is a "design pattern" for situations like this.