Poll of the Day > Any of you programming duders know what a .csv is?

Topic List
Page List: 1
Lokarin
04/27/20 1:39:04 AM
#1:


I'm supposed to "l2" use them

---
"Salt cures Everything!"
My YouTube: https://www.youtube.com/user/Nirakolov/videos
... Copied to Clipboard!
#2
Post #2 was unavailable or deleted.
AwesomeTurtwig
04/27/20 1:42:10 AM
#3:


Well, you don't need to need to be a programmer to know what a csv is or how to use it.

---
... Copied to Clipboard!
ScritchOwl
04/27/20 1:42:57 AM
#4:


Uh comma seperated values. Make sure to save a copy of the table and for the love of crust please dont make a project for gps navigation

---
I rather go skinny dipping with a voltorb.
... Copied to Clipboard!
jramirez23
04/27/20 2:01:43 AM
#5:


l2??

---
When life backs you up into a corner, come out swingin'!
... Copied to Clipboard!
FatalAccident
04/27/20 2:21:40 AM
#6:


Zangulus posted...
Is this a serious question?
PotD being super helpful as always

---
*walks away*
... Copied to Clipboard!
#7
Post #7 was unavailable or deleted.
FatalAccident
04/27/20 2:39:48 AM
#8:


Zangulus posted...
Reading things wrong, as always. I was asking a serious question to see if he actually did need help, or if he was just making a topic like a lot of them around here... where it's more of a joke than an actual request for help. But yes, be snarky.
My bad bro

---
*walks away*
... Copied to Clipboard!
Lokarin
04/27/20 3:44:27 AM
#9:


Zangulus posted...
Reading things wrong, as always. I was asking a serious question to see if he actually did need help, or if he was just making a topic like a lot of them around here... where it's more of a joke than an actual request for help. But yes, be snarky.

It's both

I am serious, I'm learning about .csv for the first time... but I phrased it in a joking manner

---
"Salt cures Everything!"
My YouTube: https://www.youtube.com/user/Nirakolov/videos
... Copied to Clipboard!
#10
Post #10 was unavailable or deleted.
Lokarin
04/27/20 3:54:31 AM
#11:


oh....

so it's something i've been doing for years and just didn't know was already a thing

That's like that time I discovered pepper is delicious on meat.

EDIT:
Like if you wanted to make an X sprite in Qbasic using data blocks, it might look like

DATA 1,0,0,0,1
DATA 0,1,0,1,0
DATA 0,0,1,0,0
DATA 0,1,0,1,0
DATA 1,0,0,0,1


---
"Salt cures Everything!"
My YouTube: https://www.youtube.com/user/Nirakolov/videos
... Copied to Clipboard!
Lokarin
04/27/20 7:41:27 PM
#12:


As an aside, I do appreciate that Zang understands how my brain works

---
"Salt cures Everything!"
My YouTube: https://www.youtube.com/user/Nirakolov/videos
... Copied to Clipboard!
Judgmenl
04/27/20 7:43:16 PM
#13:


I'm confused. Is there even a question in this thread?

---
You're a regular Jack Kerouac
... Copied to Clipboard!
SunWuKung420
04/27/20 7:46:47 PM
#14:


CSV predates personal computers.

---
Align your chakras, it starts with your breathing.
http://www.arfalpha.com/ScienceOfBreath/ScienceOfBreath.htm
... Copied to Clipboard!
Lokarin
04/27/20 7:47:23 PM
#15:


SunWuKung420 posted...
CSV predates personal computers.

Ya, it was apparently an incredibly common thing I just didn't know the name for

---
"Salt cures Everything!"
My YouTube: https://www.youtube.com/user/Nirakolov/videos
... Copied to Clipboard!
Sahuagin
04/27/20 8:24:53 PM
#16:


why are you supposed to "l2" use them?

if you parse them manually, note that a tricky part is that you can't simply split the line by the delimiter, due to there possibly being string values. basically, you need to count quotation marks.

---
... Copied to Clipboard!
Lokarin
04/27/20 8:42:39 PM
#17:


Sahuagin posted...
why are you supposed to "l2" use them?

I was asking a topic about RPG Maker (I use Studio, but it's all the same really) about making long dialogue trees and they responded with basically "just use a csv"

---
"Salt cures Everything!"
My YouTube: https://www.youtube.com/user/Nirakolov/videos
... Copied to Clipboard!
Sahuagin
04/27/20 9:34:58 PM
#18:


probably a better format for saving a dialogue tree to a text file would be XML or JSON.

a CSV is good for basically a single table of data. so a list of records all of the same type.

XML and JSON will let you store hierarchical data of varying type.

these days, XML is starting to move towards obsoletion and JSON is probably the better choice between the two.

---
... Copied to Clipboard!
Lokarin
04/27/20 9:57:51 PM
#19:


Ya, I think what happened is I asked a stupid question 'cuz I didn't know a thing I do already exists and I got responded to with snark (l2 csv)

---
"Salt cures Everything!"
My YouTube: https://www.youtube.com/user/Nirakolov/videos
... Copied to Clipboard!
AnnoyedCops
04/27/20 10:04:17 PM
#20:


I'm glad XML is kind of on the way out. I find it really ugly

---
formerly known as Snoopydance
... Copied to Clipboard!
Revelation34
04/27/20 11:22:38 PM
#21:


There's no way XML is leaving any time soon.
---
Gamertag: Kegfarms, BF code: 2033480226, Treasure Cruise code 318,374,355, Steam: Kegfarms
... Copied to Clipboard!
jramirez23
04/30/20 12:40:01 PM
#22:


I imagine the CSV you would create for a dialogue tree would look like this. I dont actually know because I am not a programmer:

Question 1.1, Choice A
Question 1.1, Choice B
Question 2.1, Choice C
Question 2.1, Choice D
Question 2.2, Choice E
Question 2.2, Choice F

but then you would need a way of knowing which choice leads to what question.


---
When life backs you up into a corner, come out swingin'!
... Copied to Clipboard!
#23
Post #23 was unavailable or deleted.
blackhrt
04/30/20 1:17:54 PM
#24:


Lokarin posted...
oh....

so it's something i've been doing for years and just didn't know was already a thing

That's like that time I discovered pepper is delicious on meat.

EDIT:
Like if you wanted to make an X sprite in Qbasic using data blocks, it might look like

DATA 1,0,0,0,1
DATA 0,1,0,1,0
DATA 0,0,1,0,0
DATA 0,1,0,1,0
DATA 1,0,0,0,1

Qbasic...whew!

---
"I live my life 3 videogames at a time. Nothing else matters. Not the mortgage, not my clan and their BS. For those 3 games or less, I'm free."
... Copied to Clipboard!
Mead
04/30/20 1:21:51 PM
#25:


Its a pharmacy/store

---
If they drag you through the mud, it doesn't change what's in your blood.
... Copied to Clipboard!
Lokarin
04/30/20 1:48:10 PM
#26:


blackhrt posted...
Qbasic...whew!

It's where I started and it's what I'm most familiar with... I basically learned programming my modding nibble.bas and gorilla.bas

---
"Salt cures Everything!"
My YouTube: https://www.youtube.com/user/Nirakolov/videos
... Copied to Clipboard!
Topic List
Page List: 1