- Open msys2 shell
- Get pdf-tools
git clone https://github.com/politza/pdf-tools cd pdf-tools
| I was at Amazon for about six and a half years, and now I've been at | |
| Google for that long. One thing that struck me immediately about the | |
| two companies -- an impression that has been reinforced almost daily -- | |
| is that Amazon does everything wrong, and Google does everything right. | |
| Sure, it's a sweeping generalization, but a surprisingly accurate one. | |
| It's pretty crazy. There are probably a hundred or even two hundred | |
| different ways you can compare the two companies, and Google is superior | |
| in all but three of them, if I recall correctly. I actually did a | |
| spreadsheet at one point but Legal wouldn't let me show it to anyone, | |
| even though recruiting loved it. |
| (ns radix | |
| (:require [clojure.string :as string])) | |
| (use 'clojure.java.io) | |
| (use 'clojure.pprint) | |
| (println "Loading names... ") | |
| (time (def names | |
| (with-open | |
| [rdr (reader | |
| "/usr/share/dict/ProperNames")] |
| title | How to get started to build your own Spacemacs |
|---|---|
| date | 2018-10-12 12:59 |
| tags | emacs |
| categories | Tools |
I have been a Vim user for quite a while. I love it, so the very first thing when I set up a new server is installing VIM. I heard a lot about Emacs and tried it. It's better at almost everything except text editing. So I stayed with Vim until Spacemacs was released. The Vim key bindings of Spacemacs is so excellent that I switched.
However, Spacemacs has its problem: boots up slowly and crashes frequently. Upgrading packages became very challenging. Finally, I have to use the develop branch because the master branch is not working anymore. People began to complain and requested to speed up the release from the master branch. Considering its dependencies and numerous open issues, I have no hope for this.
| (defun org-calendar-face (date) | |
| 'default) | |
| (defun org-calendar-generate-month (year month) | |
| (let* ((first (calendar-day-of-week (list month 1 year))) | |
| (first (+ (mod (+ (- first 1) 7) 7) 1)) ;; Week starts on Monday | |
| (last (+ first (calendar-last-day-of-month month year))) | |
| (days "")) | |
| (dotimes (row 6) | |
| (dotimes (col 7) |
| import Html exposing (..) | |
| import Html.App exposing (..) | |
| import Html.Attributes exposing (..) | |
| import Html.Events exposing (..) | |
| import Html.Attributes exposing (..) | |
| import Http | |
| import Task exposing (Task) | |
| import Json.Decode as Json exposing ((:=)) | |
| type Msg |
| (setq url-gateway-method 'socks) | |
| (setq socks-server '("Default server" "127.0.0.1" 1080 5)) |
| # -*- coding: utf-8 -*- | |
| # ============================================================ # | |
| # 写真からスライド領域を切り出して保存。透視変換もおこなう | |
| # | |
| # Usage: python extract_slide.py YOUR_PHOTO | |
| # | |
| # ============================================================ # | |
| import cv2 |
An animated cheatsheet for smartparens using the example configuration specified here by the smartparens author. Inspired by this tutorial for paredit.
| C-M-f | sp-forward-sexp |
| C-M-b | sp-backward-sexp |
![]() | |
