Automatic update, changed: las.memex.md, tools.inkscape.las.authoring.md

This commit is contained in:
sdbs Terra 2023-07-16 20:24:39 +02:00
parent 310561f309
commit 045bc4e8b4
2 changed files with 31 additions and 18 deletions

View file

@ -38,4 +38,9 @@
----------- -----------
And what And what
-----------------------
- [[las.letsplay]]

View file

@ -1,7 +1,14 @@
# tools.inkscape.[[las]].authoring # tools.inkscape.[[las]].authoring
[[tools.svg]] [[tools.svg]]
- objects menu openable frommain toolbar - objects menu openable from main toolbar
## 101
- circle - audio
- blue - general
- yellow-orange - voices
- rectangle - red - anchor ?
- square - start
## links ## links
### anchors ### anchors
@ -31,19 +38,6 @@ while importing **link** is needed **not embedded**
- `down - `down
motion_source/sutr1/files.lst motion_source/sutr1/files.lst
` `
### how to do list
#### linux list
ls *.png > files.lst
#### windows list
The method is the same as for all versions of Windows, starting with Windows 3.1 (from 1985!):
1. Open File Explorer.
2. Navigate to the folder under scrutiny.
3. Press Ctrl+L
4. Type this command (or use copy/paste) and press Enter:
cmd  /c  dir  /b  > "%temp%\\Dir.txt"  & notepad  "%temp%\\Dir.txt"
## sound ## sound
- circle (NO ELLIPSE NO) - circle (NO ELLIPSE NO)
@ -59,14 +53,28 @@ spacebar - anchor //intro
mouse pointer --> edge - edge scrolling [fullscreen must be on] mouse pointer --> edge - edge scrolling [fullscreen must be on]
## image optimizations ## image workflows
### lists
#### windows list
The method is the same as for all versions of Windows, starting with Windows 3.1 (from 1985!):
### png 1. Open File Explorer.
2. Navigate to the folder under scrutiny.
3. Press Ctrl+L
4. Type this command (or use copy/paste) and press Enter:
cmd  /c  dir  /b  > "%temp%\\Dir.txt"  & notepad  "%temp%\\Dir.txt"
#### linux list
ls *.png > files.lst
### optimization
#### png
`parallel --lb --tag optipng -o 5 -i 1 ::: **/*.png` `parallel --lb --tag optipng -o 5 -i 1 ::: **/*.png`
- `parallel` = process in [parallel](https://www.gnu.org/software/parallel/) - `parallel` = process in [parallel](https://www.gnu.org/software/parallel/)
- `-o 5` = ridiculously high optimization - `-o 5` = ridiculously high optimization
- `-i 1` = turn on [interlacing](https://blog.codinghorror.com/progressive-image-rendering/) - `-i 1` = turn on [interlacing](https://blog.codinghorror.com/progressive-image-rendering/)
### jpeg #### jpeg
`parallel --lb --tag jpegoptim --all-progressive --force ::: **/*.jpg` `parallel --lb --tag jpegoptim --all-progressive --force ::: **/*.jpg`