- Shoutouts (Optional Thank You's / Recognition) - If anyone went above and beyond, let them know!
- Red (Stop / need help) - List out areas that have been challenging. This could include projects, tasks, workload, or challenges with Podmates . What didn’t work well this week? What can be done differently next week?
- Yellow (Use caution) - Provide context on areas of improvement. This could include projects, tasks, workload, or challenges with Podmates . What can be improved upon for next week? What resources and tools could you use to reach success?
- Green (All Good!) - Highlight What some of your successes were. What has gone well this week? Give examples of your weekly wins! This could include projects, tasks, or successes in teamwork.
Paircast helps developers automatically document their code by aligning a screen cast with their code changes.
Everything I say as well as my code changes are transcribed (into markdown) right next to my video. Just watch as I ended this Swift file.
Code.exe > demo.swift - demo - Visual Studio Code
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
| import { IExecuteFunctions } from 'n8n-core'; | |
| import { | |
| INodeExecutionData, | |
| INodeType, | |
| INodeTypeDescription, | |
| } from 'n8n-workflow'; | |
| export class Gravatar implements INodeType { | |
| description: INodeTypeDescription = { |
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
| public | |
| src |
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
| const Tesseract = require('tesseract.js'); | |
| Tesseract.recognize( | |
| 'https://tesseract.projectnaptha.com/img/eng_bw.png', | |
| 'eng', | |
| { logger: m => console.log(m) } | |
| ).then(({ data: { text } }) => { | |
| console.log(text); | |
| }) |
