- Launch Controller Editor.app
- Under the Templates pane on the right-hand-side:
- Click the Factory Templates dropdown
- Select Mackie Control
- Double-check that it’s highlighted in the Templates list
- Close Controller Editor.app
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
| > Can't locate plugins/Markdown.pl in @INC (@INC contains: ./extlib ./lib /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at lib/MT.pm line 117. |
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
| Can't locate plugins/Markdown.pl in @INC (@INC contains: ./extlib ./lib | |
| /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x8 | |
| 6_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at lib/MT.pm line 117 (#2) | |
| (F) You said to do (or require, or use) a file that couldn't be found. | |
| Perl looks for the file in all the locations mentioned in @INC, unless | |
| the file name included the full path to the file. Perhaps you need | |
| to set the PERL5LIB or PERL5OPT environment variable to say where the | |
| extra library is, or maybe the script needs to add the library name | |
| to @INC. Or maybe you just misspelled the name of the file. See | |
| "require" in perlfunc and lib. |
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
| # ------------------------------------------------------------------------------------------------------------------------------------------ | |
| # This file is called 2018-02-02-932.md | |
| # ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ | |
| # --- | |
| # layout: link | |
| # title: | |
| # link: |
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 | |
| for file in *; do | |
| cat ${file} > fileContent | |
| /opt/homebrew/bin/code -w fileContent | |
| newFileContent=`cat fileContent` |
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 | |
| # yq: | |
| # snap install yq | |
| # waybackpy: | |
| # pip3 install waybackpy | |
| file="${1}" | |
| post_layout=$(yq --front-matter=extract '.layout' ${file}) |
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 { | |
| --green-1: #a9d0be; | |
| --green-2: #a0e0a0; | |
| --green-3: #b0ffb0; | |
| --green-4: #bbeabb; | |
| --green-5: #ccffcc; | |
| --green-6: #d0f0d0; | |
| --green-7: #d3ffd3; | |
| --green-8: #d4e2d4; |
I used a machine to create this bookmarklet because I was getting increasingly frustrated with how difficult it is to copy and paste a webpage's title.
javascript:(function(){const%20title=document.title;const%20description=document.querySelector('meta[name="description"]')?.getAttribute('content')||'';const%20url=window.location.href;alert(`Title:\n${title}\n\nDescription:\n${description}\n\nURL:\n${url}`);})();
OlderNewer