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
on: [push] | |
jobs: | |
"check PHP PSR": | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: "check out source code" | |
uses: "https://code.forgejo.org/actions/checkout@v4" | |
- name: "setup PHP" | |
uses: "shivammathur/[email protected]" |
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 Remove YouTube video on the top of NewsTalk | |
// @namespace https://newtalk.tw/ | |
// @version 0.1 | |
// @description remove the ads on the top | |
// @author zeroplex | |
// @match https://newtalk.tw/news* | |
// @run-at document-end | |
// @grant none | |
// ==/UserScript== |
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
server { | |
if ($http_user_agent ~* (mj12bot|ahrefs|imagesift|BLEXBot|webmeup|toutiao|semrush|petalsearch|dataforseo)) { | |
return 402; | |
} | |
} |
OlderNewer