Return Last 50 posts First 100 posts
CSV is the unix way
1 Name: Anonymous : 2017-03-19 12:29
More programs should use CSV data files, it's what' dennis ritchie would have wanted.
2 Name: Anonymous : 2017-03-19 13:56
How do you know it's what Dennis Ritchie would have wanted?
3 Name: Anonymous : 2017-03-19 19:04
2 its because its a algorithmic data structure that's expressible in plaintext format (the ultimate interface)
4 Name: Anonymous : 2017-03-20 02:54
Olderfags, I have a question
In almost everything I've been apart of, I've lost interest in it after just a few years
I'm almost out of college and am afraid I won't be able to hold a job because I get bored of it
Any experiences? I'm sure most of you are like me
5 Name: Anonymous : 2017-03-20 03:05
>>4Yeah that's me. Got fired from my first job cause I couldn't focus. It was a shit job anyway. In my current job I'm kind of losing it and just never feel like working. I'm started to slack hard. Best advice I can give you is that life sucks so grit your teeth through your shitty job so you can come home and masturbate to your anime with the peace of mind of having income. I have to go into work every day telling myself exactly what I have to so before I leave.
6 Name: Anonymous : 2017-03-28 05:24
my textboard uses CSV!
7 Name: Anonymous : 2017-03-30 00:16
Honestly, how can anyone be so shallow minded to think we are the only living civilization in the vast expanse of space? I mean what makes us soo special to be the only intelligent life form in the galaxy?
8 Name: Anonymous : 2017-03-31 20:01
>>7We invented XML, something no aliens could possibly have invented on their own accord. XML is a testament to humanity
9 Name: Anonymous : 2017-04-02 11:09
Use only CSV. If you need hierarchical data, use multiple files organized hierarchically with the file system.
10 Name: Anonymous : 2017-04-18 05:59
The most anoying thing about the whole problem is that it was solved by design in the ASCII character set.
If you use ASCII 31 as your field separator instead of comma or tab, and ASCII 30 as your record separator instead of new line. Then you have a text file format that is trivial to write out and read in, with no restrictions on the text in fields or the need to try and escape characters.
It is even part of the design of the file encoding system. The ASCII standard calls these fields
31 Unit Separator
30 Record Separator
And ASCII has two more levels with Group and File Separators
29 Group Separator
28 File Separator
See
http://en.wikipedia.org/wiki/Unit_separator and
http://en.wikipedia.org/wiki/Delimiter#ASCII_Delimited_TextIn summary ASCII Delimited Text is using the last 4 control characters (28-31) for their purpose as field and record delimiters and not using CSV (Comma Separated Values)
11 Name: Anonymous : 2017-04-18 11:39
>>10Unix NIH philosophy doesn't allow using any hardware or standard feature properly.
12 Name: Anonymous : 2017-04-19 22:51
>>10I think you mean
U+001F 'Information separator one'
U+001E 'Information separator two'
U+001D 'Information separator three'
U+001C 'Information separator four'
13 Name: Anonymous : 2017-04-20 06:20
>>8Yeah, our self hatred.
14 Name: Anonymous : 2017-04-20 23:48
how the fuck do I do the | thing
15 Name: Anonymous : 2017-04-26 01:01
>>14It's the vertical bar, it should be on your keyboard
Return Last 50 posts First 100 posts