function sumNumbersInNestedArray(inp: any) {
let cache = 0;
const sumRecursive = (args: any) => {
if (Array.isArray(args)) {
for (let i = 0; i < args.length; i++) {
sumRecursive(args[i]);
}
} else if (!isNaN(args)) {
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Terms of Service | |
Last updated: 9/19/2024 | |
1. Acceptance of Terms | |
By accessing or using umanager1 ("the App"), you agree to be bound by these Terms of Service ("Terms"). If you do not agree, please refrain from using the App. | |
2. Description of Service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Last updated: 9/19/2024 | |
1. Introduction | |
Welcome to umanager1 ("we," "us," or "our"). We are committed to protecting your personal information and your right to privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our application to manage your Facebook and Instagram accounts and pages. | |
2. Information We Collect | |
Personal Information: When you register or log in through Facebook or Instagram, we collect your name, email address, profile picture, and other information made available by these platforms. | |
Usage Data: We collect information on how you interact with our app, including features used, pages viewed, and actions taken. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"id":"1","title":"Go shopping"},{"id":"2","title":"Job interview"},{"id":"3","title":"Prepare homework"}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**Privacy Policy** | |
Tomas Valkai built the Event after call app as a Free app. This SERVICE is provided by Tomas Valkai at no cost and is intended for use as is. | |
This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. | |
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. | |
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Event after call unless otherwise defined in this Privacy Policy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REACT_APP_API_URL=/api | |
REACT_APP_PROXY_URL=http://www.omdbapi.com | |
REACT_APP_API_KEY=1505579 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='utf-8'> | |
<meta name='viewport' content='width=device-width'> | |
<title>Privacy Policy</title> | |
<style> body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; padding:1em; } </style> | |
</head> | |
<body> | |
<strong>Privacy Policy</strong> <p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" https://stackoverflow.com/questions/13239464/create-a-new-file-in-the-directory-of-the-open-file-in-vim | |
set autochdir | |
call plug#begin('~/.vim/plugged') | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
" {{{ | |
" CoC extensions | |
let g:coc_global_extensions = ['coc-tsserver'] | |
" Remap keys for applying codeAction to the current line. | |
nmap <leader>ac <Plug>(coc-codeaction) |
/**
* Add string to a specified line to a string
*
* https://stackoverflow.com/questions/30764424/insert-string-at-line-number-nodejs
*
* @param {*} prevText String
* @param {*} lineNumber Number
* @param {*} data String
*/