Posts
 
Reputation
Joined
Last Seen
Ranked #722
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
75% Quality Score
Upvotes Received
5
Posts with Upvotes
4
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
~947 People Reached
Favorite Tags
Member Avatar for Williams Brown

I will also like to add apps for developers/designers/product managers. Any app that makes the life of those easier. that include code editors, chat apps, Code Search Tools, Code Deployment Tools, Project Management tools and so on... take for example [ngrok](https://ngrok.com/) - a tool that can expose local servers behind …

Member Avatar for john_378
2
174
Member Avatar for Naor

Do you have experience with similarweb. It's a company that collect data about websites. do you know how they count bot traffic? I mean if you have a website with 500k montly visits? DO similarweb filter bot traffic from this number? Any input on this matter will help. Thanks!!

Member Avatar for becketharper585
0
126
Member Avatar for borobhaisab

The fragment identifier introduced by a hash mark # is the optional last part of a URL for a document. if you already have a website with # navigation, means your website already works with # navigation, You can just embed your iframe with the url and the iframe will …

Member Avatar for Naor
0
160
Member Avatar for Dani

/* ################################################## First of all Does waitUntil block your response? ################################################## The waitUntil do not block the response. It accepts a Promise-based task which the Workers runtime will execute before the handler terminates but without blocking the response. For example, this is ideal for caching responses or handling logging or …

Member Avatar for Naor
0
127
Member Avatar for Virat_4

seems like quora does not have an api to solve your requirements. however, you can solve your problem using [puppeteer](https://www.npmjs.com/package/puppeteer) i wrote few automated tasks before with puppeteer + nodejs. Puppeteer is a Node.js library which provides a high-level API to control Chrome/Chromium. You can use your local computer to …

Member Avatar for Naor
0
237
Member Avatar for Virat_4

I think you meant to do something like this // first write your function that return a promise function isCorrect (x,y) { return new Promise(function (resolve, reject) { if(x===20 && y===20){ resolve(`your numbers are good`); }else{ reject(`your numbers are wrong`); } }); } // then you can call your function …

Member Avatar for Naor
0
65