Skip to content

Instantly share code, notes, and snippets.

View SteffenGivard's full-sized avatar
😃

Steffen Givard SteffenGivard

😃
  • Denmark
View GitHub Profile
@SteffenGivard
SteffenGivard / data_hygiene.md
Created November 4, 2025 16:45
Practical guide to data hygiene: Obfuscate personal info and verify true account deletion to protect your privacy online. Based on real-world pitfalls with service providers.

Ensuring proper account deletion and minimizing data traces

This post was rewritten from my original comment at jdm-contrib/jdm #758.

TLDR Accounts are often "disabled" instead of truly deleted. Always verify and obfuscate your data beforehand to protect your privacy. This is a general guide for handling account deletions – let's expand community resources on data hygiene.
@SteffenGivard
SteffenGivard / glitch-project-deletion.md
Created February 1, 2025 17:34
How to delete prune Glitch source code and git history.

How to delete a project from Glitch

You cannot delete a project yourselv — you'd have to request this from their support by email — however, you can delete all its assets. After doing so, you can also delete the projects git history, to leave no trace of the source code at all.

  1. Edit a project.
  2. Manually delete all files and folder using the UI.
  3. Open Terminal .
  4. Type rm -rf .git.
  5. Optionally, further anonymize the project under its Settings.
  6. Set a random project name.
blueprint:
name: IKEA Open/Close Remote
description: 'Control your smart blind with an IKEA 2 button square remote.'
domain: automation
input:
remote:
name: Remote
description: IKEA remote to use
selector:
device:
@SteffenGivard
SteffenGivard / keyword-to-disable-security-warning.md
Last active February 18, 2021 13:13
A little sneaky trick to easily bypass Google Chrome's "Your connection is not private" warning using a secret keyword.

Easily bypass Chromes "Your connection is not private" warning

When Chrome warns you, that your connection is not private, when fx visiting a development environment, you can easily bypass the warning. While on the warning page, simply just type thisisnotsafe on your keyboard, and the site will continue to load.

The warning reads as follows.

Attackers might be trying to steal your information from 192.168.0.1 (for example, passwords, messages or credit cards).

NET::ERR_CERT_AUTHORITY_INVALID

Use wisely

@SteffenGivard
SteffenGivard / Install yarn on Glitch.md
Created February 5, 2021 13:47
How to install and use yarn on a Glitch project.

One-liner

Open a Glitch project, and paste the following into the terminal. When it's done press the reconnect button.

rm -rf /app/.yarn & touch .bash_profile && curl -o- -L https://yarnpkg.com/install.sh | bash && exit

Step by step

@SteffenGivard
SteffenGivard / Install Jekyll on Windows.md
Created February 3, 2021 17:36
Detailed instructions for installing Jekyll on Windows.

Install Jekyll on Windows

Installing Jekyll on Windows can be tidious. To spare you the trouble of figuring it out, I've outlined what worked for me. To be frank, this is just an detailed version of Jekyll's official instructions with a step-by-step approach.

Step-by-step install guide

  1. Download the recommended Ruby+Devkit installer from RubyInstaller Downloads. The recommended versionen is prefixed with => and it's the only one with bold text.