Please copy to user template folder:
~/Library/Application Support/org.inkscape.Inkscape/config/inkscape/templates/
Modified to US Letter Size from: https://logosbynick.com/inkscape-default-template/
| #Requires AutoHotkey v2.0 | |
| #UseHook 1 ; Enable MouseHook to capture scrolling anywhere in Windows | |
| WheelUp:: { | |
| SendInput "{WheelDown}" | |
| Return | |
| } | |
| WheelDown::{ |
| { | |
| "background": "#001e27", | |
| "black": "#002831", | |
| "blue": "#2176c7", | |
| "brightBlack": "#006488", | |
| "brightBlue": "#178ec8", | |
| "brightCyan": "#00b39e", | |
| "brightGreen": "#51ef84", | |
| "brightPurple": "#e24d8e", | |
| "brightRed": "#f5163b", |
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd"> | |
| <fontconfig> | |
| <!-- Default system-ui fonts --> | |
| <match target="pattern"> | |
| <test name="family"> | |
| <string>system-ui</string> | |
| </test> | |
| <edit name="family" mode="prepend" binding="strong"> |
Please copy to user template folder:
~/Library/Application Support/org.inkscape.Inkscape/config/inkscape/templates/
Modified to US Letter Size from: https://logosbynick.com/inkscape-default-template/
| import logging | |
| from StringIO import StringIO as StringBuffer | |
| logger = logging.getLogger('basic_logger') | |
| logger.setLevel(logging.DEBUG) | |
| ### Setup the console handler with a StringIO object | |
| log_capture_string = StringBuffer() | |
| # log_capture_string.encoding = 'cp1251' | |
| ch = logging.StreamHandler(log_capture_string) |
| #sudo certbot certonly --webroot -w /srv/users/serverpilot/apps/pkubio/public -d pkubio.org -d www.pkubio.org -d shalongla.com -d www.shalongla.com -d lishengshi.com -d www.lishengshi.com | |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name example.com www.example.com subsite.com www.subsite.com another.com www.another.com; | |
| return 301 https://$host$request_uri; | |
| } | |
| server { |
| index | name | ctID | lastUpdate | |
|---|---|---|---|---|
| 0 | DV281 | NCT03326752 | November 1, 2017 | |
| 1 | SD101 | NCT02521870 | December 7, 2017 | |
| 2 | AZD1419 | NCT02898662 | December 21, 2017 | |
| 3 | SD101+MK1966 | NCT02731742 | December 11, 2017 |
| remove your ~/.toprc (if any) | |
| start "top" | |
| press z | |
| press V | |
| press 1 | |
| press y | |
| press m m | |
| press t t t | |
| press W |
| on open this_item | |
| tell application "Finder" | |
| set pathList to (quoted form of POSIX path of (folder of the front window as alias)) | |
| set command to "clear; cd " & pathList | |
| end tell | |
| tell application "System Events" | |
| -- some versions might identify as "iTerm2" instead of "iTerm" | |
| set isRunning to (exists (processes where name is "iTerm")) or (exists (processes where name is "iTerm2")) |
| on open this_item | |
| tell application "iTerm" | |
| activate | |
| set iPyNbViewer to (make new terminal) | |
| tell iPyNbViewer | |
| activate current session | |
| launch session "Default Session" | |
| tell the last session | |
| set name to "IPython Notebook" |