about summary refs log tree commit diff stats
path: root/099hardware_checks.cc
Commit message (Collapse)AuthorAgeFilesLines
* 5001 - drop the :(scenario) DSLKartik Agaram2019-03-121-7/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I've been saying for a while[1][2][3] that adding extra abstractions makes things harder for newcomers, and adding new notations doubly so. And then I notice this DSL in my own backyard. Makes me feel like a hypocrite. [1] https://news.ycombinator.com/item?id=13565743#13570092 [2] https://lobste.rs/s/to8wpr/configuration_files_are_canary_warning [3] https://lobste.rs/s/mdmcdi/little_languages_by_jon_bentley_1986#c_3miuf2 The implementation of the DSL was also highly hacky: a) It was happening in the tangle/ tool, but was utterly unrelated to tangling layers. b) There were several persnickety constraints on the different kinds of lines and the specific order they were expected in. I kept finding bugs where the translator would silently do the wrong thing. Or the error messages sucked, and readers may be stuck looking at the generated code to figure out what happened. Fixing error messages would require a lot more code, which is one of my arguments against DSLs in the first place: they may be easy to implement, but they're hard to design to go with the grain of the underlying platform. They require lots of iteration. Is that effort worth prioritizing in this project? On the other hand, the DSL did make at least some readers' life easier, the ones who weren't immediately put off by having to learn a strange syntax. There were fewer quotes to parse, fewer backslash escapes. Anyway, since there are also people who dislike having to put up with strange syntaxes, we'll call that consideration a wash and tear this DSL out. --- This commit was sheer drudgery. Hopefully it won't need to be redone with a new DSL because I grow sick of backslashes.
* 4987 - support `browse_trace` tool in SubXKartik Agaram2019-02-251-1/+1
| | | | | | | | | | | | | | | | | | I've extracted it into a separate binary, independent of my Mu prototype. I also cleaned up my tracing layer to be a little nicer. Major improvements: - Realized that incremental tracing really ought to be the default. And to minimize printing traces to screen. - Finally figured out how to combine layers and call stack frames in a single dimension of depth. The answer: optimize for the experience of `browse_trace`. Instructions occupy a range of depths based on their call stack frame, and minor details of an instruction lie one level deeper in each case. Other than that, I spent some time adjusting levels everywhere to make `browse_trace` useful.
* 4106Kartik K. Agaram2017-11-031-3/+3
|
* 4086 - back to cleaning up delimited continuationsKartik K. Agaram2017-10-181-1/+1
|
* 3877Kartik K. Agaram2017-05-261-1/+1
|
* 3760 - force functions to use dependency-injectionKartik K. Agaram2017-03-071-0/+63
This is the kind of check I want Mu to be anal about, not whitespace or unused variables.
parser.c' href='/danisanti/profani-tty/commit/tests/test_history.c?id=1d5046bc9747c981f7e9631987a4cb484a9534d9'>1d5046bc ^
b6c5fef4 ^
1d5046bc ^
b6c5fef4 ^





1d5046bc ^

b6c5fef4 ^
1d5046bc ^

b6c5fef4 ^
f21cb52a ^




1d5046bc ^

f21cb52a ^
1d5046bc ^





f21cb52a ^





1d5046bc ^










6bad38c2 ^

f21cb52a ^

4531aebd ^
f21cb52a ^
1d5046bc ^

f21cb52a ^
1d5046bc ^

f21cb52a ^
4531aebd ^




1d5046bc ^

4531aebd ^
1d5046bc ^

4531aebd ^





1d5046bc ^

4531aebd ^
1d5046bc ^


4531aebd ^

b6c5fef4 ^

1730372e ^

1d5046bc ^







1730372e ^

1d5046bc ^
1730372e ^

1d5046bc ^
1730372e ^

1d5046bc ^
1730372e ^

1d5046bc ^
1730372e ^
6bad38c2 ^
1d5046bc ^
1730372e ^




1d5046bc ^







1730372e ^
6bad38c2 ^
1d5046bc ^
1730372e ^

1d5046bc ^
1730372e ^
6bad38c2 ^
1d5046bc ^
6bad38c2 ^

1d5046bc ^
1730372e ^

1d5046bc ^
1730372e ^
6bad38c2 ^
1d5046bc ^
1730372e ^

1d5046bc ^
1730372e ^

1d5046bc ^
1730372e ^

1d5046bc ^
1730372e ^




1d5046bc ^







1730372e ^
6bad38c2 ^
1d5046bc ^
1730372e ^

1d5046bc ^
1730372e ^
6bad38c2 ^
1d5046bc ^
1730372e ^
1d5046bc ^
1730372e ^


8202255d ^

1d5046bc ^

8202255d ^
1d5046bc ^
8202255d ^
6bad38c2 ^
1d5046bc ^
773255b4 ^
8202255d ^
1d5046bc ^
8202255d ^

1d5046bc ^
8202255d ^

c72d7ad6 ^
b6c5fef4 ^
c72d7ad6 ^
1730372e ^

b6c5fef4 ^

f21cb52a ^

4531aebd ^


1730372e ^


8202255d ^
b6c5fef4 ^
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233