- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 7
- Posts with Upvotes
- 5
- Upvoting Members
- 3
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Re: I don't remember how I found daniweb. I think it was a year ago clicking on search result on google. The website actually caught my eyes immediately. I really liked the design and the interactivity. I also was welcomed by a site admin named dani. I didn't know she is … | |
Re: 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 … | |
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!! | |
Re: 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 … | |
Re: /* ################################################## 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 … | |
Re: 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 … | |
Re: 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 … |