Wednesday 28 August 2013

MS Word facts, really useful

Store them for later reference.
  • Fast swap current paragraph with upper/lower: Alt+Shift+↑/↓
  • Select current sentence: Ctrl+MouseLeft (on any word)
  • Select current paragraph: tripple left mouse click
  • Move text: F2 on selection → Enter at the destination
  • Clear formatting of the selection: Ctrl+Space
  • =rand(N,M) — generate N paragraphs, each of M sentences from help
  • =lorem(N,M) — the same, but not random and from "Lorem Ipsum"
  • You can insert EPS images into Word document by "Insert picture"
  • Excel: Alt+Enter to enter new line in a current cell

Friday 16 August 2013

Batch to remove empty dirs in Windows

Staring from its directory: for /f "usebackq delims=" %%d in (`"dir /ad/b/s | sort /R"`) do rd "%%d"

Wednesday 7 August 2013