注意:本文内容适用于 Tmux 2.3 及以上的版本,但是绝大部分的特性低版本也都适用,鼠标支持、VI 模式、插件管理在低版本可能会与本文不兼容。
启动新会话:
tmux [new -s 会话名 -n 窗口名]
恢复会话:
Site Url: http://www.taiwanlii.ccu.edu.tw/keywordspicker/keyword.php?lid=1 | |
------------------------------ Javascript ------------------------------ | |
var result = "" | |
$(".table>tbody>tr>td:nth-child(2)").each(function(){ | |
result += this.innerText + "\n" | |
}) | |
console.log(result) | |
------------------------------------------------------------------------ |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Reflection; | |
using System.Security.Principal; | |
namespace Walterlv.Installing | |
{ |
#! /usr/bin/env python | |
import threading | |
import subprocess | |
import traceback | |
import shlex | |
class Command(object): | |
""" | |
Enables to run subprocess commands in a different thread with TIMEOUT option. |
# ref:https://stackoverflow.com/questions/750172/how-to-change-the-author-and-committer-name-and-e-mail-of-multiple-commits-in-gi | |
git filter-branch --env-filter ' | |
OLD_EMAIL="root@babala" | |
CORRECT_NAME="keoy7am" | |
CORRECT_EMAIL="[email protected]" | |
if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ] | |
then | |
export GIT_COMMITTER_NAME="$CORRECT_NAME" |
Authentication means determining who a particular user is. Authorization means applying rules about what they can do. Blazor contains features for handling both aspects of this.
It worth remembering how the overall goals differ between server-side Blazor and client-side Blazor:
<script src="//tinymce.cachefly.net/4.2/tinymce.min.js"></script> | |
<script> | |
tinymce.init({ | |
selector: 'textarea', | |
images_upload_url: "TinyMceUpload", | |
}); | |
function upload(form) { | |
tinymce.activeEditor.uploadImages(function (success) { | |
form.submit(); |
git --version | |
yum info git | |
yum remove git | |
yum -y install https://packages.endpoint.com/rhel/7/os/x86_64/endpoint-repo-1.7-1.x86_64.rpm | |
yum install git | |
git --version |
= How to install SAP ASE 16.0 SP03 for Linux | |
1. Download product binally | |
Download product binally(ASE_Suite.linuxamd64.tgz) from below url instruction: | |
https://help.sap.com/viewer/23c3bb4a29be443ea887fa10871a30f8/16.0.3.8/en-US/c14592e2df414678b3620e75ccbc0248.html | |
2. Install | |
``` | |
mkdir ~/tmp | |
mv ASE_Suite.linuxamd64.tgz ~/tmp |