-
Create a separate Claude configuration directory and copy your existing setup into it:
mkdir -p ~/.claude-accounts/work cp -a ~/.claude/. ~/.claude-accounts/work/
This gives your work account its own settings, skills, status line, history, etc.
TLDR: Jump to Full Sample Coe to just see the final code.
I have a React + TypeScript + WatermelonDB project and want to:
I generally found WatermelonDB + TypeScript examples to be lacking, so I put together this brief example
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( |
| import 'package:flutter/material.dart'; | |
| import 'package:provider/provider.dart'; | |
| import 'dart:math'; | |
| void main() => runApp( | |
| ChangeNotifierProvider( | |
| create: (_) => ThemeProvider(), | |
| child: const MyApp(), | |
| ), | |
| ); |
| // https://gist.github.com/jonathan-beebe/a631492c6589b14d0c06fe846d266ff7 | |
| import UIKit | |
| // The vendor sandbox returns the following values for an `undefined` string value: | |
| // | |
| // - `""` | |
| // - `"None"` | |
| // - `null` | |
| // |
| using System; | |
| using System.Reflection; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| interface IRessetable | |
| { | |
| void Reset(); | |
| } |
Urgent Not Urgent
┌─────────────────────┬─────────────────────┐
│ │ │
│ │ │
Important │ Do First │ Do Later │
│ │ │
│ │ │
├─────────────────────┼─────────────────────┤
│ │ │
| ┌──────────────────────────┬──────────────────────────┐ | |
| Complex │┌───────────┐ │ ┌───────────┐│ | |
| ││ Engineer │ │ │ Architect ││ | |
| ▲ │└───────────┘ │ └───────────┘│ | |
| │ │ │ │ | |
| │ │ │ │ | |
| │ │ │ │ | |
| │ │ │ │ | |
| │ │ │ │ | |
| │ │ │ │ |