openpgp4fpr:702F43996B585D7EA231633551AA58935AFE6617
This file contains hidden or 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 Video Fake Play | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @author ShellWen Chen<me@shellwen.com> | |
// @license Apache-2.0 | |
// @description 允许在不加载视频流的情况下“播放”视频,减少带宽与解码开销 | |
// @match *://*.zhihuishu.com/* | |
// @match *://*.chaoxing.com/* | |
// @match *://*.edu.cn/* |
This file contains hidden or 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 React from 'react' | |
import { ComponentWithAs, Link as ChakraLink, LinkProps as RawChakraLinkProps } from '@chakra-ui/react' | |
import { Link as ReactRouterLink } from 'react-router-dom' | |
type Props = Omit<React.ComponentPropsWithoutRef<ComponentWithAs<typeof ReactRouterLink, RawChakraLinkProps>>, 'as'> | |
const Link: React.FC<Props> = ({ children, ...props }) => ( | |
// eslint-disable-next-line react/jsx-props-no-spreading | |
<ChakraLink as={ReactRouterLink} {...props}> |
This file contains hidden or 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
/** | |
* Usage: | |
* webPreferences: { | |
... | |
preload: path.join(__dirname, 'emby-web-crack.js'), | |
}, | |
*/ | |
const fetch_ = window.fetch | |
window.fetch = async (input, options) => { |
This file contains hidden or 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 Fk Google Search Ads | |
// @namespace https://google.com/ | |
// @version 0.1 | |
// @description Fk Google Search Ads | |
// @author ShellWen | |
// @match https://google.com/* | |
// @match https://www.google.com/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none |
This file contains hidden or 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 androidx.compose.foundation.text.ClickableText | |
import androidx.compose.material3.MaterialTheme | |
import androidx.compose.runtime.Composable | |
import androidx.compose.runtime.remember | |
import androidx.compose.ui.Modifier | |
import androidx.compose.ui.platform.LocalUriHandler | |
import androidx.compose.ui.platform.UriHandler | |
import androidx.compose.ui.text.* | |
import androidx.compose.ui.text.style.TextDecoration | |
import androidx.compose.ui.text.style.TextOverflow |
This file contains hidden or 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
```kotlin | |
/** | |
* This "object" is still learning | |
*/ | |
object ShellWen : Coder( | |
name = "颉文", | |
languages = listOf( | |
"Kotlin", | |
"Java", | |
"Python", |