I hereby claim:
- I am hansooloo on github.
- I am hansooloo (https://keybase.io/hansooloo) on keybase.
- I have a public key ASBaibJzRvM4N3Dn0dOTBSvcnW3JLCVFd-rNzTtXc9joJwo
To claim this, I am signing this object:
| from apscheduler.schedulers.blocking import BlockingScheduler | |
| from apscheduler.schedulers.background import BackgroundScheduler | |
| from apscheduler.jobstores.redis import RedisJobStore | |
| from apscheduler.executors.pool import ThreadPoolExecutor | |
| import apscheduler.events as events | |
| # This file has a dictionary that maps the apscheduler event codes to actual text values | |
| # e.g., {512: 'EVENT_JOB_ADDED'} | |
| from apscheduler_event_types import event_code |
| FROM python:3.8-alpine | |
| LABEL maintainer="Selim Baygin <[email protected]>" | |
| # VOLUME | |
| ARG CERTBOT_VERSION | |
| ENV CERTBOT_VERSION=${CERTBOT_VERSION} | |
| WORKDIR /opt/certbot |
| tell application "System Events" | |
| if (get name of every application process) contains "System Preferences" then | |
| set _isSysPrefRunning to true | |
| else | |
| set _isSysPrefRunning to false | |
| end if | |
| end tell | |
| log _isSysPrefRunning | |
| use sys : application "System Events" |
| tell application "System Events" | |
| if (get name of every application process) contains "System Preferences" then | |
| set _isSysPrefRunning to true | |
| else | |
| set _isSysPrefRunning to false | |
| end if | |
| end tell | |
| log _isSysPrefRunning | |
| use sys : application "System Events" |
I hereby claim:
To claim this, I am signing this object:
| tmux start-server | |
| TMUX= tmux new-session -d -s converter_job -n jobs | |
| tmux set-window-option -g -t converter_job:0 pane-border-status top | |
| tmux set-window-option -g -t converter_job:0 -F pane-border-format "Job #P: #{pane_current_command}" | |
| tmux split-window -t converter_job:0 | |
| tmux select-layout -t converter_job:0 tiled | |
| tmux split-window -t converter_job:0 |
| from cryptography import x509 | |
| from cryptography.hazmat.backends import default_backend | |
| from cryptography.hazmat.primitives import hashes | |
| from cryptography.hazmat.primitives.asymmetric import rsa | |
| from cryptography.x509.oid import NameOID | |
| import datetime | |
| one_day = datetime.timedelta(1, 0, 0) | |
| private_key = rsa.generate_private_key( | |
| public_exponent=65537, |
| Homebrew build logs for mkvtoolnix on macOS 10.14.2 | |
| Build date: 2018-12-23 19:24:03 |
| debug 11:51:53.968128 -0500 iTerm2 Resource lookup at <private> | |
| Request : SUStatus type: nib | |
| Result : file:///Applications/iTerm.app/Contents/Frameworks/Sparkle.framework/Resources/SUStatus.nib | |
| debug 11:51:53.984217 -0500 iTerm2 Resource lookup at <private> | |
| Request : Sparkle type: strings | |
| Result : file:///Applications/iTerm.app/Contents/Frameworks/Sparkle.framework/Resources/en.lproj/Sparkle.strings | |
| debug 11:51:53.984266 -0500 iTerm2 Resource lookup at <private> | |
| Request : Sparkle type: stringsdict | |
| Result : None | |
| debug 11:51:53.984495 -0500 iTerm2 Bundle: <private>, key: Updating %@, value: , table: Sparkle, localizationName: (null), result: Updating %@ |
| #!/bin/sh | |
| # | |
| # Convert an Event Scripter source to a config JSON | |
| # $1: location of EventScripter files | |
| # Need 'gsed' on macOS to behave like its Linux counterpart | |
| if [[ $(uname) == "Darwin" ]]; then | |
| SED="gsed" | |
| else |