LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 03-26-2017, 05:58 AM   #1
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,657

Rep: Reputation: 255Reputation: 255Reputation: 255
Simple Spreadsheet Editor on Terminal (ncurses)


Hello,

I was looking for a CSV viewer/editor on Linux.

There is SC, but also : http://mamchenkov.net/wordpress/2016...or-improvised/
https://linuxaria.com/article/10-programs-terminal

For fun, I just made a tiny viewer of CSV files. It is useful to quickly view some CSV files: nspread.
https://github.com/spartrekus/nsprea...et-for-ncurses
(it is very very very basic until now, but step by step, it will be more elaborated with the time).

If you are interested to join the dev, please let me know. The more we are the better.

Thank you
Attached Thumbnails
Click image for larger version

Name:	nspread.png
Views:	210
Size:	58.4 KB
ID:	24612  
 
Old 03-26-2017, 09:29 AM   #2
NoStressHQ
Member
 
Registered: Apr 2010
Location: Geneva - Switzerland ( Bordeaux - France / Montreal - QC - Canada)
Distribution: Slackware 14.2 - 32/64bit
Posts: 609

Rep: Reputation: 221Reputation: 221Reputation: 221
Quote:
Originally Posted by Xeratul View Post

If you are interested to join the dev, please let me know. The more we are the better.

Thank you
Hello

Sorry, but I think you misunderstood the purpose of a versioning tool like git... It's for the sources... Not to store archived sources... Moreover using "zip" format.

Before asking for followers, you should start by "follow" (contribute to) some projects before. This would help you to understand basic concept about team work and development in general.

Note that I appreciate that you try to do "stuff" on your own, those are very good exercises on their own, but you need more experience to "lead" one project like this.

Bests,

Garry
 
Old 03-26-2017, 09:49 AM   #3
audriusk
Member
 
Registered: Mar 2011
Location: Klaipėda, Lithuania
Distribution: Slackware
Posts: 358

Rep: Reputation: 199Reputation: 199
The funny thing is I do not see any source files in the repository Xeratul has posted. There's a GPL3 license file which basically allows me to demand a source copy of the distributed software (though I'm not a lawyer and could be wrong about this), but there's no source, only compiled 32 bit ELF binary and a ZIP archive containing the exact copy of this binary (among other files).

A really strange way to ask joining the development of the project.
 
Old 03-26-2017, 02:30 PM   #4
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,657

Original Poster
Rep: Reputation: 255Reputation: 255Reputation: 255
Quote:
Originally Posted by NoStressHQ View Post
Hello

Sorry, but I think you misunderstood the purpose of a versioning tool like git... It's for the sources... Not to store archived sources... Moreover using "zip" format.

Before asking for followers, you should start by "follow" (contribute to) some projects before. This would help you to understand basic concept about team work and development in general.

Note that I appreciate that you try to do "stuff" on your own, those are very good exercises on their own, but you need more experience to "lead" one project like this.

Bests,

Garry
I am a programming beginner, that contributes at my level. You can improve the source code if you'd like. It's GNU.
 
Old 03-26-2017, 02:31 PM   #5
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,217

Rep: Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309
Hard to know how to start with this...

Clone your repository.

Do the following:

Code:
cp nspread-v03.zip ~
git rm *.zip
git rm nspread
unzip ~/nspread-v03.zip
git add *
git commit -m "Putting source files under version control"
git push origin master

Last edited by dugan; 03-26-2017 at 02:45 PM.
 
Old 03-26-2017, 02:32 PM   #6
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,657

Original Poster
Rep: Reputation: 255Reputation: 255Reputation: 255
Quote:
Originally Posted by dugan View Post
And where is the source code?
On the GIT website:

Website: https://github.com/spartrekus/nsprea...et-for-ncurses
Source: https://github.com/spartrekus/nsprea...pread-v0.3.zip

Good Evening
 
Old 03-26-2017, 02:41 PM   #7
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,217

Rep: Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309
Quote:
Originally Posted by Xeratul View Post
Then you're not taking advantage of your source version control system's ability to version control your sources.

See my edited post for how to fix that.
 
Old 03-26-2017, 02:55 PM   #8
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,657

Original Poster
Rep: Reputation: 255Reputation: 255Reputation: 255
Quote:
Originally Posted by dugan View Post
Then you're not taking advantage of your source version control system's ability to version control your sources.

See my edited post for how to fix that.
I have no idea yet, what is the "source version control system's ability". Step by step, I will look a bit later what it could be.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Making an editor looking like Borland Turbo C with language C + ncurses? Xeratul Programming 3 03-06-2017 08:59 PM
LXer: Gnumeric 1.12.21 Spreadsheet Editor Released with Improved ODS and XLSX Support LXer Syndicated Linux News 0 03-07-2015 02:56 AM
Simple ncurses application for financial and money Xeratul Linux - Software 2 01-17-2013 04:38 PM
Is there a curses OR ncurses front end for id3v2 OR eyeD3 OR similar CLI id3 editor? SharpyWarpy Linux - Software 10 04-16-2010 05:57 PM
why openoffice (spreadsheet) has no save as simple TXT ? Xeratul Linux - Software 5 05-29-2007 05:34 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 08:52 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration