Claude finished @geastwood's task in 1m 5s —— View job
- Understand request (rewrite with more visuals and user focus)
- Produce updated summary and test plan
Claude finished @geastwood's task in 1m 5s —— View job
| **Claude finished @geastwood's task in 1m 5s** —— [View job](https://github.com/geastwood/workfold/actions/runs/22131991389) | |
| --- | |
| ### What's New in Expenses — Feb 18, 2026 | |
| - [x] Understand request (rewrite with more visuals and user focus) | |
| - [x] Produce updated summary and test plan | |
| --- |
| Linking my account geastwood on GitHub with my 0x3edb7060fc184424aeab05afd142f50464406f87 on Ethereum in social-linker-webapp.ci.litentry.io, and the challenge code is: 5001b02b4b9fc2c989b95d31adecdf4e. |
| sequenceDiagram | |
| autonumber | |
| participant U as User | |
| participant E as Browser Extension | |
| participant B as MCP B/E | |
| U-)E: Hover on "Profile picture" | |
| E-)B: relay twitter account to B/E | |
| alt Perform checks |
| sequenceDiagram | |
| autonumber | |
| participant U as User | |
| participant E as Browser Extension | |
| participant M as MCP App | |
| participant B as MCP B/E | |
| participant T as Twitter | |
| U-)E: Trigger "Set Profile Picture" | |
| E-)M: Redirect to MCP App |
With this document, we intend to communicate with the community about the Governance App development progress (Milestone 1, original proposal can be found here). This document is divided into the following sections to allow reader to quickly navigate:
Implementing Deeplink will help improve user experience in native application. E.g. when you have a nice native app and a product link on the web can be only seamlessly in the native mobile app for better illustration.
| # ZSH | |
| autoload -U add-zsh-hook | |
| # place default node version under $HOME/.node-version | |
| load-nvmrc() { | |
| DEFAULT_NODE_VERSION=`cat $HOME/.node-version` | |
| if [[ -f .nvmrc && -r .nvmrc ]]; then | |
| fnm use | |
| elif [[ `node -v` != $DEFAULT_NODE_VERSION ]]; then | |
| echo Reverting to node from "`node -v`" to "$DEFAULT_NODE_VERSION" |
| #!/bin/bash | |
| # | |
| # NOTE: specify the desired level of logging. | |
| # | |
| # - none, debug, warn, error | |
| # | |
| chunkc core::log_level error |
| bare clone | |
| create a folder with name new_bare_clone.git | |
| cd new_bare_clone.git | |
| git init --bare | |
| To push to this branch | |
| git remote add origin "ssh://root@88.81.24.209/~/repos/to/folder" | |
| From a local to push up |