序号 | 公司 | 域名 | 流量占比 |
---|---|---|---|
1 | 中国铁路客户服务中心 | 12306.cn | 18.65% |
2 | 微博 | weibo.cn | 18.05% |
3 | 淘宝 | taobao.com | 12.16% |
4 | 百度 | baidu.com | 6.22% |
5 | 大众点评 | dianping.com | 6.14% |
6 | 联通 | 10010.com | 4.82% |
7 | 微信搜索 | weixin.sogou.com | 2.85% |
8 | 最高人民法院公告查询 | court.gov.cn | 2.78% |
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
__all__ = ['TeXParser', 'TeXDistribution'] | |
__version__ = '0.1.0' | |
import collections as c | |
import json | |
import pathlib as p | |
import re | |
import textwrap | |
import typing as t |
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
''' | |
🔵⬜🟦⬜🟦 | |
⬜⬜🟦⬜🟦 | |
🟦⬜🟦🟦🟦 | |
🟦⬜⬜⬜🟦 | |
🟦⬜🟦🟦🟦 | |
''' | |
import random | |
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
import datetime | |
import requests | |
from bs4 import BeautifulSoup | |
class SUSTech: | |
_url_login = 'https://cas.sustech.edu.cn/cas/login' | |
def __init__(self, username, password): |
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
__import__('warnings').filterwarnings('ignore') | |
import functools as f | |
import re | |
import typing as t | |
import bs4 | |
import pandas as pd | |
import requests |
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
import typing as t | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import pandas as pd | |
import streamlit as st | |
class get: |
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
import collections | |
import os | |
import pathlib | |
import typing as t | |
import pygame | |
import pygame.gfxdraw | |
import numpy as np |
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
#![feature(proc_macro_span)] | |
extern crate proc_macro; | |
use proc_macro::TokenStream; | |
use std::cmp::Ordering::{Greater, Less, Equal}; | |
#[proc_macro] | |
pub fn python(tokens: TokenStream) -> TokenStream { | |
let mut lines: Vec<String> = source_code(tokens) |
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
% https://sikouhjw.gitee.io/2021/02/14/2021-02-14-fontset-overleaf/ | |
% https://www.overleaf.com/latex/templates/using-the-ctex-package-on-overleaf-zai-overleafping-tai-shang-shi-yong-ctex/gndvpvsmjcqx | |
% https://zhuanlan.zhihu.com/p/145429470 | |
\GetIdInfo$Id: ctex.dtx 81d4c90 2020-10-19 20:24:58 +0800 Qing Lee <[email protected]> $ | |
{SUSTech fonts definition (CTEX)} | |
\ProvidesExplFile{ctex-fontset-sustech.def} | |
{\ExplFileDate}{2.5.5}{\ExplFileDescription} | |
\RequirePackage{xpatch} | |
\xpatchcmd \fontspec_new_script:nn | |
{ \__fontspec_warning:nxx } |
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
import fitz | |
import os | |
import pathlib | |
import pdf2image | |
import shutil | |
import subprocess | |
import tempfile | |
from typing import Callable, Iterator, List, Union |