- Open Automator
- Create a new Service
- Set “Service receives selected” to
files or foldersinany application - Add a
Run Shell Scriptaction - Set the script action to
/usr/local/bin/atom -n "$@" - Set “Pass input” to
as arguments - Save as
Open in Atom
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 | |
| # generate a number of files with random sizes in a range | |
| min=1 # min size (MB) | |
| max=10 # max size (MB) | |
| nofiles=20 # number of files | |
| for i in `eval echo {1..$nofiles}` | |
| do | |
| dd bs=1M count=$(($RANDOM%max + $min)) if=/dev/urandom of=./files/file$i |
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 | |
| # change the values below to match your system. | |
| # target the BUILD_DIR to output from an nw.io build process. nwjs-shell-builder recommended! | |
| # https://github.com/Gisto/nwjs-shell-builder | |
| # BASE_DIR is the target directory for this script, where files will be gathered and packaged to | |
| BUILD_DIR=”/var/www/deploy/TMP/osx-ia32/latest-git” | |
| BASE_DIR=”/var/www/deploy/osx” |
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
| #!/usr/bin/env ruby | |
| require 'JSON' | |
| device_types = JSON.parse `xcrun simctl list -j devicetypes` | |
| runtimes = JSON.parse `xcrun simctl list -j runtimes` | |
| devices = JSON.parse `xcrun simctl list -j devices` | |
| devices['devices'].each do |runtime, runtime_devices| | |
| runtime_devices.each do |device| |
We did it! We broke gist.github.com ;) So head over to the new home! Thank you all!
2021.10.20: https://github.com/AveYo/MediaCreationTool.bat now open for interaction
Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
A powerful yet simple windows 10 / 11 deployment automation tool as well!
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 | |
| # change the values below to match your system. | |
| # target the BUILD_DIR to output from an nw.io build process. nwjs-shell-builder recommended! | |
| # https://github.com/Gisto/nwjs-shell-builder | |
| # BASE_DIR is the target directory for this script, where files will be gathered and packaged to | |
| BUILD_DIR="/var/www/deploy/TMP/osx-ia32/latest-git" | |
| BASE_DIR="/var/www/deploy/osx" |
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 2020 The OpenEBS Authors. All rights reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software |
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 | |
| echo Starting ... | |
| echo Setting Variables ... | |
| MARIADB=10.11 | |
| NODEJS=22 | |
| PHPMYADMIN=5.2.1 | |
| ADMINER=4.8.1 | |
| PHP=8.3 |
-
Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.
brew tap jeffreywildman/homebrew-virt-manager brew install virt-viewer
-
Once that's installed should be able make a call
remote-viewerwith a pve-spice.vv file downloaded from proxmox web interface
OlderNewer
