I am generating PDF's of the data I have in a table in my client, I send the data to the server and there the PDF is generated. After it is ready, the PDF is downloaded, and it is at this stage of the process that it corrupts.
However, if bef...
I'm having a javascript code to remove accents, it works with any accent, except with the crass, and by code it should work with kernel as well. I can not find the bug.
var teste = "Çaptúra de Tela 2016-04-27 às 18.21.24.png à à";
function...
I would like to get today's date, and subtract it 7 days. Remember that if we are on day 2 for example, you should subtract 1 from the month. The same applies to the year.
Unfortunately, I only found examples that fit for a specific day, and...
I am trying to pass certain values from a input through the POST method using Angular, however I am not able to pass those values in the URL and not even get them on the server. Could someone help me solve this problem?
Detail, for eac...
I'll get two dates, Example: 10/01/2017, 10/31/2017. How can I create an array with every day between those dates.
Array = ["01/10/2017", "02/10/2017", "03/10/2017", ... ,"31/10/2017"]
Folks, I installed the node normally and added to the environment variable; I did some math to test and it worked. When I tried to install modules (socket.io and express) it did not work, even running as administrator. I tried to check the comma...
I have a date in the format of string:
Wed Jul 20 2016 14:01:01 GMT-0300 (BRT)
And I would like to extract the date and the days and the time in such a way that I can form a string like this:
Quarta-Feira, 20-07-2016 as 17:01...
Talk to people, good morning, I have a legacy code and I'm having the following difficulty:
When I try to check a word that has a single quotation mark I get this error ORA-01756
Ex: raphael me'lo
Now when I try:
Ex: raphae...
I started porting Node.js recently and I'm using the division of logic into modules. I have UserSessionController that validates if the user session is still valid:
module.exports.getUserSession = function ( userToken ) {
mod...