1.插入圖形方塊
*不是直接插入圖片喔
2.將方塊的線條調整成無線條
3.將方塊的背景填滿改成以圖形填滿,再去選擇要插入的圖片,這時候就可以調整透明度囉
測試office版本2019
The Silver Searcher
A code searching tool similar to ack, with a focus on speed.
install on ubuntu
sudo apt-get install silversearcher-ag
usage
search i_am_sample_code in /
sudo ag --silent i_am_sample_code /
sudo apt-get install build-essential
clone the source
https://github.com/bminor/bash
cd to the code directory ./configure make sudo make install sh
$ chsh
#!/bin/bash # remove $1's single \n and save to $2 sed ':a;N;$!ba;s/\n\{2\}/%@%/g;s/\n/ /g; s/%@%/\n/g' $1 > $2
$fixNl.sh source dest
myClass f() {...}; myClass X,Y; myClass A(X); // 1. myClass B(X+Y); // 2. myClass C(f()); // 3.
//copy constructor myClass(myClass const& other){} //move constructor myClass(myClass&& other){}