DEV Community

Discussion on: I need a tips for a large project.

Collapse
 
houdiiny profile image
Carlos Sá

Now that just WOW'ed me, I don't really like C that much but thanks for the link, I'll throw that at my C-lover friend for some giggles.

That quote was me trying to dismiss some "wordpress" type of platforms that come with their own CMS, I clearly underestimated the internet's "element of surprise" :)

Collapse
 
tux0r profile image
tux0r

How much convenience do you want to have? It's hard to make suggestions without knowing the available frame.

Thread Thread
 
houdiiny profile image
Carlos Sá

Well for what I read from the Firebase post it looks like the type of convenience I want but I don't know enough of it to make an educated choice.
I guess if you could share what you do when asked to do big projects from scratch it would help.

Thread Thread
 
tux0r profile image
tux0r • Edited

For really big projects (medium-sized for teams, but I tend to write everything myself) I prefer to not use C either. For web-based stuff, I mostly use Python (for a prototype) and Lisp (for the release version) because Lisp's extensibility and syntax help me save some time. When working for other people, time is money ... :)

  • For Python prototypes, I usually use the built-in sqlite3 bindings and the Flask micro framework.
  • For the final Lisp version, I make full usage of what Racket gives me. I am gradually moving away from Common Lisp - Racket has "batteries included" for web development which is awesome.

I wouldn't use React because I really don't like it, but that is a pure matter of taste.

Thread Thread
 
houdiiny profile image
Carlos Sá

Well I'm not familiar with either, I've done a Hello World in Python and that's about it.

I do like React but it's, as you say, a matter of taste.
I'll be sure to add both your sugestions to the "To Learn" queue, if you say they save time then it's worth the time to learn about them.

I feel more confortable going with React on this project because I'm more familiar and agile with Javascript.

Thanks for sharing! For learning purposes what would you consider to be good introduction guides to Lisp / Racket and can you provide links?

Thread Thread
 
tux0r profile image
tux0r • Edited

For learning purposes what would you consider to be good introduction guides to Lisp / Racket and can you provide links?

  1. Common Lisp: The book "Land of Lisp" and the venerable Practical Common Lisp.
  2. Racket: The "Getting Started" guide from the website is really good. (There's also "Realm of Racket", another book.)

Both are different Lisps, but you might like both... :-) (seriously, start with Racket.)