Saeed Nemati
Saeed Nemati
I'm using Selenium and Titanium Web Proxy to capture some AJAX calls with specific patterns. I'm using `BeforeResponse` handler and check `e.HttpClient.Request.RequestUri`. I constantly find a button on the page...
I used your sample and autoplay is not working. I'm using next.js. Here's a simple [codesandbox](https://codesandbox.io/s/brave-bush-5bj6xd?file=/pages/index.js) using your example. I have this error in my console: > The service worker...
I'm using your library to play YouTube videos. I'm using it inside a next.js app. Here's my code: ``` const PlayeYoutube = ({ videoCode }) => { const [_window, setWindow]...
I have a lot of websites and web apps. I'm using `.local` as my development TLD. For example: - shop.local - user.game.local - api.geo.local - admin.cars.local - investor.brokerage.local - ......
Hi I have been using `mkcert` for some months now and everything was working great. However, today I suddenly saw the `NET::ERR_CERT_AUTHORITY_INVALID` error. I have not changed `mkcert` anyhow. I...
**Marked version:** 2.1.3 **Describe the bug** I'm using `marked` in my `next.js` app. I have this code: ``` const fs = require('fs'); const marked = require("marked"); var content = fs.readFileSync('/sample/markdown/file.md',...
### I'm trying to create an authentication package (module) using `jwt-auth` that can be reused across all of my applications. But I receive errors. ### Your environment | Q |...
Hello. Thank you for this great library. Simply run this code: var singular = "Databases".Singularize(); The result would be "Databasis". I just thought to report it back so you may...
Hello guys. I use this `docker-compose.yml` to setup a SQL Server docker container on `Debian GNU/Linux 10 (buster)`: ``` version: "3.9" services: database: image: mcr.microsoft.com/mssql/server:latest user: root container_name: OrganizationDatabases volumes:...
Hi I want to migrate from CRA to Vite. 1. Create a simple Vite app using its react template. 2. Install `eventemitter3` 3. Inside `App.jsx` add this line to the...