At least for me, Reddit has a problem actually hiding posts I have marked as hidden. With RES going away and Tamper Monkey being more difficult that this is worth, I created a simple bookmarklet to automatically remove hidden posts.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Docker spacer icon. | |
defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' \ | |
&& killall Dock | |
# Faster dock hiding/showing. | |
defaults write com.apple.dock autohide-delay -float 0 \ | |
&& defaults write com.apple.dock autohide-time-modifier -float 0.5 \ | |
&& killall Dock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### | |
# Uses the 3 pipe to run commands. | |
# | |
# In Rust: https://stackoverflow.com/a/54858159 | |
## | |
inner() | |
{ | |
echo 'echo "Hello, before!"' >&3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* calendar.google.com */ | |
:root { | |
--base-bg-color: #111111; | |
--base-fg-color: #eeeeee; | |
--border-color: #202020; | |
--button-hover-bg-color: #333333; | |
--button-hover-border-color: #404040; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.function.Consumer; | |
import java.util.function.Function; | |
import java.util.Optional; | |
public class Example { | |
public static void main(String []args) { | |
// Create a series of nullable objects. | |
Test a = new Test(); |
NewerOlder