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
<wap-provisioningdoc id="1162DF07-F217-449B-95F8-FB85A34D3CA5" name="windows-printerspooler-disable"> | |
<characteristic type="com.airwatch.winrt.registryoperation" uuid="3fa91319-eac0-4a16-9d10-093ba845b698"> | |
<parm RegistryPath="HKLM\SYSTEM\CurrentControlSet\Services\Spooler" Action="Replace"> | |
<Value Name="Start" Data="4" Type="DWORD" /> | |
</parm> | |
</characteristic> | |
</wap-provisioningdoc> |
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 PGDB(): | |
LIMIT_RETRIES = 5 | |
def __init__(self, user:str, password:str, host:str, port:int, database:str, sslmode:str, reconnect:bool): | |
self.user = user | |
self.password = password | |
self.host = host | |
self.port = port | |
self.database = database | |
self._connection = None |
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
function sendingRequest(origMsg, initiator, helper) | |
{ | |
// skip if it isn't for the API scope | |
if (! origMsg.getRequestHeader().getHostName().contains("mywebapi")) { return; } | |
var httpRequestHeader = origMsg.cloneAll().getRequestHeader(); | |
// add the Accept header if not exists | |
if (origMsg.getRequestHeader().getHeader("Accept") == null) | |
{ |
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
package tls.netty; | |
import io.netty.channel.Channel; | |
import io.netty.channel.ChannelFutureListener; | |
import io.netty.channel.ChannelHandlerContext; | |
import io.netty.channel.ChannelInboundHandlerAdapter; | |
public class MTLSBackendHandler | |
extends ChannelInboundHandlerAdapter | |
{ |
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
type TTLMap struct { | |
TTL time.Duration | |
data sync.Map | |
} | |
type expireEntry struct { | |
ExpiresAt time.Time | |
Value interface{} | |
} |
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
#### systemd script (/etc/systemd/system/plexdrive.service): | |
[Unit] | |
Description=Plexdrive | |
AssertPathIsDirectory=/media/plex/ | |
After=network-online.target | |
### CONFIGURED FOR MAX ~58GB of MEMORY (change max-chunks to lower) | |
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
{ | |
"options": { | |
"disable_audit": false, | |
"disable_events": false, | |
"enable_mouse_events": false, | |
"enable_keyboard_events": false, | |
"events_max": 10000, | |
"events_expiry": 3600, | |
"read_max": 52428800, | |
"logger_event_type": false, |
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 bash | |
type="$1" | |
PLEXSCAN="/Applications/Plex Media Server.app/Contents/MacOS/Plex Media Scanner" | |
if [ "$type" != "Series" ] && [ "$type" != "Movies" ]; then | |
echo "Unknown type: $type" | |
exit 1 | |
fi |
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
package main | |
import ( | |
"context" | |
"fmt" | |
"github.com/pkg/errors" | |
"net" | |
"strings" | |
"sync" | |
"syscall" |
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
# Generated by iptables-save v1.4.21 on Sun Jan 19 08:14:54 2020 | |
*raw | |
:PREROUTING ACCEPT [17478:786616] | |
:OUTPUT ACCEPT [15285:6842393] | |
COMMIT | |
# Completed on Sun Jan 19 08:14:54 2020 | |
# Generated by iptables-save v1.4.21 on Sun Jan 19 08:14:54 2020 | |
*nat | |
:PREROUTING ACCEPT [412:43501] | |
:INPUT ACCEPT [54:3686] |