cats addict.A dreamer seeking a life time adventure.i fall in love with mentalities & souls.

Joined May 2016
3 Photos and videos
“MERN Stack Mastery Guide“ What is MERN Stack? #mern #stack #developer #guid Read this story from Abida Alalawi on Medium: aabi.medium.com/mern-stack-m…
25
I just published A Beginner’s Guide to Creating a REST API Using Node.js and Express link.medium.com/AMWwyUytKCb #API #node #express #javascript
3
37
Nodejs is a #JavaScript runtime built on Chrome's V8 JavaScript engine. It allows developers to run Js on the server side creating server-side applications with js. In this article Iam creating our own HTTP web server using #NodeJS n HTTP built-in module link.medium.com/7Fn0rjteXzb
1
40
#NodeJS fs.readFile() method This method read the entire file into buffer. fs.readFile('file.txt', 'utf-8', function(err, data) { if (err) throw err; console.log(data); }); #utf8 #method #node link.medium.com/7gAIDDgzMzb
2
42
A step-by-step guide to how to become nodejs developer 👇 #NodeJS #javascript #developers link.medium.com/KjEQMjsSFzb

40
Abidaalwi retweeted
2 Mar 2023
React useState hook 🪝 #publishedwithscattr #scattr
If you’re new to React or want to learn more about using the useState hook, be sure to check out the resources available I just published React useState Hook link.medium.com/G3JtCiyIMxb #react #hooks #reacthook #usestate #reactjs
1
4
5
232
If you’re new to React or want to learn more about using the useState hook, be sure to check out the resources available I just published React useState Hook link.medium.com/G3JtCiyIMxb #react #hooks #reacthook #usestate #reactjs
1
3
275
Abidaalwi retweeted
29 Dec 2022
Replying to @Blogger_Aabi
@Blogger_Aabi has written an article on cross-posting with Scattr. Do read the article and enjoy sharing your thoughts, insights and knowledge. aabi.medium.com/cross-postin… #Scattr #crossposting
3
4
108
Abidaalwi retweeted
Hey everyone! Exciting news🎉🎊 We're launching @ScattrHq in early beta 🚀 Scattr is the ultimate article cross-posting tool for you, If you're a content writer or someone who loves to share your thoughts and learning in the form of articles. Scattr.io

14
17
76
7,285
Abidaalwi retweeted
🥹🥹
We weren't sure whether to go ahead with the Figma for Developers session today or not, considering @designerdada's health, but I am so glad we all pulled this off! Thank you to each & every one of you who showed up! It means a lot to us. Many more to come from @PeerlistHQ 🙌🏼
1
3
Abidaalwi retweeted
13 Oct 2022
🤔How to Write Your First Blog Post? ✍️Writing a blog gets easier the more you practice. It’s important to focus on churning out your first blogs and doing it right. Then, you can get into the rhythm of regularly creating blog content that is high quality and engaging. 🧵👇TPs
1
2
4
Abidaalwi retweeted
13 Oct 2022
6. Choose your tone and voice 7. Add strategic links 8. Add images, video, and interactive content 9. Encourage comments and feedback And Don’t Rush 😅 #scattr #BloggingTips
1
1
3
Abidaalwi retweeted
13 Oct 2022
Join waitlist @ Scattr.io and Start Preparing for being a PRO Blogger
2
5
Javascript #Oneliners I came across an article while was reading and found out some JavaScript one-liners. That means while #JavaScript development, we can actually do some tasks with just a single line for each. Here's a list of 5 of them I found really beneficial.
1
1
5 Check if a string is in uppercase - In this case, you just do a checking if the provided string is in uppercase.
1
In return you will get a true or false value based on the result. So you use this code. const checkUpperCase = (str) => str =str.toUpper Case() In case of lowercase, you can just tweak this above code to the one below: const checkUpperCase (str) => str == str.toLowerCase()