this post was submitted on 03 Nov 2022
1 points (100.0% liked)

General Programming Discussion

7711 readers
1 users here now

A general programming discussion community.

Rules:

  1. Be civil.
  2. Please start discussions that spark conversation

Other communities

Systems

Functional Programming

Also related

founded 5 years ago
MODERATORS
 

this happens a lot, I want to find out how something works but I don't know the said programming language and so I can't read the source code, I've tried looking up stuff in cheatsheets but they don't really help that much and Search Engines are obviously useless for this since they can't search symbols, so how do you read the source code without spending time learning the language ?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] Icarus@lemmy.ml 1 points 2 years ago (1 children)

I bascally have trouble with anything that's not like pseudo-code (i.e. Python) and C-style syntax, although I can probably read PHP too.

[โ€“] Wyndix@beehaw.org 1 points 2 years ago

Oh! I'm one month late sorry, well, that's completely normal. You just need to pay attention and google as many definitions as you need to. Remember, Google is your friend here. Especially if the source code is powered by many external libraries.

Eventually with time and patience you'll be able to make a structure of the code inside your mind and from there it should be a breeze. You can also ask a contributor to guide you through the codebase and explain some things to you, they're always glad to help a potential mate :)