This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| # Ensure ffmpeg exists | |
| if ! command -v ffmpeg >/dev/null 2>&1; then | |
| echo "Error: ffmpeg is not installed or not in PATH." | |
| echo "Install with: brew install ffmpeg" | |
| exit 1 | |
| fi |
You're on the right track if you spend most of your time just chillin at the villa.
Here's a map with places I've been in the area near where you're staying if you decide to venture out:
If you zoom into the region where you're staying, you'll see a variety of places I've been in the area near La Spezia and the Cinque Terre.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* limit the width of the full-screen editor so the text columns are not too wide */ | |
| .mce-fullscreen .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item.mce-last { | |
| max-width: 700px; | |
| } | |
| /* when viewing attachements, the bar overlay at the top covers the top of the image. | |
| this makes that bar transparent so you can see the top of the image. */ | |
| .toolbar.ril-toolbar { | |
| background-color: transparent; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "window.zoomLevel": 1, | |
| "workbench.activityBar.visible": true, | |
| "editor.cursorStyle": "line", | |
| "editor.wordWrap": "wordWrapColumn", | |
| "editor.wordWrapColumn": 110, | |
| "editor.renderWhitespace": "boundary", | |
| "workbench.iconTheme": "vs-seti", | |
| "editor.scrollBeyondLastLine": false, | |
| "editor.minimap.enabled": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| insert_final_newline = true | |
| indent_style = space | |
| indent_size = 4 | |
| [*.json] |
NewerOlder