Open with Automator.app and change the custom to yours.
Then, add the shortcut in the Setting -> Keyboard -> Shortcuts -> Services -> General (At the bottom).
Open with Automator.app and change the custom to yours.
Then, add the shortcut in the Setting -> Keyboard -> Shortcuts -> Services -> General (At the bottom).
version: '3' | |
services: | |
postgres: | |
image: postgres | |
rabbit: | |
image: "rabbitmq:latest" | |
ports: | |
- "5672:5672" | |
web: |
Beyond Compare 4 | |
Licensed to: ASIO Allsoftinone | |
Quantity: 1 user | |
Serial number: 1822-9597 | |
License type: Pro Edition for Windows | |
--- BEGIN LICENSE KEY --- | |
H1bJTd2SauPv5Garuaq0Ig43uqq5NJOEw94wxdZTpU-pFB9GmyPk677gJ | |
vC1Ro6sbAvKR4pVwtxdCfuoZDb6hJ5bVQKqlfihJfSYZt-xVrVU27+0Ja | |
hFbqTmYskatMTgPyjvv99CF2Te8ec+Ys2SPxyZAF0YwOCNOWmsyqN5y9t |
#import <Foundation/Foundation.h> | |
#import <Cocoa/Cocoa.h> | |
#import <unistd.h> | |
BOOL copy_to_clipboard(NSString *path) | |
{ | |
// http://stackoverflow.com/questions/2681630/how-to-read-png-image-to-nsimage | |
NSImage * image; | |
if([path isEqualToString:@"-"]) | |
{ | |
// http://caiustheory.com/read-standard-input-using-objective-c |