about summary refs log tree commit diff stats
path: root/transect
Commit message (Collapse)AuthorAgeFilesLines
* 5001 - drop the :(scenario) DSLKartik Agaram2019-03-127-1491/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* 4656Kartik Agaram2018-10-021-2/+1
|
* 4504Kartik Agaram2018-09-237-0/+225
|
* 4573Kartik Agaram2018-09-211-1/+1
|
* 4549 - RIP transectKartik Agaram2018-09-182-0/+9
|
* 4548: start of a compiler for a new experimental low-level languageKartik Agaram2018-09-1720-0/+2569
4de31c680c8dd290de1cc113'>^
a49bc413 ^
ee9a9237 ^


6ff9ce26 ^
17623a62 ^
480fd995 ^


17623a62 ^
480fd995 ^



17623a62 ^


480fd995 ^

17623a62 ^
480fd995 ^







17623a62 ^

480fd995 ^
480fd995 ^























8188bbbc ^
7a583220 ^
bf02a19d ^

17623a62 ^
8a73e0d1 ^
56102844 ^

931b17da ^
56102844 ^


33352536 ^
8188bbbc ^
17623a62 ^
03d50cc8 ^
17623a62 ^

604c8315 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
6030d7e2 ^
ee9a9237 ^
33352536 ^
c0bde5f8 ^





1afc8828 ^
c0bde5f8 ^



1afc8828 ^
c0bde5f8 ^

















480fd995 ^
33352536 ^
17623a62 ^





















282681c7 ^
7dac9ade ^
6ff9ce26 ^
ee9a9237 ^
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