Sunday, 15 July 2018

Refactoring functions from es5 to es6

I have a script using nightwatch in nodejs...I've having the hardest time understanding es6 and how it applies to my script.I'm exporting these functions so I can use it in another file. https://ift.tt/2LaQYzX is the file I want to call the functions in. https://ift.tt/2LlaKFL the most part, I feel like all I need to change is add the arrow function rather than typing the function syntax? But I'm pretty lost.

Submitted July 15, 2018 at 07:09PM by ljheartless

Tired of typing `nvm use`? Here's a handy Bash alias!

https://ift.tt/2JpDHOU

Submitted July 15, 2018 at 02:57PM by d4nyll

Can anyone suggest good node online courses?

No text found

Submitted July 15, 2018 at 01:48PM by _shivam_

Node Twitter Bot setInterval Issue

I'm in the process of creating a Twitter Bot that tweets out a quote from a list every 8 hours through setInterval.I've set up https://zeit.co for the server. When I run the programme in the server, it tweets the first quote. However, it doesn't tweet anything else then moving forward, despite me setting setInterval (tweetIt) for every 8 hours.Complete beginner here working on first ever project so any advice would be greatly appreciated.tweetIt(); setInterval(tweetIt, 1000*60*60*8) function tweetIt() { const nextIndex = lastTweetIndex === quotes.length - 1 ? 0 : lastTweetIndex + 1; const status = quotes[nextIndex]; twitter.postTweet({ status }, errorCallback, data => { lastTweetIndex = nextIndex; console.log(`Just published: "${status}".`); }); }; app.listen(3000, function() { console.log('Naval quotes Twitter bot up and running!'); }); sendDM('Bot started!');

Submitted July 15, 2018 at 10:03AM by SocratesSeneca

Saturday, 14 July 2018

How to host a server for the MERN stack on my own computer?

I have my main computer and then a side laptop which gets almost no use, where do I get started on learning how to host my own server and have it run through a domain I already know?Any advice or help here would be greatly appreciated, thanks for any help in advance and i'll be in the commments

Submitted July 14, 2018 at 11:44PM by Coopertrooper7

Forums association with threads

Hey!So, i'm trying to create a simple forum with NeoGAF as model for practice, but i'm having a hard time trying to associate the forums with the created threads.I have 2 models, the thread model and forum model. When i access a forum i have a button to create a new thread in that forum but i don't know how to associate the thread to that forum.All my threads are inside /threads/ and forums inside /forums/ ... How i associate a particular thread to a particular forum so it can only appear in that particular forum page?Thanks!

Submitted July 14, 2018 at 09:50PM by mathowned

Logging into a website once and reusing the session using Request

https://ift.tt/2zEH9FF

Submitted July 14, 2018 at 07:32PM by laraveling