267 words · 1859 chars · 1 min read
Welcome to my workspace
This is a working document for Özgür Uğurlu's personal workspace - a place to draft notes, keep project briefs, and track ideas. Everything here is plain Markdown, so it stays readable wherever you open it.
What this workspace is for
This space holds the notes, lists, and small experiments that do not belong in a finished project. Think of it as a scratchpad that grew up:
- Drafts of writing and talks
- Quick reference snippets you reach for often
- Links and reading that deserve a home
- Decisions you made and why
Getting started
The editor works the way you expect. Press Edit to switch into Markdown source, make your changes, then switch back to Preview to read the result. Your work is saved locally as you type.
- Open the editor with the Edit button in the toolbar.
- Write or paste Markdown into the text area.
- Return to Preview to read the rendered document.
- Use the copy button on any code block to grab the snippet.
Tip: keep one
#heading per document and use##and###to structure the rest. It keeps the outline and the table of contents tidy.
A short example
Inline code like npm run build reads clearly against the body text, and fenced blocks keep multi-line snippets intact:
function greet(name) {
// Say hello to a visitor
return `Hello, ${name}!`;
}
const visitor = "Özgür";
console.log(greet(visitor));Reference table
| Shortcut | Action | Notes |
|---|---|---|
Cmd + E | Toggle edit mode | Switches between source and preview |
Cmd + S | Save note | Marks the document as saved |
Cmd + K | Search documents | Opens the quick switcher |
Current checklist
- Draft the welcome note
- Add the example code block
- Write the project brief
- Tidy the reading list
- Set up the release notes template