This file contains 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
brew install [email protected] | |
pip3.9 install opencv-python==4.5.1.48 |
This file contains 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
$ sw_vers | grep -E 'ProductVersion|BuildVersion' | |
ProductVersion: 10.14.6 | |
BuildVersion: 18G103 | |
$ brew install chkrootkit | |
==> Downloading https://ghcr.io/v2/homebrew/core/chkrootkit/manifests/0.55 | |
Already downloaded: /Users/stefan/Library/Caches/Homebrew/downloads/09b127ebda92fbe220c997e4b03716223b647c1893d08c2f8f35ccac65b71a0a--chkrootkit-0.55.bottle_manifest.json | |
==> Downloading https://ghcr.io/v2/homebrew/core/chkrootkit/blobs/sha256:dcb47fe | |
Already downloaded: /Users/stefan/Library/Caches/Homebrew/downloads/a1e9dccaef720633989239dbd3fcb79d4fc7252965ed73e7eb4a2ffe2795a0b4--chkrootkit--0.55.mojave.bottle.tar.gz | |
==> Pouring chkrootkit--0.55.mojave.bottle.tar.gz | |
🍺 /usr/local/Cellar/chkrootkit/0.55: 15 files, 170.8KB |
This file contains 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
brew install tesseract | |
brew install tesseract-lang | |
tesseract -l deu input.png output.txt |
This file contains 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 python | |
import sys | |
import requests as req | |
from bs4 import BeautifulSoup | |
if not(len(sys.argv) == 2): | |
sys.exit("Usage: fileinfo.py extension") | |
ext = str(sys.argv[1]) |
This file contains 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
/* | |
1. Open https://pinboard.in/u:account/code:500 in browser | |
2. Maximize the number of displayed bookmarks per page (160) | |
3. Open the JavaScript Console in browser | |
4. Paste the below snippet to re-crawl all links with error 500 | |
5. Refresh browser and repeat as needed | |
*/ | |
const list = document.querySelectorAll('a[title="Click to re-crawl this link"]'); | |
const regexp = /mark_for_recrawl\(this, (\d+), '([0-9a-f]+)'\);return false;/g; |
This file contains 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
<?xml version='1.0' encoding='UTF-8' ?> | |
<?charles serialisation-version='2.0' ?> | |
<rewriteSet-array> | |
<rewriteSet> | |
<active>true</active> | |
<name>AFAA</name> | |
<hosts> | |
<locationPatterns> | |
<locationMatch> | |
<location> |
This file contains 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
# https://www.jamf.com/blog/high-sierra-installer-reverts-xprotect-rules/ | |
$ softwareupdate -l --include-config-data | |
Software Update Tool | |
Finding available software | |
Software Update found the following new or updated software: | |
* XProtectPlistConfigData_10_14-2157 | |
XProtectPlistConfigData (2157), 947K [recommended] |
This file contains 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
class YoutubeDl < Formula | |
include Language::Python::Virtualenv | |
desc "Download YouTube videos from the command-line" | |
homepage "https://youtube-dl.org/" | |
url "https://files.pythonhosted.org/packages/01/4f/ab0d0806f4d818168d0ec833df14078c9d1ddddb5c42fa7bfb6f15ecbfa7/youtube_dl-2021.12.17.tar.gz" | |
sha256 "bc59e86c5d15d887ac590454511f08ce2c47698d5a82c27bfe27b5d814bbaed2" | |
license "Unlicense" | |
head "https://github.com/ytdl-org/youtube-dl.git" |
This file contains 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
# As a response to a proposal on Stack Overflow to use parser from dateutil to | |
# parse dates without needing to specify the date format one commenter noted: | |
# "Be aware that for large data amounts this might not be the most optimal | |
# way to approach the problem. Guessing the format every single time may | |
# be horribly slow." - https://stackoverflow.com/questions/466345 | |
# | |
# I was wondering what "horribly slow" could mean in practice. | |
# | |
# In a quick performance comparison I could observe that static parsing | |
# (datetime.strptime) was on average about 5x faster than dynamic parsing |
This file contains 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
class Libpff < Formula | |
desc "libpff is a library to access the Personal Folder File (PFF) and the Offline Folder File (OFF) format" | |
homepage "https://github.com/libyal/libpff" | |
license "LGPLv3+" | |
head "https://github.com/libyal/libpff.git", :branch => "main" | |
# depends_on "cmake" => :build | |
depends_on "gettext" | |
depends_on "automake" | |
depends_on "libtool" |