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
| %sh | |
| # Install Node.js + npm (example for Ubuntu-based environment) | |
| sudo apt-get update && sudo apt-get install -y nodejs npm | |
| # Or use nvm: | |
| curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bash | |
| source ~/.nvm/nvm.sh | |
| nvm install 18 | |
| nvm use 18 | |
| npm install -g @anthropic-ai/claude-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
| class Coordinator | |
| { | |
| UID id | |
| Bank fromBank | |
| Bank toBank | |
| bool fromBankPrepared | |
| bool toBankPrepared | |
| bool committed | |
| bool jobDone |
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
| SaxParser.h | |
| class SaxParser | |
| { | |
| friend class apsdk::StreamSaxParser; | |
| protected: | |
| virtual bool endElement(); | |
| } |
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
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "copyFormatting": "none", | |
| "copyOnSelect": false, | |
| "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
| // Add custom keybindings to this array. | |
| // To unbind a key combination from your defaults.json, set the command to "unbound". | |
| // To learn more about keybindings, visit https://aka.ms/terminal-keybindings | |
| "keybindings": | |
| [ |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Drawing; | |
| using System.IO; | |
| using System.Windows.Forms; | |
| namespace ConcurVisual | |
| { | |
| static class Program | |
| { |