Skip to content

Instantly share code, notes, and snippets.

View maxi3390's full-sized avatar

David Maximiliano Sosa maxi3390

  • Santa Fe, Argentina
  • 03:10 (UTC -03:00)
View GitHub Profile
@maxi3390
maxi3390 / jd_dlc_decryptor.js
Created July 16, 2026 01:13
Decrypt JDownloader Click'n'Load DLC within the browser console
(async () => {
// ------------------------------------------------------------
// Load CryptoJS from CDN if it isn't already available
// ------------------------------------------------------------
if (typeof CryptoJS === "undefined") {
console.log("Loading CryptoJS...");
await new Promise((resolve, reject) => {
const script = document.createElement("script");
script.src = "https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js";
@maxi3390
maxi3390 / README.md
Created September 1, 2020 22:57
IgVideoDownloader

Bookmarklet

@maxi3390
maxi3390 / main.cpp
Created March 21, 2015 14:57
Testing GTK and CSS with C++
/* Compile with
* g++ -o program main.cpp `pkg-config --cflags --libs gtkmm-3.0`
*
* Original source: http://www.taringa.net/posts/linux/18386145/Gtkmm-3-12-c-subclass-o-class-dependiente.html
*/
#include <iostream>
#include <gtkmm-3.0/gtkmm.h>
#include <gdkmm/general.h>