Sekedus

Results 27 comments of Sekedus

This only works if [deploying project from Vercel CLI](https://vercel.com/docs/cli/deploying-from-cli)

This solution worked for me: ```json { "functions": { "api/index.php": { "runtime": "[email protected]" } }, "rewrites": [ { "source": "/(.*)", "destination": "/api/index.php" } ] } ``` And change node.js version...

Check repo/code size with [Shields.io badges](https://github.com/badges/shields). Example from repo [@sparticuz/chromium](https://github.com/Sparticuz/chromium): - Repo size: ![GitHub repo size](https://img.shields.io/github/repo-size/sparticuz/chromium) - Code size: ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/sparticuz/chromium) ㅤ info: - [.git/objects/pack](https://apple.stackexchange.com/a/452444/539756) - [Difference...

Go to https://webmaker.app/create/ Old video howto: https://youtube.com/watch?v=BSeCjcn4QAw

Check [#504 comment](https://github.com/vercel-community/php/issues/504#issuecomment-2024215402)

As an alternative, you can use [Kiwi Bowser](https://kiwibrowser.com/) which supports extensions. Or, add [userscripts](https://www.tampermonkey.net/scripts.php?locale=en) to Via Browser: **Menu** > **Settings** > **Scripts** ㅤ

This bug is not from Acode, it is related to [ajaxorg/ace #2869](https://github.com/ajaxorg/ace/issues/2869). I've made a pull request there: [#5675](https://github.com/ajaxorg/ace/pull/5675) You can test **search** & **replace** with `\n` or `\t` on...

Check docs: [https://databackupofficial.github.io/en/intro/get-started.html](https://github.com/DataBackupOfficial/DataBackupOfficial.github.io/blob/631699040ecdb583bcd6191b341e027d417b4d55/docs/en/intro/get-started.md)

**Solution**: If token exists, use [fetchPrivateFile](https://github.com/download-directory/download-directory.github.io/blob/3f7b711be698fd5c46596ddd6c226b37ec2b7958/download.ts#L90-L96) ```diff + const token = localStorage?.getItem('token'); const fileRequest = { user, repository, reference, file, signal, }; const localDownload = async () => - isPrivate...