Skip to content

Instantly share code, notes, and snippets.

@manueldev
manueldev / gist:a8ff38c28276fcf3bce7009fcba15f0b
Created April 4, 2024 18:20
zerotier windows lost connection after 10 minutes fix
https://github.com/zerotier/ZeroTierOne/issues/860#issuecomment-433739006
drop
and dport 1900
and ipprotocol udp
and ipdest 239.255.255.250/24
;
@manueldev
manueldev / gist:73b79ecb94f3a5a8f33830742440dfdb
Created February 21, 2024 07:01
OBS HLS Output using hardware encoder with master.m3u8 and removing old segments.
Settings, output
Output Mode = advanced
Recording tab
Type = Standard
Recording Format = HLS (.m3u8 + TS)
Video and audio encoder = (Use Stream Encoder)
Custom Muxer Settings = hls_flags=delete_segments master_pl_name=master.m3u8
@manueldev
manueldev / gist:f533272a279da565658fafcfbf3aae82
Created February 16, 2024 22:20
Traceroute contra equipos windows
traceroute -I ip_address

How To Unlock Huawei B612s-25d Router

December 30, 2021 admin Computer 0

This article aims to explain how to Unlock Huawei B612s-25d Router in a simple and efficient way. To succeed in the Unlocking procedure, be sure to carefully follow the instructions listed here and on the video below.

Huawei B612s-25d Router is a new 4G Wireless Gateway that integrates LTE access and High-Speed Ethernet uplink, which provides users with flexible and diverse data access and voice services. Huawei B612s-25d Smart Hub connects up to 32 Wi-Fi-enabled devices without sacrificing connection quality or speed. With LTE Category 6 support, Huawei B612s-25d Smart Hub is advanced-enabled by LTE, with download speeds of up to 300 Mbps and upload speeds of up to 50 Mbps – making it the smart hub. perfect for any workplace. The Huawei B612s-25d Smart Hub also supports up to 4 wired connections such as desktops, laptops, tablets, smart TV and other devices through an Ethernet connection.

To Unlock Huawei B612s-25d Router:

D

@manueldev
manueldev / DSL-2401HN-T1C-movistar-adsl.txt
Last active February 3, 2024 07:07
contraseñas de routers por proveedores chilenos vtr movistar mundo entel claro wom
http://192.168.1.1:8000/cgi-bin/login_advance.cgi
DSL-2401HN-T1C
Movistar Chile ADSL
Support
!!T2l2f4n3c1!!
@manueldev
manueldev / gist:548cd633484ec8b7d09fb47030bef35e
Created December 19, 2023 22:02
disable jack detection windows
I've seen several people ask this question, and I've figured it out myself so I figured I'd post it here.
In my case, I damaged my headphone jack, making it so windows wouldn't recognize that something was plugged in unless I pushed on the plug. This fix causes Windows to always give me access to my headphones, whether Windows thinks they're plugged in or not.
DISCLAIMER: This solution involves editing the Windows registry, which could totally screw up your computer if you don't know what you're doing. Proceed at your own risk.
Solution:
Uninstall your audio drivers until you have the Windows default audio driver installed. (High Definition Audio Device 10.0.15063.447 )
@manueldev
manueldev / gist:c7163398ef8424cb167f65a9b6ee09a6
Created August 29, 2023 06:59
SSL Icecast-kh Windows setup.
1. Install icecast-kh https://github.com/karlheyes/icecast-kh/releases
2. Configure icecast.xml and start service.
<paths>
<ssl-private-key>.\domainname.com-key.pem</ssl-private-key>
<ssl_certificate>.\domainname.com-chain.pem</ssl_certificate>
<logdir>.\logs\</logdir>
<webroot>.\web\</webroot>
<adminroot>.\admin\</adminroot>
<alias source="/" dest="/index.html"/>
@manueldev
manueldev / gist:cd1276b7e0f14773d8be0f3526a869a3
Created August 17, 2023 05:56
No-ip updater for Mikrotik
## noip no-ip updater mikrotik behind nat
## read write policy test
# Set needed variables
:local username "username@gmail.com"
:local password "password-no-ip"
:local hostname "domain.ddns.net"
:global dyndnsForce
:global previousIP
@manueldev
manueldev / telegraf
Last active August 7, 2023 09:42
Monitoreo UPS Inverter VP-5000 (WatchPower). Usando mpp-solar python librería https://github.com/jblance/mpp-solar, telegraf inputs.exec, influxdb y grafana
#/etc/sudoers.d/telegraf
Defaults:telegraf !requiretty, !syslog
telegraf ALL = NOPASSWD: /usr/local/bin/mpp-solar
@manueldev
manueldev / gist:99957a05795da1be94399302673bc958
Created March 5, 2023 18:04
Installing webhook in sysd systemd
echo "[-] Installing webhook in sysd.."
file_location=/etc/systemd/system/webhook.service
cat > $file_location <<EOF
[Unit]
Description=webhook server for ci
ConditionPathExists=/bin/webhook
After=network.target
[Service]
Type=simple