🗑️ Remove unused and archived files across multiple directories and update project dependencies in package files
This commit is contained in:
254
.github/copilot-instructions.md
vendored
254
.github/copilot-instructions.md
vendored
@@ -2,24 +2,43 @@
|
|||||||
|
|
||||||
## Project Overview
|
## Project Overview
|
||||||
|
|
||||||
This is a hybrid workspace combining:
|
Hybrid workspace combining Obsidian-style knowledge management with code development. Uses Obsidian MD for VSCode extension (wiki-links, backlinks, graph view) alongside JavaScript/Python development tools.
|
||||||
|
|
||||||
- **Documentation**: Obsidian-style knowledge management with wiki-links, backlinks, and graph view
|
**Architecture**: Documentation lives in `/docs`, code in `/code`. GitDoc auto-commits on save (1s delay), auto-pushes after commit.
|
||||||
- **Code Development**: Bookmarklets, scratchpad code, and project prototypes
|
|
||||||
|
|
||||||
**Obsidian MD**: This workspace uses the Obsidian MD for VSCode extension, which provides Obsidian features inside VS Code including graph view, backlinks, and Obsidian command palette integration.
|
**Dual Obsidian Vaults**: Both `/docs/projects/memorypalace/` and `/docs/projects/pokemon-professor/` are independent Obsidian vaults edited in both native Obsidian and VS Code. These contain rich project-specific knowledge that can inform code implementations and provide context for related development work.
|
||||||
|
|
||||||
## Documentation Guidelines
|
## Critical Workflows
|
||||||
|
|
||||||
### Writing Style
|
### Bookmarklet Development
|
||||||
|
|
||||||
- Use clear, concise markdown
|
**Never use CommonJS or require()** - this project uses ES modules exclusively.
|
||||||
- Employ wiki-style `[[links]]` for connecting notes
|
|
||||||
- Include frontmatter metadata in notes (date, type, tags)
|
|
||||||
- Keep daily notes in `/docs/daily/` with format `daily-YYYY-MM-DD.md`
|
|
||||||
- Place evergreen concept notes in `/docs/concepts/`
|
|
||||||
|
|
||||||
### Note Structure
|
1. Write bookmarklets as **regular, readable JavaScript** in `/code/bookmarklets/`
|
||||||
|
2. Include JSDoc comments (they're stripped during generation)
|
||||||
|
3. Run: `npm run bookmarklet -- code/bookmarklets/your-file.js`
|
||||||
|
4. Generator ([code/utils/bookmarkletMaker.js](../code/utils/bookmarkletMaker.js)) handles:
|
||||||
|
- Comment removal (single/multi-line)
|
||||||
|
- Code minification
|
||||||
|
- IIFE wrapping: `javascript:(function(){...})();`
|
||||||
|
- Clipboard copying
|
||||||
|
|
||||||
|
Example bookmarklet structure:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
/**
|
||||||
|
* My Bookmarklet - Description
|
||||||
|
*/
|
||||||
|
const elements = document.querySelectorAll('a');
|
||||||
|
elements.forEach(el => {
|
||||||
|
el.style.backgroundColor = 'yellow';
|
||||||
|
});
|
||||||
|
alert(`Found ${elements.length} links!`);
|
||||||
|
```
|
||||||
|
|
||||||
|
### Documentation Workflow
|
||||||
|
|
||||||
|
Notes use Obsidian frontmatter and wiki-linking:
|
||||||
|
|
||||||
```markdown
|
```markdown
|
||||||
---
|
---
|
||||||
@@ -29,163 +48,92 @@ tags: []
|
|||||||
---
|
---
|
||||||
|
|
||||||
# Title
|
# Title
|
||||||
|
Content with [[wiki-links]]
|
||||||
## Overview
|
|
||||||
|
|
||||||
Brief summary
|
|
||||||
|
|
||||||
## Content
|
|
||||||
|
|
||||||
Main content with [[links]]
|
|
||||||
|
|
||||||
## Related
|
|
||||||
|
|
||||||
- [[other-note]]
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Code Development Guidelines
|
**File locations by type**:
|
||||||
|
- Quick captures → `/docs/fleeting/`
|
||||||
|
- Refined concepts → `/docs/concepts/`
|
||||||
|
- Project docs → `/docs/projects/`
|
||||||
|
- Daily notes → `/docs/daily/` (format: `daily-YYYY-MM-DD.md`)
|
||||||
|
|
||||||
### Bookmarklets (`/code/bookmarklets/`)
|
### Module System (CRITICAL)
|
||||||
|
|
||||||
- Write as regular Node.js-compatible JavaScript files
|
**ES modules only** - `package.json` has `"type": "module"`:
|
||||||
- Use modern ES6+ syntax, let/const, etc. (will be minified)
|
|
||||||
- Include JSDoc comments for documentation (removed in final bookmarklet)
|
|
||||||
- Write clear, readable code - the generator handles minification
|
|
||||||
- Use descriptive variable and function names
|
|
||||||
- Test logic in Node.js if possible before converting
|
|
||||||
|
|
||||||
**Conversion Process:**
|
```javascript
|
||||||
|
// ✅ Correct
|
||||||
|
import fs from 'fs';
|
||||||
|
import { fileURLToPath } from 'url';
|
||||||
|
export default myFunction;
|
||||||
|
export { helperFunction };
|
||||||
|
|
||||||
1. Write bookmarklet as normal `.js` file in `/code/bookmarklets/`
|
// ❌ Never use
|
||||||
2. Run: `npm run bookmarklet -- code/bookmarklets/your-file.js`
|
const fs = require('fs');
|
||||||
3. Generator automatically:
|
module.exports = myFunction;
|
||||||
- Removes all comments
|
```
|
||||||
- Minifies code
|
|
||||||
- Wraps in IIFE: `javascript:(function(){...})();`
|
|
||||||
- Copies to clipboard
|
|
||||||
4. Paste into browser bookmark URL field
|
|
||||||
|
|
||||||
### Scratchpad Code (`/code/scratchpad/`)
|
## Project-Specific Conventions
|
||||||
|
|
||||||
- This is experimental space - be creative
|
### File Naming
|
||||||
- Add `TODO:` comments for work in progress
|
- Markdown: `kebab-case.md`
|
||||||
- Use descriptive variable names
|
- JavaScript: `kebab-case.js`
|
||||||
- Include usage examples
|
- Python: `snake_case.py`
|
||||||
- Python: Follow PEP 8 style
|
- Templates in `/code/templates/` show module patterns
|
||||||
- JavaScript/TypeScript: Use modern ES6+ syntax
|
|
||||||
|
|
||||||
### Code Style
|
### Git Commits
|
||||||
|
GitDoc auto-commits, but for manual commits use conventional format:
|
||||||
|
- `docs:` - Documentation changes
|
||||||
|
- `feat:` - New features
|
||||||
|
- `fix:` - Bug fixes
|
||||||
|
- `refactor:` - Code restructuring
|
||||||
|
- `chore:` - Maintenance
|
||||||
|
|
||||||
- **Python**: PEP 8, type hints preferred
|
### Code Organization
|
||||||
- **JavaScript**: Modern ES6+, const/let over var, **ES modules (import/export)**
|
- `/code/bookmarklets/` - Browser utilities (final destination)
|
||||||
- **TypeScript**: Explicit types, interfaces over types
|
- `/code/scratchpad/` - Experiments, organized by language
|
||||||
- Comments: Explain _why_, not _what_
|
- `/code/junk-drawer/` - WIP items, miscellaneous scripts
|
||||||
- Functions: Single responsibility, descriptive names
|
- `/code/templates/` - Reusable patterns (ES module examples)
|
||||||
|
- `/code/utils/` - Build tools (bookmarklet generator, README updater)
|
||||||
|
|
||||||
### Module System
|
### README Synchronization
|
||||||
|
**Update READMEs when changing structure** - multiple READMEs mirror folder organization:
|
||||||
|
- `/README.md` - Main overview
|
||||||
|
- `/docs/README.md` - Documentation guide
|
||||||
|
- `/code/README.md` - Code overview
|
||||||
|
- `/code/bookmarklets/README.md` - Bookmarklet guide
|
||||||
|
|
||||||
**This project uses ES modules (import/export), not CommonJS (require).**
|
## Extensions & Tools Context
|
||||||
|
|
||||||
- Use `import` for dependencies: `import fs from 'fs';`
|
Workspace configured for:
|
||||||
- Use `export` for exporting: `export default myFunction;` or `export { myFunction };`
|
- Obsidian MD for VSCode - wiki-links, graph view, daily notes
|
||||||
- Package.json is configured with `"type": "module"`
|
- Code Runner - Execute Python/JS/TS directly (`runInTerminal: true`)
|
||||||
- Use `.js` extension for ES modules
|
- Todo Tree - Tracks TODO, FIXME, NOTE, IDEA, HACK, QUESTION tags
|
||||||
- For Node.js built-ins requiring special handling: `import { fileURLToPath } from 'url';`
|
- GitDoc - Auto-commit delay 1000ms, pulls on open
|
||||||
|
- Settings in `.vscode/settings.json` override defaults
|
||||||
|
|
||||||
## File Organization
|
## Key Implementation Details
|
||||||
|
|
||||||
### When to Create Files
|
### Auto-Save & GitDoc
|
||||||
|
Files auto-save after 1s (`files.autoSaveDelay: 1000`), GitDoc commits 1s after save. **Changes are pushed automatically** - no manual git commands needed during normal workflow.
|
||||||
|
|
||||||
- **Fleeting notes**: Quick captures, temporary thoughts → `/docs/fleeting/`
|
### Code Execution
|
||||||
- **Concept notes**: Refined ideas, evergreen content → `/docs/concepts/`
|
Code Runner configured with:
|
||||||
- **Project docs**: Specific project documentation → `/docs/projects/`
|
- JavaScript: `node` (ES module compatible)
|
||||||
- **Bookmarklets**: Browser utilities → `/code/bookmarklets/`
|
- Python: `python3`
|
||||||
- **Experiments**: Testing/learning → `/code/scratchpad/`
|
- TypeScript: `ts-node`
|
||||||
|
- Always saves file before running
|
||||||
|
|
||||||
### Naming Conventions
|
### Obsidian Configuration
|
||||||
|
- Vault path: root workspace directory
|
||||||
|
- Daily notes: `docs/daily/daily-YYYY-MM-DD.md`
|
||||||
|
- New notes: `docs/` by default
|
||||||
|
- Attachments: `docs/assets/`
|
||||||
|
|
||||||
- Documentation: `kebab-case.md` (e.g., `my-note.md`)
|
## Development Preferences
|
||||||
- JavaScript: `kebab-case.js` (e.g., `my-bookmarklet.js`)
|
|
||||||
- Python: `snake_case.py` (e.g., `my_script.py`)
|
|
||||||
- TypeScript: `kebab-case.ts` (e.g., `my-module.ts`)
|
|
||||||
|
|
||||||
## Git Commit Practices
|
- **Exploration over perfection** - This is a personal scratchpad
|
||||||
|
- **Document why, not what** - Code should be self-explanatory
|
||||||
GitDoc auto-commits on save. For manual commits:
|
- **Practical examples** - Include usage examples in code
|
||||||
|
- **Cross-link liberally** - Wiki-links create knowledge connections
|
||||||
- Use conventional commits: `type: description`
|
- **Track todos inline** - Use TODO/FIXME/NOTE comments (Todo Tree finds them)
|
||||||
- Types: `docs:`, `feat:`, `fix:`, `refactor:`, `chore:`
|
|
||||||
- Examples:
|
|
||||||
- `docs: add note on memory techniques`
|
|
||||||
- `feat: create bookmark highlighter bookmarklet`
|
|
||||||
- `fix: correct regex in search bookmarklet`
|
|
||||||
|
|
||||||
## Special Considerations
|
|
||||||
|
|
||||||
### Cross-Linking
|
|
||||||
|
|
||||||
When suggesting note connections:
|
|
||||||
|
|
||||||
- Look for conceptual relationships
|
|
||||||
- Suggest bidirectional links
|
|
||||||
- Consider creating index notes for related topics
|
|
||||||
|
|
||||||
### Code Reusability
|
|
||||||
|
|
||||||
- Create templates in `/code/templates/` for common patterns
|
|
||||||
- Extract reusable functions into utility modules
|
|
||||||
- Document APIs and interfaces
|
|
||||||
|
|
||||||
### Search & Discovery
|
|
||||||
|
|
||||||
- Use descriptive titles and headers
|
|
||||||
- Include relevant tags in frontmatter
|
|
||||||
- Add aliases for alternative terms
|
|
||||||
- Consider TODO tags: `TODO:`, `FIXME:`, `NOTE:`, `IDEA:`
|
|
||||||
|
|
||||||
## Preferences
|
|
||||||
|
|
||||||
- **Brevity**: Favor concise, clear explanations
|
|
||||||
- **Examples**: Include practical examples in code
|
|
||||||
- **Context**: Assume this is a personal knowledge workspace
|
|
||||||
- **Flexibility**: This is a scratchpad - prioritize exploration over perfection
|
|
||||||
- **Learning**: Explain concepts when introducing new patterns or techniques
|
|
||||||
|
|
||||||
## README Maintenance
|
|
||||||
|
|
||||||
**IMPORTANT**: Keep README files synchronized with project structure changes.
|
|
||||||
|
|
||||||
### When to Update READMEs
|
|
||||||
|
|
||||||
Update relevant README.md files whenever you:
|
|
||||||
|
|
||||||
- Add or remove folders
|
|
||||||
- Change file organization
|
|
||||||
- Add new tools or utilities
|
|
||||||
- Modify workflows or conventions
|
|
||||||
- Add new features or capabilities
|
|
||||||
|
|
||||||
### README Locations
|
|
||||||
|
|
||||||
- `/README.md` - Main project overview and quick start
|
|
||||||
- `/docs/README.md` - Documentation hub and note-taking guide
|
|
||||||
- `/code/README.md` - Code section overview
|
|
||||||
- `/code/bookmarklets/README.md` - Bookmarklet creation guide
|
|
||||||
- `/.github/README.md` - GitHub templates and structure
|
|
||||||
|
|
||||||
### Update Guidelines
|
|
||||||
|
|
||||||
- Keep structure diagrams accurate
|
|
||||||
- Update examples to reflect current patterns
|
|
||||||
- Maintain consistency across all READMEs
|
|
||||||
- Add new sections before implementation when adding major features
|
|
||||||
- Remove outdated information immediately
|
|
||||||
|
|
||||||
## Tools & Extensions Available
|
|
||||||
|
|
||||||
- Obsidian MD for VSCode (wiki-links, backlinks, graph view, daily notes, Obsidian integration)
|
|
||||||
- Code Runner (quick code execution)
|
|
||||||
- Todo Tree (tracks TODO comments)
|
|
||||||
- Bookmarks (mark important code locations)
|
|
||||||
- ESLint (JavaScript linting)
|
|
||||||
- GitDoc (auto-commit on save)
|
|
||||||
|
|||||||
396
code/utils/deploy-pokedex.js
Normal file
396
code/utils/deploy-pokedex.js
Normal file
@@ -0,0 +1,396 @@
|
|||||||
|
/**
|
||||||
|
* Pokedex.Online Deployment Script
|
||||||
|
*
|
||||||
|
* Deploys the pokedex.online Docker container to Synology NAS via SSH.
|
||||||
|
* - Connects to Synology using configured SSH hosts
|
||||||
|
* - Transfers files via SFTP
|
||||||
|
* - Manages Docker deployment with rollback on failure
|
||||||
|
* - Performs health check to verify deployment
|
||||||
|
*
|
||||||
|
* Usage:
|
||||||
|
* node code/utils/deploy-pokedex.js [--target internal|external] [--port 8080] [--ssl-port 8443]
|
||||||
|
* npm run deploy:pokedex -- --target external --port 8081 --ssl-port 8444
|
||||||
|
*
|
||||||
|
* Examples:
|
||||||
|
* npm run deploy:pokedex # Deploy to internal (10.0.0.81) on port 8080
|
||||||
|
* npm run deploy:pokedex -- --target external # Deploy to external (home.gregrjacobs.com)
|
||||||
|
* npm run deploy:pokedex -- --port 8081 # Deploy to internal on port 8081
|
||||||
|
* npm run deploy:pokedex -- --port 8080 --ssl-port 8443 # Deploy with HTTPS on port 8443
|
||||||
|
* npm run deploy:pokedex -- --target external --port 3000 --ssl-port 3443
|
||||||
|
*/
|
||||||
|
import { NodeSSH } from 'node-ssh';
|
||||||
|
import fs from 'fs';
|
||||||
|
import path from 'path';
|
||||||
|
import { fileURLToPath } from 'url';
|
||||||
|
import http from 'http';
|
||||||
|
|
||||||
|
const __filename = fileURLToPath(import.meta.url);
|
||||||
|
const __dirname = path.dirname(__filename);
|
||||||
|
|
||||||
|
// Configuration
|
||||||
|
const SSH_HOSTS = {
|
||||||
|
internal: {
|
||||||
|
host: '10.0.0.81',
|
||||||
|
port: 2323,
|
||||||
|
username: 'GregRJacobs',
|
||||||
|
privateKeyPath: '~/.ssh/ds3627xs_gregrjacobs',
|
||||||
|
password: 'J@Cubs88'
|
||||||
|
},
|
||||||
|
external: {
|
||||||
|
host: 'home.gregrjacobs.com',
|
||||||
|
port: 2323,
|
||||||
|
username: 'GregRJacobs',
|
||||||
|
privateKeyPath: '~/.ssh/ds3627xs_gregrjacobs',
|
||||||
|
password: 'J@Cubs88'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const REMOTE_PATH = '/volume1/docker/pokedex-online/base';
|
||||||
|
const CONTAINER_NAME = 'pokedex-online';
|
||||||
|
const SOURCE_DIR = path.resolve(__dirname, '../websites/pokedex.online/apps');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse command line arguments
|
||||||
|
* @returns {Object} Parsed arguments
|
||||||
|
*/
|
||||||
|
function parseArgs() {
|
||||||
|
const args = process.argv.slice(2);
|
||||||
|
const config = {
|
||||||
|
target: 'internal',
|
||||||
|
port: 8080,
|
||||||
|
sslPort: null
|
||||||
|
};
|
||||||
|
|
||||||
|
for (let i = 0; i < args.length; i++) {
|
||||||
|
if (args[i] === '--target' && args[i + 1]) {
|
||||||
|
config.target = args[i + 1];
|
||||||
|
i++;
|
||||||
|
} else if (args[i] === '--port' && args[i + 1]) {
|
||||||
|
config.port = parseInt(args[i + 1], 10);
|
||||||
|
i++;
|
||||||
|
} else if (args[i] === '--ssl-port' && args[i + 1]) {
|
||||||
|
config.sslPort = parseInt(args[i + 1], 10);
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate target
|
||||||
|
if (!SSH_HOSTS[config.target]) {
|
||||||
|
throw new Error(
|
||||||
|
`Invalid target: ${config.target}. Must be 'internal' or 'external'.`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate port
|
||||||
|
if (isNaN(config.port) || config.port < 1 || config.port > 65535) {
|
||||||
|
throw new Error(
|
||||||
|
`Invalid port: ${config.port}. Must be between 1 and 65535.`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate SSL port if provided
|
||||||
|
if (
|
||||||
|
config.sslPort !== null &&
|
||||||
|
(isNaN(config.sslPort) || config.sslPort < 1 || config.sslPort > 65535)
|
||||||
|
) {
|
||||||
|
throw new Error(
|
||||||
|
`Invalid SSL port: ${config.sslPort}. Must be between 1 and 65535.`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return config;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expand tilde in file paths
|
||||||
|
* @param {string} filepath - Path potentially starting with ~
|
||||||
|
* @returns {string} Expanded path
|
||||||
|
*/
|
||||||
|
function expandTilde(filepath) {
|
||||||
|
if (filepath.startsWith('~/')) {
|
||||||
|
return path.join(process.env.HOME, filepath.slice(2));
|
||||||
|
}
|
||||||
|
return filepath;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create modified docker-compose.yml with custom ports
|
||||||
|
* @param {number} port - HTTP port to map to container
|
||||||
|
* @param {number|null} sslPort - HTTPS port to map to container (optional)
|
||||||
|
* @returns {string} Modified docker-compose content
|
||||||
|
*/
|
||||||
|
function createModifiedDockerCompose(port, sslPort) {
|
||||||
|
const originalPath = path.join(SOURCE_DIR, 'docker-compose.yml');
|
||||||
|
let content = fs.readFileSync(originalPath, 'utf8');
|
||||||
|
|
||||||
|
// Replace HTTP port mapping (handle both single and double quotes)
|
||||||
|
content = content.replace(/- ['"](\d+):80['"]/, `- '${port}:80'`);
|
||||||
|
|
||||||
|
// Replace HTTPS port mapping if SSL port provided
|
||||||
|
if (sslPort !== null) {
|
||||||
|
content = content.replace(/- ['"](\d+):443['"]/, `- '${sslPort}:443'`);
|
||||||
|
} else {
|
||||||
|
// Remove HTTPS port mapping if no SSL port specified
|
||||||
|
content = content.replace(/\s*- ['"](\d+):443['"]/g, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Perform HTTP health check
|
||||||
|
* @param {string} host - Host to check
|
||||||
|
* @param {number} port - Port to check
|
||||||
|
* @param {number} retries - Number of retries
|
||||||
|
* @returns {Promise<boolean>} True if healthy
|
||||||
|
*/
|
||||||
|
async function healthCheck(host, port, retries = 5) {
|
||||||
|
for (let i = 0; i < retries; i++) {
|
||||||
|
try {
|
||||||
|
await new Promise((resolve, reject) => {
|
||||||
|
const req = http.get(
|
||||||
|
`http://${host}:${port}`,
|
||||||
|
{ timeout: 5000 },
|
||||||
|
res => {
|
||||||
|
if (res.statusCode === 200) {
|
||||||
|
resolve();
|
||||||
|
} else {
|
||||||
|
reject(new Error(`HTTP ${res.statusCode}`));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
req.on('error', reject);
|
||||||
|
req.on('timeout', () => {
|
||||||
|
req.destroy();
|
||||||
|
reject(new Error('Request timeout'));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return true;
|
||||||
|
} catch (error) {
|
||||||
|
if (i < retries - 1) {
|
||||||
|
console.log(
|
||||||
|
`⏳ Health check attempt ${i + 1}/${retries} failed, retrying in 3s...`
|
||||||
|
);
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 3000));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Main deployment function
|
||||||
|
*/
|
||||||
|
async function deploy() {
|
||||||
|
const ssh = new NodeSSH();
|
||||||
|
let previousImage = null;
|
||||||
|
let containerExisted = false;
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Parse arguments
|
||||||
|
const config = parseArgs();
|
||||||
|
const sshConfig = SSH_HOSTS[config.target];
|
||||||
|
|
||||||
|
console.log('🚀 Starting Pokedex.Online deployment');
|
||||||
|
console.log(
|
||||||
|
`📡 Target: ${config.target} (${sshConfig.host}:${sshConfig.port})`
|
||||||
|
);
|
||||||
|
console.log(`🔌 HTTP Port: ${config.port}`);
|
||||||
|
if (config.sslPort) {
|
||||||
|
console.log(`🔒 HTTPS Port: ${config.sslPort}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Connect to Synology
|
||||||
|
console.log('\n🔐 Connecting to Synology...');
|
||||||
|
await ssh.connect({
|
||||||
|
host: sshConfig.host,
|
||||||
|
port: sshConfig.port,
|
||||||
|
username: sshConfig.username,
|
||||||
|
privateKeyPath: expandTilde(sshConfig.privateKeyPath),
|
||||||
|
password: sshConfig.password,
|
||||||
|
tryKeyboard: true
|
||||||
|
});
|
||||||
|
console.log('✅ Connected successfully');
|
||||||
|
|
||||||
|
// Check if container exists and capture current image
|
||||||
|
console.log('\n📦 Checking for existing container...');
|
||||||
|
console.log(` Container name: ${CONTAINER_NAME}`);
|
||||||
|
try {
|
||||||
|
const result = await ssh.execCommand(
|
||||||
|
`/usr/local/bin/docker inspect --format='{{.Image}}' ${CONTAINER_NAME} || /usr/bin/docker inspect --format='{{.Image}}' ${CONTAINER_NAME}`
|
||||||
|
);
|
||||||
|
console.log(` Command exit code: ${result.code}`);
|
||||||
|
if (result.stdout) console.log(` Stdout: ${result.stdout.trim()}`);
|
||||||
|
if (result.stderr) console.log(` Stderr: ${result.stderr.trim()}`);
|
||||||
|
|
||||||
|
if (result.code === 0 && result.stdout.trim()) {
|
||||||
|
previousImage = result.stdout.trim();
|
||||||
|
containerExisted = true;
|
||||||
|
console.log(
|
||||||
|
`✅ Found existing container (image: ${previousImage.substring(0, 12)}...)`
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
console.log('ℹ️ No existing container found');
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.log(` Error: ${error.message}`);
|
||||||
|
console.log('ℹ️ No existing container found');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create remote directory
|
||||||
|
console.log('\n📁 Creating remote directory...');
|
||||||
|
const mkdirResult = await ssh.execCommand(`mkdir -p ${REMOTE_PATH}`);
|
||||||
|
console.log(` Command: mkdir -p ${REMOTE_PATH}`);
|
||||||
|
if (mkdirResult.stdout) console.log(` Output: ${mkdirResult.stdout}`);
|
||||||
|
if (mkdirResult.stderr) console.log(` Stderr: ${mkdirResult.stderr}`);
|
||||||
|
console.log(` ✅ Directory ready`);
|
||||||
|
|
||||||
|
// Create modified docker-compose.yml
|
||||||
|
const modifiedDockerCompose = createModifiedDockerCompose(
|
||||||
|
config.port,
|
||||||
|
config.sslPort
|
||||||
|
);
|
||||||
|
const tempDockerComposePath = path.join(
|
||||||
|
SOURCE_DIR,
|
||||||
|
'docker-compose.tmp.yml'
|
||||||
|
);
|
||||||
|
fs.writeFileSync(tempDockerComposePath, modifiedDockerCompose);
|
||||||
|
|
||||||
|
// Transfer files
|
||||||
|
console.log('\n📤 Transferring files...');
|
||||||
|
const filesToTransfer = [
|
||||||
|
{
|
||||||
|
local: path.join(SOURCE_DIR, 'index.html'),
|
||||||
|
remote: `${REMOTE_PATH}/index.html`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
local: path.join(SOURCE_DIR, 'Dockerfile'),
|
||||||
|
remote: `${REMOTE_PATH}/Dockerfile`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
local: tempDockerComposePath,
|
||||||
|
remote: `${REMOTE_PATH}/docker-compose.yml`
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
for (const file of filesToTransfer) {
|
||||||
|
try {
|
||||||
|
await ssh.putFile(file.local, file.remote);
|
||||||
|
console.log(` ✅ ${path.basename(file.local)}`);
|
||||||
|
} catch (error) {
|
||||||
|
// If SFTP fails, fall back to cat method
|
||||||
|
console.log(
|
||||||
|
` ⚠️ SFTP failed for ${path.basename(file.local)}, using cat fallback...`
|
||||||
|
);
|
||||||
|
const fileContent = fs.readFileSync(file.local, 'utf8');
|
||||||
|
const escapedContent = fileContent.replace(/'/g, "'\\''");
|
||||||
|
const catResult = await ssh.execCommand(
|
||||||
|
`cat > '${file.remote}' << 'EOFMARKER'\n${fileContent}\nEOFMARKER`
|
||||||
|
);
|
||||||
|
if (catResult.stdout) console.log(` Output: ${catResult.stdout}`);
|
||||||
|
if (catResult.stderr) console.log(` Stderr: ${catResult.stderr}`);
|
||||||
|
if (catResult.code !== 0) {
|
||||||
|
throw new Error(
|
||||||
|
`Failed to transfer ${path.basename(file.local)}: ${catResult.stderr}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
console.log(
|
||||||
|
` ✅ ${path.basename(file.local)} (${fs.statSync(file.local).size} bytes)`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clean up temp file
|
||||||
|
fs.unlinkSync(tempDockerComposePath);
|
||||||
|
|
||||||
|
// Stop existing container first to avoid port conflicts
|
||||||
|
if (containerExisted) {
|
||||||
|
console.log('\n🛑 Stopping existing container...');
|
||||||
|
const stopResult = await ssh.execCommand(
|
||||||
|
`cd ${REMOTE_PATH} && /usr/local/bin/docker compose down || /usr/local/bin/docker-compose down`
|
||||||
|
);
|
||||||
|
if (stopResult.stdout) console.log(` ${stopResult.stdout.trim()}`);
|
||||||
|
console.log(' ✅ Container stopped');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deploy with docker-compose
|
||||||
|
console.log('\n🐳 Building and starting Docker container...');
|
||||||
|
console.log(` Working directory: ${REMOTE_PATH}`);
|
||||||
|
|
||||||
|
// Try Docker Compose V2 first (docker compose), then fall back to V1 (docker-compose)
|
||||||
|
// Use full paths for Synology
|
||||||
|
console.log(' Attempting: /usr/local/bin/docker compose up -d --build');
|
||||||
|
let deployResult = await ssh.execCommand(
|
||||||
|
`cd ${REMOTE_PATH} && /usr/local/bin/docker compose up -d --build || /usr/local/bin/docker-compose up -d --build || /usr/bin/docker compose up -d --build`,
|
||||||
|
{ stream: 'both' }
|
||||||
|
);
|
||||||
|
|
||||||
|
console.log('\n 📋 Docker Output:');
|
||||||
|
if (deployResult.stdout) {
|
||||||
|
deployResult.stdout.split('\n').forEach(line => {
|
||||||
|
if (line.trim()) console.log(` ${line}`);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (deployResult.stderr) {
|
||||||
|
console.log('\n ⚠️ Docker Stderr:');
|
||||||
|
deployResult.stderr.split('\n').forEach(line => {
|
||||||
|
if (line.trim()) console.log(` ${line}`);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
console.log(` Exit code: ${deployResult.code}`);
|
||||||
|
|
||||||
|
if (deployResult.code !== 0) {
|
||||||
|
throw new Error(`Docker deployment failed: ${deployResult.stderr}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('\n✅ Container started');
|
||||||
|
|
||||||
|
// Health check
|
||||||
|
console.log('\n🏥 Performing health check...');
|
||||||
|
const isHealthy = await healthCheck(sshConfig.host, config.port);
|
||||||
|
|
||||||
|
if (!isHealthy) {
|
||||||
|
throw new Error('Health check failed - container is not responding');
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('✅ Health check passed');
|
||||||
|
console.log(`\n🎉 Deployment successful!`);
|
||||||
|
console.log(`🌐 HTTP: http://${sshConfig.host}:${config.port}`);
|
||||||
|
if (config.sslPort) {
|
||||||
|
console.log(`🔒 HTTPS: https://${sshConfig.host}:${config.sslPort}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
ssh.dispose();
|
||||||
|
} catch (error) {
|
||||||
|
console.error('\n❌ Deployment failed:', error.message);
|
||||||
|
|
||||||
|
// Rollback
|
||||||
|
if (previousImage) {
|
||||||
|
console.log('\n🔄 Rolling back to previous image...');
|
||||||
|
try {
|
||||||
|
await ssh.execCommand(
|
||||||
|
`cd ${REMOTE_PATH} && docker-compose down && docker tag ${previousImage} pokedex-online:latest && docker-compose up -d`
|
||||||
|
);
|
||||||
|
console.log('✅ Rollback successful');
|
||||||
|
} catch (rollbackError) {
|
||||||
|
console.error('❌ Rollback failed:', rollbackError.message);
|
||||||
|
}
|
||||||
|
} else if (containerExisted === false) {
|
||||||
|
console.log('\n🧹 Cleaning up failed deployment...');
|
||||||
|
try {
|
||||||
|
await ssh.execCommand(
|
||||||
|
`cd ${REMOTE_PATH} && docker-compose down --volumes --remove-orphans`
|
||||||
|
);
|
||||||
|
console.log('✅ Cleanup successful');
|
||||||
|
} catch (cleanupError) {
|
||||||
|
console.error('❌ Cleanup failed:', cleanupError.message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ssh.dispose();
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run deployment
|
||||||
|
deploy();
|
||||||
296
code/utils/organize-pokemon-resources.js
Normal file
296
code/utils/organize-pokemon-resources.js
Normal file
@@ -0,0 +1,296 @@
|
|||||||
|
/**
|
||||||
|
* Organize Pokémon Resources
|
||||||
|
*
|
||||||
|
* Creates folder structure and renames files based on the order
|
||||||
|
* they appear on the pokemon.com resources page
|
||||||
|
*
|
||||||
|
* Usage:
|
||||||
|
* node code/utils/organize-pokemon-resources.js
|
||||||
|
* npm run organize:pokemon
|
||||||
|
*/
|
||||||
|
import puppeteer from 'puppeteer-extra';
|
||||||
|
import StealthPlugin from 'puppeteer-extra-plugin-stealth';
|
||||||
|
import fs from 'fs';
|
||||||
|
import path from 'path';
|
||||||
|
import { fileURLToPath } from 'url';
|
||||||
|
|
||||||
|
puppeteer.use(StealthPlugin());
|
||||||
|
|
||||||
|
const __filename = fileURLToPath(import.meta.url);
|
||||||
|
const __dirname = path.dirname(__filename);
|
||||||
|
|
||||||
|
const BASE_URL =
|
||||||
|
'https://www.pokemon.com/us/play-pokemon/about/tournaments-rules-and-resources';
|
||||||
|
const RESOURCES_DIR = path.resolve(
|
||||||
|
__dirname,
|
||||||
|
'../../docs/projects/pokemon-professor/Pokemon Rules & Resources'
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clean filename for filesystem
|
||||||
|
*/
|
||||||
|
function sanitizeFilename(name) {
|
||||||
|
return name
|
||||||
|
.replace(/[<>:"/\\|?*]/g, '-')
|
||||||
|
.replace(/\s+/g, ' ')
|
||||||
|
.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Main organization function
|
||||||
|
*/
|
||||||
|
async function organizeResources() {
|
||||||
|
console.log('🚀 Starting Pokémon Resources Organization');
|
||||||
|
console.log(`📁 Resources directory: ${RESOURCES_DIR}\n`);
|
||||||
|
|
||||||
|
const browser = await puppeteer.launch({
|
||||||
|
headless: true,
|
||||||
|
args: [
|
||||||
|
'--no-sandbox',
|
||||||
|
'--disable-setuid-sandbox',
|
||||||
|
'--disable-blink-features=AutomationControlled'
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
const page = await browser.newPage();
|
||||||
|
await page.setViewport({ width: 1920, height: 1080 });
|
||||||
|
await page.setUserAgent(
|
||||||
|
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36'
|
||||||
|
);
|
||||||
|
|
||||||
|
console.log('🌐 Loading main page to extract structure...');
|
||||||
|
await page.goto(BASE_URL, { waitUntil: 'networkidle0', timeout: 90000 });
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 3000));
|
||||||
|
|
||||||
|
// Extract the page structure: sections and their resources
|
||||||
|
const structure = await page.evaluate(() => {
|
||||||
|
const sections = [];
|
||||||
|
|
||||||
|
// Get the main content area
|
||||||
|
const mainContent =
|
||||||
|
document.querySelector('main, .main-content, article, #content') ||
|
||||||
|
document.body;
|
||||||
|
|
||||||
|
// Look for all text nodes and elements that might be section headers
|
||||||
|
// The page likely uses specific patterns for section titles
|
||||||
|
const allElements = Array.from(mainContent.querySelectorAll('*'));
|
||||||
|
|
||||||
|
for (let i = 0; i < allElements.length; i++) {
|
||||||
|
const element = allElements[i];
|
||||||
|
const text = element.innerText?.trim() || '';
|
||||||
|
|
||||||
|
// Check if this looks like a section header
|
||||||
|
// Pattern: ends with "Rules & Resources" or "Training Videos" or similar
|
||||||
|
const isSectionHeader =
|
||||||
|
(text.includes('Rules & Resources') ||
|
||||||
|
text.includes('Training Videos') ||
|
||||||
|
text === 'Further Resources for Players') &&
|
||||||
|
text.length < 100 &&
|
||||||
|
!text.includes('\n') &&
|
||||||
|
element.children.length < 3;
|
||||||
|
|
||||||
|
if (!isSectionHeader) continue;
|
||||||
|
|
||||||
|
const sectionTitle = text;
|
||||||
|
const links = [];
|
||||||
|
|
||||||
|
// Look ahead to find links belonging to this section
|
||||||
|
// Stop when we hit another section header
|
||||||
|
for (let j = i + 1; j < allElements.length && j < i + 50; j++) {
|
||||||
|
const nextEl = allElements[j];
|
||||||
|
const nextText = nextEl.innerText?.trim() || '';
|
||||||
|
|
||||||
|
// Stop if we hit another section header
|
||||||
|
if (
|
||||||
|
(nextText.includes('Rules & Resources') ||
|
||||||
|
nextText.includes('Training Videos') ||
|
||||||
|
nextText === 'Further Resources for Players') &&
|
||||||
|
nextText.length < 100 &&
|
||||||
|
!nextText.includes('\n') &&
|
||||||
|
nextEl.children.length < 3 &&
|
||||||
|
nextText !== sectionTitle
|
||||||
|
) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Look for links in this element
|
||||||
|
if (nextEl.tagName === 'A' && nextEl.href) {
|
||||||
|
const linkText = nextEl.innerText.trim();
|
||||||
|
if (
|
||||||
|
linkText &&
|
||||||
|
!nextEl.href.includes('javascript:') &&
|
||||||
|
!nextEl.href.includes('#')
|
||||||
|
) {
|
||||||
|
links.push({ text: linkText, href: nextEl.href });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Also check child links
|
||||||
|
const childLinks = nextEl.querySelectorAll('a[href]');
|
||||||
|
childLinks.forEach(a => {
|
||||||
|
const linkText = a.innerText.trim();
|
||||||
|
if (
|
||||||
|
linkText &&
|
||||||
|
!a.href.includes('javascript:') &&
|
||||||
|
!a.href.includes('#') &&
|
||||||
|
a.href.startsWith('http')
|
||||||
|
) {
|
||||||
|
links.push({ text: linkText, href: a.href });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (links.length > 0) {
|
||||||
|
// Deduplicate links
|
||||||
|
const uniqueLinks = [];
|
||||||
|
const seen = new Set();
|
||||||
|
links.forEach(link => {
|
||||||
|
if (!seen.has(link.text)) {
|
||||||
|
seen.add(link.text);
|
||||||
|
uniqueLinks.push(link);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
sections.push({
|
||||||
|
title: sectionTitle,
|
||||||
|
links: uniqueLinks
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return sections;
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(`\n📋 Found ${structure.length} sections\n`);
|
||||||
|
|
||||||
|
// Deduplicate sections by title
|
||||||
|
const uniqueSections = [];
|
||||||
|
const seenTitles = new Set();
|
||||||
|
structure.forEach(section => {
|
||||||
|
if (!seenTitles.has(section.title)) {
|
||||||
|
seenTitles.add(section.title);
|
||||||
|
// Skip the main "Play! Pokémon Rules & Resources" section header
|
||||||
|
// as it's just a page title, not a content section
|
||||||
|
if (section.title !== 'Play! Pokémon Rules & Resources') {
|
||||||
|
uniqueSections.push(section);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(
|
||||||
|
`📋 After deduplication: ${uniqueSections.length} unique sections\n`
|
||||||
|
);
|
||||||
|
|
||||||
|
// Get list of existing files
|
||||||
|
const existingFiles = fs
|
||||||
|
.readdirSync(RESOURCES_DIR)
|
||||||
|
.filter(
|
||||||
|
f =>
|
||||||
|
!f.startsWith('.') &&
|
||||||
|
!f.startsWith('debug') &&
|
||||||
|
(f.endsWith('.pdf') || f.endsWith('.txt'))
|
||||||
|
);
|
||||||
|
|
||||||
|
console.log(`📦 Found ${existingFiles.length} files to organize\n`);
|
||||||
|
|
||||||
|
let totalMoved = 0;
|
||||||
|
let sectionIndex = 1;
|
||||||
|
|
||||||
|
// Process each section
|
||||||
|
for (const section of uniqueSections) {
|
||||||
|
const sectionName = sanitizeFilename(section.title);
|
||||||
|
const folderName = `${sectionIndex.toString().padStart(2, '0')}-${sectionName}`;
|
||||||
|
const folderPath = path.join(RESOURCES_DIR, folderName);
|
||||||
|
|
||||||
|
// Create section folder
|
||||||
|
if (!fs.existsSync(folderPath)) {
|
||||||
|
fs.mkdirSync(folderPath, { recursive: true });
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(`📂 Section ${sectionIndex}: ${section.title}`);
|
||||||
|
console.log(` Folder: ${folderName}`);
|
||||||
|
console.log(` Resources: ${section.links.length}\n`);
|
||||||
|
|
||||||
|
let resourceIndex = 1;
|
||||||
|
|
||||||
|
// Process each resource in this section
|
||||||
|
for (const link of section.links) {
|
||||||
|
const resourceName = sanitizeFilename(link.text);
|
||||||
|
|
||||||
|
// Find matching file
|
||||||
|
const matchingFile = existingFiles.find(f => {
|
||||||
|
const baseName = f.replace(/\.(pdf|txt)$/, '');
|
||||||
|
return (
|
||||||
|
baseName === resourceName ||
|
||||||
|
baseName.includes(resourceName) ||
|
||||||
|
resourceName.includes(baseName)
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (matchingFile) {
|
||||||
|
const oldPath = path.join(RESOURCES_DIR, matchingFile);
|
||||||
|
const extension = path.extname(matchingFile);
|
||||||
|
const newName = `${sectionIndex.toString().padStart(2, '0')}-${resourceIndex.toString().padStart(2, '0')}-${resourceName}${extension}`;
|
||||||
|
const newPath = path.join(folderPath, newName);
|
||||||
|
|
||||||
|
// Move and rename file
|
||||||
|
if (fs.existsSync(oldPath)) {
|
||||||
|
fs.renameSync(oldPath, newPath);
|
||||||
|
console.log(` ✅ ${resourceIndex}. ${resourceName}${extension}`);
|
||||||
|
totalMoved++;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
console.log(` ⚠️ ${resourceIndex}. ${resourceName} (not found)`);
|
||||||
|
}
|
||||||
|
|
||||||
|
resourceIndex++;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('');
|
||||||
|
sectionIndex++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Move any remaining files to an "Other" folder
|
||||||
|
const remainingFiles = fs
|
||||||
|
.readdirSync(RESOURCES_DIR)
|
||||||
|
.filter(
|
||||||
|
f =>
|
||||||
|
!f.startsWith('.') &&
|
||||||
|
!fs.statSync(path.join(RESOURCES_DIR, f)).isDirectory() &&
|
||||||
|
(f.endsWith('.pdf') || f.endsWith('.txt'))
|
||||||
|
);
|
||||||
|
|
||||||
|
if (remainingFiles.length > 0) {
|
||||||
|
const otherFolder = path.join(RESOURCES_DIR, '99-Other');
|
||||||
|
if (!fs.existsSync(otherFolder)) {
|
||||||
|
fs.mkdirSync(otherFolder, { recursive: true });
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(
|
||||||
|
`📂 Moving ${remainingFiles.length} unmatched files to Other folder\n`
|
||||||
|
);
|
||||||
|
|
||||||
|
remainingFiles.forEach((file, index) => {
|
||||||
|
const oldPath = path.join(RESOURCES_DIR, file);
|
||||||
|
const newName = `99-${(index + 1).toString().padStart(2, '0')}-${file}`;
|
||||||
|
const newPath = path.join(otherFolder, newName);
|
||||||
|
fs.renameSync(oldPath, newPath);
|
||||||
|
console.log(` ✅ ${file}`);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(`\n🎉 Organization complete!`);
|
||||||
|
console.log(`📊 Statistics:`);
|
||||||
|
console.log(` Sections created: ${sectionIndex - 1}`);
|
||||||
|
console.log(` Files organized: ${totalMoved}`);
|
||||||
|
console.log(` Files in Other: ${remainingFiles.length}`);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('❌ Error:', error.message);
|
||||||
|
process.exit(1);
|
||||||
|
} finally {
|
||||||
|
await browser.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
organizeResources();
|
||||||
389
code/utils/scrape-pokemon-resources.js
Normal file
389
code/utils/scrape-pokemon-resources.js
Normal file
@@ -0,0 +1,389 @@
|
|||||||
|
/**
|
||||||
|
* Pokémon Play! Resources Scraper
|
||||||
|
*
|
||||||
|
* Downloads official tournament rules, resources, and documentation from pokemon.com
|
||||||
|
* - PDFs: Downloads directly
|
||||||
|
* - Videos: Saves video URLs to text files
|
||||||
|
* - Web pages: Extracts and saves text content
|
||||||
|
*
|
||||||
|
* Usage:
|
||||||
|
* node code/utils/scrape-pokemon-resources.js
|
||||||
|
* npm run scrape:pokemon
|
||||||
|
*
|
||||||
|
* Output: docs/projects/pokemon-professor/Pokemon Rules & Resources/
|
||||||
|
*/
|
||||||
|
import puppeteer from 'puppeteer-extra';
|
||||||
|
import StealthPlugin from 'puppeteer-extra-plugin-stealth';
|
||||||
|
import fs from 'fs';
|
||||||
|
import path from 'path';
|
||||||
|
import { fileURLToPath } from 'url';
|
||||||
|
import https from 'https';
|
||||||
|
import http from 'http';
|
||||||
|
|
||||||
|
// Add stealth plugin to avoid bot detection
|
||||||
|
puppeteer.use(StealthPlugin());
|
||||||
|
|
||||||
|
const __filename = fileURLToPath(import.meta.url);
|
||||||
|
const __dirname = path.dirname(__filename);
|
||||||
|
|
||||||
|
// Configuration
|
||||||
|
const BASE_URL =
|
||||||
|
'https://www.pokemon.com/us/play-pokemon/about/tournaments-rules-and-resources';
|
||||||
|
const OUTPUT_DIR = path.resolve(
|
||||||
|
__dirname,
|
||||||
|
'../../docs/projects/pokemon-professor/Pokemon Rules & Resources'
|
||||||
|
);
|
||||||
|
|
||||||
|
// Target resource names from the page
|
||||||
|
const TARGET_RESOURCES = [
|
||||||
|
// Rules & Resources for All
|
||||||
|
'Play! Pokémon Terms of Use',
|
||||||
|
'Play! Pokémon Standards of Conduct',
|
||||||
|
'Play! Pokémon Inclusion Policy',
|
||||||
|
'Play! Pokémon Accessibility Policy',
|
||||||
|
'Play! Pokémon Trainer Username and Team Name Policy',
|
||||||
|
'Play! Pokémon Premier Events Sponsorship Policy',
|
||||||
|
'Play! Pokémon Tournament Rules Handbook',
|
||||||
|
'Play! Pokémon COVID-19 Protocols',
|
||||||
|
'Play! Pokémon Attire and Cosplay Policy',
|
||||||
|
'Play! Pokémon Penalty Guidelines',
|
||||||
|
|
||||||
|
// Pokémon TCG Rules & Resources
|
||||||
|
'Pokémon TCG Rulebook',
|
||||||
|
'Play! Pokémon Deck List (8.5x11)',
|
||||||
|
'Play! Pokémon Deck List (A4)',
|
||||||
|
'TCG Errata',
|
||||||
|
'Pokémon TCG Banned Card List',
|
||||||
|
'Mega Evolution—Phantasmal Flames Banned List and Rule Changes Announcement',
|
||||||
|
'Pokémon TCG Promo Card Legality Status',
|
||||||
|
'Pokémon TCG Alternative Play Handbook',
|
||||||
|
'Pokémon TCG Tournament Handbook',
|
||||||
|
|
||||||
|
// Video Game Rules & Resources
|
||||||
|
'Play! Pokémon Video Game Championships Tournament Handbook',
|
||||||
|
'Pokémon Video Game Team List',
|
||||||
|
|
||||||
|
// Pokémon GO Rules & Resources
|
||||||
|
'Play! Pokémon Pokémon GO Tournament Handbook',
|
||||||
|
'Pokémon GO Team List',
|
||||||
|
'Play! Pokémon Pokémon GO Championship Series Banned Pokémon List',
|
||||||
|
'Organizing Pokémon GO Events',
|
||||||
|
|
||||||
|
// Pokémon UNITE Rules & Resources
|
||||||
|
'Pokémon UNITE Championship Series Handbook',
|
||||||
|
|
||||||
|
// Pokémon League Rules & Resources
|
||||||
|
'Play! Pokémon Store Handbook',
|
||||||
|
'Play! Pokémon League Challenges, Cups, and Prerelease Guide',
|
||||||
|
'League Roster',
|
||||||
|
'League Flyer',
|
||||||
|
|
||||||
|
// Pokémon Club Rules & Resources
|
||||||
|
'Pokémon Activity Sheets',
|
||||||
|
|
||||||
|
// Further Resources for Players
|
||||||
|
'World Championships Battle Dictionary',
|
||||||
|
'Play! Pokémon Scholarship Program Terms and Conditions',
|
||||||
|
'Championship Event Awards Disbursement Information',
|
||||||
|
|
||||||
|
// Training Videos
|
||||||
|
'League Management Demos',
|
||||||
|
'Tournament Software and Reporting Events',
|
||||||
|
'Championship Series Reporting',
|
||||||
|
'TOM Training Videos',
|
||||||
|
'Tools Overview',
|
||||||
|
'Installation and Set-up',
|
||||||
|
'Setting Up Your Tournament',
|
||||||
|
'Tournament Detail Verification',
|
||||||
|
'Running & Completing the Tournament',
|
||||||
|
'Reporting Matches',
|
||||||
|
'Adding Players'
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clean filename for filesystem
|
||||||
|
* @param {string} name - Original name
|
||||||
|
* @returns {string} Safe filename
|
||||||
|
*/
|
||||||
|
function sanitizeFilename(name) {
|
||||||
|
return name
|
||||||
|
.replace(/[<>:"/\\|?*]/g, '-')
|
||||||
|
.replace(/\s+/g, ' ')
|
||||||
|
.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Download file from URL using page context with cookies
|
||||||
|
* @param {Page} page - Puppeteer page
|
||||||
|
* @param {string} url - File URL
|
||||||
|
* @param {string} filepath - Destination path
|
||||||
|
* @returns {Promise<void>}
|
||||||
|
*/
|
||||||
|
async function downloadFile(page, url, filepath) {
|
||||||
|
// Get cookies from the current page session
|
||||||
|
const cookies = await page.cookies();
|
||||||
|
const cookieString = cookies.map(c => `${c.name}=${c.value}`).join('; ');
|
||||||
|
|
||||||
|
// Use page.evaluate to download with fetch
|
||||||
|
const buffer = await page.evaluate(async downloadUrl => {
|
||||||
|
const response = await fetch(downloadUrl, {
|
||||||
|
method: 'GET',
|
||||||
|
credentials: 'include'
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`HTTP ${response.status}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const arrayBuffer = await response.arrayBuffer();
|
||||||
|
return Array.from(new Uint8Array(arrayBuffer));
|
||||||
|
}, url);
|
||||||
|
|
||||||
|
const bufferData = Buffer.from(buffer);
|
||||||
|
|
||||||
|
// Verify it's actually a PDF
|
||||||
|
const header = bufferData.slice(0, 5).toString();
|
||||||
|
if (!header.startsWith('%PDF')) {
|
||||||
|
throw new Error(`Downloaded file is not a PDF (got: ${header})`);
|
||||||
|
}
|
||||||
|
|
||||||
|
fs.writeFileSync(filepath, bufferData);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extract text content from a web page
|
||||||
|
* @param {Page} page - Puppeteer page
|
||||||
|
* @returns {Promise<string>} Page text content
|
||||||
|
*/
|
||||||
|
async function extractPageText(page) {
|
||||||
|
return await page.evaluate(() => {
|
||||||
|
// Remove script and style elements
|
||||||
|
const scripts = document.querySelectorAll(
|
||||||
|
'script, style, nav, footer, header'
|
||||||
|
);
|
||||||
|
scripts.forEach(el => el.remove());
|
||||||
|
|
||||||
|
// Get main content
|
||||||
|
const main =
|
||||||
|
document.querySelector('main, article, .content, #content') ||
|
||||||
|
document.body;
|
||||||
|
return main.innerText.trim();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Main scraping function
|
||||||
|
*/
|
||||||
|
async function scrapeResources() {
|
||||||
|
console.log('🚀 Starting Pokémon Play! Resources Scraper');
|
||||||
|
console.log(`📁 Output directory: ${OUTPUT_DIR}\n`);
|
||||||
|
|
||||||
|
// Create output directory
|
||||||
|
if (!fs.existsSync(OUTPUT_DIR)) {
|
||||||
|
fs.mkdirSync(OUTPUT_DIR, { recursive: true });
|
||||||
|
console.log('✅ Created output directory\n');
|
||||||
|
}
|
||||||
|
|
||||||
|
const browser = await puppeteer.launch({
|
||||||
|
headless: true,
|
||||||
|
args: [
|
||||||
|
'--no-sandbox',
|
||||||
|
'--disable-setuid-sandbox',
|
||||||
|
'--disable-blink-features=AutomationControlled',
|
||||||
|
'--disable-web-security',
|
||||||
|
'--disable-features=IsolateOrigins,site-per-process'
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
const page = await browser.newPage();
|
||||||
|
await page.setViewport({ width: 1920, height: 1080 });
|
||||||
|
|
||||||
|
// Set realistic user agent
|
||||||
|
await page.setUserAgent(
|
||||||
|
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36'
|
||||||
|
);
|
||||||
|
|
||||||
|
// Set extra headers to appear more like a real browser
|
||||||
|
await page.setExtraHTTPHeaders({
|
||||||
|
'Accept-Language': 'en-US,en;q=0.9',
|
||||||
|
'Accept-Encoding': 'gzip, deflate, br',
|
||||||
|
Accept:
|
||||||
|
'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8'
|
||||||
|
});
|
||||||
|
|
||||||
|
// Navigate to main page
|
||||||
|
console.log('🌐 Loading main page...');
|
||||||
|
await page.goto(BASE_URL, { waitUntil: 'networkidle0', timeout: 90000 });
|
||||||
|
|
||||||
|
// Wait for content to load - try waiting for a specific element
|
||||||
|
console.log('⏳ Waiting for content to render...');
|
||||||
|
try {
|
||||||
|
await page.waitForSelector('a[href*=".pdf"], .resource, article', {
|
||||||
|
timeout: 10000
|
||||||
|
});
|
||||||
|
} catch (e) {
|
||||||
|
console.log(
|
||||||
|
'⚠️ Timeout waiting for specific selectors, continuing anyway...'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 5000));
|
||||||
|
|
||||||
|
console.log('✅ Page loaded\n');
|
||||||
|
|
||||||
|
// Debug: Take a screenshot
|
||||||
|
await page.screenshot({
|
||||||
|
path: path.join(OUTPUT_DIR, 'debug-screenshot.png'),
|
||||||
|
fullPage: true
|
||||||
|
});
|
||||||
|
console.log('📸 Screenshot saved for debugging\n');
|
||||||
|
|
||||||
|
// Debug: Dump HTML content
|
||||||
|
const html = await page.content();
|
||||||
|
fs.writeFileSync(path.join(OUTPUT_DIR, 'debug-page-source.html'), html);
|
||||||
|
console.log('📄 HTML source saved for debugging\n');
|
||||||
|
|
||||||
|
// Get all links on the page with multiple strategies
|
||||||
|
const links = await page.evaluate(() => {
|
||||||
|
const anchors = Array.from(document.querySelectorAll('a'));
|
||||||
|
const allLinks = anchors
|
||||||
|
.map(a => ({
|
||||||
|
text: a.innerText.trim(),
|
||||||
|
href: a.href,
|
||||||
|
title: a.title || '',
|
||||||
|
ariaLabel: a.getAttribute('aria-label') || ''
|
||||||
|
}))
|
||||||
|
.filter(
|
||||||
|
link =>
|
||||||
|
(link.text || link.title || link.ariaLabel) &&
|
||||||
|
link.href &&
|
||||||
|
!link.href.startsWith('javascript:') &&
|
||||||
|
!link.href.includes('#')
|
||||||
|
);
|
||||||
|
|
||||||
|
// Also try to get download links specifically
|
||||||
|
const downloadLinks = Array.from(
|
||||||
|
document.querySelectorAll('[download], a[href*=".pdf"]')
|
||||||
|
).map(a => ({
|
||||||
|
text: a.innerText.trim() || a.getAttribute('download') || a.title,
|
||||||
|
href: a.href
|
||||||
|
}));
|
||||||
|
|
||||||
|
return [...allLinks, ...downloadLinks].filter(
|
||||||
|
(link, index, self) =>
|
||||||
|
index === self.findIndex(l => l.href === link.href)
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(`📋 Found ${links.length} total links on page`);
|
||||||
|
|
||||||
|
// Debug: Show first 10 links
|
||||||
|
if (links.length > 0) {
|
||||||
|
console.log('\n📝 Sample links found:');
|
||||||
|
links.slice(0, 10).forEach((link, i) => {
|
||||||
|
console.log(` ${i + 1}. ${link.text.substring(0, 60)}...`);
|
||||||
|
});
|
||||||
|
console.log('');
|
||||||
|
} else {
|
||||||
|
console.log(
|
||||||
|
'⚠️ No links found - page may require different loading strategy\n'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process each target resource
|
||||||
|
let processed = 0;
|
||||||
|
let downloaded = 0;
|
||||||
|
let skipped = 0;
|
||||||
|
|
||||||
|
for (const targetName of TARGET_RESOURCES) {
|
||||||
|
// Find matching link (case-insensitive, fuzzy match)
|
||||||
|
const link = links.find(
|
||||||
|
l =>
|
||||||
|
l.text.toLowerCase().includes(targetName.toLowerCase()) ||
|
||||||
|
targetName.toLowerCase().includes(l.text.toLowerCase())
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!link) {
|
||||||
|
console.log(`⚠️ Could not find link for: ${targetName}`);
|
||||||
|
skipped++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
processed++;
|
||||||
|
const safeFilename = sanitizeFilename(targetName);
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Check if it's a PDF
|
||||||
|
if (link.href.toLowerCase().endsWith('.pdf')) {
|
||||||
|
const filepath = path.join(OUTPUT_DIR, `${safeFilename}.pdf`);
|
||||||
|
console.log(`📥 Downloading PDF: ${targetName}`);
|
||||||
|
console.log(` URL: ${link.href}`);
|
||||||
|
await downloadFile(page, link.href, filepath);
|
||||||
|
console.log(` ✅ Saved: ${safeFilename}.pdf\n`);
|
||||||
|
downloaded++;
|
||||||
|
}
|
||||||
|
// Check if it's a video link (YouTube, Vimeo, etc.)
|
||||||
|
else if (
|
||||||
|
link.href.includes('youtube.com') ||
|
||||||
|
link.href.includes('youtu.be') ||
|
||||||
|
link.href.includes('vimeo.com') ||
|
||||||
|
link.href.includes('video')
|
||||||
|
) {
|
||||||
|
const filepath = path.join(
|
||||||
|
OUTPUT_DIR,
|
||||||
|
`${safeFilename} - Video URL.txt`
|
||||||
|
);
|
||||||
|
console.log(`🎥 Saving video URL: ${targetName}`);
|
||||||
|
fs.writeFileSync(
|
||||||
|
filepath,
|
||||||
|
`${targetName}\n\nVideo URL: ${link.href}\n`
|
||||||
|
);
|
||||||
|
console.log(` ✅ Saved: ${safeFilename} - Video URL.txt\n`);
|
||||||
|
downloaded++;
|
||||||
|
}
|
||||||
|
// Otherwise, extract page text
|
||||||
|
else {
|
||||||
|
console.log(`📄 Extracting text from: ${targetName}`);
|
||||||
|
console.log(` URL: ${link.href}`);
|
||||||
|
|
||||||
|
const contentPage = await browser.newPage();
|
||||||
|
await contentPage.goto(link.href, {
|
||||||
|
waitUntil: 'networkidle2',
|
||||||
|
timeout: 60000
|
||||||
|
});
|
||||||
|
const text = await extractPageText(contentPage);
|
||||||
|
await contentPage.close();
|
||||||
|
|
||||||
|
const filepath = path.join(OUTPUT_DIR, `${safeFilename}.txt`);
|
||||||
|
fs.writeFileSync(
|
||||||
|
filepath,
|
||||||
|
`${targetName}\n\nSource: ${link.href}\n\n${text}\n`
|
||||||
|
);
|
||||||
|
console.log(` ✅ Saved: ${safeFilename}.txt\n`);
|
||||||
|
downloaded++;
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error(
|
||||||
|
` ❌ Error processing ${targetName}: ${error.message}\n`
|
||||||
|
);
|
||||||
|
skipped++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log('🎉 Scraping complete!');
|
||||||
|
console.log(`📊 Statistics:`);
|
||||||
|
console.log(` Total targets: ${TARGET_RESOURCES.length}`);
|
||||||
|
console.log(` Processed: ${processed}`);
|
||||||
|
console.log(` Downloaded: ${downloaded}`);
|
||||||
|
console.log(` Skipped: ${skipped}`);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('❌ Fatal error:', error.message);
|
||||||
|
process.exit(1);
|
||||||
|
} finally {
|
||||||
|
await browser.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run scraper
|
||||||
|
scrapeResources();
|
||||||
11
code/websites/pokedex.online/apps/Dockerfile
Normal file
11
code/websites/pokedex.online/apps/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# Use nginx alpine for lightweight serving
|
||||||
|
FROM nginx:alpine
|
||||||
|
|
||||||
|
# Copy website files to nginx html directory
|
||||||
|
COPY index.html /usr/share/nginx/html/
|
||||||
|
|
||||||
|
# Expose ports 80 (HTTP) and 443 (HTTPS)
|
||||||
|
EXPOSE 80 443
|
||||||
|
|
||||||
|
# Start nginx
|
||||||
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
214
code/websites/pokedex.online/apps/README.md
Normal file
214
code/websites/pokedex.online/apps/README.md
Normal file
@@ -0,0 +1,214 @@
|
|||||||
|
# Pokedex Online
|
||||||
|
|
||||||
|
A landing page for the Pokedex Online project, containerized and ready for deployment.
|
||||||
|
|
||||||
|
## 🚀 Local Development
|
||||||
|
|
||||||
|
### Quick Start
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Open index.html directly in browser
|
||||||
|
open index.html
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🐳 Docker Deployment
|
||||||
|
|
||||||
|
### Build and Run Locally
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Build the image
|
||||||
|
docker build -t pokedex-online .
|
||||||
|
|
||||||
|
# Run the container
|
||||||
|
docker run -d -p 8080:80 --name pokedex-online pokedex-online
|
||||||
|
|
||||||
|
# View in browser
|
||||||
|
open http://localhost:8080
|
||||||
|
```
|
||||||
|
|
||||||
|
### Using Docker Compose
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Start the service
|
||||||
|
docker-compose up -d
|
||||||
|
|
||||||
|
# Stop the service
|
||||||
|
docker-compose down
|
||||||
|
|
||||||
|
# View logs
|
||||||
|
docker-compose logs -f
|
||||||
|
```
|
||||||
|
|
||||||
|
## 📦 Portainer Deployment
|
||||||
|
|
||||||
|
### Option 1: Stack Deployment (Recommended)
|
||||||
|
|
||||||
|
1. Log into Portainer
|
||||||
|
2. Navigate to **Stacks** → **Add stack**
|
||||||
|
3. Name: `pokedex-online`
|
||||||
|
4. Upload or paste the `docker-compose.yml` contents
|
||||||
|
5. Click **Deploy the stack**
|
||||||
|
|
||||||
|
### Option 2: Container Deployment
|
||||||
|
|
||||||
|
1. Build the image locally:
|
||||||
|
```bash
|
||||||
|
docker build -t pokedex-online:latest .
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Tag for your registry (if using):
|
||||||
|
```bash
|
||||||
|
docker tag pokedex-online:latest your-registry/pokedex-online:latest
|
||||||
|
docker push your-registry/pokedex-online:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
3. In Portainer:
|
||||||
|
- Navigate to **Containers** → **Add container**
|
||||||
|
- Name: `pokedex-online`
|
||||||
|
- Image: `pokedex-online:latest` (or your registry path)
|
||||||
|
- Port mapping: `8080:80`
|
||||||
|
- Restart policy: `unless-stopped`
|
||||||
|
- Deploy
|
||||||
|
|
||||||
|
### Option 3: Git Repository (Portainer with BuildKit)
|
||||||
|
|
||||||
|
1. In Portainer, navigate to **Stacks** → **Add stack**
|
||||||
|
2. Choose **Repository**
|
||||||
|
3. Repository URL: Your git repository URL
|
||||||
|
4. Compose path: `code/websites/pokedex.online/docker-compose.yml`
|
||||||
|
5. Deploy
|
||||||
|
|
||||||
|
## 🌐 Access
|
||||||
|
|
||||||
|
After deployment, access the site at:
|
||||||
|
- Local: http://localhost:8080
|
||||||
|
- Server: http://your-server-ip:8080
|
||||||
|
|
||||||
|
## <20> Automated Deployment to Synology
|
||||||
|
|
||||||
|
### Prerequisites
|
||||||
|
|
||||||
|
1. **SSH Configuration**: Ensure SSH keys are configured for Synology NAS:
|
||||||
|
- Host: `synology_internal` (10.0.0.81:2323) or `synology_external` (home.gregrjacobs.com:2323)
|
||||||
|
- User: `GregRJacobs`
|
||||||
|
- Key: `~/.ssh/ds3627xs_gregrjacobs`
|
||||||
|
|
||||||
|
2. **Remote Path**: Deployment target is `/volume1/docker/pokedex-online/base` on Synology
|
||||||
|
|
||||||
|
### Deployment Commands
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Deploy to internal Synology (10.0.0.81) on default port 8080
|
||||||
|
npm run deploy:pokedex
|
||||||
|
|
||||||
|
# Deploy to internal with custom port
|
||||||
|
npm run deploy:pokedex -- --port 8081
|
||||||
|
|
||||||
|
# Deploy to external Synology (home.gregrjacobs.com)
|
||||||
|
npm run deploy:pokedex:external
|
||||||
|
|
||||||
|
# Deploy to external with custom port
|
||||||
|
npm run deploy:pokedex:external -- --port 3000
|
||||||
|
|
||||||
|
# Full custom deployment
|
||||||
|
npm run deploy:pokedex -- --target internal --port 8082
|
||||||
|
```
|
||||||
|
|
||||||
|
### Deployment Process
|
||||||
|
|
||||||
|
The deployment script automatically:
|
||||||
|
|
||||||
|
1. **Connects** to Synology via SSH using configured host
|
||||||
|
2. **Captures** existing container state for rollback capability
|
||||||
|
3. **Transfers** files (index.html, Dockerfile, docker-compose.yml) via SFTP
|
||||||
|
4. **Modifies** docker-compose.yml port mapping based on `--port` argument
|
||||||
|
5. **Builds** and starts the Docker container with `docker-compose up -d --build`
|
||||||
|
6. **Health checks** the deployed container (5 retries with 3s intervals)
|
||||||
|
7. **Rolls back** to previous image on failure, or cleans up if no previous deployment existed
|
||||||
|
|
||||||
|
### Health Check
|
||||||
|
|
||||||
|
After deployment, the script verifies the container is responding by making HTTP requests to:
|
||||||
|
- Internal: `http://10.0.0.81:<port>`
|
||||||
|
- External: `http://home.gregrjacobs.com:<port>`
|
||||||
|
|
||||||
|
If health check fails after 5 attempts, the deployment is rolled back automatically.
|
||||||
|
|
||||||
|
### Rollback Behavior
|
||||||
|
|
||||||
|
- **Existing container**: Rolls back to previous Docker image
|
||||||
|
- **New deployment**: Runs `docker-compose down --volumes --remove-orphans` to clean up
|
||||||
|
|
||||||
|
### CLI Options
|
||||||
|
|
||||||
|
| Option | Values | Default | Description |
|
||||||
|
|--------|--------|---------|-------------|
|
||||||
|
| `--target` | `internal`, `external` | `internal` | SSH host to deploy to |
|
||||||
|
| `--port` | `1-65535` | `8080` | HTTP port to expose on host |
|
||||||
|
|
||||||
|
### Examples
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Production deployment to external Synology on port 80
|
||||||
|
npm run deploy:pokedex -- --target external --port 80
|
||||||
|
|
||||||
|
# Development deployment to internal Synology on port 8080
|
||||||
|
npm run deploy:pokedex:internal
|
||||||
|
|
||||||
|
# Test deployment on high port
|
||||||
|
npm run deploy:pokedex -- --port 9000
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🔧 Configuration
|
||||||
|
|
||||||
|
### Change Port
|
||||||
|
|
||||||
|
Edit `docker-compose.yml`:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
ports:
|
||||||
|
- "3000:80" # Change 3000 to your desired port
|
||||||
|
```
|
||||||
|
|
||||||
|
Or use the `--port` argument during automated deployment.
|
||||||
|
|
||||||
|
### Custom Domain
|
||||||
|
|
||||||
|
If using a reverse proxy (nginx, Traefik, Caddy):
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.pokedex.rule=Host(`pokedex.yourdomain.com`)"
|
||||||
|
```
|
||||||
|
|
||||||
|
## 📁 Project Structure
|
||||||
|
|
||||||
|
```
|
||||||
|
pokedex.online/
|
||||||
|
├── index.html # Landing page
|
||||||
|
├── Dockerfile # Container configuration
|
||||||
|
├── docker-compose.yml # Compose configuration
|
||||||
|
└── README.md # This file
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🛠️ Future Development
|
||||||
|
|
||||||
|
This is currently a landing page. Future plans:
|
||||||
|
- Interactive Pokédex with search
|
||||||
|
- Team builder
|
||||||
|
- Type effectiveness calculator
|
||||||
|
- Collection tracker
|
||||||
|
- Integration with Pokémon APIs
|
||||||
|
|
||||||
|
## 📝 Notes
|
||||||
|
|
||||||
|
- Uses nginx:alpine for minimal footprint (~23MB)
|
||||||
|
- Restart policy set to `unless-stopped`
|
||||||
|
- Watchtower compatible for auto-updates
|
||||||
|
- No environment variables needed for basic setup
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Status**: In Development
|
||||||
|
**Last Updated**: January 2026
|
||||||
12
code/websites/pokedex.online/apps/docker-compose.yml
Normal file
12
code/websites/pokedex.online/apps/docker-compose.yml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
pokedex-online:
|
||||||
|
build: .
|
||||||
|
container_name: pokedex-online
|
||||||
|
ports:
|
||||||
|
- '8083:80'
|
||||||
|
- '8444:443'
|
||||||
|
restart: unless-stopped
|
||||||
|
labels:
|
||||||
|
- 'com.centurylinklabs.watchtower.enable=true'
|
||||||
124
code/websites/pokedex.online/apps/index.html
Normal file
124
code/websites/pokedex.online/apps/index.html
Normal file
@@ -0,0 +1,124 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Pokedex Online - Coming Soon</title>
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||||
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
background: white;
|
||||||
|
border-radius: 20px;
|
||||||
|
padding: 60px 40px;
|
||||||
|
max-width: 600px;
|
||||||
|
width: 100%;
|
||||||
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pokeball {
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
margin: 0 auto 30px;
|
||||||
|
position: relative;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: linear-gradient(180deg, #f44336 50%, white 50%);
|
||||||
|
border: 5px solid #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pokeball::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
background: white;
|
||||||
|
border: 5px solid #333;
|
||||||
|
border-radius: 50%;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pokeball::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 5px;
|
||||||
|
background: #333;
|
||||||
|
top: 50%;
|
||||||
|
left: 0;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #333;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
font-size: 2.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
color: #667eea;
|
||||||
|
font-size: 1.2em;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
color: #666;
|
||||||
|
line-height: 1.6;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status {
|
||||||
|
background: #f0f0f0;
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 10px;
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status strong {
|
||||||
|
color: #667eea;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
.container {
|
||||||
|
padding: 40px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="pokeball"></div>
|
||||||
|
<h1>Pokedex Online</h1>
|
||||||
|
<p class="subtitle">Your Digital Pokédex Companion</p>
|
||||||
|
<p class="description">
|
||||||
|
A modern web application for exploring Pokémon data, tracking collections,
|
||||||
|
and managing your Pokémon journey. Built with ❤️ for trainers everywhere.
|
||||||
|
</p>
|
||||||
|
<div class="status">
|
||||||
|
<strong>Status:</strong> In Development<br>
|
||||||
|
Check back soon for updates!
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -27,12 +27,12 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Home Setup/Used Ports Synology Server.md",
|
"file": "Christina/Feelings Conversations/Christina Talk - Jan 15 2024.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": false
|
"source": false
|
||||||
},
|
},
|
||||||
"icon": "lucide-file",
|
"icon": "lucide-file",
|
||||||
"title": "Used Ports Synology Server"
|
"title": "Christina Talk - Jan 15 2024"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Home Setup/Used Ports Synology Server.md",
|
"file": "Christina/Feelings Conversations/Christina Talk - Jan 15 2024.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
@@ -119,7 +119,7 @@
|
|||||||
"unlinkedCollapsed": true
|
"unlinkedCollapsed": true
|
||||||
},
|
},
|
||||||
"icon": "links-coming-in",
|
"icon": "links-coming-in",
|
||||||
"title": "Backlinks for Used Ports Synology Server"
|
"title": "Backlinks for Christina Talk - Jan 15 2024"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -181,6 +181,21 @@
|
|||||||
},
|
},
|
||||||
"active": "db667fd073afcf6d",
|
"active": "db667fd073afcf6d",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings -.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - - Dec 20.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - 51624.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Jan 31 2024.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Apr 19.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 24 2023.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Aug 11 2022.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - May 16 2024.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Apr 17 2024.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Mar 20 2024.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Feb 9 2024.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings June 29.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 11 2025.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Jan 8 2026.md",
|
||||||
|
"Home Setup/Used Ports Synology Server.md",
|
||||||
"Icon\r",
|
"Icon\r",
|
||||||
"Apple Notes/Gift ideas ChristmasBirthday.md",
|
"Apple Notes/Gift ideas ChristmasBirthday.md",
|
||||||
"Random & To Sort/The Tower.md",
|
"Random & To Sort/The Tower.md",
|
||||||
@@ -195,22 +210,8 @@
|
|||||||
"Apple Notes/Animal Crossing/Ribbot.md",
|
"Apple Notes/Animal Crossing/Ribbot.md",
|
||||||
"attachments/100 1.png",
|
"attachments/100 1.png",
|
||||||
"Apple Notes/Animal Crossing/Retro Action Items.md",
|
"Apple Notes/Animal Crossing/Retro Action Items.md",
|
||||||
"Apple Notes/Animal Crossing/Looking for 10NMT per run, OR Real redd artsculptures, OR 500k bells….md",
|
|
||||||
"Apple Notes/Animal Crossing/-3 Islanders, you will only use 2. -All three have to have a plot….md",
|
|
||||||
"Christina/Feelings Conversations/Christina Feelings - Dec 6 2026.md",
|
|
||||||
"Apple Notes/13.99+10.99+10.99+2.79 = 38.76.md",
|
|
||||||
"Apple Notes/Greg Feelings - Dec 4 2025.md",
|
|
||||||
"Christina/Feelings Conversations/Christina Feelings - Dec 2 2025.md",
|
|
||||||
"Apple Notes/Charlie advocating.md",
|
|
||||||
"Apple Notes/Most password is.md",
|
|
||||||
"Apple Notes/I have worked with the people below and they can attest to my work….md",
|
|
||||||
"Apple Notes/Parking.md",
|
|
||||||
"attachments/IMG_1115.jpeg",
|
"attachments/IMG_1115.jpeg",
|
||||||
"Apple Notes/New Note 20.md",
|
|
||||||
"Apple Notes/age0-120 &!legendary &!mythical &!ultra beasts &!shiny &!4 &!xxl….md",
|
|
||||||
"attachments/Drawing 2.png",
|
"attachments/Drawing 2.png",
|
||||||
"Apple Notes/Home events.md",
|
|
||||||
"Christina/Feelings Conversations/Christina Feelings - Oct 14 2025.md",
|
|
||||||
"attachments/IMG_6415.heic",
|
"attachments/IMG_6415.heic",
|
||||||
"attachments/Drawing 1.png",
|
"attachments/Drawing 1.png",
|
||||||
"attachments/Drawing.png",
|
"attachments/Drawing.png",
|
||||||
@@ -225,7 +226,6 @@
|
|||||||
"attachments/Naka.gpx",
|
"attachments/Naka.gpx",
|
||||||
"attachments/Pasted Graphic 1.pdf",
|
"attachments/Pasted Graphic 1.pdf",
|
||||||
"Apple Notes/Milwaukee 2025 Staff Notes",
|
"Apple Notes/Milwaukee 2025 Staff Notes",
|
||||||
"Apple Notes/Christina 1",
|
"Apple Notes/Christina 1"
|
||||||
"Apple Notes/Christina"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.1.json
vendored
Normal file
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.1.json
vendored
Normal file
@@ -0,0 +1,231 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "65118307aef94695",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fb78540f6b0817b8",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6bd06c473a6df9f7",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Random & To Sort/The Tower.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "The Tower"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "db667fd073afcf6d",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Home Setup/Used Ports Synology Server.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Used Ports Synology Server"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"currentTab": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "87ef67fcdb70cca7",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "51896b8d031f12a7",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "16c60370ceca95ef",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "67df3fa6c50b7b8f",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4735c1046deb84d5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "fa8d807905c5f186",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "15acd1bca30e4e69",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "ec633bee723e26ed",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Home Setup/Used Ports Synology Server.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Used Ports Synology Server"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "76553812ae09d02a",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Welcome"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "a90689d024131f8e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "b05875d99c295b3e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md"
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Welcome"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"obsidian-importer:Open Importer": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "db667fd073afcf6d",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Icon\r",
|
||||||
|
"Apple Notes/Gift ideas ChristmasBirthday.md",
|
||||||
|
"Random & To Sort/The Tower.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Talks - May 10 2025.md",
|
||||||
|
"Christina/Feelings Conversations",
|
||||||
|
"Apple Notes/-250.md",
|
||||||
|
"Apple Notes/- httpswrapbootstrap.comthememonarch-admin-responsive-angularjs….md",
|
||||||
|
"Apple Notes/______ earli-isasmchdoes lanes lashed mmy..md",
|
||||||
|
"Apple Notes/Christina 1/Christina Happy Mothers Day!.md",
|
||||||
|
"Apple Notes/Christina 1/age0-14& !shiny& !shadow& !legendary& !mythical& !lucky& !hatched….md",
|
||||||
|
"Apple Notes/Christina 1/!+mime& !+togep& !+burm& !+riolu& !+larv& !+chime& !+happ& !+sable….md",
|
||||||
|
"Apple Notes/Animal Crossing/Ribbot.md",
|
||||||
|
"attachments/100 1.png",
|
||||||
|
"Apple Notes/Animal Crossing/Retro Action Items.md",
|
||||||
|
"Apple Notes/Animal Crossing/Looking for 10NMT per run, OR Real redd artsculptures, OR 500k bells….md",
|
||||||
|
"Apple Notes/Animal Crossing/-3 Islanders, you will only use 2. -All three have to have a plot….md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 6 2026.md",
|
||||||
|
"Apple Notes/13.99+10.99+10.99+2.79 = 38.76.md",
|
||||||
|
"Apple Notes/Greg Feelings - Dec 4 2025.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 2 2025.md",
|
||||||
|
"Apple Notes/Charlie advocating.md",
|
||||||
|
"Apple Notes/Most password is.md",
|
||||||
|
"Apple Notes/I have worked with the people below and they can attest to my work….md",
|
||||||
|
"Apple Notes/Parking.md",
|
||||||
|
"attachments/IMG_1115.jpeg",
|
||||||
|
"Apple Notes/New Note 20.md",
|
||||||
|
"Apple Notes/age0-120 &!legendary &!mythical &!ultra beasts &!shiny &!4 &!xxl….md",
|
||||||
|
"attachments/Drawing 2.png",
|
||||||
|
"Apple Notes/Home events.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Oct 14 2025.md",
|
||||||
|
"attachments/IMG_6415.heic",
|
||||||
|
"attachments/Drawing 1.png",
|
||||||
|
"attachments/Drawing.png",
|
||||||
|
"attachments/Image.png",
|
||||||
|
"attachments/Feelings Chat 0528.jpeg",
|
||||||
|
"attachments/Pasted Graphic 2 1.png",
|
||||||
|
"attachments/mapstogpx202101793729.gpx",
|
||||||
|
"attachments/FavoriteLists_iTools_202101793649.json",
|
||||||
|
"attachments/Pasted Graphic 5.png",
|
||||||
|
"attachments/Pasted Graphic 4.png",
|
||||||
|
"attachments/iSpooferLicense.txt",
|
||||||
|
"attachments/Naka.gpx",
|
||||||
|
"attachments/Pasted Graphic 1.pdf",
|
||||||
|
"Apple Notes/Milwaukee 2025 Staff Notes",
|
||||||
|
"Apple Notes/Christina 1",
|
||||||
|
"Apple Notes/Christina"
|
||||||
|
]
|
||||||
|
}
|
||||||
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.2.json
vendored
Normal file
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.2.json
vendored
Normal file
@@ -0,0 +1,231 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "65118307aef94695",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fb78540f6b0817b8",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6bd06c473a6df9f7",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Random & To Sort/The Tower.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "The Tower"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "db667fd073afcf6d",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Christina/Feelings Conversations/Untitled.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Untitled"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"currentTab": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "87ef67fcdb70cca7",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "51896b8d031f12a7",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "16c60370ceca95ef",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "67df3fa6c50b7b8f",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4735c1046deb84d5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "fa8d807905c5f186",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "15acd1bca30e4e69",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "ec633bee723e26ed",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Christina/Feelings Conversations/Untitled.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Untitled"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "76553812ae09d02a",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Welcome"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "a90689d024131f8e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "b05875d99c295b3e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md"
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Welcome"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"obsidian-importer:Open Importer": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "db667fd073afcf6d",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Home Setup/Used Ports Synology Server.md",
|
||||||
|
"Christina/Feelings Conversations/Untitled.md",
|
||||||
|
"Icon\r",
|
||||||
|
"Apple Notes/Gift ideas ChristmasBirthday.md",
|
||||||
|
"Random & To Sort/The Tower.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Talks - May 10 2025.md",
|
||||||
|
"Christina/Feelings Conversations",
|
||||||
|
"Apple Notes/-250.md",
|
||||||
|
"Apple Notes/- httpswrapbootstrap.comthememonarch-admin-responsive-angularjs….md",
|
||||||
|
"Apple Notes/______ earli-isasmchdoes lanes lashed mmy..md",
|
||||||
|
"Apple Notes/Christina 1/Christina Happy Mothers Day!.md",
|
||||||
|
"Apple Notes/Christina 1/age0-14& !shiny& !shadow& !legendary& !mythical& !lucky& !hatched….md",
|
||||||
|
"Apple Notes/Christina 1/!+mime& !+togep& !+burm& !+riolu& !+larv& !+chime& !+happ& !+sable….md",
|
||||||
|
"Apple Notes/Animal Crossing/Ribbot.md",
|
||||||
|
"attachments/100 1.png",
|
||||||
|
"Apple Notes/Animal Crossing/Retro Action Items.md",
|
||||||
|
"Apple Notes/Animal Crossing/Looking for 10NMT per run, OR Real redd artsculptures, OR 500k bells….md",
|
||||||
|
"Apple Notes/Animal Crossing/-3 Islanders, you will only use 2. -All three have to have a plot….md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 6 2026.md",
|
||||||
|
"Apple Notes/13.99+10.99+10.99+2.79 = 38.76.md",
|
||||||
|
"Apple Notes/Greg Feelings - Dec 4 2025.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 2 2025.md",
|
||||||
|
"Apple Notes/Charlie advocating.md",
|
||||||
|
"Apple Notes/Most password is.md",
|
||||||
|
"Apple Notes/I have worked with the people below and they can attest to my work….md",
|
||||||
|
"Apple Notes/Parking.md",
|
||||||
|
"attachments/IMG_1115.jpeg",
|
||||||
|
"Apple Notes/New Note 20.md",
|
||||||
|
"Apple Notes/age0-120 &!legendary &!mythical &!ultra beasts &!shiny &!4 &!xxl….md",
|
||||||
|
"attachments/Drawing 2.png",
|
||||||
|
"Apple Notes/Home events.md",
|
||||||
|
"attachments/IMG_6415.heic",
|
||||||
|
"attachments/Drawing 1.png",
|
||||||
|
"attachments/Drawing.png",
|
||||||
|
"attachments/Image.png",
|
||||||
|
"attachments/Feelings Chat 0528.jpeg",
|
||||||
|
"attachments/Pasted Graphic 2 1.png",
|
||||||
|
"attachments/mapstogpx202101793729.gpx",
|
||||||
|
"attachments/FavoriteLists_iTools_202101793649.json",
|
||||||
|
"attachments/Pasted Graphic 5.png",
|
||||||
|
"attachments/Pasted Graphic 4.png",
|
||||||
|
"attachments/iSpooferLicense.txt",
|
||||||
|
"attachments/Naka.gpx",
|
||||||
|
"attachments/Pasted Graphic 1.pdf",
|
||||||
|
"Apple Notes/Milwaukee 2025 Staff Notes",
|
||||||
|
"Apple Notes/Christina 1"
|
||||||
|
]
|
||||||
|
}
|
||||||
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.3.json
vendored
Normal file
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.3.json
vendored
Normal file
@@ -0,0 +1,231 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "65118307aef94695",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fb78540f6b0817b8",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6bd06c473a6df9f7",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Random & To Sort/The Tower.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "The Tower"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "db667fd073afcf6d",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Christina/Feelings Conversations/Christina Feelings - Jan 8 2025.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Christina Feelings - Jan 8 2025"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"currentTab": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "87ef67fcdb70cca7",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "51896b8d031f12a7",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "16c60370ceca95ef",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "67df3fa6c50b7b8f",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4735c1046deb84d5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "fa8d807905c5f186",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "15acd1bca30e4e69",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "ec633bee723e26ed",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Christina/Feelings Conversations/Christina Feelings - Jan 8 2025.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Christina Feelings - Jan 8 2025"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "76553812ae09d02a",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Welcome"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "a90689d024131f8e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "b05875d99c295b3e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md"
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Welcome"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"obsidian-importer:Open Importer": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "db667fd073afcf6d",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Home Setup/Used Ports Synology Server.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Jan 8 2025.md",
|
||||||
|
"Icon\r",
|
||||||
|
"Apple Notes/Gift ideas ChristmasBirthday.md",
|
||||||
|
"Random & To Sort/The Tower.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Talks - May 10 2025.md",
|
||||||
|
"Christina/Feelings Conversations",
|
||||||
|
"Apple Notes/-250.md",
|
||||||
|
"Apple Notes/- httpswrapbootstrap.comthememonarch-admin-responsive-angularjs….md",
|
||||||
|
"Apple Notes/______ earli-isasmchdoes lanes lashed mmy..md",
|
||||||
|
"Apple Notes/Christina 1/Christina Happy Mothers Day!.md",
|
||||||
|
"Apple Notes/Christina 1/age0-14& !shiny& !shadow& !legendary& !mythical& !lucky& !hatched….md",
|
||||||
|
"Apple Notes/Christina 1/!+mime& !+togep& !+burm& !+riolu& !+larv& !+chime& !+happ& !+sable….md",
|
||||||
|
"Apple Notes/Animal Crossing/Ribbot.md",
|
||||||
|
"attachments/100 1.png",
|
||||||
|
"Apple Notes/Animal Crossing/Retro Action Items.md",
|
||||||
|
"Apple Notes/Animal Crossing/Looking for 10NMT per run, OR Real redd artsculptures, OR 500k bells….md",
|
||||||
|
"Apple Notes/Animal Crossing/-3 Islanders, you will only use 2. -All three have to have a plot….md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 6 2026.md",
|
||||||
|
"Apple Notes/13.99+10.99+10.99+2.79 = 38.76.md",
|
||||||
|
"Apple Notes/Greg Feelings - Dec 4 2025.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 2 2025.md",
|
||||||
|
"Apple Notes/Charlie advocating.md",
|
||||||
|
"Apple Notes/Most password is.md",
|
||||||
|
"Apple Notes/I have worked with the people below and they can attest to my work….md",
|
||||||
|
"Apple Notes/Parking.md",
|
||||||
|
"attachments/IMG_1115.jpeg",
|
||||||
|
"Apple Notes/New Note 20.md",
|
||||||
|
"Apple Notes/age0-120 &!legendary &!mythical &!ultra beasts &!shiny &!4 &!xxl….md",
|
||||||
|
"attachments/Drawing 2.png",
|
||||||
|
"Apple Notes/Home events.md",
|
||||||
|
"attachments/IMG_6415.heic",
|
||||||
|
"attachments/Drawing 1.png",
|
||||||
|
"attachments/Drawing.png",
|
||||||
|
"attachments/Image.png",
|
||||||
|
"attachments/Feelings Chat 0528.jpeg",
|
||||||
|
"attachments/Pasted Graphic 2 1.png",
|
||||||
|
"attachments/mapstogpx202101793729.gpx",
|
||||||
|
"attachments/FavoriteLists_iTools_202101793649.json",
|
||||||
|
"attachments/Pasted Graphic 5.png",
|
||||||
|
"attachments/Pasted Graphic 4.png",
|
||||||
|
"attachments/iSpooferLicense.txt",
|
||||||
|
"attachments/Naka.gpx",
|
||||||
|
"attachments/Pasted Graphic 1.pdf",
|
||||||
|
"Apple Notes/Milwaukee 2025 Staff Notes",
|
||||||
|
"Apple Notes/Christina 1"
|
||||||
|
]
|
||||||
|
}
|
||||||
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.4.json
vendored
Normal file
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.4.json
vendored
Normal file
@@ -0,0 +1,231 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "65118307aef94695",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fb78540f6b0817b8",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6bd06c473a6df9f7",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Random & To Sort/The Tower.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "The Tower"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "db667fd073afcf6d",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Christina/Feelings Conversations/Christina Feelings - Jan 8 2026.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Christina Feelings - Jan 8 2026"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"currentTab": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "87ef67fcdb70cca7",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "51896b8d031f12a7",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "16c60370ceca95ef",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "67df3fa6c50b7b8f",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4735c1046deb84d5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "fa8d807905c5f186",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "15acd1bca30e4e69",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "ec633bee723e26ed",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Christina/Feelings Conversations/Christina Feelings - Jan 8 2026.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Christina Feelings - Jan 8 2026"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "76553812ae09d02a",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Welcome"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "a90689d024131f8e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "b05875d99c295b3e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md"
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Welcome"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"obsidian-importer:Open Importer": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "db667fd073afcf6d",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Home Setup/Used Ports Synology Server.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Jan 8 2026.md",
|
||||||
|
"Icon\r",
|
||||||
|
"Apple Notes/Gift ideas ChristmasBirthday.md",
|
||||||
|
"Random & To Sort/The Tower.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Talks - May 10 2025.md",
|
||||||
|
"Christina/Feelings Conversations",
|
||||||
|
"Apple Notes/-250.md",
|
||||||
|
"Apple Notes/- httpswrapbootstrap.comthememonarch-admin-responsive-angularjs….md",
|
||||||
|
"Apple Notes/______ earli-isasmchdoes lanes lashed mmy..md",
|
||||||
|
"Apple Notes/Christina 1/Christina Happy Mothers Day!.md",
|
||||||
|
"Apple Notes/Christina 1/age0-14& !shiny& !shadow& !legendary& !mythical& !lucky& !hatched….md",
|
||||||
|
"Apple Notes/Christina 1/!+mime& !+togep& !+burm& !+riolu& !+larv& !+chime& !+happ& !+sable….md",
|
||||||
|
"Apple Notes/Animal Crossing/Ribbot.md",
|
||||||
|
"attachments/100 1.png",
|
||||||
|
"Apple Notes/Animal Crossing/Retro Action Items.md",
|
||||||
|
"Apple Notes/Animal Crossing/Looking for 10NMT per run, OR Real redd artsculptures, OR 500k bells….md",
|
||||||
|
"Apple Notes/Animal Crossing/-3 Islanders, you will only use 2. -All three have to have a plot….md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 6 2026.md",
|
||||||
|
"Apple Notes/13.99+10.99+10.99+2.79 = 38.76.md",
|
||||||
|
"Apple Notes/Greg Feelings - Dec 4 2025.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 2 2025.md",
|
||||||
|
"Apple Notes/Charlie advocating.md",
|
||||||
|
"Apple Notes/Most password is.md",
|
||||||
|
"Apple Notes/I have worked with the people below and they can attest to my work….md",
|
||||||
|
"Apple Notes/Parking.md",
|
||||||
|
"attachments/IMG_1115.jpeg",
|
||||||
|
"Apple Notes/New Note 20.md",
|
||||||
|
"Apple Notes/age0-120 &!legendary &!mythical &!ultra beasts &!shiny &!4 &!xxl….md",
|
||||||
|
"attachments/Drawing 2.png",
|
||||||
|
"Apple Notes/Home events.md",
|
||||||
|
"attachments/IMG_6415.heic",
|
||||||
|
"attachments/Drawing 1.png",
|
||||||
|
"attachments/Drawing.png",
|
||||||
|
"attachments/Image.png",
|
||||||
|
"attachments/Feelings Chat 0528.jpeg",
|
||||||
|
"attachments/Pasted Graphic 2 1.png",
|
||||||
|
"attachments/mapstogpx202101793729.gpx",
|
||||||
|
"attachments/FavoriteLists_iTools_202101793649.json",
|
||||||
|
"attachments/Pasted Graphic 5.png",
|
||||||
|
"attachments/Pasted Graphic 4.png",
|
||||||
|
"attachments/iSpooferLicense.txt",
|
||||||
|
"attachments/Naka.gpx",
|
||||||
|
"attachments/Pasted Graphic 1.pdf",
|
||||||
|
"Apple Notes/Milwaukee 2025 Staff Notes",
|
||||||
|
"Apple Notes/Christina 1"
|
||||||
|
]
|
||||||
|
}
|
||||||
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.5.json
vendored
Normal file
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.5.json
vendored
Normal file
@@ -0,0 +1,231 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "65118307aef94695",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fb78540f6b0817b8",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6bd06c473a6df9f7",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Random & To Sort/The Tower.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "The Tower"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "db667fd073afcf6d",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Christina/Feelings Conversations/Untitled.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Untitled"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"currentTab": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "87ef67fcdb70cca7",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "51896b8d031f12a7",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "16c60370ceca95ef",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "67df3fa6c50b7b8f",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4735c1046deb84d5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "fa8d807905c5f186",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "15acd1bca30e4e69",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "ec633bee723e26ed",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Christina/Feelings Conversations/Untitled.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Untitled"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "76553812ae09d02a",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Welcome"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "a90689d024131f8e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "b05875d99c295b3e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md"
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Welcome"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"obsidian-importer:Open Importer": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "db667fd073afcf6d",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Jan 8 2026.md",
|
||||||
|
"Christina/Feelings Conversations/Untitled.md",
|
||||||
|
"Home Setup/Used Ports Synology Server.md",
|
||||||
|
"Icon\r",
|
||||||
|
"Apple Notes/Gift ideas ChristmasBirthday.md",
|
||||||
|
"Random & To Sort/The Tower.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Talks - May 10 2025.md",
|
||||||
|
"Christina/Feelings Conversations",
|
||||||
|
"Apple Notes/-250.md",
|
||||||
|
"Apple Notes/- httpswrapbootstrap.comthememonarch-admin-responsive-angularjs….md",
|
||||||
|
"Apple Notes/______ earli-isasmchdoes lanes lashed mmy..md",
|
||||||
|
"Apple Notes/Christina 1/Christina Happy Mothers Day!.md",
|
||||||
|
"Apple Notes/Christina 1/age0-14& !shiny& !shadow& !legendary& !mythical& !lucky& !hatched….md",
|
||||||
|
"Apple Notes/Christina 1/!+mime& !+togep& !+burm& !+riolu& !+larv& !+chime& !+happ& !+sable….md",
|
||||||
|
"Apple Notes/Animal Crossing/Ribbot.md",
|
||||||
|
"attachments/100 1.png",
|
||||||
|
"Apple Notes/Animal Crossing/Retro Action Items.md",
|
||||||
|
"Apple Notes/Animal Crossing/Looking for 10NMT per run, OR Real redd artsculptures, OR 500k bells….md",
|
||||||
|
"Apple Notes/Animal Crossing/-3 Islanders, you will only use 2. -All three have to have a plot….md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 6 2026.md",
|
||||||
|
"Apple Notes/13.99+10.99+10.99+2.79 = 38.76.md",
|
||||||
|
"Apple Notes/Greg Feelings - Dec 4 2025.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 2 2025.md",
|
||||||
|
"Apple Notes/Charlie advocating.md",
|
||||||
|
"Apple Notes/Most password is.md",
|
||||||
|
"Apple Notes/I have worked with the people below and they can attest to my work….md",
|
||||||
|
"Apple Notes/Parking.md",
|
||||||
|
"attachments/IMG_1115.jpeg",
|
||||||
|
"Apple Notes/New Note 20.md",
|
||||||
|
"Apple Notes/age0-120 &!legendary &!mythical &!ultra beasts &!shiny &!4 &!xxl….md",
|
||||||
|
"attachments/Drawing 2.png",
|
||||||
|
"attachments/IMG_6415.heic",
|
||||||
|
"attachments/Drawing 1.png",
|
||||||
|
"attachments/Drawing.png",
|
||||||
|
"attachments/Image.png",
|
||||||
|
"attachments/Feelings Chat 0528.jpeg",
|
||||||
|
"attachments/Pasted Graphic 2 1.png",
|
||||||
|
"attachments/mapstogpx202101793729.gpx",
|
||||||
|
"attachments/FavoriteLists_iTools_202101793649.json",
|
||||||
|
"attachments/Pasted Graphic 5.png",
|
||||||
|
"attachments/Pasted Graphic 4.png",
|
||||||
|
"attachments/iSpooferLicense.txt",
|
||||||
|
"attachments/Naka.gpx",
|
||||||
|
"attachments/Pasted Graphic 1.pdf",
|
||||||
|
"Apple Notes/Milwaukee 2025 Staff Notes",
|
||||||
|
"Apple Notes/Christina 1"
|
||||||
|
]
|
||||||
|
}
|
||||||
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.6.json
vendored
Normal file
231
docs/projects/memorypalace/.sync/Archive/.obsidian/workspace.6.json
vendored
Normal file
@@ -0,0 +1,231 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "65118307aef94695",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fb78540f6b0817b8",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6bd06c473a6df9f7",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Random & To Sort/The Tower.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "The Tower"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "db667fd073afcf6d",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Christina/Feelings Conversations/Christina Feelings - Dec 11 2025.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Christina Feelings - Dec 11 2025"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"currentTab": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "87ef67fcdb70cca7",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "51896b8d031f12a7",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "16c60370ceca95ef",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "67df3fa6c50b7b8f",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "4735c1046deb84d5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "fa8d807905c5f186",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "15acd1bca30e4e69",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "ec633bee723e26ed",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Christina/Feelings Conversations/Christina Feelings - Dec 11 2025.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Christina Feelings - Dec 11 2025"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "76553812ae09d02a",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Welcome"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "a90689d024131f8e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "b05875d99c295b3e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Welcome.md"
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Welcome"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"obsidian-importer:Open Importer": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "db667fd073afcf6d",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Jan 8 2026.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 11 2025.md",
|
||||||
|
"Home Setup/Used Ports Synology Server.md",
|
||||||
|
"Icon\r",
|
||||||
|
"Apple Notes/Gift ideas ChristmasBirthday.md",
|
||||||
|
"Random & To Sort/The Tower.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Talks - May 10 2025.md",
|
||||||
|
"Christina/Feelings Conversations",
|
||||||
|
"Apple Notes/-250.md",
|
||||||
|
"Apple Notes/- httpswrapbootstrap.comthememonarch-admin-responsive-angularjs….md",
|
||||||
|
"Apple Notes/______ earli-isasmchdoes lanes lashed mmy..md",
|
||||||
|
"Apple Notes/Christina 1/Christina Happy Mothers Day!.md",
|
||||||
|
"Apple Notes/Christina 1/age0-14& !shiny& !shadow& !legendary& !mythical& !lucky& !hatched….md",
|
||||||
|
"Apple Notes/Christina 1/!+mime& !+togep& !+burm& !+riolu& !+larv& !+chime& !+happ& !+sable….md",
|
||||||
|
"Apple Notes/Animal Crossing/Ribbot.md",
|
||||||
|
"attachments/100 1.png",
|
||||||
|
"Apple Notes/Animal Crossing/Retro Action Items.md",
|
||||||
|
"Apple Notes/Animal Crossing/Looking for 10NMT per run, OR Real redd artsculptures, OR 500k bells….md",
|
||||||
|
"Apple Notes/Animal Crossing/-3 Islanders, you will only use 2. -All three have to have a plot….md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 6 2026.md",
|
||||||
|
"Apple Notes/13.99+10.99+10.99+2.79 = 38.76.md",
|
||||||
|
"Apple Notes/Greg Feelings - Dec 4 2025.md",
|
||||||
|
"Christina/Feelings Conversations/Christina Feelings - Dec 2 2025.md",
|
||||||
|
"Apple Notes/Charlie advocating.md",
|
||||||
|
"Apple Notes/Most password is.md",
|
||||||
|
"Apple Notes/I have worked with the people below and they can attest to my work….md",
|
||||||
|
"Apple Notes/Parking.md",
|
||||||
|
"attachments/IMG_1115.jpeg",
|
||||||
|
"Apple Notes/New Note 20.md",
|
||||||
|
"Apple Notes/age0-120 &!legendary &!mythical &!ultra beasts &!shiny &!4 &!xxl….md",
|
||||||
|
"attachments/Drawing 2.png",
|
||||||
|
"attachments/IMG_6415.heic",
|
||||||
|
"attachments/Drawing 1.png",
|
||||||
|
"attachments/Drawing.png",
|
||||||
|
"attachments/Image.png",
|
||||||
|
"attachments/Feelings Chat 0528.jpeg",
|
||||||
|
"attachments/Pasted Graphic 2 1.png",
|
||||||
|
"attachments/mapstogpx202101793729.gpx",
|
||||||
|
"attachments/FavoriteLists_iTools_202101793649.json",
|
||||||
|
"attachments/Pasted Graphic 5.png",
|
||||||
|
"attachments/Pasted Graphic 4.png",
|
||||||
|
"attachments/iSpooferLicense.txt",
|
||||||
|
"attachments/Naka.gpx",
|
||||||
|
"attachments/Pasted Graphic 1.pdf",
|
||||||
|
"Apple Notes/Milwaukee 2025 Staff Notes",
|
||||||
|
"Apple Notes/Christina 1"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
#Christina #Feelings - discussion 8/11/22
|
||||||
|
- [ ] Feeling really hurt
|
||||||
|
- [ ] Can be really unkind when I’m upset
|
||||||
|
- [ ] Doesn’t feel like there is room for her to make mistakes in our relationship
|
||||||
|
- [ ] If she does make a mistake I go out of my way to make her feel as shitty as possible
|
||||||
|
- [ ] Let me know as soon as she was home she was sorry
|
||||||
|
- [ ] While trying to apologize the facial expressions I was making were upsetting
|
||||||
|
- [ ] Wasn’t trying to minimize on it just get me to look how she was being treated
|
||||||
|
- [ ] I was trying to show I cared but I wasn’t going to do it again - seemed cruel and defeating
|
||||||
|
- [ ] ESP if I’m saying I see how hard it’s been
|
||||||
|
- [ ] Why couldn’t she have been given a bit of grace?
|
||||||
|
- [ ] Was a shitty way to act
|
||||||
|
- [ ] Next morning trying to let her know how she felt while I was with Charlie
|
||||||
|
- [ ] Onus is on her to initiate the convo
|
||||||
|
- [ ] Wanted to be heard that she was hurt
|
||||||
|
- [ ] Something like “hey I fell asleep but would sure like what you have to say”
|
||||||
|
- [ ] Feels really shitty when she works so hard for our fam and things that she does for me to be thoughtful
|
||||||
|
- [ ] One mess up and no grace given
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
#Christina #Feelings - Talk 5/16/24
|
||||||
|
- [ ] She would appreciate being able to ask questions without me blaming her
|
||||||
|
- [ ] From earlier today
|
||||||
|
- [ ] Sent points she thought pertinent to Alice’s doc apt
|
||||||
|
- [ ] Was following up on those points
|
||||||
|
- [ ] In no way was blaming me just looking for information on Alice’s medical info
|
||||||
|
- [ ] Turned into her feeling blaming her by saying it wasn’t clear to me
|
||||||
|
- [ ] Don’t appreciate the me telling her I gave her all the info and I had no secrets in what I was telling her
|
||||||
|
- [ ] Doesn’t make me feel she can ask questions or follow up on questions that are important to know
|
||||||
|
- [ ] She feels there continues to be a lot of statements made that make her feel blamed
|
||||||
|
- [ ] For example today
|
||||||
|
- [ ] Asked about follow up from questionnaire right away I pulled out phone and said she wasn’t clear
|
||||||
|
- [ ] Feels like garbage trying to figure out information about Alice
|
||||||
|
- [ ] I deflected saying she didn’t give any appreciation
|
||||||
|
- [ ] Leads her to feel like she can’t feel free to ask me about important medical appointments she wasn’t a part of
|
||||||
|
- [ ] Another time feeling blamed today
|
||||||
|
- [ ] Me saying I was following an example she setup
|
||||||
|
- [ ] She felt frustrated and let me know she could look at the way she talked to Alice and she could let me know that she would appreciate me waiting giving time to apologize
|
||||||
|
- [ ] She doesn’t feel I acknowledged what she said and saying i was following your example
|
||||||
|
- [ ] When she tried to bring it back to giving time and space I said she isn’t the main character and that she needed to back down and check how others are feeling
|
||||||
|
- [ ] I needed break if she wouldn’t acknowledge what I shared
|
||||||
|
- [ ] this leads to feel like what she brought up isn’t being addressed and then being blamed for why I did it and then being deflected on
|
||||||
|
- [ ] She feels she was trying to get back to original point that didn’t get addressed
|
||||||
|
- [ ] Feels really frustrating and upsetting to try and talk to me
|
||||||
|
- [ ] She wants to feel like I’m listening g to and trying to understand what I’m saying l to me
|
||||||
|
- [ ] She feels like things she says to me get misinterpreted and that I get defensive but all she is looking for is a little bit of understanding on how she is feeling
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
- Felt defensive by my wording
|
||||||
|
- could you wake me up earlier like I try to do for you
|
||||||
|
- Me telling her what I have done for her only makes her feel like she has done something wrong
|
||||||
|
- It could have been an appreciation of her waking me up
|
||||||
|
- And an ask of it being earlier going forward
|
||||||
|
- She felt hopeless when she acknowledged what I said
|
||||||
|
- And offered a solution
|
||||||
|
- And the comment that followed yes anytime after 8 would be appreciated and. Now am really far behind
|
||||||
|
- She felt hopeless that she tried to speak plain
|
||||||
|
- And let me know she was feeling blamed with how the conversation was going
|
||||||
|
- She asked what more I was needing from the conversation
|
||||||
|
- She felt defeated in how the conversation played out after trying some of the things we had discussed
|
||||||
|
- She felt sad when I said multiple times I didn’t know why she was feeling blamed when she had told me why she was feeling that way
|
||||||
|
- Her cup is pretty empty right now with all that she has been giving to others
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Actions
|
||||||
|
|
||||||
|
- Try and remember things we said we were going to do to hook into trying those sooner
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Christina is feeling heard out and will stop taking notes
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#Christina #Feelings - 2/9/24
|
||||||
|
- [ ] Really disrespected from this morning
|
||||||
|
- [ ] Interrupted her multiple times
|
||||||
|
- [ ] Then when wasn’t ready to share what she said bc it was light hearted and funny
|
||||||
|
- [ ] Took opportunity to talk about it later by asking the kids
|
||||||
|
- [ ] On top of that not responding to her saying I interrupted you multiple times
|
||||||
|
- [ ] I used a rude voice
|
||||||
|
- [ ] Overall this morning really hurt her and made her feel like complete crap
|
||||||
@@ -0,0 +1,41 @@
|
|||||||
|
|
||||||
|
- She felt very concerned and sad by the way I have talked to the kids at times the past few days
|
||||||
|
- She has felt overwhelmed by the responsibility that falls to her when I am unable to be kind with the kids
|
||||||
|
- She feels angry when her words aren’t respected (eg the hamper upstairs yesterday) which then directly resulted in an escalation she needed to intervene on
|
||||||
|
- She strongly believes that if I had not put the hamper back in her room creating that physical power struggle we could have gone downstairs and she could have regrouped
|
||||||
|
- She is upset that she were sick and she needed to pick up a lot of slack with the kids
|
||||||
|
- She felt frustrated by being interrupted or her needing to bring it back from deflection saying she isn’t talking about that she is talking about what I said or did. When she was trying to advocate for the kids
|
||||||
|
- It is unfair and stressful to ask her to go down and get the day started earlier bc I want to get some stuff done bc I am not feeling working later
|
||||||
|
- That puts the responsibility solely on her and she works her full day
|
||||||
|
- Esp today when she has a field trip and she already slept in then I added to her burdens
|
||||||
|
- It feels like an uphill battle to help me when I am maki by the comments I did in the bedroom when she asked if I was going to come under the blanket and me saying she doesn’t have to do it or need to or I’m sighing bc I am feeling I am doing something by wrong
|
||||||
|
- She wasn’t in a great place and she had a lot she was working through, she is trying to show up for me and be there for me and it feels like it’s being made more difficult
|
||||||
|
- She understands that I said I wanted to be close to someone but my actions contributed to her feeling exhausted and frustrated which leads her to pull away or focus on her own wellbeing
|
||||||
|
- She can’t keep giving to everyone else when she has nothing left
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- Kids need to see a calm role model of frustration when possible
|
||||||
|
- If not possible we need to model taking a break
|
||||||
|
- The kids should not be shown upsetting pictures with no warning bc I am upset
|
||||||
|
- Not sure if I noticed but Alice started crying
|
||||||
|
- She has been really struggling with the loss of ninja and loss of her grandpa and it’s a really shitty way to start her day
|
||||||
|
- There should be no hands on with Alice unless there is immenent danger to herself or others
|
||||||
|
- Touch invites touch and almost always escalates with her
|
||||||
|
- She needs time to calm down then discuss consequences or what happened dropping the rope is not letting her win it’s stopping the power struggle and readdressing when it will be more effective
|
||||||
|
- Don’t know if it would work but Christina to try saying to take a break
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Actions
|
||||||
|
|
||||||
|
- Ask for breaks more often with kids and Christina
|
||||||
|
- Model better frustration behaviour for the kids when upsetting things happen
|
||||||
|
- Contain need to tug of war with Alice when she starts up
|
||||||
|
- When Christina sick try and pick up more thing s to lighten the load
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Christina is feeling heard out and I am stopping taking notes as of 9:20pm est
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#Christina #Feelings - 3/20/24
|
||||||
|
- [ ] Making facial expressions when talking to me
|
||||||
|
- [ ] Tone of voice as well
|
||||||
|
- [ ] Not addressing what I am saying before moving on
|
||||||
|
- [ ] Brought up that it seems what I am saying is minimized and don’t feel it was addressed
|
||||||
|
- [ ] Defensive when talking to her and her not waiting 5 seconds to answer
|
||||||
@@ -13,12 +13,12 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": false
|
"source": false
|
||||||
},
|
},
|
||||||
"icon": "lucide-file",
|
"icon": "lucide-file",
|
||||||
"title": "1 - Pokemon Club"
|
"title": "2024"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -94,7 +94,7 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
"unlinkedCollapsed": true
|
"unlinkedCollapsed": true
|
||||||
},
|
},
|
||||||
"icon": "links-coming-in",
|
"icon": "links-coming-in",
|
||||||
"title": "Backlinks for 1 - Pokemon Club"
|
"title": "Backlinks for 2024"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -113,12 +113,12 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "outgoing-link",
|
"type": "outgoing-link",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
"linksCollapsed": false,
|
"linksCollapsed": false,
|
||||||
"unlinkedCollapsed": true
|
"unlinkedCollapsed": true
|
||||||
},
|
},
|
||||||
"icon": "links-going-out",
|
"icon": "links-going-out",
|
||||||
"title": "Outgoing links from 1 - Pokemon Club"
|
"title": "Outgoing links from 2024"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -142,13 +142,13 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "outline",
|
"type": "outline",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
"followCursor": false,
|
"followCursor": false,
|
||||||
"showSearch": false,
|
"showSearch": false,
|
||||||
"searchQuery": ""
|
"searchQuery": ""
|
||||||
},
|
},
|
||||||
"icon": "lucide-list",
|
"icon": "lucide-list",
|
||||||
"title": "Outline of 1 - Pokemon Club"
|
"title": "Outline of 2024"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -170,10 +170,29 @@
|
|||||||
"copilot:Open Copilot Chat": false
|
"copilot:Open Copilot Chat": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "6893279c01482aa5",
|
"active": "03bc92bce96d8847",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
"Regionals/Championship Series/2027.md",
|
||||||
|
"Regionals/Championship Series/2026.md",
|
||||||
|
"Regionals/Championship Series/2025.md",
|
||||||
|
"Regionals/Championship Series/2024.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Regionals/Championship Series",
|
||||||
|
"Pokemon Rules & Resources/03-Video Game Rules & Resources/03-02-Pokémon Video Game Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Rules & Resources for All/01-09-Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/04-Pokémon GO Rules & Resources/04-02-Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/05-Pokémon UNITE Rules & Resources/05-01-Pokémon UNITE Championship Series Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-02-Play! Pokémon League Challenges, Cups, and Prerelease Guide.txt",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-04-League Flyer.pdf",
|
||||||
|
"Pokemon Rules & Resources/08-Further Resources for Players/08-01-World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-03-Installation and Set-up.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-07-Reporting Matches.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
"Table of Contents.md",
|
"Table of Contents.md",
|
||||||
"Booster Box Cases.md",
|
"Booster Box Cases.md",
|
||||||
"Las Vegas.md",
|
"Las Vegas.md",
|
||||||
@@ -182,10 +201,7 @@
|
|||||||
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
"Leagues/Getting a Store Sanctioned.md",
|
|
||||||
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
|
||||||
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg",
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
"Icon\r"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
191
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.10.json
vendored
Normal file
191
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.10.json
vendored
Normal file
@@ -0,0 +1,191 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "1 - Pokemon Club"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for 1 - Pokemon Club"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from 1 - Pokemon Club"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of 1 - Pokemon Club"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "6893279c01482aa5",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg",
|
||||||
|
"Icon\r"
|
||||||
|
]
|
||||||
|
}
|
||||||
192
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.11.json
vendored
Normal file
192
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.11.json
vendored
Normal file
@@ -0,0 +1,192 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Getting a Store Sanctioned"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Getting a Store Sanctioned"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Getting a Store Sanctioned"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Getting a Store Sanctioned"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg",
|
||||||
|
"Icon\r"
|
||||||
|
]
|
||||||
|
}
|
||||||
193
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.12.json
vendored
Normal file
193
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.12.json
vendored
Normal file
@@ -0,0 +1,193 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Getting a Store Sanctioned"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Getting a Store Sanctioned"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Getting a Store Sanctioned"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Getting a Store Sanctioned"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "6893279c01482aa5",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg",
|
||||||
|
"Icon\r"
|
||||||
|
]
|
||||||
|
}
|
||||||
194
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.13.json
vendored
Normal file
194
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.13.json
vendored
Normal file
@@ -0,0 +1,194 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Untitled.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Untitled"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Untitled.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Untitled"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Untitled.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Untitled"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Untitled.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Untitled"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Untitled.md",
|
||||||
|
"Pokemon Rules & Resources",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg",
|
||||||
|
"Icon\r"
|
||||||
|
]
|
||||||
|
}
|
||||||
194
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.14.json
vendored
Normal file
194
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.14.json
vendored
Normal file
@@ -0,0 +1,194 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Pokemon Rules & Resources",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg",
|
||||||
|
"Icon\r"
|
||||||
|
]
|
||||||
|
}
|
||||||
195
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.15.json
vendored
Normal file
195
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.15.json
vendored
Normal file
@@ -0,0 +1,195 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Pokemon Rules & Resources",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg",
|
||||||
|
"Icon\r"
|
||||||
|
]
|
||||||
|
}
|
||||||
196
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.16.json
vendored
Normal file
196
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.16.json
vendored
Normal file
@@ -0,0 +1,196 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/debug-page-source.html",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Pokemon Rules & Resources",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg",
|
||||||
|
"Icon\r"
|
||||||
|
]
|
||||||
|
}
|
||||||
201
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.17.json
vendored
Normal file
201
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.17.json
vendored
Normal file
@@ -0,0 +1,201 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Standards of Conduct.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Premier Events Sponsorship Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Inclusion Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Terms of Use.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-page-source.html",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Pokemon Rules & Resources",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg",
|
||||||
|
"Icon\r"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.18.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.18.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon COVID-19 Protocols.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Accessibility Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Trainer Username and Team Name Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Penalty Guidelines.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Rulebook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Standards of Conduct.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Premier Events Sponsorship Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Inclusion Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Terms of Use.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.19.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.19.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/debug-page-source.html",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon COVID-19 Protocols.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Accessibility Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Trainer Username and Team Name Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Penalty Guidelines.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Rulebook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Standards of Conduct.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Premier Events Sponsorship Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Inclusion Policy.txt",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.20.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.20.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Standards of Conduct.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Trainer Username and Team Name Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Accessibility Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Terms of Use.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Premier Events Sponsorship Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Inclusion Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-page-source.html",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon COVID-19 Protocols.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Penalty Guidelines.pdf",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.21.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.21.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Promo Card Legality Status.txt",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Banned Card List.txt",
|
||||||
|
"Pokemon Rules & Resources/Mega Evolution—Phantasmal Flames Banned List and Rule Changes Announcement.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Standards of Conduct.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Trainer Username and Team Name Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Accessibility Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Terms of Use.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Premier Events Sponsorship Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Inclusion Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-page-source.html",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.22.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.22.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Pokémon GO Championship Series Banned Pokémon List.txt",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Promo Card Legality Status.txt",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Banned Card List.txt",
|
||||||
|
"Pokemon Rules & Resources/Mega Evolution—Phantasmal Flames Banned List and Rule Changes Announcement.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Standards of Conduct.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Trainer Username and Team Name Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Accessibility Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Terms of Use.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Premier Events Sponsorship Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Inclusion Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.23.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.23.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Pokémon Activity Sheets.txt",
|
||||||
|
"Pokemon Rules & Resources/Tools Overview - Video URL.txt",
|
||||||
|
"Pokemon Rules & Resources/Installation and Set-up - Video URL.txt",
|
||||||
|
"Pokemon Rules & Resources/Adding Players.txt",
|
||||||
|
"Pokemon Rules & Resources/Championship Series Reporting - Video URL.txt",
|
||||||
|
"Pokemon Rules & Resources/Reporting Matches - Video URL.txt",
|
||||||
|
"Pokemon Rules & Resources/Running & Completing the Tournament - Video URL.txt",
|
||||||
|
"Pokemon Rules & Resources/Setting Up Your Tournament - Video URL.txt",
|
||||||
|
"Pokemon Rules & Resources/Tournament Detail Verification - Video URL.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon League Challenges, Cups, and Prerelease Guide.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Pokémon GO Championship Series Banned Pokémon List.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.24.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.24.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Penalty Guidelines.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Standards of Conduct.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Trainer Username and Team Name Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon COVID-19 Protocols.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Accessibility Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon Activity Sheets.txt",
|
||||||
|
"Pokemon Rules & Resources/Tools Overview - Video URL.txt",
|
||||||
|
"Pokemon Rules & Resources/Installation and Set-up - Video URL.txt",
|
||||||
|
"Pokemon Rules & Resources/Adding Players.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.25.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.25.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (8.5x11).pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (A4).pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Rulebook.pdf",
|
||||||
|
"Pokemon Rules & Resources/TCG Errata.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Penalty Guidelines.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Standards of Conduct.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Trainer Username and Team Name Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon COVID-19 Protocols.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Accessibility Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.26.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.26.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Pokémon GO Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Video Game Championships Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon Video Game Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (8.5x11).pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (A4).pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Rulebook.pdf",
|
||||||
|
"Pokemon Rules & Resources/TCG Errata.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Penalty Guidelines.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.27.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.27.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Scholarship Program Terms and Conditions.pdf",
|
||||||
|
"Pokemon Rules & Resources/World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/Championship Event Awards Disbursement Information.pdf",
|
||||||
|
"Pokemon Rules & Resources/League Flyer.pdf",
|
||||||
|
"Pokemon Rules & Resources/League Roster.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Store Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Organizing Pokémon GO Events.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon UNITE Championship Series Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Pokémon GO Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Video Game Championships Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.28.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.28.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Scholarship Program Terms and Conditions.pdf",
|
||||||
|
"Pokemon Rules & Resources/World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/Championship Event Awards Disbursement Information.pdf",
|
||||||
|
"Pokemon Rules & Resources/League Flyer.pdf",
|
||||||
|
"Pokemon Rules & Resources/League Roster.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Store Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Organizing Pokémon GO Events.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon UNITE Championship Series Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Pokémon GO Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Video Game Championships Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.29.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.29.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-42-Adding Players.txt",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-41-Reporting Matches.txt",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-40-Running & Completing the Tournament.txt",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-39-Tournament Detail Verification.txt",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-38-Setting Up Your Tournament.txt",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-37-Installation and Set-up.txt",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-36-Tools Overview.txt",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-35-Championship Series Reporting.txt",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-34-Championship Event Awards Disbursement Information.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-33-Play! Pokémon Scholarship Program Terms and Conditions.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-32-World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.30.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.30.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/20-TOM Training Videos",
|
||||||
|
"Pokemon Rules & Resources/19-Training Videos",
|
||||||
|
"Pokemon Rules & Resources/18-Training Videos",
|
||||||
|
"Pokemon Rules & Resources/17-Further Resources for Players",
|
||||||
|
"Pokemon Rules & Resources/16-Further Resources for Players",
|
||||||
|
"Pokemon Rules & Resources/15-Pokémon Club Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/14-Pokémon Club Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/13-Pokémon League Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/12-Pokémon League Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/11-Pokémon UNITE Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/10-Pokémon UNITE Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.31.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.31.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/20-TOM Training Videos",
|
||||||
|
"Pokemon Rules & Resources/19-Training Videos",
|
||||||
|
"Pokemon Rules & Resources/18-Training Videos",
|
||||||
|
"Pokemon Rules & Resources/17-Further Resources for Players",
|
||||||
|
"Pokemon Rules & Resources/16-Further Resources for Players",
|
||||||
|
"Pokemon Rules & Resources/15-Pokémon Club Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/14-Pokémon Club Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/13-Pokémon League Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/12-Pokémon League Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/11-Pokémon UNITE Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.32.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.32.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Accessibility Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon COVID-19 Protocols.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Inclusion Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Penalty Guidelines.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Standards of Conduct.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Premier Events Sponsorship Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Terms of Use.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Trainer Username and Team Name Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.33.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.33.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Mega Evolution—Phantasmal Flames Banned List and Rule Changes Announcement.txt",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Promo Card Legality Status.txt",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Rulebook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Banned Card List.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (8.5x11).pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (A4).pdf",
|
||||||
|
"Pokemon Rules & Resources/TCG Errata.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Accessibility Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon COVID-19 Protocols.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Inclusion Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.34.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.34.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Pokémon GO Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Video Game Championships Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon Video Game Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Mega Evolution—Phantasmal Flames Banned List and Rule Changes Announcement.txt",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Promo Card Legality Status.txt",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Rulebook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Banned Card List.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (8.5x11).pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (A4).pdf",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.35.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.35.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/10-TOM Training Videos",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos",
|
||||||
|
"Pokemon Rules & Resources/08-Further Resources for Players",
|
||||||
|
"Pokemon Rules & Resources/07-Pokémon Club Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/05-Pokémon UNITE Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/04-Pokémon GO Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/03-Video Game Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/02-Pokémon TCG Rules & Resources",
|
||||||
|
"Pokemon Rules & Resources/01-Rules & Resources for All",
|
||||||
|
"Pokemon Rules & Resources/01-Play! Pokémon Rules & Resources/01-42-Adding Players.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.36.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.36.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Trainer Username and Team Name Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Terms of Use.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Standards of Conduct.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Premier Events Sponsorship Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon COVID-19 Protocols.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Inclusion Policy.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Penalty Guidelines.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Accessibility Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/10-TOM Training Videos",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.37.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.37.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Promo Card Legality Status.txt",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Rulebook.pdf",
|
||||||
|
"Pokemon Rules & Resources/TCG Errata.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Banned Card List.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (8.5x11).pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (A4).pdf",
|
||||||
|
"Pokemon Rules & Resources/Mega Evolution—Phantasmal Flames Banned List and Rule Changes Announcement.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Trainer Username and Team Name Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Tournament Rules Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Terms of Use.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.38.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.38.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Video Game Championships Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Pokémon GO Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Promo Card Legality Status.txt",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Rulebook.pdf",
|
||||||
|
"Pokemon Rules & Resources/TCG Errata.pdf",
|
||||||
|
"Pokemon Rules & Resources/Pokémon TCG Banned Card List.txt",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (8.5x11).pdf",
|
||||||
|
"Pokemon Rules & Resources/Play! Pokémon Deck List (A4).pdf",
|
||||||
|
"Pokemon Rules & Resources/Mega Evolution—Phantasmal Flames Banned List and Rule Changes Announcement.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.39.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.39.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-08-Adding Players.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-04-Setting Up Your Tournament.txt",
|
||||||
|
"Pokemon Rules & Resources/07-Pokémon Club Rules & Resources/07-01-Pokémon Activity Sheets.txt",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-03-League Roster.pdf",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-01-Play! Pokémon Store Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/04-Pokémon GO Rules & Resources/04-01-Play! Pokémon Pokémon GO Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/03-Video Game Rules & Resources/03-01-Play! Pokémon Video Game Championships Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/02-Pokémon TCG Rules & Resources/02-09-Pokémon TCG Tournament Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/02-Pokémon TCG Rules & Resources/02-07-Pokémon TCG Promo Card Legality Status.txt",
|
||||||
|
"Pokemon Rules & Resources/02-Pokémon TCG Rules & Resources/02-06-Mega Evolution—Phantasmal Flames Banned List and Rule Changes Announcement.txt",
|
||||||
|
"Pokemon Rules & Resources/02-Pokémon TCG Rules & Resources/02-05-Pokémon TCG Banned Card List.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.40.json
vendored
Normal file
204
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.40.json
vendored
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from Professor Work Experience"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Professor Work Experience.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of Professor Work Experience"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Pokemon Rules & Resources/03-Video Game Rules & Resources/03-02-Pokémon Video Game Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Rules & Resources for All/01-09-Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/04-Pokémon GO Rules & Resources/04-02-Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/05-Pokémon UNITE Rules & Resources/05-01-Pokémon UNITE Championship Series Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-02-Play! Pokémon League Challenges, Cups, and Prerelease Guide.txt",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-04-League Flyer.pdf",
|
||||||
|
"Pokemon Rules & Resources/08-Further Resources for Players/08-01-World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-03-Installation and Set-up.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-07-Reporting Matches.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-02-Tools Overview.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-01-Championship Series Reporting.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.41.json
vendored
Normal file
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.41.json
vendored
Normal file
@@ -0,0 +1,206 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "2026"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for 2026"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from 2026"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of 2026"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Regionals/Championship Series/2025.md",
|
||||||
|
"Regionals/Championship Series/2026.md",
|
||||||
|
"Regionals/Championship Series/2024.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Regionals/Championship Series",
|
||||||
|
"Pokemon Rules & Resources/03-Video Game Rules & Resources/03-02-Pokémon Video Game Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Rules & Resources for All/01-09-Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/04-Pokémon GO Rules & Resources/04-02-Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/05-Pokémon UNITE Rules & Resources/05-01-Pokémon UNITE Championship Series Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-02-Play! Pokémon League Challenges, Cups, and Prerelease Guide.txt",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-04-League Flyer.pdf",
|
||||||
|
"Pokemon Rules & Resources/08-Further Resources for Players/08-01-World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-03-Installation and Set-up.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-07-Reporting Matches.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.42.json
vendored
Normal file
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.42.json
vendored
Normal file
@@ -0,0 +1,206 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "2024"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for 2024"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from 2024"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of 2024"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Regionals/Championship Series/2026.md",
|
||||||
|
"Regionals/Championship Series/2025.md",
|
||||||
|
"Regionals/Championship Series/2024.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Regionals/Championship Series",
|
||||||
|
"Pokemon Rules & Resources/03-Video Game Rules & Resources/03-02-Pokémon Video Game Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Rules & Resources for All/01-09-Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/04-Pokémon GO Rules & Resources/04-02-Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/05-Pokémon UNITE Rules & Resources/05-01-Pokémon UNITE Championship Series Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-02-Play! Pokémon League Challenges, Cups, and Prerelease Guide.txt",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-04-League Flyer.pdf",
|
||||||
|
"Pokemon Rules & Resources/08-Further Resources for Players/08-01-World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-03-Installation and Set-up.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-07-Reporting Matches.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.43.json
vendored
Normal file
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.43.json
vendored
Normal file
@@ -0,0 +1,206 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2025.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "2025"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2025.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for 2025"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2025.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from 2025"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2025.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of 2025"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Regionals/Championship Series/2024.md",
|
||||||
|
"Regionals/Championship Series/2026.md",
|
||||||
|
"Regionals/Championship Series/2025.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Regionals/Championship Series",
|
||||||
|
"Pokemon Rules & Resources/03-Video Game Rules & Resources/03-02-Pokémon Video Game Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Rules & Resources for All/01-09-Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/04-Pokémon GO Rules & Resources/04-02-Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/05-Pokémon UNITE Rules & Resources/05-01-Pokémon UNITE Championship Series Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-02-Play! Pokémon League Challenges, Cups, and Prerelease Guide.txt",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-04-League Flyer.pdf",
|
||||||
|
"Pokemon Rules & Resources/08-Further Resources for Players/08-01-World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-03-Installation and Set-up.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-07-Reporting Matches.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.44.json
vendored
Normal file
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.44.json
vendored
Normal file
@@ -0,0 +1,206 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "2026"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for 2026"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from 2026"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of 2026"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Regionals/Championship Series/2025.md",
|
||||||
|
"Regionals/Championship Series/2024.md",
|
||||||
|
"Regionals/Championship Series/2026.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Regionals/Championship Series",
|
||||||
|
"Pokemon Rules & Resources/03-Video Game Rules & Resources/03-02-Pokémon Video Game Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Rules & Resources for All/01-09-Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/04-Pokémon GO Rules & Resources/04-02-Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/05-Pokémon UNITE Rules & Resources/05-01-Pokémon UNITE Championship Series Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-02-Play! Pokémon League Challenges, Cups, and Prerelease Guide.txt",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-04-League Flyer.pdf",
|
||||||
|
"Pokemon Rules & Resources/08-Further Resources for Players/08-01-World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-03-Installation and Set-up.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-07-Reporting Matches.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.45.json
vendored
Normal file
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.45.json
vendored
Normal file
@@ -0,0 +1,206 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "2026"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for 2026"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from 2026"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2026.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of 2026"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Regionals/Championship Series/2024.md",
|
||||||
|
"Regionals/Championship Series/2025.md",
|
||||||
|
"Regionals/Championship Series/2026.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Regionals/Championship Series",
|
||||||
|
"Pokemon Rules & Resources/03-Video Game Rules & Resources/03-02-Pokémon Video Game Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Rules & Resources for All/01-09-Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/04-Pokémon GO Rules & Resources/04-02-Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/05-Pokémon UNITE Rules & Resources/05-01-Pokémon UNITE Championship Series Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-02-Play! Pokémon League Challenges, Cups, and Prerelease Guide.txt",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-04-League Flyer.pdf",
|
||||||
|
"Pokemon Rules & Resources/08-Further Resources for Players/08-01-World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-03-Installation and Set-up.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-07-Reporting Matches.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.46.json
vendored
Normal file
206
docs/projects/pokemon-professor/.sync/Archive/.obsidian/workspace.46.json
vendored
Normal file
@@ -0,0 +1,206 @@
|
|||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "dbea326f5a7eef0e",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "33cb3b63442ef3e2",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "03bc92bce96d8847",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "2024"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "51d249e97eb631df",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e27fe91559b8323a",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6893279c01482aa5",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "Files"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "1354b92b77086879",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": false,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "Search"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7bd7edfb815c69a6",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "bookmarks",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-bookmark",
|
||||||
|
"title": "Bookmarks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "1c3c022a36d199ca",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "e9231b430de0b572",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "fa016c167bbc26d8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "Backlinks for 2024"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f7e5cdd83386832c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "Outgoing links from 2024"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20cd550dc7cb138c",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "Tags"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "751f8b968439d8d1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "Regionals/Championship Series/2024.md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "Outline of 2024"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300,
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:Open quick switcher": false,
|
||||||
|
"graph:Open graph view": false,
|
||||||
|
"canvas:Create new canvas": false,
|
||||||
|
"daily-notes:Open today's daily note": false,
|
||||||
|
"templates:Insert template": false,
|
||||||
|
"command-palette:Open command palette": false,
|
||||||
|
"bases:Create new base": false,
|
||||||
|
"copilot:Open Copilot Chat": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "03bc92bce96d8847",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"Regionals/Championship Series/2026.md",
|
||||||
|
"Regionals/Championship Series/2024.md",
|
||||||
|
"Regionals/Championship Series/2025.md",
|
||||||
|
"Professor Work Experience.md",
|
||||||
|
"Regionals/Championship Series",
|
||||||
|
"Pokemon Rules & Resources/03-Video Game Rules & Resources/03-02-Pokémon Video Game Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/01-Rules & Resources for All/01-09-Play! Pokémon Attire and Cosplay Policy.pdf",
|
||||||
|
"Pokemon Rules & Resources/04-Pokémon GO Rules & Resources/04-02-Pokémon GO Team List.pdf",
|
||||||
|
"Pokemon Rules & Resources/05-Pokémon UNITE Rules & Resources/05-01-Pokémon UNITE Championship Series Handbook.pdf",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-02-Play! Pokémon League Challenges, Cups, and Prerelease Guide.txt",
|
||||||
|
"Pokemon Rules & Resources/06-Pokémon League Rules & Resources/06-04-League Flyer.pdf",
|
||||||
|
"Pokemon Rules & Resources/08-Further Resources for Players/08-01-World Championships Battle Dictionary.pdf",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-03-Installation and Set-up.txt",
|
||||||
|
"Pokemon Rules & Resources/09-Training Videos/09-07-Reporting Matches.txt",
|
||||||
|
"Pokemon Rules & Resources/debug-screenshot.png",
|
||||||
|
"Leagues/Getting a Store Sanctioned.md",
|
||||||
|
"Leagues/Next Steps After A Store Is Sanctioned.md",
|
||||||
|
"Leagues/First League Challenge.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/1 - Pokemon Club.md",
|
||||||
|
"Play! Summit/Montreal 2025/Day 1/4 - Building a Community around Pokemon.md",
|
||||||
|
"Table of Contents.md",
|
||||||
|
"Booster Box Cases.md",
|
||||||
|
"Las Vegas.md",
|
||||||
|
"Regionals/Go/Reviews - Best Practices.md",
|
||||||
|
"thedomdomdomdom.md",
|
||||||
|
"Regionals/Go/Selected As A HJ or AHJ - Pete Lachaine.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Head Judge.md",
|
||||||
|
"Regionals/Go/Roles/Pokemon Go - Assistant Head Judge.md",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 2.png",
|
||||||
|
"Attachements/Getting a store sanctioned - Venue Review - Page 1.jpg"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
There are many reason you might want to sanction as store but know that this is a big responsibility.
|
||||||
|
|
||||||
|
Its key the Owner or Manager of the store is the one to apply for the Store League OR an agreement is in place where a professor with enough experience in the program can sanction the league while the owner gets his 101 and background check to eventually [[Take Over The League]].
|
||||||
|
|
||||||
|
To start you can visit the link here:
|
||||||
|
- https://retailer.pokemon.com/s/venue-review?strategy=playpokemon
|
||||||
|
|
||||||
|
Log in with you Play! Pokemon ID
|
||||||
|
|
||||||
|
You will be met with the following screen but your information:
|
||||||
|
![[Getting a store sanctioned - Venue Review - Page 1.jpg]]
|
||||||
|
|
||||||
|
From there we can click `Next` and will see this:
|
||||||
|
![[Getting a store sanctioned - Venue Review - Page 2.png]]
|
||||||
|
|
||||||
|
After this is filled out and completed click `Next` and move onto the following screen:
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
1. Schedule Play! Session
|
||||||
|
1. Pick a day of the week you would like to start tracking people coming into your store and engaging with Pokemon. This can be any day but it is suggested that it not conflict with other stores in the area to share Trainers and not divide them
|
||||||
|
2. Record Trainers Play! Pokemon ID using [[Play! Tools]] to scan then during the session. This is much prefered than entering them manually afterwards for a number of reasons
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
Play! Pokémon Terms of Use
|
||||||
|
|
||||||
|
Source: https://www.pokemon.com/us/play-pokemon/play-pokemon-terms-of-use/
|
||||||
|
|
||||||
|
Play! Pokémon Terms of Use
|
||||||
|
|
||||||
|
Thanks for your interest in the Play! Pokémon program, offered by The Pokémon Company International Inc. Before participating in the program, you (or your parent or legal guardian, if you are under the age of majority in your country) must carefully review and agree to the terms in this Play! Pokémon Terms of Use (“Agreement”).
|
||||||
|
|
||||||
|
HOW THE PROGRAM WORKS: The Play! Pokémon program (“Program”) is a series of casual events and tournaments that are hosted by us or by independent organizations, such as local game stores or community centers. These events are intended to be community-focused and friendly, whether in person or online. At some Play! Pokémon events, players of the trading card game, video games, and applications can compete against other players to improve their skills and earn prizes. This Agreement applies to all who participate in the Program, including players, competitors, and Professors.
|
||||||
|
|
||||||
|
WHO CAN JOIN? You may participate in the Program if: (1) you accept and agree to be bound by the terms of this Agreement; (2) you’re old enough to sign up on your own OR if you have the consent of a parent or guardian as discussed below; (3) are a parent or guardian of a minor who is participating in the Program and you are accepting and agreeing on their behalf; and (4) you’re not banned from participating under local laws or from previous Play! Pokémon events. If you do not accept this Agreement and agree to be bound by its terms, you may not participate in the Program.
|
||||||
|
|
||||||
|
CONSENT FOR MINORS: If you’re not legally an adult where you live, your parent or guardian must read and agree to the terms of this Agreement and provide express permission for you to participate. By allowing a minor to participate, whether or not the minor has their own account, the parent or guardian: (1) consents to the minor’s participation in the Program; (2) accepts and agrees to be bound by all terms of this Agreement on behalf of the minor; and (3) assumes the risk associated with Play! Pokémon events as provided below. If a parent or guardian accepts this Agreement on your behalf when you are a minor, and if you continue to participate in the Program after you reach the age of majority, you will be deemed to have accepted this Agreement in your own name as an adult participant unless you discontinue your participation in the Program after you become an adult.
|
||||||
|
|
||||||
|
PLAY BY THE RULES: As a participant in the Program, you are required to: (1) treat others respectfully, including other players, Professors, staff, and others at the event; (2) refrain from cheating, harassment, and disruptive behavior; (3) abide by the decisions of event organizers, staff, and Professors regarding your conduct during a Play! Pokémon event and your use of any related facilities, software, and equipment; and (4) accept and follow the Play! Pokémon Standards of Conduct. We reserve the right to action, suspend, or remove any player for failure to follow any rules and standards set forth within this Agreement, including all other rules, guidelines and policies which can be found on the Play! Pokémon Rules & Resources webpage. All documentation found on the Play! Pokémon Rules & Resources webpage may be updated from time to time, so it is important that you frequently check back. You further acknowledge that if you violate any of these rules you may be subject to actions, suspensions, or removal from the Program.
|
||||||
|
|
||||||
|
SOME GAMES AND TOURNAMENTS HAVE THEIR OWN RULES: Some Pokémon games, tournaments, and platforms have their own rules and procedures. In order to participate in the Program, you must first accept and agree to follow the Pokémon Terms of Use as well as the Tournament Rules Handbook and the Code of Conduct which are found here. When you participate in a game or tournament that has its own specific rules and procedures, you must accept and agree to follow those rules and procedures, which can be found on the Play! Pokémon Rules & Resources webpage.
|
||||||
|
|
||||||
|
PRIZES AND AWARDS: Some Play! Pokémon events may offer prizes such as [cash awards], travel awards, promotional items, digital content, or exclusive merchandise. If you win a prize at a Play! Pokémon event, you agree to be responsible for any taxes which may be owed and authorize us or the event organizer to withhold any amounts required to be withheld pursuant to applicable law. If requested, you agree to promptly complete and submit any forms required for fulfillment or tax compliance. Your failure to complete the forms requested by us or the event operator within the time allotted may result in the forfeiture of the prize.
|
||||||
|
|
||||||
|
USE OF YOUR NAME AND PUBLIC PROFILE: To operate online and in-person competitions, we may display certain player-related information (such as names, rankings, scores, and match outcomes) on leaderboards, in player profiles, and in other competition-related features. By default, this information will be anonymized or limited to a screen name that does not identify the player personally. However, if you choose to create a public player profile or otherwise opt-in to sharing this information, it may be visible to other Program participants and the public. You acknowledge and agree that, by participating in the Program, you (or your parent or legal guardian, if you are under the age of majority in your country), we may use this game-related information to support and promote the Program and related services, and that public profiles and leaderboards may be accessible to other players, spectators, event organizers, and the public. This use does not entitle you to compensation of any kind. In addition, we may create highlight videos or written content that features notable player achievements, including success stories or competition milestones. If you are selected to be featured in such highlight content, you consent to the use of your name, image, likeness, and footage of your gameplay in connection with the display and distribution of this highlight content, without additional notice or compensation.
|
||||||
|
|
||||||
|
PRIVACY: The collection, use, and disclosure of information about participants in the Play! Pokémon Program, including minors, is governed by our Privacy Notice, which is available here. You are encouraged to review the Privacy Notice before participating in the Program. We may use the information you provide us with to contact you from time to time with questions about your experience with the Program and inquire if you would like to be featured in future promotions. You are not required to provide feedback, but by participating in the Program, you are consenting to receive this sort of outreach from us.
|
||||||
|
|
||||||
|
EVENT VENUE AND THIRD PARTY SERVICES: If a Play! Pokémon event is held at an independent game store, community center, or other third-party venue, you acknowledge that we do not operate or control the venue and are not responsible for any acts, omissions, conditions, or incidents that occur at the venue. For example, we are not responsible for the venue’s operations, facilities, staff, security measures, data collection procedures, or any products or services provided by third parties at the venue. If you have any issues arising from the venue’s condition or operations, you should address those issues directly with the venue. You assume all risks associated with your presence at, and participation in, events held at any such third-party venue.
|
||||||
|
|
||||||
|
ASSUMPTION OF RISK AND LIMITATION OF LIABILITY: Participation in the Program is voluntary and may involve physical activity, online interaction, travel, or exposure to environments and content that we do not control, all of which carry certain risks, including the risk of personal injury, property damage, technical failures, or interactions with other participants or third parties. By participating in the Program, you voluntarily assume all such risks and agree that we will not be liable for any claims, losses, damages, injuries, or other liabilities arising out of or relating to your participation in the Program, to the fullest extent permitted by applicable law.
|
||||||
|
|
||||||
|
CHANGES TO THE PROGRAM OR THIS AGREEMENT: We may update or modify this Agreement, the Play! Pokémon Rules & Resources, or the Program at any time. If we make changes to this Agreement, we will notify you by email using the address that you provided when you opened your Pokémon Trainer Central account. Your continued participation in the Program after receiving such notice will constitute your acceptance of the updated terms. We may also modify, suspend, or cancel specific events or features of the Program at our discretion, and such changes will take effect when communicated or posted, unless otherwise stated.
|
||||||
|
|
||||||
|
OTHER TERMS: This Agreement (together with the Terms of Use and all other rules and procedures discussed above) constitutes the entire agreement between you and us with respect to your participation in the Play! Pokémon Program. This Agreement is governed by and construed in accordance with the laws of the State of Washington. Any disputes relating to this Agreement or the Program must be resolved in the state or federal courts located in Seattle, Washington.
|
||||||
|
|
||||||
|
BY CLICKING “ACCEPT,” YOU CONFIRM THAT YOU HAVE READ THIS PLAY! POKÉMON TERMS OF USE. YOU UNDERSTAND ITS CONTENTS AND LEGAL SIGNIFICANCE, AND YOU AGREE TO BE BOUND BY ITS TERMS.
|
||||||
Binary file not shown.
@@ -0,0 +1,73 @@
|
|||||||
|
Play! Pokémon Inclusion Policy
|
||||||
|
|
||||||
|
Source: https://www.pokemon.com/us/play-pokemon/about/play-pokemon-inclusion-policy
|
||||||
|
|
||||||
|
Play! Pokémon Inclusion Policy
|
||||||
|
|
||||||
|
A
|
||||||
|
t the Pokémon Company International, we believe the world of Pokémon is welcoming to everyone. The Pokémon Company International is committed, in its role as the sanctioning body of Play! Pokémon tournaments worldwide, to fostering an inclusive and fair environment for all participants regardless of factors including but not limited to age, race, ethnicity, sexual orientation, gender, and disability.
|
||||||
|
|
||||||
|
Diversity, equity, and inclusion are important to us. They strengthen and enrich us, our players, organizers, and the Play! Pokémon program globally. We want Play! Pokémon events to be a place for players and fans of all backgrounds. We aim to treat everyone in our programs fairly and to recognize and respond to their individual needs, while striving to provide a fun and fair environment for all participants. We continue to listen to all program members as we learn and find new ways to improve.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Our aim is to build a culture and community that actively promote learning, openness, fairness, diversity, equity, inclusion, and general good sporting behavior. All members of the Play! Pokémon community—players, fans, parents, Professors, organizers, and attendees in the Play! Pokémon program—have a role in making this a reality.
|
||||||
|
|
||||||
|
Pokémon, its agents, sanctioned persons, and entities will not take part in or tolerate discrimination, victimization, harassment, or bullying of any kind on the grounds of:
|
||||||
|
|
||||||
|
Age
|
||||||
|
|
||||||
|
Disability
|
||||||
|
|
||||||
|
Gender identity or affirmation/transition/ expression
|
||||||
|
|
||||||
|
Marital or civil partnership status
|
||||||
|
|
||||||
|
Pregnancy or maternity
|
||||||
|
|
||||||
|
Race, color, nationality, or ethnic or national origin
|
||||||
|
|
||||||
|
Religion, belief, or lack thereof
|
||||||
|
|
||||||
|
Sexual orientation
|
||||||
|
|
||||||
|
Socioeconomic status
|
||||||
|
|
||||||
|
Education
|
||||||
|
|
||||||
|
Citizenship status
|
||||||
|
|
||||||
|
Political affiliation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Who is covered by the policy?
|
||||||
|
|
||||||
|
The policy covers all individuals on the Play! Pokémon staff, and all players, organizers, Professors, and attendees at officially sanctioned Play! Pokémon events.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Responsibilities under the policy
|
||||||
|
|
||||||
|
All people sanctioned by The Pokémon Company International to conduct official Play! Pokémon activities share responsibility for ensuring the policy is followed.
|
||||||
|
|
||||||
|
All contracted event organizers and Professors are expected to adhere to and ensure that this policy is in effect at events at which they officiate.
|
||||||
|
|
||||||
|
All players, staff, parents, and attendees are responsible for their personal behavior in relation to all aspects of this policy.
|
||||||
|
|
||||||
|
All contracted event organizers and Professors must be made aware of the contents of this policy and are expected to support and promote it.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Play! Pokémon’s Statement of Action
|
||||||
|
|
||||||
|
The Pokémon Company International reserves the right, at our discretion, to penalize (up to removal from Play! Pokémon programs) individuals in the program who violate this policy. You can view more on our Standards of Conduct here. If you have feedback on this policy, please open a ticket with our Customer Service team. If you are aware of any individuals who have violated the terms of this policy, please provide a report to the Play! Pokémon Trust and Safety Team through our Customer Service portal.
|
||||||
|
|
||||||
|
Document last reviewed: August 1, 2023
|
||||||
Binary file not shown.
@@ -0,0 +1,34 @@
|
|||||||
|
Play! Pokémon Premier Events Sponsorship Policy
|
||||||
|
|
||||||
|
Source: https://www.pokemon.com/us/play-pokemon/about/premier-events-sponsorship-policy/
|
||||||
|
|
||||||
|
PREMIER EVENTS SPONSORSHIP POLICY
|
||||||
|
|
||||||
|
P
|
||||||
|
layers and teams wishing to acquire a sponsorship and wear, use, or otherwise promote a sponsor’s logo in appearances at Play! Pokémon events must request approval via our Sponsorship Release Form available via Customer Support. The approval request must meet our sponsorship requirements below and must be received at least 3 weeks prior to the event in which the sponsor’s logo will be displayed. All approvals are at the sole discretion of TPCi, and TPCi reserves the right to refuse any request.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Sponsorship Requirements
|
||||||
|
|
||||||
|
Any product or service intending to sponsor a player or team at a sanctioned Play! Pokémon event must comply with our Play! Pokémon Rules & Resources and must be suitable for all ages.
|
||||||
|
|
||||||
|
Examples of products or services that would not be permitted are listed below. Note that this list is not exhaustive, and The Pokémon Company International reserves the right to refuse a sponsorship for any reason, at any time.
|
||||||
|
|
||||||
|
Brands or services that are not suitable for all ages
|
||||||
|
|
||||||
|
Dating services
|
||||||
|
|
||||||
|
Alcohol, tobacco, drugs, or medical equipment
|
||||||
|
|
||||||
|
Weapons or explosives
|
||||||
|
|
||||||
|
Gambling, wagering, or lotteries
|
||||||
|
|
||||||
|
Political ads or ads otherwise promoting a political agenda
|
||||||
|
|
||||||
|
Cryptocurrency
|
||||||
|
|
||||||
|
Sellers of or marketplaces for virtual items known or likely to be counterfeit or illegal
|
||||||
|
|
||||||
|
Any other video game, esports tournament, league, event, or collectible card game, or developer or publisher thereof
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,41 @@
|
|||||||
|
Mega Evolution—Phantasmal Flames Banned List and Rule Changes Announcement
|
||||||
|
|
||||||
|
Source: https://www.pokemon.com/us/play-pokemon/about/mega-evolution/mega-evolution-phantasmal-flames-banned-list-and-rule-changes-announcement
|
||||||
|
|
||||||
|
Mega Evolution—Phantasmal Flames Banned List and Rule Changes Announcement
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Announcement Date: October 30, 2025
|
||||||
|
|
||||||
|
Effective Date: November 28, 2025
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Standard format
|
||||||
|
|
||||||
|
No changes have been made to the banned card list for the Standard format.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Expanded format
|
||||||
|
|
||||||
|
No changes have been made to the banned card list for the Expanded format.
|
||||||
|
|
||||||
|
The list of banned cards for the Standard and Expanded formats can be found here.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Details of Changes
|
||||||
|
|
||||||
|
No cards were banned from the Standard format. It will be an extremely rare occurrence for cards to be banned from the Standard format.
|
||||||
|
|
||||||
|
No cards were banned from the Expanded format.
|
||||||
|
|
||||||
|
Tournament results and community feedback will continue to be analyzed to maintain a healthy play environment.
|
||||||
@@ -0,0 +1,289 @@
|
|||||||
|
Pokémon TCG Promo Card Legality Status
|
||||||
|
|
||||||
|
Source: https://www.pokemon.com/us/play-pokemon/about/pokemon-tcg-promo-card-legality-status
|
||||||
|
|
||||||
|
Pokémon TCG Promo Card Legality Status
|
||||||
|
|
||||||
|
T
|
||||||
|
here is a brief waiting period after a new Pokémon TCG card is introduced before it is eligible for use in Play! Pokémon competitions. This waiting period gives players an opportunity to understand and practice with the new card. Pokémon TCG promo cards such as those found in special collections will be legal on the first or third Friday of the month after the product is released.
|
||||||
|
|
||||||
|
The following tables show the first date in which upcoming cards can be used, as well as showing which promo cards introduced as of January 1, 2017, are already legal in a Play! Pokémon competitive event.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Upcoming Promo Cards
|
||||||
|
|
||||||
|
Card Card Number Legal Date
|
||||||
|
Celebratory Fanfare MEP 028 2/13/2026
|
||||||
|
Mega Charizard X ex MEP 029 Upon Release
|
||||||
|
Mega Charizard Y ex MEP 030 2/13/2026
|
||||||
|
N's Zekrom MEP 031 2/13/2026
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Available Promo Cards
|
||||||
|
|
||||||
|
Card Card Number
|
||||||
|
Meganium MEP 001
|
||||||
|
Inteleon MEP 002
|
||||||
|
Alakazam MEP 003
|
||||||
|
Lunatone MEP 004
|
||||||
|
Drifloon MEP 005
|
||||||
|
Drifblim MEP 006
|
||||||
|
Psyduck MEP 007
|
||||||
|
Golduck MEP 008
|
||||||
|
Alakazam MEP 009
|
||||||
|
Riolu MEP 010
|
||||||
|
Mega Latias ex MEP 011
|
||||||
|
Mega Lucario ex MEP 012
|
||||||
|
Mega Venusaur ex MEP 013
|
||||||
|
Ceruledge MEP 014
|
||||||
|
Zacian MEP 015
|
||||||
|
Flygon MEP 016
|
||||||
|
Toxtricity MEP 017
|
||||||
|
Cottonee MEP 018
|
||||||
|
Whimsicott MEP 019
|
||||||
|
Sneasel MEP 020
|
||||||
|
Weavile MEP 021
|
||||||
|
Charcadet MEP 022
|
||||||
|
Mega Charizard X ex MEP 023
|
||||||
|
Oricorio ex MEP 024
|
||||||
|
Mega Kangaskhan ex MEP 025
|
||||||
|
Meloetta MEP 026
|
||||||
|
Haunter MEP 027
|
||||||
|
Sprigatito SVP 001
|
||||||
|
Fuecoco SVP 002
|
||||||
|
Quaxly SVP 003
|
||||||
|
Mimikyu ex SVP 004
|
||||||
|
Quaquaval SVP 005
|
||||||
|
Pawmot SVP 006
|
||||||
|
Hawlucha SVP 007
|
||||||
|
Revavroom SVP 008
|
||||||
|
Spidops SVP 009
|
||||||
|
Espathra SVP 010
|
||||||
|
Arcanine SVP 011
|
||||||
|
Dondozo SVP 012
|
||||||
|
Miraidon SVP 013
|
||||||
|
Koraidon SVP 014
|
||||||
|
Flaaffy SVP 015
|
||||||
|
Ampharos ex SVP 016
|
||||||
|
Lucario ex SVP 017
|
||||||
|
Cyclizar ex SVP 018
|
||||||
|
Baxcalibur SVP 019
|
||||||
|
Tinkaton SVP 020
|
||||||
|
Murkrow SVP 021
|
||||||
|
Pelipper SVP 022
|
||||||
|
Smoliv SVP 023
|
||||||
|
Growlithe SVP 024
|
||||||
|
Tinkatink SVP 025
|
||||||
|
Varoom SVP 026
|
||||||
|
Pikachu SVP 027
|
||||||
|
Koraidon ex SVP 028
|
||||||
|
Miraidon ex SVP 029
|
||||||
|
Chien-Pao ex SVP 030
|
||||||
|
Tinkaton ex SVP 031
|
||||||
|
Annihilape ex SVP 032
|
||||||
|
Meowscarada ex SVP 033
|
||||||
|
Skeledirge ex SVP 034
|
||||||
|
Quaquaval ex SVP 035
|
||||||
|
Palafin SVP 036
|
||||||
|
Cleffa SVP 037
|
||||||
|
Togekiss SVP 038
|
||||||
|
Mawile SVP 039
|
||||||
|
Pawmi SVP 040
|
||||||
|
Paldean Wooper SVP 041
|
||||||
|
Houndstone SVP 042
|
||||||
|
Eevee SVP 043
|
||||||
|
Charmander SVP 044
|
||||||
|
Paradise Resort SVP 045
|
||||||
|
Bulbasaur SVP 046
|
||||||
|
Charmander SVP 047
|
||||||
|
Squirtle SVP 048
|
||||||
|
Zapdos ex SVP 049
|
||||||
|
Alakazam ex SVP 050
|
||||||
|
Snorlax SVP 051
|
||||||
|
Mewtwo SVP 052
|
||||||
|
Mew ex SVP 053
|
||||||
|
Greninja ex SVP 054
|
||||||
|
Kangaskhan ex SVP 055
|
||||||
|
Charizard ex SVP 056
|
||||||
|
Chi-Yu SVP 057
|
||||||
|
Iron Bundle SVP 058
|
||||||
|
Xatu SVP 059
|
||||||
|
Aegislash SVP 060
|
||||||
|
Pineco SVP 061
|
||||||
|
Sinistea SVP 062
|
||||||
|
Cetitan SVP 063
|
||||||
|
Arctibax SVP 064
|
||||||
|
Scream Tail SVP 065
|
||||||
|
Iron Bundle SVP 066
|
||||||
|
Roaring Moon ex SVP 067
|
||||||
|
Iron Valiant ex SVP 068
|
||||||
|
Fidough SVP 069
|
||||||
|
Greavard SVP 070
|
||||||
|
Maschiff SVP 071
|
||||||
|
Great Tusk ex SVP 072
|
||||||
|
Iron Treads ex SVP 073
|
||||||
|
Charizard ex SVP 074
|
||||||
|
Mimikyu SVP 075
|
||||||
|
Sprigatito SVP 076
|
||||||
|
Floragato SVP 077
|
||||||
|
Meowscarada ex SVP 078
|
||||||
|
Fuecoco SVP 079
|
||||||
|
Crocalor SVP 080
|
||||||
|
Skeledirge ex SVP 081
|
||||||
|
Quaxly SVP 082
|
||||||
|
Quaxwell SVP 083
|
||||||
|
Quaquaval ex SVP 084
|
||||||
|
Pikachu with Grey Felt Hat SVP 085
|
||||||
|
Mabosstiff ex SVP 086
|
||||||
|
Sprigatito ex SVP 087
|
||||||
|
Pikachu SVP 088
|
||||||
|
Feraligatr SVP 089
|
||||||
|
Metang SVP 090
|
||||||
|
Koraidon SVP 091
|
||||||
|
Miraidon SVP 092
|
||||||
|
Carvanha SVP 093
|
||||||
|
Bellibolt SVP 094
|
||||||
|
Cleffa SVP 095
|
||||||
|
Cyclizar SVP 096
|
||||||
|
Flutter Mane SVP 097
|
||||||
|
Iron Thorns SVP 098
|
||||||
|
Shroodle SVP 099
|
||||||
|
Grafaiai ex SVP 100
|
||||||
|
Pikachu SVP 101
|
||||||
|
Oddish SVP 102
|
||||||
|
Houndoom ex SVP 103
|
||||||
|
Melmetal ex SVP 104
|
||||||
|
Armarouge ex SVP 105
|
||||||
|
Pikachu ex SVP 106
|
||||||
|
Mareep SVP 107
|
||||||
|
Flaaffy SVP 108
|
||||||
|
Ampharos SVP 109
|
||||||
|
Darkrai ex SVP 110
|
||||||
|
Pawniard SVP 111
|
||||||
|
Bisharp SVP 112
|
||||||
|
Kingambit SVP 113
|
||||||
|
Picnicker SVP 114
|
||||||
|
Thwackey SVP 115
|
||||||
|
Infernape SVP 116
|
||||||
|
Froslass SVP 117
|
||||||
|
Tatsugiri SVP 118
|
||||||
|
Toxel SVP 119
|
||||||
|
Pupitar SVP 120
|
||||||
|
Revavroom SVP 121
|
||||||
|
Snorlax SVP 122
|
||||||
|
Teal Mask Ogerpon SVP 123
|
||||||
|
Iono SVP 124
|
||||||
|
Armarouge ex SVP 125
|
||||||
|
Palafin ex SVP 126
|
||||||
|
Walking Wake ex SVP 127
|
||||||
|
Iron Leaves ex SVP 128
|
||||||
|
Pecharunt SVP 129
|
||||||
|
Kingambit SVP 130
|
||||||
|
Kingdra ex SVP 131
|
||||||
|
Greninja ex SVP 132
|
||||||
|
Ledian SVP 133
|
||||||
|
Crabominable SVP 134
|
||||||
|
Drifblim SVP 135
|
||||||
|
Bouffalant SVP 136
|
||||||
|
Horsea SVP 137
|
||||||
|
Porygon2 SVP 138
|
||||||
|
Latias SVP 139
|
||||||
|
Tinkaton SVP 140
|
||||||
|
Noctowl SVP 141
|
||||||
|
Victini ex SVP 142
|
||||||
|
Miraidon ex SVP 143
|
||||||
|
Gouging Fire ex SVP 144
|
||||||
|
Raging Bolt ex SVP 145
|
||||||
|
Iron Crown ex SVP 146
|
||||||
|
Iron Boulder ex SVP 147
|
||||||
|
Miraidon SVP 148
|
||||||
|
Pecharunt SVP 149
|
||||||
|
Paradise Resort SVP 150
|
||||||
|
Gouging Fire SVP 151
|
||||||
|
Chien-Pao SVP 152
|
||||||
|
Magneton SVP 153
|
||||||
|
Indeedee SVP 154
|
||||||
|
Wooper SVP 155
|
||||||
|
Quagsire SVP 156
|
||||||
|
Zapdos SVP 157
|
||||||
|
Pachirisu SVP 158
|
||||||
|
Magneton SVP 159
|
||||||
|
Squawkabilly ex SVP 160
|
||||||
|
Charizard ex SVP 161
|
||||||
|
Houndstone ex SVP 162
|
||||||
|
Cinderace ex SVP 163
|
||||||
|
Lapras ex SVP 164
|
||||||
|
Terapagos ex SVP 165
|
||||||
|
Teal Mask Ogerpon ex SVP 166
|
||||||
|
Flareon SVP 167
|
||||||
|
Vaporeon SVP 168
|
||||||
|
Jolteon SVP 169
|
||||||
|
Leafeon SVP 170
|
||||||
|
Glaceon SVP 171
|
||||||
|
Sylveon SVP 172
|
||||||
|
Eevee SVP 173
|
||||||
|
Eevee ex SVP 174
|
||||||
|
Espeon ex SVP 175
|
||||||
|
Umbreon ex SVP 176
|
||||||
|
Bloodmoon Ursaluna ex SVP 177
|
||||||
|
Kyogre ex SVP 178
|
||||||
|
Xerneas ex SVP 179
|
||||||
|
Dialga ex SVP 180
|
||||||
|
N's Darmanitan SVP 181
|
||||||
|
Iono’s Kilowattrel SVP 182
|
||||||
|
Lillie’s Ribombee SVP 183
|
||||||
|
Hop’s Snorlax SVP 184
|
||||||
|
Yanma SVP 185
|
||||||
|
Scraggy SVP 186
|
||||||
|
Yanmega SVP 187
|
||||||
|
Scrafty SVP 188
|
||||||
|
N's Zorua SVP 189
|
||||||
|
Pikachu SVP 190
|
||||||
|
Sprigatito SVP 191
|
||||||
|
Fuecoco SVP 192
|
||||||
|
Hop's Zacian ex SVP 193
|
||||||
|
Iono's Bellibolt ex SVP 194
|
||||||
|
Lillie's Clefairy ex SVP 195
|
||||||
|
Charizard ex SVP 196
|
||||||
|
Koraidon ex SVP 197
|
||||||
|
Zacian ex SVP 198
|
||||||
|
Zarude SVP 199
|
||||||
|
Eevee SVP 200
|
||||||
|
Zebstrika SVP 201
|
||||||
|
Kangaskhan SVP 202
|
||||||
|
Team Rocket's Wobbuffet SVP 203
|
||||||
|
Cynthia's Garchomp ex SVP 204
|
||||||
|
Team Rocket's Mewtwo ex SVP 205
|
||||||
|
Marnie's Morpeko SVP 206
|
||||||
|
Steven's Beldum SVP 207
|
||||||
|
Victini SVP 208
|
||||||
|
Thundurus SVP 209
|
||||||
|
Tornadus SVP 210
|
||||||
|
Gothitelle SVP 211
|
||||||
|
Reuniclus SVP 212
|
||||||
|
Feraligatr SVP 213
|
||||||
|
Pikachu SVP 214
|
||||||
|
Toxtricity ex SVP 215
|
||||||
|
Team Rocket's Mewtwo ex SVP 216
|
||||||
|
Team Rocket's Nidoking ex SVP 217
|
||||||
|
Team Rocket's Persian ex SVP 218
|
||||||
|
Black Belt's Training SVP 219
|
||||||
|
Black Belt's Training SVP 220
|
||||||
|
Professor's Research SVP 221
|
||||||
|
Professor's Research SVP 222
|
||||||
|
Professor's Research SVP 223
|
||||||
|
Paradise Resort SVP 224
|
||||||
|
Pikachu SVP 225
|
||||||
|
Poké Ball SWSH146
|
||||||
|
Professor's Research (Professor Juniper) SWSH152
|
||||||
|
Professor's Research (Professor Willow) SWSH178
|
||||||
|
Boss's Orders (Cyrus) SWSH251
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
View all Standard format-legal promo cards in the Pokémon TCG card database.
|
||||||
|
|
||||||
|
Check back for status updates on Pokémon TCG promo cards.
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,60 @@
|
|||||||
|
Play! Pokémon Pokémon GO Championship Series Banned Pokémon List
|
||||||
|
|
||||||
|
Source: https://www.pokemon.com/us/play-pokemon/about/play-pokemon-pokemon-go-championship-series-banned-pokemon-list
|
||||||
|
|
||||||
|
Play! Pokémon Pokémon GO Championship Series Banned Pokémon List
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
P
|
||||||
|
er the Pokémon GO Tournament Rules Handbook, Pokémon and attacks become eligible for use in tournament play at 00:00 UTC on the Tuesday two weeks following their release. A player may only include newly released Pokémon or attacks on their team if team registration closes after the newly released Pokémon or attacks become eligible. In some cases, an existing attack may be updated or modified in the game before or during a tournament. In instances where an attack is updated and is already known by a Pokémon, that attack in its new state is available immediately for a Pokémon that already had that attack in its attack pool.
|
||||||
|
|
||||||
|
Trainers planning to take part in Play! Pokémon competitive Pokémon GO tournaments will not be allowed to utilize the following Pokémon until advised otherwise.
|
||||||
|
|
||||||
|
Ponyta—Shadow
|
||||||
|
|
||||||
|
Rapidash—Shadow
|
||||||
|
|
||||||
|
Kabuto—Shadow
|
||||||
|
|
||||||
|
Kabutops—Shadow
|
||||||
|
|
||||||
|
Giratina Altered Forme—Purified
|
||||||
|
|
||||||
|
Aegislash
|
||||||
|
|
||||||
|
Volcanion
|
||||||
|
|
||||||
|
Ditto
|
||||||
|
|
||||||
|
Shedinja
|
||||||
|
|
||||||
|
Xerneas
|
||||||
|
|
||||||
|
Yveltal
|
||||||
|
|
||||||
|
Mudbray
|
||||||
|
|
||||||
|
Mudsdale
|
||||||
|
|
||||||
|
Grimer with the Fast Attack Acid
|
||||||
|
|
||||||
|
Muk with the Fast Attack Acid
|
||||||
|
|
||||||
|
Koffing with the Fast Attack Acid
|
||||||
|
|
||||||
|
Weezing with the Fast Attack Acid
|
||||||
|
|
||||||
|
Chansey with the Charged Attack Psybeam
|
||||||
|
|
||||||
|
Staryu with the Fast Attack Quick Attack
|
||||||
|
|
||||||
|
Starmie with the Fast Attack Quick Attack
|
||||||
|
|
||||||
|
Porygon with the Fast Attack Quick Attack
|
||||||
|
|
||||||
|
Pichu with the Fast Attack Quick Attack
|
||||||
|
|
||||||
|
Keep an eye on the official Play! Pokémon channels for updated information about rules, banned Pokémon, events, and more.
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,71 @@
|
|||||||
|
Play! Pokémon League Challenges, Cups, and Prerelease Guide
|
||||||
|
|
||||||
|
Source: https://www.pokemon.com/us/play-pokemon/pokemon-events/play-in-a-league/
|
||||||
|
|
||||||
|
Come Play at Your Local Pokémon League
|
||||||
|
|
||||||
|
Meet, trade, and battle with fellow Pokémon fans in a casual environment where everyone is welcome.
|
||||||
|
|
||||||
|
Get Started
|
||||||
|
Get Started and learn more about the league
|
||||||
|
|
||||||
|
Welcome to the
|
||||||
|
Program
|
||||||
|
Welcome to the Play! Pokémon Program
|
||||||
|
|
||||||
|
The Play! Pokémon program gives you the opportunity to compete against other Trainers in an organized setting where you can meet fellow fans, win prizes, and have fun! Find all the details about the program—including where to play and which Pokémon League is best for you or your child.
|
||||||
|
|
||||||
|
Search Now
|
||||||
|
Get Started at Pokémon League
|
||||||
|
|
||||||
|
There are tons of Trainers out there sharing their love for Pokémon through trading, battling, and more. Visit your local Pokémon League, and get in on the fun!
|
||||||
|
|
||||||
|
Get Started
|
||||||
|
Info for Parents
|
||||||
|
|
||||||
|
Looking for help as you get involved in your child’s journey as an aspiring Trainer? Look no further—help them find a local Pokémon League where they can learn to play and make new friends!
|
||||||
|
|
||||||
|
Learn More
|
||||||
|
Try Out Local Tournaments
|
||||||
|
|
||||||
|
Have you visited League a few times, met some of your fellow Trainers, and maybe even battled an opponent or two? If you’re looking to further test your skills, local tournaments are the next step on your Pokémon journey.
|
||||||
|
|
||||||
|
Learn More
|
||||||
|
What's New
|
||||||
|
|
||||||
|
January 9, 2026
|
||||||
|
|
||||||
|
2026 Pokémon TCG Standard Format Rotation Announcement
|
||||||
|
|
||||||
|
Learn More
|
||||||
|
|
||||||
|
January 6, 2026
|
||||||
|
|
||||||
|
See the Latest Play! Pokémon Updates for Q4 2025
|
||||||
|
|
||||||
|
Learn More
|
||||||
|
|
||||||
|
December 17, 2025
|
||||||
|
|
||||||
|
Get Play! Pokémon Prize Pack Series Eight at Play! Pokémon Stores
|
||||||
|
|
||||||
|
Learn More
|
||||||
|
|
||||||
|
December 2, 2025
|
||||||
|
|
||||||
|
Learn the Ropes of the Pokémon TCG in Stores with Play Lab Discovery
|
||||||
|
|
||||||
|
Learn More
|
||||||
|
|
||||||
|
November 20, 2025
|
||||||
|
|
||||||
|
Watch the 2026 Pokémon Latin America International Championships Livestream
|
||||||
|
|
||||||
|
Learn More
|
||||||
|
|
||||||
|
October 17, 2025
|
||||||
|
|
||||||
|
Play at a Pokémon TCG: Mega Evolution—Phantasmal Flames Prerelease
|
||||||
|
|
||||||
|
Learn More
|
||||||
|
All news
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,3 @@
|
|||||||
|
Championship Series Reporting
|
||||||
|
|
||||||
|
Video URL: https://d1dk84hmsdb5u9.cloudfront.net/7725ba14-f74f-40ee-a863-9bd057e98dce/Public/Resources/Championship%20Series%20Event%20Scheduling%20and%20Reporting%20video_with%20CC.mp4
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Tools Overview
|
||||||
|
|
||||||
|
Video URL: https://d1dk84hmsdb5u9.cloudfront.net/7725ba14-f74f-40ee-a863-9bd057e98dce/Public/Resources/TOM%20tools%20overview%20video_with%20CC.mp4
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Installation and Set-up
|
||||||
|
|
||||||
|
Video URL: https://d1dk84hmsdb5u9.cloudfront.net/7725ba14-f74f-40ee-a863-9bd057e98dce/Public/Resources/TOM%20installation%20and%20set-up%20video_with%20CC.mp4
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Tournament Detail Verification
|
||||||
|
|
||||||
|
Video URL: https://d1dk84hmsdb5u9.cloudfront.net/7725ba14-f74f-40ee-a863-9bd057e98dce/Public/Resources/TOM%20tournament%20detail%20verification%20video_with%20CC.mp4
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Running & Completing the Tournament
|
||||||
|
|
||||||
|
Video URL: https://d1dk84hmsdb5u9.cloudfront.net/7725ba14-f74f-40ee-a863-9bd057e98dce/Public/Resources/TOM%20running%20and%20completing%20the%20tournament%20video_with%20CC.mp4
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
Adding Players
|
||||||
|
|
||||||
|
Source: https://d1dk84hmsdb5u9.cloudfront.net/7725ba14-f74f-40ee-a863-9bd057e98dce/Public/Resources/4c.%20TOM%20adding%20players%20final%20cut.mp4
|
||||||
|
|
||||||
|
|
||||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user