Posts by Gean Saturno • 51 points
4 posts
-
1
votes3
answers9800
viewsA: How to keep a server nodejs running permanently?
Redirect the stream to a log file node app.js > log.txt & To make it even better, create a service to start the api:…
-
1
votes2
answers620
viewsQ: Where em Join - Sequelize
Hello, I want to do a search within several tables, for example: SELECT * from tab1 INNER JOIN tab2 ON tab1.tab2_id = tab2.id WHERE tab1.name LIKE '%blabla%' or tab2.title LIKE '%blablabla%' How…
-
2
votes3
answers16157
viewsA: Automatically load content when you reach the bottom of the page
$(document).ready(function(){ $(document).scroll(function() { var bottomDiv = $('#div-alvo').height() + $('#div-alvo').offset().top; var bottomWindow = $(window).height() + $(window).scrollTop());…
-
1
votes0
answers391
viewsQ: Request in Twitter API using Jquery and Ajax
I’m trying to get the data from a Twitter page, unsuccessful so far. I got the access token through the PHP Controller, and I intend to use it to make requests. var token = 'Bearer <?php echo…