Official redirects (still up-to-date):
https://aka.ms/vs/16/release/vs_community.exe
https://aka.ms/vs/16/release/vs_professional.exe
https://aka.ms/vs/16/release/vs_enterprise.exe
有關展示登記號碼及字牌的條文 版本日期: 02/08/2012 https://www.td.gov.hk/filemanager/common/cap%20374e%20schedule%204%20chi.pdf
Vehicle registration plates of Hong Kong https://en.wikipedia.org/wiki/Vehicle_registration_plates_of_Hong_Kong
Preview online https://www.platekinghk.com/platebuild.php?lang=tc
| diff --git a/layouts/partials/social-share.html b/layouts/partials/social-share.html | |
| index 14ae033..18d8be6 100644 | |
| --- a/layouts/partials/social-share.html | |
| +++ b/layouts/partials/social-share.html | |
| @@ -3,7 +3,7 @@ | |
| {{ $facebook_href := printf "https://www.facebook.com/sharer.php?u=%s" $url }} | |
| {{ $twitter_href := printf "https://twitter.com/intent/tweet?url=%s&text=%s" $url $title }} | |
| -{{ with site.Social.twitter }} | |
| +{{ with site.Params.twitter }} |
| # stat top contrainer formats, audio & video codes | |
| import os | |
| import typing | |
| import ffprobe | |
| def printTopN(m: typing.Dict[str, int], n: int, title: str): | |
| sorted_m = [] | |
| for ext, c in m.items(): | |
| sorted_m.append((ext, c)) |
| #-*- coding:utf-8 -*- | |
| import cgi | |
| import socket | |
| import urllib | |
| # 示例一:客户端以 application/x-www-form-urlencoded 方式 POST 数据实现,通常用于 POST 简单的字符串key-value对 | |
| d = { | |
| "namename": "test", | |
| "password": "secret", | |
| } |
| #coding:utf-8 | |
| import os | |
| import sys | |
| import time | |
| from werkzeug.contrib.profiler import ProfilerMiddleware | |
| from werkzeug.contrib.profiler import Stats | |
| from werkzeug.contrib.profiler import Profile | |
| from werkzeug.contrib.profiler import available |
| """ | |
| Profiler for Django view function or Django REST framework ViewSet function. | |
| See also | |
| - https://docs.python.org/3/library/profile.html | |
| - https://code.djangoproject.com/wiki/ProfilingDjango | |
| - https://github.com/pallets/werkzeug/blob/3.0.x/src/werkzeug/middleware/profiler.py | |
| """ | |
| import os.path | |
| import functools |
| LOGGING = { | |
| "version": 1, | |
| "disable_existing_loggers": False, | |
| 'formatters': { | |
| 'default': { | |
| 'format': '%(asctime)s %(filename)s:%(lineno)d [%(levelname)s] %(message)s', | |
| 'style': '%', | |
| }, | |
| }, |
| import 'dart:async'; | |
| import 'dart:convert'; | |
| import 'dart:io'; | |
| import 'package:http2/http2.dart'; | |
| void main() async { | |
| var uri = Uri.parse('https://www.bing.com/?q=http2&mkt=zh-CN'); | |
| var transport = await connectTunnel('127.0.0.1', 7890, uri.host); | |
| var headers = [ | |
| Header.ascii(':method', 'GET'), |