https://github.com/engalar/DataHubDemoProducer
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 Mermaid代码可视化 | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0.0 | |
// @description 将网页中的Mermaid代码块转换为可视化图表,每2秒自动检测 | |
// @author You | |
// @match http://localhost:5678/webhook/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant GM_addStyle | |
// @grant GM_notification |
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 Notion | |
// @namespace http://tampermonkey.net/ | |
// @version 1.2.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://www.notion.so/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant GM_xmlhttpRequest | |
// @grant GM_notification |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>拍照示例</title> | |
<style> | |
video, canvas { | |
display: block; | |
margin: 10px auto; |
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
<!doctype html> | |
<html> | |
<head> | |
{{unsupportedbrowser}} | |
<meta charset="utf-8"> | |
<title>Mendix</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
{{themecss}} | |
{{appicons}} | |
{{manifest}} |
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
@charset "UTF-8"; | |
@import url("resources/fonts/open-sans/open-sans.css"); | |
@font-face { | |
font-family: "Atlas_Core$Atlas_Filled"; | |
src: url("./fonts/Atlas_Core$Atlas_Filled.ttf") format("truetype"); | |
} | |
.mx-icon-filled { | |
display: inline-block; | |
font-style: normal; | |
font-weight: normal; |
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
<!-- native-template\android\app\src\main\AndroidManifest.xml --> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
package="com.mendix.nativetemplate"> | |
<!-- Remove the next line after update react-native-inappbrowser--> | |
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" tools:node="remove" | |
tools:ignore="QueryAllPackagesPermission"/> | |
<uses-permission android:name="android.permission.INTERNET" /> |
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
@echo off | |
chcp 65001 | |
setlocal enabledelayedexpansion | |
REM 设置常量和依赖项URL | |
set "CDN_BASE_URL=https://artifacts.rnd.mendix.com" | |
set "LISTING_URL=https://cdn.mendix.com/listing.txt" |
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
<head> | |
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script> | |
</head> | |
<body> | |
<div id="myDiv"></div> | |
<body> |
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
api.Front.registerInlineQuery({ | |
url: function(q) { | |
return `http://dict.youdao.com/w/eng/${q}/#keyfrom=dict2.index`; | |
}, | |
parseResult: function(res) { | |
var parser = new DOMParser(); | |
var doc = parser.parseFromString(res.text, "text/html"); | |
var collinsResult = doc.querySelector("#collinsResult"); | |
var authTransToggle = doc.querySelector("#authTransToggle"); | |
var examplesToggle = doc.querySelector("#examplesToggle"); |
NewerOlder