Re: Why Python When There Is Perl?

Liste des GroupesRevenir à ol advocacy 
Sujet : Re: Why Python When There Is Perl?
De : ff (at) *nospam* linux.rocks (Farley Flud)
Groupes : comp.os.linux.advocacy
Date : 21. Mar 2024, 10:54:25
Autres entêtes
Organisation : UsenetExpress - www.usenetexpress.com
Message-ID : <17bebbae334656b9$74345$2906873$802601b3@news.usenetexpress.com>
References : 1 2 3 4
On Wed, 20 Mar 2024 17:40:34 -0500, Physfitfreak wrote:

 
Hmm... I'm not that dedicated to the task. For now, I've made my mind,
and even have started the "learning curve" if such a thing exists for
qb64 :-)))
 

Don't listen to those incompetent chumps.  Learning about hardware
first is critical.

The classic example is recursion.  In the abstract realm recursion
seems highly efficient and elegant.  But such elegance has to ultimately
be translated into machine code and, at this level, recursion becomes
highly inefficient and even idiotic.

It has long ago been proved that all programming can be reduced to
the simple ideas of SEQUENCE and BRANCHING.  Indeed, if you examine
the instruction set of a modern CPU that is ALL that you will find:
sequence and branching (aside from the arithmetic-logic unit).

Fundamental CPU operations are very simple: arithmetic, logic, and
shift.  But from these everything else can be built.

You already know the arithmetic (or most of it).  So start with
the logic tables:

AND
0 and 0 = 0
0 and 1 = 0
1 and 0 = 0
1 and 1 = 1

OR
0 or 0 = 0
0 or 1 = 1
1 or 0 = 1
1 or 1 = 1

XOR
0 xor 0 = 0
0 xor 1 = 1
1 xor 0 = 1
1 xor 1 = 0

These logic operations are used in making decisions that
allow branching, bit conversions, and many other crucial
operations.

How can we know that an ASCII character is uppercase?

char AND 0x20

If the zero condition flag is set then the character is
uppercase.  We can then branch based on the condition flag.

Very simple.

Know these by heart.

This ends today's lesson.

There is only one programming philosophy: fuck that abstract
elegant shit and get back to the machine.


Date Sujet#  Auteur
19 Mar 24 * Why Python When There Is Perl?308Lester Thorpe
20 Mar 24 +* Re: Why Python When There Is Perl?10Lawrence D'Oliveiro
20 Mar 24 i+* Re: Why Python When There Is Perl?2rbowman
20 Mar 24 ii`- Re: Why Python When There Is Perl?1Lawrence D'Oliveiro
20 Mar 24 i`* Re: Why Python When There Is Perl?7Nuxxie
20 Mar 24 i +* Re: Why Python When There Is Perl?2Chris Ahlstrom
21 Mar 24 i i`- Re: Why Python When There Is Perl?1rbowman
21 Mar 24 i `* Re: Why Python When There Is Perl?4rbowman
21 Mar 24 i  `* Re: Why Python When There Is Perl?3Lawrence D'Oliveiro
21 Mar 24 i   `* Re: Why Python When There Is Perl?2Lawrence D'Oliveiro
22 Mar 24 i    `- Re: Why Python When There Is Perl?1rbowman
20 Mar 24 `* Re: Why Python When There Is Perl?297Physfitfreak
20 Mar 24  +- Re: Why Python When There Is Perl?1rbowman
20 Mar 24  +* Re: Why Python When There Is Perl?4DFS
20 Mar 24  i`* Re: Why Python When There Is Perl?3rbowman
21 Mar 24  i `* Re: Why Python When There Is Perl?2DFS
21 Mar 24  i  `- Re: Why Python When There Is Perl?1rbowman
20 Mar 24  +* Re: Why Python When There Is Perl?202Nuxxie
21 Mar 24  i+* Re: Why Python When There Is Perl?194Physfitfreak
21 Mar 24  ii+- Re: Why Python When There Is Perl?1DFS
21 Mar 24  ii+- Re: Why Python When There Is Perl?1DFS
21 Mar 24  ii`* Re: Why Python When There Is Perl?191Farley Flud
21 Mar 24  ii +- Re: Why Python When There Is Perl?1Lawrence D'Oliveiro
22 Mar 24  ii +* Re: Why Python When There Is Perl?187Physfitfreak
22 Mar 24  ii i+* Re: Why Python When There Is Perl?2Lawrence D'Oliveiro
22 Mar 24  ii ii`- Re: Why Python When There Is Perl?1Physfitfreak
22 Mar 24  ii i+* Re: Why Python When There Is Perl?12Farley Flud
22 Mar 24  ii ii`* Re: Why Python When There Is Perl?11DFS
22 Mar 24  ii ii +* Re: Why Python When There Is Perl?7rbowman
22 Mar 24  ii ii i`* Re: Why Python When There Is Perl?6DFS
23 Mar 24  ii ii i `* Re: Why Python When There Is Perl?5rbowman
23 Mar 24  ii ii i  `* Re: Why Python When There Is Perl?4Lawrence D'Oliveiro
23 Mar 24  ii ii i   `* Re: Why Python When There Is Perl?3rbowman
23 Mar 24  ii ii i    `* Re: Why Python When There Is Perl?2Lawrence D'Oliveiro
23 Mar 24  ii ii i     `- Re: Why Python When There Is Perl?1rbowman
24 Mar 24  ii ii `* Re: Why Python When There Is Perl?3Stéphane CARPENTIER
24 Mar 24  ii ii  `* Re: Why Python When There Is Perl?2DFS
24 Mar 24  ii ii   `- Re: Why Python When There Is Perl?1rbowman
22 Mar 24  ii i+* Re: Why Python When There Is Perl?169Farley Flud
23 Mar 24  ii ii`* Re: Why Python When There Is Perl?168Physfitfreak
23 Mar 24  ii ii +* Re: Why Python When There Is Perl?6Physfitfreak
23 Mar 24  ii ii i`* Re: Why Python When There Is Perl?5Physfitfreak
24 Mar 24  ii ii i `* Re: Why Python When There Is Perl?4Lawrence D'Oliveiro
24 Mar 24  ii ii i  `* Re: Why Python When There Is Perl?3Physfitfreak
24 Mar 24  ii ii i   +- Re: Why Python When There Is Perl?1Physfitfreak
24 Mar 24  ii ii i   `- Re: Why Python When There Is Perl?1rbowman
23 Mar 24  ii ii +* Re: Why Python When There Is Perl?160Farley Flud
23 Mar 24  ii ii i+- Re: Why Python When There Is Perl?1DFS
23 Mar 24  ii ii i+* Re: Why Python When There Is Perl?113rbowman
24 Mar 24  ii ii ii`* Re: Why Python When There Is Perl?112Physfitfreak
24 Mar 24  ii ii ii `* Re: Why Python When There Is Perl?111rbowman
25 Mar 24  ii ii ii  `* Re: Why Python When There Is Perl?110Physfitfreak
25 Mar 24  ii ii ii   +* Re: Why Python When There Is Perl?102rbowman
25 Mar 24  ii ii ii   i+- I control Afghanistan; they do what I say, when I say.1Relf
26 Mar 24  ii ii ii   i`* Re: Why Python When There Is Perl?100Physfitfreak
26 Mar 24  ii ii ii   i +* Re: Why Python When There Is Perl?98Physfitfreak
26 Mar 24  ii ii ii   i i+* Re: Why Python When There Is Perl?9Physfitfreak
2 Apr 24  ii ii ii   i ii`* Re: Why Python When There Is Perl?8Lawrence D'Oliveiro
2 Apr 24  ii ii ii   i ii `* Re: Why Python When There Is Perl?7rbowman
2 Apr 24  ii ii ii   i ii  +* Re: Why Python When There Is Perl?4Physfitfreak
3 Apr 24  ii ii ii   i ii  i`* Re: Why Python When There Is Perl?3rbowman
3 Apr 24  ii ii ii   i ii  i `* Re: Why Python When There Is Perl?2Physfitfreak
3 Apr 24  ii ii ii   i ii  i  `- Re: Why Python When There Is Perl?1Physfitfreak
6 Apr 24  ii ii ii   i ii  `* Re: Why Python When There Is Perl?2Stéphane CARPENTIER
6 Apr 24  ii ii ii   i ii   `- Re: Why Python When There Is Perl?1rbowman
26 Mar 24  ii ii ii   i i`* Re: Why Python When There Is Perl?88rbowman
26 Mar 24  ii ii ii   i i +* Re: Why Python When There Is Perl?2Chris Ahlstrom
26 Mar 24  ii ii ii   i i i`- Re: Why Python When There Is Perl?1rbowman
26 Mar 24  ii ii ii   i i +- Re: Why Python When There Is Perl?1rbowman
26 Mar 24  ii ii ii   i i +* Re: Why Python When There Is Perl?83Physfitfreak
26 Mar 24  ii ii ii   i i i+* Re: Why Python When There Is Perl?3rbowman
27 Mar 24  ii ii ii   i i ii+- Re: Why Python When There Is Perl?1Physfitfreak
27 Mar 24  ii ii ii   i i ii`- Re: Why Python When There Is Perl?1Chris Ahlstrom
2 Apr 24  ii ii ii   i i i`* Re: Why Python When There Is Perl?79Lawrence D'Oliveiro
2 Apr 24  ii ii ii   i i i +- Re: Why Python When There Is Perl?1Chris Ahlstrom
2 Apr 24  ii ii ii   i i i `* Re: Why Python When There Is Perl?77Physfitfreak
3 Apr 24  ii ii ii   i i i  `* Re: Why Python When There Is Perl?76Lawrence D'Oliveiro
3 Apr 24  ii ii ii   i i i   `* Re: Why Python When There Is Perl?75Physfitfreak
5 Apr 24  ii ii ii   i i i    `* Re: Why Python When There Is Perl?74Lawrence D'Oliveiro
5 Apr 24  ii ii ii   i i i     +* Re: Why Python When There Is Perl?72rbowman
5 Apr 24  ii ii ii   i i i     i+* Re: Why Python When There Is Perl?61Lawrence D'Oliveiro
5 Apr 24  ii ii ii   i i i     ii`* Re: Why Python When There Is Perl?60rbowman
5 Apr 24  ii ii ii   i i i     ii +* Re: Why Python When There Is Perl?3Lawrence D'Oliveiro
5 Apr 24  ii ii ii   i i i     ii i+- Re: Why Python When There Is Perl?1Physfitfreak
6 Apr 24  ii ii ii   i i i     ii i`- Re: Why Python When There Is Perl?1RonB
5 Apr 24  ii ii ii   i i i     ii `* Re: Why Python When There Is Perl?56Chris Ahlstrom
6 Apr 24  ii ii ii   i i i     ii  `* Re: Why Python When There Is Perl?55RonB
7 Apr 24  ii ii ii   i i i     ii   `* Re: Why Python When There Is Perl?54Chris Ahlstrom
7 Apr 24  ii ii ii   i i i     ii    +* Re: Why Python When There Is Perl?10Chris Ahlstrom
7 Apr 24  ii ii ii   i i i     ii    i+* Re: Why Python When There Is Perl?2rbowman
8 Apr 24  ii ii ii   i i i     ii    ii`- Re: Why Python When There Is Perl?1RonB
7 Apr 24  ii ii ii   i i i     ii    i+- Re: Why Python When There Is Perl?1Physfitfreak
8 Apr 24  ii ii ii   i i i     ii    i`* Re: Why Python When There Is Perl?6RonB
8 Apr 24  ii ii ii   i i i     ii    i `* Re: Why Python When There Is Perl?5Chris Ahlstrom
10 Apr 24  ii ii ii   i i i     ii    i  `* Re: Why Python When There Is Perl?4RonB
10 Apr 24  ii ii ii   i i i     ii    i   `* Re: Why Python When There Is Perl?3Chris Ahlstrom
10 Apr 24  ii ii ii   i i i     ii    i    +- Re: Why Python When There Is Perl?1Physfitfreak
11 Apr 24  ii ii ii   i i i     ii    i    `- Re: Why Python When There Is Perl?1RonB
7 Apr 24  ii ii ii   i i i     ii    +* Re: Why Python When There Is Perl?30rbowman
8 Apr 24  ii ii ii   i i i     ii    i+* Re: Why Python When There Is Perl?5RonB
8 Apr 24  ii ii ii   i i i     ii    ii`* Re: Why Python When There Is Perl?4Chris Ahlstrom
8 Apr 24  ii ii ii   i i i     ii    i`* Re: Why Python When There Is Perl?24Chris Ahlstrom
7 Apr 24  ii ii ii   i i i     ii    +- Re: Why Python When There Is Perl?1Physfitfreak
8 Apr 24  ii ii ii   i i i     ii    +* Re: Why Python When There Is Perl?9RonB
8 Apr 24  ii ii ii   i i i     ii    +- Re: Why Python When There Is Perl?1RonB
9 Apr 24  ii ii ii   i i i     ii    `* Re: Why Python When There Is Perl?2Lawrence D'Oliveiro
5 Apr 24  ii ii ii   i i i     i+- Re: Why Python When There Is Perl?1Chris Ahlstrom
6 Apr 24  ii ii ii   i i i     i`* Re: Why Python When There Is Perl?9RonB
5 Apr 24  ii ii ii   i i i     `- Re: Why Python When There Is Perl?1Physfitfreak
2 Apr 24  ii ii ii   i i `- Re: Why Python When There Is Perl?1Lawrence D'Oliveiro
26 Mar 24  ii ii ii   i `- Re: Why Python When There Is Perl?1rbowman
2 Apr 24  ii ii ii   +* Re: Why Python When There Is Perl?6Lawrence D'Oliveiro
2 Apr 24  ii ii ii   `- Re: Why Python When There Is Perl?1Lawrence D'Oliveiro
24 Mar 24  ii ii i`* Re: Why Python When There Is Perl?45Physfitfreak
23 Mar 24  ii ii `- Re: Why Python When There Is Perl?1DFS
23 Mar 24  ii i`* Re: Why Python When There Is Perl?3DFS
24 Mar 24  ii `* Re: Why Python When There Is Perl?2Stéphane CARPENTIER
21 Mar 24  i+- Re: Why Python When There Is Perl?1Lawrence D'Oliveiro
21 Mar 24  i+* Re: Why Python When There Is Perl?5DFS
21 Mar 24  i`- Re: Why Python When There Is Perl?1rbowman
20 Mar 24  +* Re: Why Python When There Is Perl?56Yaxley Peaks
21 Mar 24  +* Re: Why Python When There Is Perl?32DFS
22 Mar 24  `- Re: Why Python When There Is Perl?1DFS

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal