-
Notifications
You must be signed in to change notification settings - Fork 130
/
entries.json
329 lines (329 loc) · 8.83 KB
/
entries.json
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
[{
"URL": "https://cowlark.com/2009-11-15-go/",
"Author": "David Given",
"Year": 2009,
"Complaints": [
"c-style",
"poor design",
"no constructors",
"no user-type iteration",
"`new` and `make` instead of one",
"stuck in 70's",
"no OOP",
"too simple / lack of syntactic sugar"
]
},{
"URL": "https://dzone.com/articles/i-don%E2%80%99t-much-get-go",
"Author": "Jon Davis",
"Year": 2010,
"Complaints": [
"no language interoperability (only C)",
"no versioning model",
"no OOP",
"has pointers",
"no semicolons at line endings",
"no `this`",
"no function/operator overloading",
"no exceptions"
]
},{
"URL": "https://uberpython.wordpress.com/2012/09/23/why-im-not-leaving-python-for-go/",
"Author": "Yuval Greenfield",
"Year": 2012,
"Complaints": [
"error handling",
"stuck in 70's",
"`panic` instead of exceptions"
]
},{
"URL": "http://www.darkcoding.net/software/go-lang-after-four-months/",
"Author": "Graham King",
"Year": 2012,
"Complaints": [
"un-googlable name",
"stuck in 70's",
"no exceptions",
"is compiled",
"too young"
]
},{
"URL": "http://magicmakerman.blogspot.ru/2013/07/why-googles-go-programming-language.html",
"Author": "Magic Maker Man",
"Year": 2013,
"Complaints": [
"no OOP",
"no asserts",
"has pointers",
"weird mascot (gopher)"
]
},{
"URL": "http://how-bazaar.blogspot.ru/2013/04/the-go-language-my-thoughts.html",
"Author": "Tim Penhey",
"Year": 2013,
"Complaints": [
"error handling",
"inconvenient `range`",
"no generics"
]
},{
"URL": "http://corte.si/posts/code/go/go-rant.html",
"Author": "Aldo Cortesi",
"Year": 2013,
"Complaints":[
"too opinionated"
]
},{
"URL": "http://yager.io/programming/go.html",
"Author": "Will Yager",
"Year": 2014,
"Complaints":[
"no generics",
"no function/operator overloading",
"nil as a failure marker",
"type inference is too simple",
"no immutables",
"no pattern matching"
]
},{
"URL": "http://blog.mattbasta.com/things_that_make_me_sad_in_go.html",
"Author": "Matt Basta",
"Year": 2014,
"Complaints":[
"project layout is bad",
"can't import packages relatively",
"different build approaches",
"no sugar for slices",
"lack of basic data structures"
]
},{
"URL": "https://rule1.quora.com/Golang-Not-yet",
"Author": "Jordan Zimmerman",
"Year": 2014,
"Complaints":[
"no decent IDE",
"GOPATH is a mess",
"pointers are a mess",
"upper-case/lower-case scoping is bad",
"hidden types",
"immature GC",
"hard to extend",
"no exceptions",
"no generics",
"bad dependency management"
]
},{
"URL": "http://blog.goodstuff.im/golang",
"Author": "David Pollak",
"Year": 2015,
"Complaints":[
"no immutables",
"too simple / lack of syntactic sugar",
"confusing/stupid syntax",
"too opinionated",
"error handling",
"stuck in 70's",
"no generics",
"upper-case/lower-case scoping is bad",
"no `map`/`reduce`/`filter`"
]
},{
"URL": "http://nomad.so/2015/03/why-gos-design-is-a-disservice-to-intelligent-programmers/",
"Author": "Gary Willoughby",
"Year": 2015,
"Complaints":[
"too simple / lack of syntactic sugar",
"no generics",
"bad dependency management",
"stuck in 70's"
]
},{
"URL": "http://spaces-vs-tabs.com/4-weeks-of-golang-the-good-the-bad-and-the-ugly/",
"Author": "Freddy Rangel",
"Year": 2015,
"Complaints":[
"not-so-obvious slices behaviour",
"error handling",
"hard to test, hard to mock"
]
},{
"URL": "https://kaushalsubedi.com/blog/2015/11/10/golang-sucks-heres-why/",
"Author": "Kaushal Subedi",
"Year": 2015,
"Complaints":[
"no generics",
"slow json parsing",
"bad dependency management",
"no subpackages"
]
},{
"URL": "http://byrd.im/go-is-poor/",
"Author": "Ian Byrd",
"Year": 2015,
"Complaints":[
"not-so-obvious slices behaviour",
"nil interfaces are not entirely nil",
"unexpected variable shadowing",
"no first-class support of interfaces",
"questionable compiler rigidity",
"go generate is a quirk"
]
},{
"URL": "http://dtrace.org/blogs/wesolows/2014/12/29/golang-is-trash/",
"Author": "Keith Wesolowski",
"Year": 2014,
"Complaints": [
"the worst compiler toolchain ever",
"psuedointellectual arrogance of Rob Pike and everything he stands for",
"confusing and undebuggable"
]
},{
"URL": "http://www.evanmiller.org/four-days-of-go.html",
"Author": "Evan Miller",
"Year": 2015,
"Complaints": [
"no unused imports",
"too opinionated",
"poor std math lib",
"weird mascot (gopher)"
]
},{
"URL": "https://www.upguard.com/blog/our-experience-with-golang",
"Author": "Mark Sheahan",
"Year": 2014,
"Complaints": [
"no decent IDE",
"error handling",
"unexpected variable shadowing",
"no generics",
"not-so-obvious slices behaviour"
]
},{
"URL": "http://tmikov.blogspot.com/2015/02/you-dont-like-googles-go-because-you.html",
"Author": "Tzvetan Mikov",
"Year": 2015,
"Complaints": [
"designed for stupid people",
"too verbose",
"no ternary operator",
"no macros or templates",
"can't change hash function in maps",
"unwieldy to code new collections",
"no function overloading",
"can't declare/validate implements interface",
"no virtual functions",
"case defined exports is bad"
]
},{
"URL": "http://valuedrivenit.blogspot.ru/2015/12/to-go-language-is-mess.html",
"Author": "Cliff Berg",
"Year": 2015,
"Complaints": [
"un-googlable name",
"confusing/stupid syntax",
"polymorphism is broken",
"compilation rules are too confining",
"designed for stupid people",
"package mechanism is broken"
]
},{
"URL": "https://medium.com/@rgausnet/3-reasons-why-go-isnt-the-perfect-language-yet-25e0da5ec04c",
"Author": "Ryan Gaus",
"Year": 2016,
"Complaints": [
"not stable",
"no `map`/`reduce`/`filter`",
"bad dependency management"
]
},{
"URL": "http://www.jtolds.com/writing/2016/03/go-channels-are-bad-and-you-should-feel-bad/",
"Author": "JT Olds",
"Year": 2016,
"Complaints": [
"channels are slow",
"channel API is inconsistent"
]
},{
"URL": "https://blog.plan99.net/modern-garbage-collection-911ef4f8bd8e#.62yek82xg",
"Author": "Mike Hearn",
"Year": 2016,
"Complaints": [
"misleading marketing around garbage collector",
"garbage collector is nothing new; concurrent mark/sweep from the '70s",
"garbage collector requires implicit (hidden) tradeoffs",
"garbage collector optimized for pause times at the cost of other desirable gc features"
]
},{
"URL": "https://awalterschulze.github.io/blog/post/sum-types-over-multiple-returns/",
"Author": "Walter Schulze",
"Year": 2017,
"Complaints": [
"no sum types",
"no algebraic data types",
"multiple return parameters are overrated"
]
},{
"URL": "http://sitr.us/2017/02/21/changes-i-would-make-to-go.html",
"Author": "Jesse Hallett",
"Year": 2017,
"Complaints":[
"no non-nullable types",
"error handling",
"no generics",
"no tagged unions",
"no first-class tuple",
"concurrency and parallelism are mixed"
]
},{
"URL": "http://www.yinwang.org/blog-cn/2014/04/18/golang",
"Author": "Wang Yin",
"Year": 2014,
"Complaints": [
"confusing/stupid syntax",
"immature toolchain",
"immature GC",
"no generics",
"multiple return values have no type checking",
"cumbersome interface",
"goroutine is not original and revolutionary",
"defer is abused",
"stuck in Unix thinking",
"summary: not elegant as Python, not strong as Java"
]
},{
"URL": "http://ridiculousfish.com/blog/posts/go_bloviations.html",
"Author": "ridiculousfish",
"Year": 2012,
"Complaints": [
"c-style",
"no unused imports",
"bad unicode support",
"no asserts"
]
},{
"URL": "https://www.teamten.com/lawrence/writings/why-i-dont-like-go.html",
"Author": "Lawrence Kesteloot",
"Year": 2016,
"Complaints": [
"upper-case/lower-case scoping is bad",
"case defined exports is bad",
"no first-class support of interfaces",
"no exceptions",
"difficult to generate code automatically",
"no ternary operator",
"sort.Interface approach is clumsy",
"no versioning model",
"import-based vendoring is terrible",
"no generics"
]
},{
"URL": "https://grimoire.ca/dev/go",
"Author": "Owen Jacobson",
"Year": 2018,
"Complaints": [
"hostile to developer ergonomics",
"too opinionated",
"package mechanism is broken",
"GOPATH is a mess",
"error handling"
]
}]