Software Alternatives, Accelerators & Startups

Free Code Camp VS Practical Common Lisp

Compare Free Code Camp VS Practical Common Lisp and see what are their differences

Free Code Camp logo Free Code Camp

Learn to code by helping nonprofits.

Practical Common Lisp logo Practical Common Lisp

Learning Resources
  • Free Code Camp Landing page
    Landing page //
    2023-03-23
  • Practical Common Lisp Landing page
    Landing page //
    2019-12-25

Free Code Camp features and specs

  • Comprehensive Curriculum
    Free Code Camp offers a wide range of topics, including HTML, CSS, JavaScript, and even back-end development, ensuring a well-rounded education.
  • Project-Based Learning
    The platform emphasizes learning by building projects, which helps students gain practical experience and build a portfolio.
  • Community Support
    A large and active community provides support, encouragement, and networking opportunities through forums, chat rooms, and local meetups.
  • Real-World Non-Profit Projects
    Students have the opportunity to work on real projects for non-profit organizations, gaining real-world experience and contributing to meaningful causes.
  • Accessibility
    Completely free and accessible to anyone with an internet connection, making it an excellent resource for individuals who cannot afford paid courses.

Possible disadvantages of Free Code Camp

  • Self-Paced Nature
    The self-paced format requires a high level of self-discipline and motivation, which can be challenging for some learners.
  • Lack of Formal Certification
    While Free Code Camp offers certificates for completing certain sections, these are not as formal or widely recognized as degrees or certificates from accredited institutions.
  • Limited Personal Interaction
    Absence of personalized instruction can make it difficult for learners to get immediate help with specific problems or questions.
  • Basic Coverage of Advanced Topics
    While the curriculum is comprehensive, some advanced topics are only covered at a surface level, which may require learners to seek additional resources.
  • Technical Challenges
    Some users have reported technical issues and bugs on the platform, which can disrupt the learning process.

Practical Common Lisp features and specs

  • Comprehensive Introduction
    The book offers a thorough introduction to Common Lisp programming, catering to both beginners and experienced programmers by covering the basics and advanced topics.
  • Practical Approach
    It emphasizes practical applications of Lisp, with numerous examples and projects that illustrate real-world usage, making it useful for learning how to write practical and efficient code.
  • Engaging Writing Style
    The author maintains an engaging and accessible writing style that keeps readers interested while explaining complex concepts in an understandable manner.
  • Free Access Online
    The book is available for free online, providing easy access to anyone interested in learning about Common Lisp without financial barriers.

Possible disadvantages of Practical Common Lisp

  • Assumes Prior Programming Knowledge
    The book may assume that readers have some programming background, which might make it challenging for complete beginners to grasp certain concepts quickly.
  • Dated Examples
    Given its publication date, some examples might be somewhat outdated in terms of current technological standards and might not represent the latest best practices in programming.
  • Focus on High-Level Understanding
    While it covers many aspects of Lisp, the book might not delve deeply into certain advanced technical details, which could be a downside for those seeking in-depth technical expertise.
  • Limited Coverage of Modern Libraries
    The book might not address newer libraries and tools that have emerged in the Lisp ecosystem since its publication, potentially missing out on some modern practices.

Free Code Camp videos

Free Code Camp Review - Is It Worth Your Time?

Practical Common Lisp videos

Practical Common Lisp

More videos:

  • Review - Practical Common Lisp

Category Popularity

0-100% (relative to Free Code Camp and Practical Common Lisp)
Online Learning
100 100%
0% 0
Education
95 95%
5% 5
Programming Language
0 0%
100% 100
Online Courses
100 100%
0% 0

User comments

Share your experience with using Free Code Camp and Practical Common Lisp. For example, how are they different and which one is better?
Log in or Post with

Reviews

These are some of the external sources and on-site user reviews we've used to compare Free Code Camp and Practical Common Lisp

Free Code Camp Reviews

  1. Enriching Your Portfolio

    freeCodeCamp grants certificates to candidates after they finishing a topic/chapter which can enrich your portfolio However, if you are looking/preparing for jobs, leetcode is better


How to Learn Coding in 2024: 18 Great Ways to Do It
Free Code Camp is a web development bootcamp that has helped tens of thousands of their graduates find a job at tech companies.

Practical Common Lisp Reviews

We have no reviews of Practical Common Lisp yet.
Be the first one to post

Social recommendations and mentions

Based on our record, Free Code Camp seems to be a lot more popular than Practical Common Lisp. While we know about 577 links to Free Code Camp, we've tracked only 52 mentions of Practical Common Lisp. We are tracking product recommendations and mentions on various public social media platforms and blogs. They can help you identify which product is more popular and what people think of it.

Free Code Camp mentions (577)

  • The Best 100 Free UI/UX Resources for Every Designer & Developer
    FreeCodeCamp Freecodecamp.org Free coding tutorials, including responsive design and JavaScript. - Source: dev.to / 2 months ago
  • How to start learning web development for free
    Freecodecamp provides 10+ free web development courses in JavaScript, Python, front-end, and back-end that are more than enough to kickstart any developer's career.  You learn through interactive coding exercises and articles, and can participate in forum discussions when you get stuck or need help. - Source: dev.to / about 1 year ago
  • Ask HN: Would doing a coding bootcamp be a horrible idea?
    Don't do bootcamp. Start with something like https://freecodecamp.org and take a few lessons. Try to build something from that and see how motivated you are. If you see some progress and this thing still excites you, then may be find an engineer (a friend/co worker etc) who can guide you a bit as you continue to build something. Start small and stay away from bootcamps (my 2 cents). - Source: Hacker News / over 1 year ago
  • How did you first get into being a digital nomad?
    Self-learning after hours to code: freecodecamp.org. Source: over 1 year ago
  • 6 Key Tips for Beginners Learning JavaScript
    An effective way to improve your JavaScript skills is working through coding challenges and exercises. Sites like ReviewNPrep, FreeCodeCamp, and HackerRank have tons of challenges that allow you to practice JavaScript concepts by building mini-projects and solving problems. These hands-on challenges force you to apply what you learn. Source: over 1 year ago
View more

Practical Common Lisp mentions (52)

  • I Chose Common Lisp
    I began learning Common Lisp (CL) from the Common Lisp HyperSpec (CLHS): https://www.lispworks.com/documentation/HyperSpec/Front/Contents.htm When I began learning CL about two decades ago, I did not know of any other source, so CLHS was my only source back then and I think it has served me well. A popular recommendation these days is Practical Common Lisp (by Peter Seibel): https://gigamonkeys.com/book/. - Source: Hacker News / 4 months ago
  • Holding a Program in One's Head (2007)
    A quote originally (AFAIK) from the wonderful (and free!) book 'Practical Common Lisp'. https://gigamonkeys.com/book/. - Source: Hacker News / 8 months ago
  • Defense of Lisp Macros
    The Giga Monkeys Book, Practical Common Lisp is also excellent: https://gigamonkeys.com/book/. - Source: Hacker News / 10 months ago
  • The Loudest Lisp Program
    > So it's really pick your poison; either the child controls the call, at the risk of doing it wrong or not at all, or it doesn't but then certain things become impossible. CL lets you do both in various ways: the typical way to define a constructor is an :AFTER method that just sets the slots (fields in other languages) of the object and having a lot of behavior in constructors is unusual. You can also define an... - Source: Hacker News / about 1 year ago
  • The Loudest Lisp Program
    There are a bunch of things to learn from Lisp: * list processing -> model data as lists and process those * list processing applied to Lisp -> model programs as lists and process those -> EVAL and COMPILE * EVAL, the interpreter as a Lisp program * write programs to process programs -> code generators, macros, ... * write programs in a more declarative way -> a code generator transforms the description into... - Source: Hacker News / about 1 year ago
View more

What are some alternatives?

When comparing Free Code Camp and Practical Common Lisp, you can also consider the following products

Codecademy - Learn the technical skills you need for the job you want. As leaders in online education and learning to code, we’ve taught over 45 million people using a tested curriculum and an interactive learning environment.

Land of Lisp - Learning Resources

The Odin Project - How it works. This is the website we wish we had when we were learning on our own. We scour the internet looking for only the best resources to supplement your learning and present them in a logical order.

Hackr.io - There are tons of online programming courses and tutorials, but it's never easy to find the best one. Try Hackr.io to find the best online courses submitted & voted by the programming community.

edX - Best Courses. Top Institutions. Learn anytime, anywhere.

Racket Lang - Racket (formerly PLT Scheme) is a modern programming language in the Lisp/Scheme family, suitable...