Skip to content

Instantly share code, notes, and snippets.

@a-sync
a-sync / m3u8-ts-ripper.sh
Created November 19, 2017 10:14
Rip and concat MPEG2 playlists with ffmpeg
#!/bin/bash
# Rip and concat MPEG2 playlists with ffmpeg
read -p 'URL: ' urlvar
read -p 'File name: ' filenamevar
ffmpeg -i ${urlvar} -c copy -bsf:a aac_adtstoasc ${filenamevar}.mp4
@a-sync
a-sync / cisco_decrypt.c
Created December 6, 2016 07:01
Decoder for password encoding of Cisco VPN client
/* Decoder for password encoding of Cisco VPN client.
Copyright (C) 2005 Maurice Massar
Thanks to [email protected] for decoding and posting the algorithm!
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
@a-sync
a-sync / etd0108.rst
Created November 17, 2016 21:02 — forked from admkng/etd0108.rst
Asus X750L touchpad not detected in Ubuntu

The Asus X750L touchpad manufactured by elantech (ETD0108) isn't detected in recent versions of Ubuntu and Arch Linux. To get it working, add the following kernel parameter to your grub line:

i8042.noloop

To make it permanent, add it to the GRUB_CMDLINE_LINUX_DEFAULT variable in /etc/default/grub:

GRUB_CMDLINE_LINUX_DEFAULT="i8042.noloop quiet splash"

Then run: