Hiện tại, CloudFlare đã có
warp-clichính thức cho Linux: https://developers.cloudflare.com/warp-client/setting-up/linux
cmd@fb:/tmp|❯ wc -l 33m-subdomain-wordlist.txt
33927885 33m-subdomain-wordlist.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
| import React from "react"; | |
| import { NextPageContext } from "next"; | |
| const blogPostsRssXml = (blogPosts: IBlogPost[]) => { | |
| let latestPostDate: string = ""; | |
| let rssItemsXml = ""; | |
| blogPosts.forEach(post => { | |
| const postDate = Date.parse(post.createdAt); | |
| if (!latestPostDate || postDate > Date.parse(latestPostDate)) { | |
| latestPostDate = post.createdAt; |
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
| use std::str; | |
| fn main() { | |
| // -- FROM: vec of chars -- | |
| let src1: Vec<char> = vec!['j','{','"','i','m','m','y','"','}']; | |
| // to String | |
| let string1: String = src1.iter().collect::<String>(); | |
| // to str | |
| let str1: &str = &src1.iter().collect::<String>(); | |
| // to vec of byte |
I created a crude comparison of the syntax of the various common Markdown extensions to have a better view on what are the most common extensions and what is the most widely accepted syntax for them. The list of Markdown flavors that I looked at was based on the list found on CommonMark's GitHub Wiki.
| Flavor | Superscript | Subscript | Deletion* Strikethrough |
Insertion* | Highlight* | Footnote | Task list | Table | Abbr | Deflist | Smart typo | TOC | Math | Math Block | Mermaid |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| GFM |
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
| (() => { | |
| /* | |
| Author: @MonokaiJsp (MonokaiJs | https://omfg.vn) | |
| >>>>>>> Free for Personal Usage. | |
| ======= Donate me: https://omfg.vn/donate | |
| ======= Github: https://github.com | |
| ======= Gists | |
| */ | |
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
| /* Developed by Juno_okyo */ | |
| (function(e, b) { | |
| function f(a, b) { | |
| var d = fetch, | |
| e = "sej=" + encodeURIComponent(JSON.stringify({ | |
| playlistEditEndpoint: { | |
| playlistId: a, | |
| actions: [{ | |
| addedVideoId: b, | |
| action: "ACTION_ADD_VIDEO" |
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
| (function () { | |
| fetch('/level/1', { | |
| credentials: 'same-origin' | |
| }).then(function (response) { | |
| return response.text(); | |
| }).then(function (response) { | |
| $('#password').val(response.match(/Password:\s+([\d\-]+)/)[1]); | |
| }); | |
| })(); |