| Name |
|---|
| https://github.com/autopkg/recipes.git |
| https://github.com/autopkg/keeleysam-recipes.git |
| https://github.com/autopkg/hansen-m-recipes.git |
| https://github.com/autopkg/scriptingosx-recipes.git |
| #! /usr/bin/env bash | |
| #################################################### | |
| # Required Libraries | |
| # | |
| # library name | commands used | verified version | |
| # ------------------------------------------------ | |
| # ffmpeg | ffmpeg/ffprobe | 3.1.4 3.2 | |
| # gpac | mp4box | 0.6.1 | |
| # mp4v2 | mp4chaps | 2.0.0 |
| javascript:(function() { | |
| function copyToClipboard(text) { | |
| if (window.clipboardData && window.clipboardData.setData) { | |
| /*IE specific code path to prevent textarea being shown while dialog is visible.*/ | |
| return clipboardData.setData("Text", text); | |
| } else if (document.queryCommandSupported && document.queryCommandSupported("copy")) { | |
| var textarea = document.createElement("textarea"); | |
| textarea.textContent = text; |
Now onto actually using IRC. A lot of this stuff is just extra info. You don't need to know it. We don't need to know it. We just love typing out this crap. You are smart, you already know all this. No need to read it. OK now that was sarcasm. IRC is full of it so get used to it. You really do need to know this stuff. If you thought it was rude of me to be sarcastic, you wont survive on IRC very long.
First up, pick a nick. A nickname, commonly referred to as 'nick', is your IRC name. Yours will appear before all of your messages in IRC to identify who is talking. If another user types your nick, the text is printed in red. This is a highlight. Some clients also will flash the window, send a beep, etc. You can select almost any nickname you like, provided nobody else uses it. If you choose a nick like 'justinbieber' or 'Ims0l33t4ndc00l', prepare to be ridiculed. Seriously. The [ ] in the command indicate where to place your own choices. Do not include the [ ] themselves.
There is no easy way to hibernate a macOS computer on demand. This utility fixes that problem. This command must be run as root, but there's an easy way to fix that:
- Copy
deepsleep.shto a folder, such as/usr/bin(In Terminal, typecp /PATH/TO/deepsleep.sh /usr/bin) - In Terminal, type:
sudo visudoto edit the/etc/sudoersfile. DO NOT edit this file with another command. If you do not likeviyou can typeexport VISUAL=nanofirst to tellvisudoto usenano - Add a line anywhere in the file (I recommend either the very beginning or very end) that says
ALL ALL=NOPASSWD:/LOCATION/TO/deepsleep.sh(so, for example,ALL ALL=NOPASSWD:/usr/bin/deepsleep.sh) - Run the command using
sudo /path/to/deepsleep.sh
If you wake the computer before it's finished hibernating, this script will leave it in a bad spot where it will hibernate every time you tell it to go to sleep. To fix this, type sudo pmset -a hibernatemode 3 or `sudo path/to/deeps
| -- ln -s ~/repos/config/init.lua ~/.hammerspoon/init.lua | |
| -- Global variable for the Command Mode | |
| cMode = hs.hotkey.modal.new({}, "F17") | |
| -- Global variable for Delete Mode | |
| dMode = hs.hotkey.modal.new({}, 'F20') | |
| -- Global variable for Select Mode | |
| sMode = hs.hotkey.modal.new({}, 'F19') |
UPDATE: The instructions here are no longer necessary! Resizing the disk image is now possible right from the UI since Docker for Mac Version 17.12.0-ce-mac49 (21995).
If you are getting the error: No space left on device
Configuring the qcow2 size cap is possible in the current versions:
# my disk is currently 64GiB
| tell application id "DNtp" | |
| try | |
| set this_selection to the selection | |
| set this_count to count of this_selection | |
| if this_count > 0 then | |
| show progress indicator "Removing URL" steps this_count | |
| repeat with this_item in this_selection | |
| set the URL of this_item to "" | |
| end repeat | |
| hide progress indicator |
- nylas/N1 💌 An extensible desktop mail app built on the modern web.
- black-screen/black-screen A terminal emulator for the 21st century.
- shockone/black-screen A terminal emulator for the 21st century.
- ptmt/react-native-macos React Native for macOS
- docker/kitematic Visual Docker Container Management on Mac & Windows
- kitematic/kitematic Visual Docker Container Management on Mac & Windows
- davezuko/wirk-starter Get started with React, Redux, and React-Router!
- TelescopeJS/Telescope 🔭 An open-source social news app built with Meteor & React
- coryhouse/react-slingshot React + Redux starter kit / boile
| # if the iCloud password option is disabled, you'll not see your iCloud login with this result | |
| dscl . read /Users/your_username | grep AuthenticationAuthority | |
| # use this command to add your icloud password as an auth authority again | |
| sudo dscl . append /Users/your_username AuthenticationAuthority ";AppleID;[email protected]" | |
| # confirm the previous command | |
| dscl . read /Users/your_username | grep AuthenticationAuthority |