Alt-Account:

feddit.de/u/Hubi 🪦🙏😔

lemmy.world/u/Hubi

Matrix: @hubinator:matrix.org

  • 1 Post
  • 18 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2024

help-circle








  • Hubi@feddit.orgtoAsk Lemmy@lemmy.world*Permanently Deleted*
    link
    fedilink
    arrow-up
    39
    arrow-down
    1
    ·
    2 months ago

    I’d just go to the local hospital and tell them that I suffer from anmesia. I will then depend on the social system for support and will eventually aquire new legal documents. After that I’d probably use my knowledge to breeze through an apprenticeship to get into my line of work again.











  • You can use this script with a browser addon like Tampermonkey to get around the sign-in requirement:

    // ==UserScript==
    // @name         reddit - unblock (create cookie and reload)
    // @namespace    Violentmonkey Scripts
    // @match        *://*.reddit.com/*
    // @grant        none
    // @version      2024-01-08
    // @noframes
    // @license      MIT License
    // @description  for "Blocked" "whoa there, pardner!" cowboy bs
    // ==/UserScript==
    /* thanks: https://www.reddit.com/r/mullvadvpn/comments/18jbxb2 */
    if (document.title === "Blocked") {
      document.cookie="reddit_session=;Domain=.reddit.com;Path=/;Expires=;Secure=true;SameSite=None";
      window.location.reload();
    }