MS Word -- Save Images in Batch

最近被迫写文档,把用word写的本地文档搬到线上去,一堆图片要加,在此记一下osx批量无损导出图片的方法

方法一:

把word保存成网页,在文件夹里面找(都是gif质量有下降)

方法二:

保存成docx,然后用the unarchiver打开, 找到media文件夹,png,jpg都在里面

期末了还在搬砖,怕一闲下来就太想rena啊orz

Vim Search & Replacement & Regex(with Zero Width)

Vim Search & Replacement & Regex (with Zero Width)

Options

  • g Replace all occurrences in the line (without g - only first).
  • c 表示进行确认
  • p 表示替代结果逐行显示(Ctrl + L恢复屏幕);
  • 省略option时仅对每行第一个匹配串进行替换;

magic

  • magic (\m):除了 \$ . * ^ 之外其他元字符都要加反斜杠。
  • nomagic (\M):除了 \$ ^ 之外其他元字符都要加反斜杠。
    vim

Drupal 8 -- Import CSV to D8

Drupal 8 – Import CSV to D8

reference:

Migration in D8 is bloody suffering. IT SHOULD NOT BE THIS HARD!
Migrations in D8 follow a 3 step process. Gather the data, massage the data, then save the data into a destination.

  1. Gather = Source plugin
  2. Massage = Process plugin
  3. Save = Destination plugin

Here’s a super simple source excerpt: