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
// ==UserScript== | |
// @name Hide Trending Articles | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-04-04 | |
// @description try to take over the world! | |
// @author You | |
// @match https://twitter.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com | |
// @grant none | |
// ==/UserScript== |
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
<div id="foolshair" style="position: absolute; left: 302px; top: 458px; width: 1cm; height: 1cm; z-index: 9000; pointer-events: none; background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAwCAMAAADAQ2FbAAAAXVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC5BxTwAAAAH3RSTlMAoZoai3djM6aULgqekIFtTB+tg3ppWEg+NyQQtoYngfkOTAAAAJFJREFUKM+NzkkSgzAMRFEwng22mack9z9m9l9VIVq+klrdPE1HcA4QN56UBDERYC1TNf+okyED4H6xnM6sMrHKewakiSmrYhe/A6Lnilko7QG4xNGqKYMVMQ4wtlyponARwdk8vwqVohyl/4iC4x9yiZwofh2UsFF0oZiZYgPl7BtRqBPvKyUvlN1TUribX/MFILEESqUFgTIAAAAASUVORK5CYII=") center center / contain no-repeat; transform-origin: center center 0px; transform: rotate(307deg);"></div> |
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
/* | |
* The redux-orm model and redux-toolkit slice are defined together in the same | |
* class. | |
* An export scheme similiar to Ducks is used, where the model class is | |
* exported in place of the reducer function. | |
*/ | |
import { Model, fk, many, attr } from 'redux-orm'; | |
import { createSlice } from '@reduxjs/toolkit'; |