Posts by André Corrêa • 56 points
3 posts
-
1
votes1
answer408
viewsA: Problems with the Instagram API?
There’s a logic error. You’re just picking up the first post of each page. The attribute date of json is a array, sure is to iterate on it before making a new request to the next page.…
-
2
votes2
answers862
viewsA: Converting String to Date and adding days to a specific date.
For handling dates consistently recommend Moment.js (http://momentjs.com/). If I understand your question correctly, you take the date of a text field. I will assume here that your date is in…
-
1
votes4
answers3935
viewsA: Automated tool to join multiple style sheets (CSS) into 1 and to join Scripts (JS) into 1 Sheet only
A few days ago I’m using a tool called Gulp, which in a simple way you can create tasks to automate this build process. One of the most common tasks is to concatenate both JS and CSS files, which is…