Skip to content

Instantly share code, notes, and snippets.

@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: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:bf076e3f7977364149d09cac7ea0f163
Created July 19, 2022 08:35
forza ups tracker passwords
5242-87f6-64re-di8d-986u
111296
@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
@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 / liquidaciones.sh
Last active February 2, 2024 03:47
comandos interesantes en bash
Renombra los archivos agregando "LIQ.2" al comienzo
for f in *;do mv -v "$f" "LIQ.2 ${f%.*}.${f##*.}";done
Borra todas las carpetas con x nombre:
find . -type d -name "LIQUIDACIONES 2024" -exec rm -r {} \;
Crea una carpeta "LIQUIDACIONES 2024" en cada empleado menos en finiquitados:
find * -maxdepth 0 -type d ! -name "FINIQUITADOS" -exec mkdir -p {}/LIQUIDACIONES\ 2024 \;
Este comando considera la estructura que proporcionaste, toma el tercer elemento como el segundo nombre y el cuarto elemento como el apellido, y genera el nuevo nombre utilizando el primer apellido y el primer nombre. Ejecútalo desde el directorio correcto y realiza pruebas en un conjunto de archivos antes de aplicarlo a tus archivos principales.

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 / install etherwake on edgeos edgerouter
Last active October 26, 2023 09:01
install etherwake on edgerouter +2
delete system image
configure
set system package repository stretch components 'main contrib non-free'
set system package repository stretch distribution stretch
set system package repository stretch url http://http.us.debian.org/debian
commit ; save
exit
sudo apt-get update
@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"/>