If you are looking to learn #JavaScript or just understand it a little bit more in-depth, "The little JavaScript #book" by @gagliardi_vale got you covered. Totally recommended: well detailed, great examples and, most importantly, it's also fun to read: https://t.co/YgqWxt4gy5 📚
Writing CSS? Wondering why the code you wrote isn’t doing anything? Wait, er, or…? Wait what?
Wouldn’t it help if DevTools would just tell you — “Hey this doesn’t do anything. Here’s why & how to fix it.” Yup.
Firefox 70, shipping tomorrow, does this.
https://t.co/L8enUe49Ye
How do you evaluate your experience as an engineer in a tech company? What do you value the most? Is it technical challenges, technology being used, learning opportunities, culture or benefits/compensation?
Please RT
#tech#recruitment#employment
I published a new article on my blog "Lean NPM packages" to talk about some strategies that can help you to keep your NPM modules small and make the whole node_modules drama more bearable - https://t.co/Wlb2o9ODTp
Please RT if you like it :)
If you are using frameworks such #Vuejs, #React or #ember and find yourself using document.getElementById (or other DOM selectors), you should either go back to #jquery or seriously forget about it!
RSVPs have opened for our next meetup on Tuesday August 6th, hosted and sponsored by @AccentureDock 🙌
We have three talks lined up: hacking a PlayStation4, performant JS and how to write a bundler.
RSVP here 👉 https://t.co/7wTuTOTWqH
recursive async function generators + delegated yield is awesome:
async function * pages (n, to) {
yield await fetchPage(n)
if (to >= n) return
yield * pages(n + 1, to)
}
async function run () {
for await (const p of pages(0, 10)) console.log(p)
}