FROM --platform=linux/arm64 node:12-alpine
WORKDIR /app
COPY . .
RUN npm install --omit=dev
EXPOSE 3000
CMD["node", "start"]
Various finance tips to increase your passive income sources
- Finviz (Site)
- Select Insider
- Buy and Sell Information
- Syllaby.io (What questions people are searching for) - Generate a viral video script
- Stack it with Synthesia.io, and you can take the script from Syllaby, choose one of their video templates, paste the script in, and boom!
- And if you want to take it one step further, stack it with Repurpose.io
This is a tool to automate CI/CD of projects on Github Documentation
- File stays in .github/workflows
name: nameOfTheActionService (Java CI with Gradle)
This file contains hidden or 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
// num represents the no of element needed in sub-array whose total is equal to targetSum | |
function anyNumberSum(array, targetSum, num = 3) { | |
// write your code here | |
const hash = {} // = {'1': [], '2': [], '3': []} | |
let nArr = Array.from({length: num}, (v, i) => { | |
hash[i+1] = {} | |
return i + 1 | |
}) | |
nArr = nArr.reverse() | |
nArr.shift() |