graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
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
| { | |
| "transforms": [ | |
| { | |
| "fromTopic": "teslamate/cars/<card-id>/location", | |
| "toTopic": "owntracks/tesla/<owntracks-user-id>", | |
| "emitInterval": 5, | |
| "emitType": "once", | |
| "template": { | |
| "_type": "location", | |
| "lat": { |
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
| defmodule Plex.PlexDownloadRequest do | |
| @doc """ | |
| Model representing the request which will send to the downloader. | |
| """ | |
| defstruct [:host, :port, :media_id, :plex_token, :callback_server_id] | |
| @type t :: %__MODULE__{host: bitstring, port: integer, media_id: integer, plex_token: bitstring, callback_server_id: pid} | |
| end |
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
| ## function to retrieve the Windows Product Key from any PC | |
| ## by Jakob Bindslet ([email protected]) | |
| function Get-WindowsKey { | |
| param ($targets = ".") | |
| $hklm = 2147483650 | |
| $regPath = "Software\Microsoft\Windows NT\CurrentVersion" | |
| $regValue = "DigitalProductId" | |
| Foreach ($target in $targets) { | |
| $productKey = $null |
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
| function FxCop | |
| { | |
| $vsCommonTools = @(${Env:VS140COMNTOOLS}, ${Env:VS120COMNTOOLS}, ${Env:VS110COMNTOOLS}) | |
| $fxCopPath = $vsCommonTools | Where { $_ -ne $null -and $_ -ne "" } ` | |
| | Select @{ Name = "Out"; Expression = { $_ | Split-Path -Parent | Split-path -Parent } } ` | |
| | Select -ExpandProperty "Out" ` | |
| | Select @{ Name = "Out"; Expression = { Join-path $_ "Team Tools\Static Analysis Tools\FxCop\FxCopCmd.exe" } } ` | |
| | Select -ExpandProperty "Out" ` | |
| | Where { $_ | Test-Path } ` | |
| | Select -first 1 |
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 | |
| # kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing. | |
| if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then | |
| set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script | |
| fi | |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: Terraria TShock Server |
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 | |
| ### BEGIN INIT INFO | |
| # Provides: plexconnect | |
| # Description: Script for executing PlexConnect as daemon | |
| ### END INIT INFO | |
| # Author: Burgy Benjamin <[email protected]> | |
| PATH=/sbin:/usr/sbin:/bin:/usr/bin | |
| DESC="PlexConnect Daemon" |