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
claude | |
╭────────────────────────────────────────────────────────────────────╮ | |
│ ✻ Welcome to Claude Code! │ | |
│ │ | |
│ /help for help, /status for your current setup │ | |
│ │ | |
│ cwd: /Users/harathom/workplace/external/sculpt-code/AIWorkbench │ | |
╰────────────────────────────────────────────────────────────────────╯ | |
Tips for getting started: |
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
let's create 6 pages for a web application/website that showcases "favorite" / curated products that people want to share with the world. there should be a landing page, then a detail page (for each product that is featured with upvote/downvote indicators, the main product image, some description, some product images/video (similar to an amazon detail page). there should also be an editor page for this particular product detail page. and then an account page and settings pages | |
I'll create a comprehensive 6-page web application for showcasing curated products. This will include a landing page, product details with voting, an editor, account management, settings, and a browse page. Let me start by building the core structure with routing and components. | |
I've created a comprehensive 6-page web application for showcasing curated products. The application includes a landing page with featured products, detailed product pages with voting functionality, a browse page with filtering and sorting, a product editor for |
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
keyconfig_version = (4, 2, 66) | |
keyconfig_data = \ | |
[("Mesh", | |
{"space_type": 'EMPTY', "region_type": 'WINDOW'}, | |
{"items": | |
[("transform.translate", {"type": 'G', "value": 'PRESS'}, None), | |
("transform.rotate", {"type": 'R', "value": 'PRESS'}, None), | |
("transform.resize", {"type": 'S', "value": 'PRESS'}, None), | |
("transform.translate", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG'}, None), | |
("transform.bend", {"type": 'W', "value": 'PRESS', "shift": True}, None), |
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
alias ls='ls -G' | |
alias l='CLICOLOR_FORCE=1 ls -altrh' | |
alias gloa='git log --all --oneline --graph --decorate' | |
alias gs='git status' | |
# history | |
if [ -z $HISTFILE ]; then | |
HISTFILE=$HOME/.zsh_history | |
fi | |
HISTSIZE=100000 | |
SAVEHIST=100000 |
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
"shortcuts" : { | |
"bottomCenterSixth" : { | |
"keyCode" : 8, | |
"modifierFlags" : 786432 | |
}, | |
"bottomHalf" : { | |
"keyCode" : 43, | |
"modifierFlags" : 786432 | |
}, | |
"bottomLeft" : { |
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
[ | |
{ | |
"key": "shift+cmd+j", | |
"command": "-workbench.action.search.toggleQueryDetails", | |
"when": "inSearchEditor || searchViewletFocus" | |
}, | |
{ | |
"key": "shift+cmd+j", | |
"command": "revealInExplorer" | |
}, |
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
{ | |
"search.exclude": { | |
"env": true, | |
"src/*/build": true, | |
"build": true, | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/*.code-search": true | |
}, | |
"typescript.updateImportsOnFileMove.enabled": "always", |
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 started out looking for recent TUI/CLI tools in Node for something.. | |
# This is queue pass #1 one of the BFS.. | |
# Queue pass #2 will be reviewing | |
https://former2.com/ | |
https://aws.github.io/copilot-cli/ | |
https://github.com/mafintosh/why-is-node-running | |
https://github.com/unjs/changelogen | |
https://github.com/flutter/pinball | |
https://github.com/SaraVieira/next-fullstack-starter |