this post was submitted on 03 Nov 2025
18 points (100.0% liked)

Ask Lemmy

35390 readers
1908 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !askusa@discuss.online


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
 

I recently started taking the SICP course( SICP playlist on ytb by MITOCW ). I find data abstraction, wishful thinking and the build a language methodology with primitives and means of combination quite a bliss to think about and to use.

I noticed that Hal compared it with the top-down waterfall model, and that makes me wonder if parts of these methods have there associates in the software engineering landscape.

I'm mainly interested in how much people are using it in their daily development and if there are corresponding ideas/methodology in/besides stuff like agile


terminologies

  • data abstraction - define a data type with primitive data and selector with axiom of behavior, regardless of implementation. Axiom such as pict(rect) should draw the picture that pict represents in the rectangle rect represents, in which primitives are pict and rect; rect can have selector to get its width and height
  • wishful thinking - to build a system with parts you wish you have without thinking about how they should be implemented.
  • build-a-language - to define a language made out of curated list of primitives and means of combination (procedures, operators) that solves a class of problem, such as a language for pattern matching.
you are viewing a single comment's thread
view the rest of the comments
[–] solrize@lemmy.ml 4 points 2 days ago

SICP is not really about software methodology. It's more fundamentals of programming and how to think clearly. It's a bit old fashioned but definitely worth reading. If you want a critique, try https://www.cs.kent.ac.uk/people/staff/dat/miranda/wadler87.pdf . For a critique of the critique, https://www.wisdomandwonder.com/link/1055/why-calculating-is-better-than-scheming .