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
import CocoaLumberjack | |
import Security | |
public class EncryptedLogger: DDAbstractLogger { | |
let key: SecKey! | |
let blockSize : Int | |
let padding : SecPadding | |
init(key: SecKey!, blockSize : Int = 128, padding: SecPadding = .PKCS1) { | |
self.key = key |
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
package info.pich.camunda.bmp.configuration; | |
import lombok.Data; | |
import org.camunda.bpm.engine.AuthorizationService; | |
import org.camunda.bpm.engine.IdentityService; | |
import org.camunda.bpm.engine.ProcessEngine; | |
import org.camunda.bpm.engine.authorization.Groups; | |
import org.camunda.bpm.engine.authorization.Resource; | |
import org.camunda.bpm.engine.authorization.Resources; | |
import org.camunda.bpm.engine.identity.Group; |
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 'sinatra' | |
get '/hello' do | |
value = `osascript -e 'tell app "System Events" to display dialog "Hello"'` | |
end | |
get '/lock' do | |
value = `"/System/Library/CoreServices/Menu Extras/User.menu/Contents/Resources/CGSession" -suspend` |
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/sh | |
IFS=$'\n' | |
#help text | |
usage="$(basename "$0") [-h or -?] [-i] [-a] [-s] [-d] [-u] [-s] [-b] | |
Runs 'ps ax' and verify the code signature of every running proccess using apple's 'codesign' tool | |
-h/-? :: help for command | |
-i :: dont show an inital count before analyzing each process |
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
// | |
// main.swift | |
// plist-to-json | |
// | |
// Created by Dominik Pich on 20.07.17. | |
// Copyright ยฉ 2017 Dominik Pich. All rights reserved. | |
// | |
import Foundation |
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
var ServerMock = require("mock-http-server"); | |
// Run an HTTP server on localhost:9000 | |
var server = new ServerMock({ host: "localhost", port: 9000 }); | |
server.start(Function()); | |
server.on({ | |
method: '*', | |
path: '*', |
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
import plistlib | |
import sys | |
with open(sys.argv[1],"rb") as input: | |
plist = plistlib.load(input) | |
with open(sys.argv[2],"wb") as output: | |
plistlib.dump(plist, output) |
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 | |
for f in ~/Library/MobileDevice/Provisioning\ Profiles/* | |
do | |
echo \ | |
$(basename "${f%.*}") \ | |
"=> " \ | |
`security cms -D -i "$f" | plutil -extract "Entitlements.application-identifier" xml1 -o - -- - | sed -n -e 's/.*<string>\(.*\)<\/string>.*/\1/p'` | |
echo " Name: "\ |
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 | |
files=`find ~/Desktop/maria -name *_med*.jpeg -a -not -name maria*.jpeg` | |
text="ยฉ Maria Pich 2020" | |
for file in $files; do | |
echo "Add watermark to $file" | |
magick convert "$file" -font Helvetica -pointSize 15 -draw "gravity SouthEast fill grey text 50,30 '$text' fill white text 51,31 '$text'" "$file" | |
done |