Combo | Availability | Last Checked | Message |
---|---|---|---|
111 |
❌ Not available | Sep 07, 2025 00:25 PDT | |
112 |
❌ Not available | Sep 07, 2025 00:25 PDT | |
113 |
❌ Not available | Sep 07, 2025 00:25 PDT | |
114 |
❌ Not available | Sep 07, 2025 00:25 PDT | |
115 |
❌ Not available | Sep 07, 2025 00:25 PDT | |
116 |
❌ Not available | Sep 07, 2025 00:25 PDT |
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
interface-range ap-ports { | |
unit 0 { | |
family ethernet-switching { | |
port-mode trunk; | |
vlan { | |
members all; | |
except admin; | |
} | |
native-vlan-id admin; | |
} |
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
actblue.com | |
forwardblue.us | |
=== | |
winred.com | |
gop.com | |
gv087.org | |
win2024.net |
If you encounter error like cloud-init devel: error: argument subcommand: invalid choice: 'schema' (choose from 'hotplug-hook', 'net-convert', 'render', 'make-mime')
Simply remove devel
your command: it is a command by itself right now.
cloud-init devel schema --config-file user-data
-> cloud-init schema --config-file user-data
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
#!/usr/bin/env python3 | |
# Tcp Port Forwarding (Reverse Proxy) | |
# | |
# For link-local IPv6 address, such as router emergency recovery, etc. | |
# Workaround for https://stackoverflow.com/questions/45299648/how-to-access-devices-with-ipv6-link-local-address-from-browserlike-ie-firefox | |
# | |
# Usage: python3 forward.py --listen-host 127.0.0.1 --listen-port 8443 --connect-host 'fe80::abcd:abcd:beef:beef%enp0s0' --connect-port 443 | |
import socket | |
import threading |
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
*PPD-Adobe: "4.3" | |
*FormatVersion: "4.3" | |
*FileVersion: "2.3" | |
*LanguageVersion: English | |
*LanguageEncoding: ISOLatin1 | |
*PSVersion: "(3010.000) 0" | |
*LanguageLevel: "3" | |
*FileSystem: False | |
*PCFileName: "ippeve.ppd" | |
*Manufacturer: "CNMF641C" |
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
### | |
# Search for and execute (if found) preimage script. | |
### | |
run_preimage_script() | |
{ | |
preimage_script=/usb_drive/emctools/"$ENV_MODEL"_images/preimage.sh | |
echo -n "Checking for pre-image script... " | |
if [ -x $preimage_script ] |
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
out2.mp3 | |
说话人1 00:00 | |
好,今天上午审理的案件案号是2020月0192民初24388号案,现在核对当事人原告深圳市腾讯计算机系统有限公司是否在线,那些那些人员姓名、身份、代理权限。 | |
说话人2 00:22 | |
王忠鹏。 | |
说话人3 00:24 | |
广东信达律师事务所律师,代理权限是特别授权。 | |
说话人4 00:29 | |
原告代理人林兰占系公司员工,授权范围是特别授权。 | |
说话人1 00:36 |
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
{ | |
"since_id": [ | |
"1452646580205469702", | |
"1452616357879549953", | |
"1452486539603111941", | |
"1452486283062702084", | |
"1452485722670174211", | |
"1452483224425295881", | |
"1452482755241988102", | |
"1452480718475431938", |
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
#!/usr/bin/env bash | |
set -e | |
# Purpose: Update Server certificates | |
# find certificates that might need an update | |
# cd / && find . -name "*.pem" | |
declare -a CERT_DIRS | |
CERT_DIRS=(\ '/usr/syno/etc/certificate/AppPortal/VideoStation/' \ '/usr/syno/etc/certificate/AppPortal/AudioStation/' \ '/usr/syno/etc/certificate/AppPortal/FileStation/' \ '/usr/syno/etc/certificate/AppPortal/DownloadStation/' \ '/usr/local/etc/certificate/DirectoryServer/slapd/' \ '/usr/local/etc/certificate/LogCenter/pkg-LogCenter/' \ '/usr/local/etc/certificate/WebStation/vhost_225bb9ca-d884-44dd-a0f9-83ff557b95d6/' \ '/usr/local/etc/certificate/CloudStation/CloudStationServer/' \ '/usr/syno/etc/certificate/smbftpd/ftpd/' \ '/usr/syno/etc/certificate/system/FQDN/' \ '/usr/syno/etc/certificate/system/default/' ) | |
urlbase='https://cert.example.com/' | |
filebase='synology' | |
base="${urlbase}${filebase}" |
NewerOlder