General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Lawrence D’Oliveiro
Computerphile
comments
Comments by "Lawrence D’Oliveiro" (@lawrencedoliveiro9104) on "What NOT to do: Self Modifying Code - Computerphile" video.
The genetic code is self-replicating, if you consider the rest of the cell as some kind of general-purpose manufacturing machine.
1
That seems to be done for Apple’s corporate control purposes, not to safeguard the user.
1
Other platforms can implement security controls without forcing developers to go through a central vetting authority.
1
Think of it as implementing a higher-level abstract machine on top of a lower-level one. Only the lower-level machine is generating the higher-level abstraction on the fly.
1
All it did was modify an index register that could only point at one of a set of labels.
1
@TheOwlman Well, that’s a problem with ICL, not the COBOL spec.
1
@TheOwlman In general that’s true of any variable: when it’s value is changed, there’s no “visible logic” to indicate it no longer has the value it was given at initialization time. So nothing too special about COBOL’s ALTER statement: it’s just a specialized form of assignment.
1
@TheOwlman It’s not as well structured as a case-statement, it is true. But given that you cannot assign arbitrary expressions in an ALTER statement, it is still possible to gather all the possible values of the switch-variable simply by finding all the places where it is mentioned.
1
@fixups6536 It’s a switch statement. Quite a common feature in languages today, albeit in a more structured form.
1