This became its own writeup: https://gist.github.com/pudquick/981a3e495ffb5badc38e34d754873eb5
There's several different kinds of art that can be configured for an entry. The only real place to configure them all is from Desktop mode, not Game mode.
| .log | |
| 0 | |
| 1 | |
| 1234 | |
| 12345 | |
| 123456 | |
| 18Renmeng | |
| 2 | |
| ACrenshaw | |
| AGorg |
This became its own writeup: https://gist.github.com/pudquick/981a3e495ffb5badc38e34d754873eb5
There's several different kinds of art that can be configured for an entry. The only real place to configure them all is from Desktop mode, not Game mode.
| extension View { | |
| @ViewBuilder | |
| func `if`<Content: View>(_ conditional: Bool, @ViewBuilder content: (Self) -> Content) -> some View { | |
| if conditional { | |
| content(self) | |
| } | |
| else { | |
| self | |
| } | |
| } |
| import UIKit | |
| import Foundation | |
| // NOTE: This playground shows how to use Swift's AttributedString with Markdown. | |
| // | |
| // This code was used to display Markdown content in the Tot iOS Widget <https://tot.rocks> | |
| // MARK: - Helpful Links | |
| // NOTE: The following links helped me figure this stuff out. |
Security Advisories / Bulletins / vendors Responses linked to Log4Shell (CVE-2021-44228)
| #!/usr/bin/python2.7 | |
| # -*- coding: utf-8 -*- | |
| ''' | |
| Defaults Monitor - tool to sniff defaults keys and values using unified log | |
| to launch use standard python 2.7, eg python2.7 ./defsmon.py | |
| ''' | |
| import os |
| #!/bin/bash | |
| <<ABOUT_THIS_SCRIPT | |
| ----------------------------------------------------------------------- | |
| Written by:William Smith | |
| Professional Services Engineer | |
| Jamf | |
| bill@talkingmoose.net | |
| https://gist.github.com/talkingmoose/9faf50deaaefafa9a147e48ba39bb4b0 |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <key>PayloadDisplayName</key> | |
| <string>Privacy Preferences Policy Control</string> | |
| <key>PayloadIdentifier</key> |
Let's assume we have following line in our HA proxy file:
reqrep ^([^\ :]*)\ /api/v1/api-name/(.*) \1\ /staging/path-name/\2
Here is our sample domain:
https://example.com/api/v1/api-name/
The goal here is to rewrite /api/v1/api-name/ to /staging/path-name/ leaving anything else unchanged.
Breaking the Regex and understanding in parts:
There are basically 3 parts in the regex: