-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
151 lines (110 loc) · 5.18 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta charset="utf-8"/>
<title>Santi Gepigon's Blog</title>
<link rel="canonical" href="https://sgepigon.github.io/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Alegreya:400italic,700italic,400,700' rel='stylesheet'
type='text/css'>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.7.0/styles/default.min.css">
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Santi Gepigon's Blog</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active" ><a href="/">Home</a></li>
<li
><a href="/archives/">Archives</a></li>
<li
>
<a href="/about/">About</a>
</li>
<li><a href="/feed.xml">RSS</a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</nav>
<div class="container">
<div class="row">
<div class="col-lg-9">
<div id="content">
<div id="post">
<div class="post-header">
<div id="post-meta" class="row">
<div class="col-lg-6">February 5, 2017</div>
</div>
<h2>Escape Hatches</h2>
</div>
<div>
<p>Software gives us a little taste of time travel ever day: "cancel", "undo", and "redo" are powerful tools that let us fix our mistakes. <code>Ctrl-z</code> and <code>Command-z</code> undo in most Windows and Macintosh applications respectively.</p><p>There's software that (may?) predate this pattern, notably Emacs and Vim and beginners usually struggle just to exit. I collected these in list on <a href='https://github.com/sgepigon/escape-hatches'>Github</a>; treat it as a living document and add any ones you can find!</p>
</div>
<div id="post-tags">
<b>Tags: </b>
<a href="/tags/redo/">redo</a>
<a href="/tags/undo/">undo</a>
<a href="/tags/emacs/">emacs</a>
<a href="/tags/vim/">vim</a>
</div>
<div id="prev-next">
<a class="right" href="/blog/hello-world/">Hello World! »</a>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div id="sidebar">
<div id="recent">
<h3>Recent Posts</h3>
<ul>
<li><a href="/blog/escape-hatches/">Escape Hatches</a></li>
<li><a href="/blog/hello-world/">Hello World!</a></li>
</ul>
</div>
<div id="tags">
<h3>Tags</h3>
<ul>
<li><a href="/tags/redo/">redo</a></li>
<li><a href="/tags/undo/">undo</a></li>
<li><a href="/tags/emacs/">emacs</a></li>
<li><a href="/tags/vim/">vim</a></li>
<li><a href="/tags/haiku/">haiku</a></li>
<li><a href="/tags/hello world/">hello world</a></li>
<li><a href="/tags/poem/">poem</a></li>
</ul>
</div>
</div>
</div>
</div>
<footer>Copyright © 2016–2018 Santiago Gepigon III
<p style="text-align: center;">Powered by <a href="http://cryogenweb.org">Cryogen</a></p></footer>
</div>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="js/highlight.pack.js" type="text/javascript"></script>
<script>hljs.initHighlightingOnLoad();</script>
<link rel="stylesheet" type="text/css" href=nil>
<script>
window.klipse_settings = null;
</script>
<script src=nil></script>
<link rel="stylesheet" type="text/css" href=nil>
<script>
window.klipse_settings = null;
</script>
<script src=nil></script>
</body>
</html>