- Install GPG tools
- Install GPG tools and setup pin entry by running:
brew install gnupg pinentry-mac mkdir -m 700 -p ~/.gnupg echo "pinentry-program /usr/local/bin/pinentry-mac" >> ~/.gnupg/gpg-agent.conf killall gpg-agent
// | |
// ValueWrapper.swift | |
// ADKATech.com | |
// | |
// Created by Amr Elghadban on 9/20/18. | |
// Copyright © 2018 Mobile DevOps. All rights reserved. | |
// | |
import Foundation |
<TaskerData sr="" dvi="1" tv="5.8.3"> | |
<Profile sr="prof2" ve="2"> | |
<cdate>1565066300570</cdate> | |
<edate>1567394645768</edate> | |
<id>2</id> | |
<mid0>3</mid0> | |
<nme>Bank SMS Forward</nme> | |
<Event sr="con0" ve="2"> | |
<code>7</code> | |
<pri>0</pri> |
# Luke's config for the Zoomer Shell | |
# Enable colors and change prompt: | |
autoload -U colors && colors | |
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " | |
# History in cache directory: | |
HISTSIZE=10000 | |
SAVEHIST=10000 | |
HISTFILE=~/.cache/zsh/history |
{ | |
Kind = "Xcode.IDEFoundation.TextSubstitutionFileTemplateKind"; | |
Platforms = ( | |
"com.apple.platform.iphoneos", | |
); | |
Options = ( | |
{ | |
Description = "The name of the module to create"; | |
Identifier = "productName"; | |
Name = "New Module Name:"; |
UPDATE (March 2020, thanks @ic): I don't know the exact AMI version but yum install docker
now works on the latest Amazon Linux 2. The instructions below may still be relevant depending on the vintage AMI you are using.
Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/
sudo amazon-linux-extras install docker
sudo service docker start
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!
#!/usr/bin/osascript | |
-- To fix error with Outlook 2016 HTML signature images showing up as attachments | |
-- Ref: http://mydesignpad.com/how-to-create-an-attractive-html-email-signature-for-microsoft-outlook-2016-for-mac/#comment-36065 | |
-- To use, add your signature name (under `name`) and signature (under `content`) and paste and run this code in Script Editor | |
tell application id "com.microsoft.Outlook" | |
make new signature with properties {name:"Google Signature", content:"<table><tr><td><img src='https://www.google.de/images/branding/googlelogo/2x/googlelogo_color_120x44dp.png' width='120' height='44'></td></tr></table>"} | |
end tell |
#!/bin/bash | |
# Thanks goes to @pete-otaqui for the initial gist: | |
# https://gist.github.com/pete-otaqui/4188238 | |
# | |
# Original version modified by Marek Suscak | |
# | |
# works with a file called VERSION in the current directory, | |
# the contents of which should be a semantic version number | |
# such as "1.2.3" or even "1.2.3-beta+001.ab" |