Skip to content

Instantly share code, notes, and snippets.

View daredoes's full-sized avatar

Daniel Evans daredoes

View GitHub Profile
@throwaway96
throwaway96 / crashd.md
Last active December 21, 2025 04:12
crashd instructions

News

EOL (2024-07-21)

I'm not going to be maintaining this document anymore. I'm leaving it as-is since much of the FAQ section is still accurate and has yet to be incorporated into other resources.

Use CanI.RootMy.TV to find an exploit for your TV.

New exploit for webOS 3.5+: DejaVuln (2024-04-21)

@ludeeus
ludeeus / .HA Frontend & Core devcontainer.md
Last active October 24, 2023 00:15
Devcontainer for Home Assistant Frontend & Core

Yeah yeah yeah I know.... but it works...

Usage:

  1. Create a new directory on your computer
  2. In that directory create a directory called '.devcontainer'
  3. Place both the initand the devcontainer.json files from this gist in that directory
  4. Open VS Code in the directory you created and enjoy
  5. Inital starup will take some time since it clones both the repositories and install the requirements to run them.
@santiagobasulto
santiagobasulto / README.md
Last active February 17, 2025 16:05
Download HumbleBundle books in batch with a simple Python script.

Download HumbleBundle books

This is a quick Python script I wrote to download HumbleBundle books in batch. I bought the amazing Machine Learning by O'Reilly bundle. There were 15 books to download, with 3 different file formats per book. So I scratched a quick script to download all of them in batch.

(Final Result: books downloaded)

@nikmartin
nikmartin / twiml.gs
Created November 9, 2015 21:38
Google Apps Script to produce Twilio TWIML
function doGet(e) {
var toNum = e.parameter.PhoneNumber;
var fromNum = e.parameter.CallerId;
var action = e.parameter.Direction;
var record = e.parameter.Record;
Logger.log(e);
var output = ContentService.createTextOutput();
var xml = createDialTWIML(fromNum, toNum, action);