See this issue.
Docker best practise to Control and configure Docker with systemd.
-
Create
daemon.jsonfile in/etc/docker:{"hosts": ["tcp://0.0.0.0:2375", "unix:///var/run/docker.sock"]}
See this issue.
Docker best practise to Control and configure Docker with systemd.
Create daemon.json file in /etc/docker:
{"hosts": ["tcp://0.0.0.0:2375", "unix:///var/run/docker.sock"]}
How to configure your Mac to use DNS over TLS in five easy steps:
Install Stubby with Homebrew (https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Daemon+-+Stubby):
brew install stubby
Edit the configuration file:
| /************* | |
| * colors.js * | |
| ************* | |
| * | |
| * You're almost at the exit. You just need to get past this | |
| * color lock. | |
| * | |
| * Changing your environment is no longer enough. You must | |
| * learn to change yourself. I've sent you a little something | |
| * that should help with that. |
| /**************** | |
| * drones101.js * | |
| **************** | |
| * | |
| * Do you remember, my dear Professor, a certain introductory | |
| * computational rationality class you taught long ago? Assignment | |
| * #2, behavior functions of autonomous agents? I remember that one | |
| * fondly - but attack drones are so much easier to reason about | |
| * when they're not staring you in the face, I would imagine! |
| /****************** | |
| * minesweeper.js * | |
| ****************** | |
| * | |
| * So much for Asimov's Laws. They're actually trying to kill | |
| * you now. Not to be alarmist, but the floor is littered | |
| * with mines. Rushing for the exit blindly may be unwise. | |
| * I need you alive, after all. | |
| * | |
| * If only there was some way you could track the positions |
| /******************* | |
| * intoTheWoods.js * | |
| ******************* | |
| * | |
| * Ah, you're out of the woods now. Or into the woods, as the | |
| * case may be. | |
| * | |
| * So take a deep breath, relax, and remember what you're here | |
| * for in the first place. | |
| * |
| /********************** | |
| * fordingTheRiver.js * | |
| ********************** | |
| * | |
| * And there's the river. Fortunately, I was prepared for this. | |
| * See the raft on the other side? | |
| * | |
| * Everything is going according to plan. | |
| */ |
| /************* | |
| * ambush.js * | |
| ************* | |
| * | |
| * Oh. Oh, I see. This wasn't quite part of the plan. | |
| * | |
| * Looks like they won't let you take the Algorithm | |
| * without a fight. You'll need to carefully weave your | |
| * way through the guard drones. | |
| * |
Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}