Skip to content

Instantly share code, notes, and snippets.

View matchy233's full-sized avatar
🔮
Becoming Mahou Shoujo

Matchy matchy233

🔮
Becoming Mahou Shoujo
  • 06:24 (UTC -04:00)
View GitHub Profile
@ryerh
ryerh / tmux-cheatsheet.markdown
Last active July 22, 2024 13:32 — forked from MohamedAlaa/tmux-cheatsheet.markdown
Tmux 快捷键 & 速查表 & 简明教程

注意:本文内容适用于 Tmux 2.3 及以上的版本,但是绝大部分的特性低版本也都适用,鼠标支持、VI 模式、插件管理在低版本可能会与本文不兼容。

Tmux 快捷键 & 速查表 & 简明教程

启动新会话:

tmux [new -s 会话名 -n 窗口名]

恢复会话:

@rehrumesh
rehrumesh / mpiMult.c
Created May 31, 2015 13:37
Matrix multiplication using MPI
/**********************************************************************
* MPI-based matrix multiplication AxB=C
*********************************************************************/
#include <stdio.h>
#include "mpi.h"
#define N 4 /* number of rows and columns in matrix */
MPI_Status status;