From Bas van Dijk:
To understand these things I would recommend using nix-repl:
$ nix-repl
Welcome to Nix version 1.11.2. Type :? for help.
| Byobu Commands | |
| ============== | |
| byobu Screen manager | |
| Level 0 Commands (Quick Start) | |
| ------------------------------ | |
| <F2> Create a new window |
We've been able to toggle visibility of gists since 2014 (https://github.com/blog/1837-change-the-visibility-of-your-gists), but I just noticed that I can no longer make public gists private. That is, when I edit private gists I still see the "Make Public" button, but not the other way round — there's only a "Delete" button when I edit public gists; the "Make Secret" which should be next to it (as shown in the screencast in the linked blog post) is nowhere to be found. I made a screenshot and a screencast demonstrating the issue, both of which are attached. Could you please confirm this issue? Was this an intentional change, and why? Thank you for your attention.
| import java.awt.BorderLayout; | |
| import java.awt.FlowLayout; | |
| import java.awt.Graphics; | |
| import java.awt.image.BufferedImage; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import javax.imageio.ImageIO; | |
| import javax.swing.JButton; | |
| import javax.swing.JFrame; |
| [ | |
| { "name": "Amazon", "url": "https://www.amazon.de/gp/help/customer/contact-us?", "note": "Select, in this order: 'Digitale Dienste' -> 'Datenauskunft beantragen' -> 'Datenauskunft für eine spätere Zusendung beantragen' -> 'Daten aus allen Kategorien anfordern' -> Namen eingeben und Nachricht vervollständigen. -- Amazon Support Staff will review your request and send you an email, asking about a postal address. If you don't answer to their mail, your request won't be fulfilled." }, | |
| { "name": "McDonalds", "url": "https://corporate.mcdonalds.com/corpmcd/gdpr-rights-center.html" }, | |
| { "name": "willhaben.at", "url": "https://datenschutz.willhaben.at/" }, | |
| { "name": "Spotify", "url": "https://www.spotify.com/account/privacy/" }, | |
| { "name": "Google", "url": "https://takeout.google.com" }, | |
| { "name": "PlayStation", "email": "dpo@scee.net" }, | |
| { "name": "Humble Bundle", "email": "dpo@humblebundle.com" }, | |
| { "name": "REWE Group AT", "email": "datenschutz@rewe-group.at" }, | |
| { "name": "BILLA", "url": "https: |
If you have more you can still use this method (3 accounts per instance)
⚠ This guide is for the app available here: https://desktop.telegram.org/ not the one in the Mac/Windows App Store. For the Mac App Store app this should work: https://gist.github.com/Nachtalb/ec590dc974f6ba4674972d4937b230be/#gistcomment-3611415 ⚠
| #region Custom Function Definitions | |
| Function Test-Administrator { | |
| $CurrentUser = [Security.Principal.WindowsIdentity]::GetCurrent() | |
| $AdministratorRole = [Security.Principal.WindowsBuiltInRole] "Administrator" | |
| ([Security.Principal.WindowsPrincipal]$CurrentUser).IsInRole($AdministratorRole) | |
| } | |
| #endregion | |
| #region Prompt Prep | |
| # Set ENV for elevated status |