Random Chitchat 2012-2016 - Printable Version +- Cuberite Forum (https://forum.cuberite.org) +-- Forum: Off Topic (https://forum.cuberite.org/forum-9.html) +--- Forum: Off Topic Discussion (https://forum.cuberite.org/forum-10.html) +--- Thread: Random Chitchat 2012-2016 (/thread-434.html) Pages:
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
|
RE: What we're doing - NiLSPACE - 01-06-2016 I'm guessing the 20 bytes are always different? Perhaps it's a compressed date? RE: What we're doing - worktycho - 01-06-2016 Or a sequence number. RE: What we're doing - xoft - 01-06-2016 The last 4 bytes out of the 20 are the length of the JSON payload, but I can't figure out the first 16. Some of them seem like flags or status, because they are the same across all packets, some seem like a sequence number, but then not really. Here's a Wireshark packet dump for the curious: http://www.xoft.cz/dvr-packets/ RE: What we're doing - worktycho - 01-06-2016 Well the second byte seems to be a sender ID. Why you'd need that on a TCP stream, I don't know. RE: What we're doing - tigerw - 01-06-2016 (01-05-2016, 11:26 AM)worktycho Wrote: xoft, For navigating command lines, zsh might offer what you need, but yes I agree, the *nix ecosystem has a lot of problems with fragmentation. For example the thing about history producing random chars, is due to the fact that there are at least 3-4 separate independent components involved in handling translating the up arrow to older commands. But a well set up termcap and .bashrc (or appropriate file for the shell of your choice) can usually fix any problems. As for IDE, I personally found the fact I can swap out my compiler has lead to significant benefits (Clang). And a lot of the feeling of slowness is probably not knowing the platforms. You're comparing a system you barely know to one you know well, then complaining about discoverability. and the date/time on the Pies at school are still wrong. Do you remember what you did to get it to sync with the internal server? RE: What we're doing - worktycho - 01-06-2016 Looks like the protocol was not designed for TCP. The fourth byte appears to be a fragmentation flag. Tiger: not after two years. It involved changing the ntpd config. But seriously, the best way to reverse engineer that DVR would be to poke it in various ways and see how it responds. Replay the first packet, send a keepalive every 20 seconds, and see when it sends alarm packets. RE: What we're doing - xoft - 01-06-2016 Yay, I just found out I can add, as a remote, a git repository over a SMB share. So finally I can test my changes on Linux without actually pushing them to the main repo - I change things on my Windows box, then ssh to the Linux box, fetch the changes, test them and if they work well, I can push from the Windows box Why did it take me so long to find this setup? RE: What we're doing - NiLSPACE - 01-07-2016 Whoah, I've just noticed that if you sort all plugins by author I got a whole page for myself: https://forum.cuberite.org/forumdisplay.php?fid=2&page=4&sortby=starter&order=asc ;D RE: What we're doing - PureTryOut - 01-07-2016 (01-05-2016, 06:44 AM)xoft Wrote: I find Linux somewhat difficult to use, coming from a Windows background.Sure, it's different, but that's not a reason to not try to get used to it (01-05-2016, 06:44 AM)xoft Wrote: First, the console irritates me. Every other moment it picks a different behavior, I never know whether, for example, history browsing using up and down arrows will work or will display garbage characters instead. It just sometimes works and sometimes doesn't.Strange, I have never heard of this bug before, neither with bash or zsh. Have you made a bug report about it? (01-05-2016, 06:44 AM)xoft Wrote: What I miss the most in the console and more or less generally everywhere on Linux is the Ctrl+left / right arrow jumping over words. That's just such a natural way to navigate long commandlines, I can't fathom how Linux guys can live without this.Might not be in by default, but I'm fairly sure you can configure it to do so. Again, make a bug report/feature request, maybe someone will add it. (01-05-2016, 06:44 AM)xoft Wrote: Then there's software, of course. There's nothing quite like the Visual Studio IDE and its integrated debugger, together with its ecosystem.I don't really know that much about Visual Studio, I have only used it with some simple school projects. I just know it randomly broke on me, and it takes hours to install and/or update. It includes all kinds of "features" I do not need. That may be a plus for someone else, but not for me. Have you tried out Code::Blocks (assuming you're doing mostly C++)? From what I hear it's a quite capable IDE, with integrated debugger (using gcc I think). (01-05-2016, 06:44 AM)xoft Wrote: Then there's discoverability. In Windows I can click around in the GUIs and I find all the system settings I ever need. In Linux, I need to learn obscure commandlines to do basic operations, let alone some tinkering.Honestly, I find that the benefit in Linux. I'm constantly lost in menu's, while I just have to learn 1 or 2 commands, and it'll do the same thing. Sure you might have to search for a bit if you have to use a new command, but you'll get to know the regular commands really quickly, you'll be amazed. And depending on the programs you use you can have the same menu's like you're always used to. Anyhow Linux is surely not for everyone, but it has become a lot better in the recent years. It's really popular under developers, which is why I don't really understand why some developers do not like it. But having some Linux knowledge could be really good for you, it gives you a better understanding of underlaying systems. And of course, it's open-source. IMO an OS should not be closed source such as OSX and Windows. I would recommend setting up another pc, or a dual-boot, with Linux, and try it out again. If you encounter any problems, please just file bug reports, so the developers can improve it for you. @DrMasik I wanted to switch over my personal server to FreeBSD, but am still hesitating. Is it possible that FreeBSD does not have any support for BTRFS file systems? It seems like it only supports UFS (which Linux sadly doesn't support), ZFS, and EXT2/3 (not even EXT4). RE: What we're doing - tonibm19 - 01-09-2016 Why micro? If I want to add c++ to my vs comunnity 2015 (using c# for unity) I need to install windows 8.1 sdk for universal apps and all this trash. |