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
| /* | |
| Adobe InDesign Script - FontCatalog.jsx | |
| Erstellt einen Schriftartenkatalog | |
| Designstudio, Philipp Speck - www.destio.de | |
| Copyright (c) 2012 Designstudio, Philipp Speck | |
| */ | |
| var doc=app.documents.add(); | |
| var appFonts=app.fonts; |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="description" content="lighttpd is a secure, fast, compliant, and very flexible web server."> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Lighttpd - fly light</title> | |
| <style> | |
| * { | |
| margin: 0; |
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/sh | |
| ### BEGIN INIT INFO | |
| # Provides: syncthing | |
| # Required-Start: $local_fs $remote_fs $network | |
| # Required-Stop: $local_fs $remote_fs $network | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Syncthing | |
| # Description: Automatically sync files via secure, distributed technology | |
| # Author: Typomedia Foundation |
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 | |
| # Copyright 2023 Typomedia Foundation. All rights reserved. | |
| # Released under GPL version 3. | |
| # | |
| # Listmonk Installer & Updater | |
| json=$(curl -LsS 'https://api.github.com/repos/knadh/listmonk/releases/latest') | |
| link=$(echo $json | jq -r '.assets[] | select(.name | contains("linux_amd64.tar.gz")).browser_download_url') | |
| dest=/usr/local/bin |
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
| # Sysinfo.nsh | |
| # Copyright 2023 Typomedia Foundation. All rights reserved. | |
| # Released under MIT License. | |
| # | |
| # This script provides macros to retrieve system information. | |
| # It uses the wmic command to retrieve the information. | |
| !include LogicLib.nsh | |
| !include StrFunc.nsh |
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 | |
| # Copyright 2021 Typomedia Foundation. All rights reserved. | |
| # Released under GPL version 3. | |
| # | |
| # JetBrains PhpStorm Installer/Updater | |
| url="https://download.jetbrains.com/product?code=PS&latest&distribution=linux" | |
| dst="/opt/JetBrains/PhpStorm" | |
| sudo rm -rf $dst && sudo mkdir -p $dst |
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
| server { | |
| listen 80; | |
| server_name domain.tld; | |
| root /usr/share/nginx/domain.tld/Web; | |
| autoindex off; | |
| access_log /var/log/nginx/$host-access.log; | |
| error_log /var/log/nginx/$host-error.log error; | |
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
| openssl genrsa -out ca.key 2048 | |
| openssl req -new -key ./ca.key -out ./ca.csr | |
| openssl x509 -req -days 365 -in ./ca.csr -out ./ca.crt -signkey ./ca.key | |
| openssl x509 -in ca.crt -text | |
| openssl rsa -in ca.key -passin pass:XXXX -pubout -out ca.public.key |
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/sh | |
| ### BEGIN INIT INFO | |
| # Provides: plexmediaserver | |
| # Required-Start: $remote_fs $syslog $all | |
| # Required-Stop: $local_fs $remote_fs | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Plex Media Server | |
| # Description: Plex is a smart Media Server application for playing Music, Movies and other media | |
| # Author: Typomedia Foundation |
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
| # /etc/init.d/dropbox | |
| ### BEGIN INIT INFO | |
| # Provides: dropbox | |
| # Required-Start: $network $syslog $remote_fs | |
| # Required-Stop: $network $syslog $remote_fs | |
| # Should-Start: $named $time | |
| # Should-Stop: $named $time | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start and stop the dropbox daemon for debian/ubuntu |
NewerOlder