klaude is a drop-in wrapper for claude that routes all model calls through
MiniMax (MiniMax-M2.7) instead of Anthropic, using the Anthropic-compatible API.
Regular claude is untouched — both commands coexist independently.
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
| error: Failed to generate GraphQLQuery impl: Could not find file with path: /Users/heitor/Developer/github.com/ernesta-tech/shopify-apps/extensions/custom-size/../schema.graphql | |
| Hint: file paths in the GraphQLQuery attribute are relative to the project root (location of the Cargo.toml). Example: query_path = "src/my_query.graphql". | |
| --> src/main.rs:5:1 | |
| | | |
| 5 | / generate_types!( | |
| 6 | | query_path = "../input.graphql", | |
| 7 | | schema_path = "../schema.graphql" | |
| 8 | | ); | |
| | |_^ |
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
| Compiling international-account-ext v1.0.0 (/Users/heitor/Developer/github.com/ernesta-tech/shopify-apps/extensions/custom-size) | |
| error: Failed to generate GraphQLQuery impl: Could not find file with path: /Users/heitor/Developer/github.com/ernesta-tech/shopify-apps/extensions/custom-size/./schema.graphql | |
| Hint: file paths in the GraphQLQuery attribute are relative to the project root (location of the Cargo.toml). Example: query_path = "src/my_query.graphql". | |
| --> src/main.rs:7:1 | |
| | | |
| 7 | / generate_types!( | |
| 8 | | query_path = "./input.graphql", | |
| 9 | | schema_path = "./schema.graphql" | |
| 10 | | ); |
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
| export const usePagination = ({ | |
| total, // Total of elements in the Query | |
| numberOfElements = 12, // Number of elements per Page | |
| pagesToDisplay = 6, // Pages to be displayed in the component | |
| currentPage = 1, // Current Page | |
| pageLinkRule = (pageNumber) => { // Function to generate the links | |
| return `/page/${pageNumber}`; | |
| }, | |
| }: { | |
| total: number; |
High Performance Configuration for Jetbrains IDEs [IntelliJ, WebStorm, etc..]
Once you step into the realm of multi-project development, large scale dev, or just have to have like 6 IDE's open. You really start to feel a performance hit on jetbrains IDEs.
This configuration aims to give at least 10x performance increases across the board.
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
| # Generated by Powerlevel10k configuration wizard on 2019-09-08 at 16:02 -03. | |
| # Based on romkatv/powerlevel10k/config/p10k-lean.zsh, checksum 20097. | |
| # Wizard options: nerdfont-complete + powerline, small icons, lean, time, 2 lines, | |
| # solid, sparse, many icons, concise. | |
| # Type `p10k configure` to generate another config. | |
| # | |
| # Config for Powerlevel10k with classic powerline prompt style. Type `p10k configure` to generate | |
| # your own config based on it. | |
| # | |
| # Tip: Looking for a nice color? Here's a one-liner to print colormap. |
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
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/Users/heitor/.oh-my-zsh" | |
| # Set name of the theme to load --- if set to "random", it will | |
| # load a random theme each time oh-my-zsh is loaded, in which case, | |
| # to know which specific one was loaded, run: echo $RANDOM_THEME | |
| # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes |
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
| #Help | |
| COMMANDS="Node -> nodeglobalinstall\nPackage Managers Update -> updaterepo\nApp Install -> ninite\niOS Sim Rec Video -> recsim nomeVideo.mp4\nFlush DNS -> flushdns\nClearbluetooth -> bluetoothRestart" | |
| alias helpAlias="printf \"$COMMANDS\"" | |
| #NODE | |
| NPM_PACKS="@quasar/cli @vue/cli @vue/cli-service-global @vue/devtools capacitor cordova electron eslint global ios-deploy ios-sim jscs jshint jslint ncu ndb netlify-cli nodemon now npm npm-check-updates prettier start-android-emulator ts-node tslint typescript vue-language-server" | |
| alias updaterepo="npm update -g && brew update && brew upgrade" | |
| alias nodeglobalinstall="npm install -g $NPM_PACKS" | |
| alias listNodeModules="find . -name 'node_modules' -type d -prune" | |
| alias pruneNodeModules="find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +" |
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
| source ~/.profile | |
| export PATH="/usr/local/sbin:$PATH" | |
| #ANDROID | |
| # Create a JAVA_HOME variable, determined dynamically | |
| export JAVA_HOME=$(/usr/libexec/java_home) | |
| # Add that to the global PATH variable | |
| export PATH=${JAVA_HOME}/bin:$PATH | |
| # Set Android_HOME |
NewerOlder