Documentar a estrutura, lógica de negócio e complexidade de cada projeto Access para planejar a modernização.
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
| Instructions | |
| You are an expert [SPECIFY DOMAIN: e.g., technical architect, business strategist, UX designer, data scientist]. | |
| Your task is to approach the following problem/task with deep expertise and systematic thinking. | |
| Process | |
| Step 1: Generate Options | |
| Silently generate 5-7 distinct, high-quality options or recommendations for [SPECIFY TASK/PROBLEM]. | |
| Each option should be: | |
| Clear and specific | |
| Actionable with concrete next steps |
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
| // code done with Claude Code ( no merits takens ) | |
| // based of https://github.com/Okm165/zkp_systems_workshops/blob/master/3_polynomial_commitment_scheme/src/main.rs | |
| // running: | |
| // go run main.go | |
| // Package main provides a simplified educational implementation of the FRI | |
| // (Fast Reed-Solomon Interactive Oracle Proof of Proximity) protocol in Go. | |
| // | |
| // This implementation is designed for teaching purposes to demonstrate the core | |
| // concepts of FRI, which is a foundational component in many modern STARK | |
| // (Scalable Transparent Argument of Knowledge) systems. |
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
| Your Neovim (`v0.11.2`) uses **Vim-Plug** with plugins in `~/.vim/plugged`: `coc.nvim` (LSP), `papercolor-theme` (theme), `fzf` (fuzzy finder), `tagbar` (code tags), `vim-go` (Go support, causing `noshellslash` error), `nerdtree` (file explorer), `vim-multiple-cursors` (multi-cursor editing), and `vim-solidity` (Solidity syntax). Config is in `~/.config/nvim/init.vim`, with settings for syntax, indentation, search, and `coc.nvim` mappings. No `~/.vimrc` or `init.lua`. | |
| **To reset and reinstall** (avoiding `vim-go`): | |
| ```bash | |
| cp -r ~/.config/nvim ~/.config/nvim.bak | |
| rm -rf ~/.vim/plugged ~/.local/share/nvim ~/.cache/nvim ~/.config/nvim | |
| curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| mkdir -p ~/.config/nvim && nvim ~/.config/nvim/init.vim | |
| # Paste: call plug#begin('~/.vim/plugged') | Plug 'preservim/nerdtree' | Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } | Plug 'junegunn/fzf.vim' | Plug 'vim-airline/vim-airline' | Plug ' |
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
| # I have a accounts.json. with [{account:"0xaddress_public_key",private_key:"0xprivate_key"},] | |
| # this creates the info I need to put on cdk-erigon to add balance to the accounts I want to simulate. | |
| import json | |
| # Load accounts data from JSON file | |
| with open('accounts.json', 'r') as f: | |
| data = json.load(f) | |
| # Create a dictionary to store the new formatted data | |
| formatted_data = {} |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.20; | |
| import "@openzeppelin/contracts/proxy/Clones.sol"; | |
| import "@openzeppelin/contracts/access/AccessControl.sol"; | |
| import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; | |
| /// @title MultiFactory Contract for creating clones of multiple implementations | |
| /// @dev Extends AccessControl and Initializable from OpenZeppelin | |
| contract MultiFactory is AccessControl, Initializable { |