via: Computer-Science-Glossary
英文 | 译法 1 | 译法 2 | 译法 3 |
---|---|---|---|
a block of pointers | 一块指针 | 一组指针 | |
abbreviation | 缩略语 |
{"lastUpload":"2021-03-10T22:27:49.206Z","extensionVersion":"v3.4.3"} |
#!/usr/bin/python | |
# | |
# From https://github.com/robperc/SafariBookmarkEditor | |
# | |
# Revision | |
# 23/10/2017 - ported to Python 3, PEP8 fixes | |
# | |
""" | |
Python module for easily adding, removing, and moving positions of Safari |
via: Computer-Science-Glossary
英文 | 译法 1 | 译法 2 | 译法 3 |
---|---|---|---|
a block of pointers | 一块指针 | 一组指针 | |
abbreviation | 缩略语 |
%!TEX program = xelatex | |
% Font Size: | |
% 10pt, 11pt, 12pt | |
% Paper Size: | |
% a4paper, letterpaper, a5paper, leagalpaper, executivepaper, landscape | |
% Font Family: | |
% roman, sans | |
\documentclass[12pt, a4paper, roman]{moderncv} | |
% Style: |
#!/usr/bin/env bash | |
# check color support | |
colors=$(tput colors) | |
if (($colors >= 8)); then | |
red='\033[0;31m' | |
nocolor='\033[00m' | |
else | |
red= | |
nocolor= |
# 你可以从该 URL 下载这个配置文件: http://surge.run/config-example/ios.conf | |
# 用编辑器编辑后,再通过 iTunes, URL, AirDrop 或者 iCloud Drive 复制回 iOS 设备 | |
# Version 2.0 | |
[General] | |
# 日志等级: warning, notify, info, verbose (默认值: notify) | |
loglevel = notify | |
# 跳过某个域名或者 IP 段,这些目标主机将不会由 Surge Proxy 处理。(在 macOS | |
# 版本中,如果启用了 Set as System Proxy, 那么这些值会被写入到系统网络代理 | |
# 设置中.) |
#!/bin/bash | |
cartella="/var/myfolder" | |
# update the file | |
curl -i -X PUT -H 'Authorization: token 4d013330xxxxxxxxxxxxxx' -d "{\"path\": \"mattei.csv\", \ | |
\"message\": \"update\", \"content\": \"$(openssl base64 -A -in $cartella/mattei.csv)\", \"branch\": \"master\",\ | |
\"sha\": $(curl -X GET https://api.github.com/repos/username/repo/contents/mattei.csv | jq .sha)}" \ | |
https://api.github.com/repos/username/repo/contents/mattei.csv |
(* | |
Export All Safari Tabs in All Open Windows to a Markdown File | |
July 13, 2015 | |
// SCRIPT PAGE | |
http://hegde.me/urlsafari | |
// ORIGINAL SCRIPT ON WHICH THIS SCRIPT IS BUILT | |
http://veritrope.com/code/export-all-safari-tabs-to-a-text-file |