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
client | |
dev tun | |
proto udp | |
remote <YOUR PUBLIC IP ADDRESS HERE> 1194 | |
resolv-retry infinite | |
nobind | |
persist-key | |
persist-tun | |
mute-replay-warnings | |
ns-cert-type 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
using System.Windows; | |
namespace Util { | |
public static class ViewModelLocator { | |
public static bool GetAutoWireViewModel(DependencyObject obj) { | |
return (bool)obj.GetValue(AutoWireViewModelProperty); | |
} |
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
{ | |
"alt-speed-down": 15, | |
"alt-speed-enabled": false, | |
"alt-speed-time-begin": 540, | |
"alt-speed-time-day": 127, | |
"alt-speed-time-enabled": false, | |
"alt-speed-time-end": 1020, | |
"alt-speed-up": 15, | |
"bind-address-ipv4": "0.0.0.0", | |
"bind-address-ipv6": "::", |
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: NzbDrone | |
# Required-Start: $local_fs $network $remote_fs | |
# Required-Stop: $local_fs $network $remote_fs | |
# Should-Start: $NetworkManager | |
# Should-Stop: $NetworkManager | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: starts instance of NzbDrone |
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: Ubooquity | |
# Required-Start: $local_fs $remote_fs $network | |
# Required-Stop: $local_fs $remote_fs $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Ubooquity | |
# Description: Ubooquity for ebook management | |
### END INIT INFO |
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
Include pattern: https://twitter.com/i/redirect\?url=(.*)%3F.* | |
Redirect to: $1 | |
Pattern type: Regular Expression | |
Advanced options: | |
Exclude pattern: | |
Process matches: URL Decode | |
Apply to: | |
Main window (address bar) | |
iFrames |
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
steamcmd.exe +login anonymous +force_install_dir "<PATH_TO_RUSTSERVER>" +app_update 258550 +quit | |
rustdedicated.exe \ | |
-batchmode \ | |
+server.ip 0.0.0.0 \ | |
+server.port 28015 \ | |
+server.tickrate 10 \ | |
+server.hostname "<SERVER NAME>" \ | |
+server.identity "<SERVER IDENTITY (folder name)>" \ | |
+server.seed 793197 \ |
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
using System.ComponentModel; | |
namespace System.ComponentModel.Impl { | |
public class NotifyPropertyChangedImpl : INotifyPropertyChanged { | |
public event PropertyChangedEventHandler PropertyChanged; | |
public void OnPropertyChanged(string propertyName) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); | |
} | |
} |
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
# optional 3rd parameter: OUT_DIRECTORYNAME | |
# if not supplied, IN_DIRECTORYNAME will be used as its default value | |
# usage: | |
# get_copyToBuildDirectory_command(SOURCE_DIRNAME [TARGET_DIRNAME = SOURCE_DIRNAME]) | |
function(get_copyToBuildDirectory_command COPY_COMMAND IN_DIRECTORYNAME) | |
if(${ARGC} LESS 3) | |
set(OUT_DIRECTORYNAME ${IN_DIRECTORYNAME}) | |
else() | |
set(OUT_DIRECTORYNAME ${ARGV2}) |
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
https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US | |
https://www.7-zip.org/a/7z1900-x64.exe |
OlderNewer