Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.c > #388047

Re: Top 10 most common hard skills listed on resumes...

From Kaz Kylheku <643-408-1753@kylheku.com>
Newsgroups comp.lang.c
Subject Re: Top 10 most common hard skills listed on resumes...
Date 2024-08-31 07:08 +0000
Organization A noiseless patient Spider
Message-ID <20240830232138.772@kylheku.com> (permalink)
References (17 earlier) <vaq9tu$1te8$1@dont-email.me> <875xrivrg0.fsf@bsb.me.uk> <20240829191404.887@kylheku.com> <86cylqw2f8.fsf@linuxsc.com> <871q2568vl.fsf@nosuchdomain.example.com>

Show all headers | View raw


On 2024-08-30, Keith Thompson <Keith.S.Thompson+u@gmail.com> wrote:
> Tim Rentsch <tr.17687@z991.linuxsc.com> writes:
>> Kaz Kylheku <643-408-1753@kylheku.com> writes:
>>> On 2024-08-29, Ben Bacarisse <ben@bsb.me.uk> wrote:
>>>> Bart <bc@freeuk.com> writes:
>>>>> I think that these (with x, y having compatible scalar types):
>>>>>
>>>>>    x + 1 = y;
>>>>>    (x + 1) = y;         // in case above was parsed differently
>>>>>
>>>>> are both valid syntax in C. It will fail for a different reason:
>>>>> an '+' term is not a valid lvalue.
>>>>
>>>> The compiler must tell you that neither is valid C.  That's
>>>> because what is required on each side of assignment is not
>>>> exactly the same thing.  It's a distraction to argue about why
>>>> each is not valid C as both have errors that require diagnostic
>>>> at compile time.
>>>
>>> Bart is only saying that it's valid syntax, not that it's valid C.
>>>
>>> According to the ISO C syntax (not taking into account contraints,
>>> which are not syntax) that view is justified.
>>
>> The second line is syntactically well-formed.  The first line is
>> not.
>
> Right, because the LHS of an assignment is a unary-expression.
> `(x + 1)` can be parsed as a unary-expression, but `x + 1` cannot.
> However, the compilers I've tried produce the same diagnostic (not a
> syntax error message) for both.  Probably they use a tweaked grammar
> that allows more a general expression as the LHS of an assignment,
> and catch errors later in semantic analysis, for the purpose of
> producing diagnostics that are easier to understand.  It's obvious
> that in `x + 1 = y`, the programmer (probably) intended `x + 1`
> to be the LHS of an assignment.  These compilers (I tried gcc,
> clang, and tcc) are clever enough to recognize that.

A standard operator precedence parsing algorithm such as Shunting Yard
cannot help but parse that.

The operator tokens + and = have to be
assigned a precedence and associativity level, and so the parse has to
be (x + 1) = y or else x + (1 = y).

But precedence, in general, doesn't have to be ordered! It doesn't have
to have levels, or even partial ordering with transitivity. Precedence
can be such that for any pair of operators, we arbitrarily assign which
one is higher than the other, without regard for anything else.

Also: precedence can depend on order. It can be that in
X op1 Y op2 Z, where op1 is to the left of op2, op1 has
the higher precedence. But in X op2 Y op1 Z, op2 might have
the higher precedence. Or one order could have a defined
precedence but not the other.

In the C grammar, assignment breaks the cascading sequence. Whereas
most earlier rules refer to their immediate predecessors.
(e.g. additive builds on multiplicative), assignment looks all
the way back to unary. What this means is that the assignment operator
has no defined precedence with regard to all the intermediate
operators between it and unary. Or, at least, when the other operator
is to the left:

  x + 1 = y     // + =: no defined precedence: ambiguous: syntax error

  y = x + 1     // = +: defined precedence: good syntax

When the precedence is not defined in one of the two orders,
you can safely adopt the one from the other order, provided
everything is still diagnosed that should be diagnosed.

The precedence not being defined means that the following parse
tree fragment is invalid:

       = 
    +    y
  x   1

it cannot be that + is a left child of =. So the parse could be
allowed by defining the precedence; and then we can detect the invalid
condition by walking the parse tree, looking for assignment nodes that
have a left child that has no precedence relationship to assignment.

But as an AST it is valid because that same AST shape can be forced by
parentheses, and parentheses disappear in abstract syntax.

Any invalid syntax condition that can be removed using parentheses is
not worth enforcing at the parse level.  If it's wrong to assign to x +
1, you also need to diagnose when it's (x + 1). It's better to have
a single rule which catches both.

-- 
TXR Programming Language: http://nongnu.org/txr
Cygnal: Cygwin Native Application Library: http://kylheku.com/cygnal
Mastodon: @Kazinator@mstdn.ca

Back to comp.lang.c | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Top 10 most common hard skills listed on resumes... John Forkosh <john@somewhere.com> - 2024-08-23 22:03 +0000
  Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-23 23:06 +0000
    Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-23 17:02 -0700
      Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-24 02:26 +0000
  Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-24 14:41 +0200
    Re: Top 10 most common hard skills listed on resumes... John Forkosh <forkosh@somewhere.com> - 2024-08-25 12:09 +0000
      Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-25 17:06 +0300
      Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-25 10:54 -0400
        Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-25 18:10 +0300
        Re: Top 10 most common hard skills listed on resumes... Vir Campestris <vir.campestris@invalid.invalid> - 2024-08-26 21:36 +0100
      Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-25 18:47 +0200
        Re: Top 10 most common hard skills listed on resumes... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2024-08-25 12:58 -0700
  Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-24 20:11 +0200
    Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-24 19:27 +0100
      Re: Top 10 most common hard skills listed on resumes... Vir Campestris <vir.campestris@invalid.invalid> - 2024-08-24 21:12 +0100
        Re: Top 10 most common hard skills listed on resumes... Thiago Adams <thiago.adams@gmail.com> - 2024-08-24 18:07 -0300
      Re: Top 10 most common hard skills listed on resumes... John Forkosh <forkosh@somewhere.com> - 2024-08-25 12:18 +0000
        Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-25 10:50 -0400
          Re: Top 10 most common hard skills listed on resumes... fir <fir@grunge.pl> - 2024-08-25 16:55 +0200
            Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-25 16:30 +0100
              Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-25 19:17 +0300
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-25 18:17 +0100
              Re: Top 10 most common hard skills listed on resumes... tTh <tth@none.invalid> - 2024-08-25 18:20 +0200
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-25 18:26 +0100
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-28 14:21 +0300
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 13:40 +0200
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-28 14:51 +0100
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-29 10:41 +0200
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-30 03:18 +0000
              Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-26 05:41 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-26 12:05 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-26 13:30 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-26 14:54 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-26 12:32 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-26 13:07 -0700
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-28 00:49 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-28 01:39 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-28 15:57 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-28 19:26 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-29 00:43 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-29 11:35 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-29 13:35 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-29 14:10 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-29 16:13 +0100
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-29 15:40 +0000
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-29 16:45 +0100
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-29 15:58 +0000
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-29 17:06 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-29 18:08 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-29 13:30 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-29 22:29 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-29 15:03 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-29 23:45 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-29 16:32 -0700
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-30 00:29 +0100
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-30 02:34 +0000
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-30 06:44 -0700
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-30 13:41 -0700
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-31 07:08 +0000
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-31 12:45 -0400
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-31 14:03 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-01 09:45 -0700
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-01 10:44 -0700
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-01 18:47 +0000
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-01 15:01 -0400
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-01 13:11 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-01 13:14 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-01 14:17 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-31 19:11 +0100
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-31 19:32 +0000
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-31 16:04 -0400
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-31 15:10 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-01 13:15 +0100
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-01 06:30 -0700
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-31 15:31 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-01 00:37 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-31 18:17 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-31 20:01 -0700
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-31 20:26 -0700
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-01 03:04 +0000
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-01 13:07 -0700
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-08 06:39 +0200
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-08 10:12 -0400
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-08 16:37 +0200
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-09 10:46 +0200
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-09 07:03 -0400
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-09 13:06 +0200
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-09 08:21 -0400
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-17 05:46 -0700
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-09 17:29 +0000
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-09 14:25 -0400
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-17 05:56 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-17 06:57 -0700
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-17 19:02 +0200
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-17 16:26 -0700
                Re: Top 10 most common hard skills listed on resumes... antispam@fricas.org - 2024-09-18 15:28 +0000
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-21 06:00 -0700
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-01 13:12 -0400
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-07 03:13 +0000
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-02 13:03 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-02 13:39 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-02 16:22 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-02 20:43 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-02 15:31 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-02 23:48 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-02 15:52 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-02 23:59 +0100
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-02 19:44 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-02 20:04 -0700
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-03 16:08 +0100
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-09 18:00 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-29 21:24 -0700
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-05 15:21 +0000
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-05 16:54 +0000
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-05 17:37 -0400
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-06 10:35 +0100
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-09-06 14:05 +0300
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-06 07:56 -0700
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-09-08 11:53 +0300
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-09 12:08 -0700
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-06 13:23 -0400
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-06 19:58 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-06 23:38 +0100
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-08 05:23 +0200
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-05 19:10 +0100
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-06 10:19 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-06 12:34 +0100
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-07 01:44 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-07 11:53 +0100
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-08 00:05 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-08 12:05 +0100
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-08 18:13 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-08 21:18 +0100
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-09 01:19 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-09 12:31 +0100
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-10 04:40 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-10 11:52 +0100
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-10 13:55 +0200
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-10 14:30 +0100
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-09-10 16:53 +0300
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-10 16:18 +0200
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-12 21:09 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-08 22:01 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-08 14:15 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-08 23:33 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-08 16:20 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-09 00:25 +0100
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-09 00:29 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-09 02:07 +0100
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-09 03:04 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-09 11:14 +0200
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-09 16:46 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-09 19:21 +0200
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-09 22:04 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-10 09:04 +0200
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-10 13:56 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-10 16:28 +0200
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-11 23:59 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-12 13:45 +0200
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-12 21:28 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-13 16:24 +0200
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-11 17:12 -0400
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-09 12:08 -0700
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-09 16:56 -0400
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-08 18:10 -0700
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-09 02:06 +0000
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-08 20:14 -0700
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-09 15:58 +0100
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-09 16:21 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-09 17:57 +0100
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-09 19:37 +0200
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-09 18:46 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-09 21:04 +0200
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-09 13:16 -0700
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-10 09:19 +0200
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-10 12:18 -0700
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-10 22:10 +0200
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-09 22:33 +0000
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-09 16:24 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-09 18:52 -0700
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-09 20:07 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-09 20:46 -0700
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-09 21:39 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-14 15:07 -0700
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-14 15:51 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-10 04:19 -0700
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-10 12:49 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-14 15:13 -0700
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-09 00:09 -0400
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-09 16:50 +0000
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-09 13:05 +0200
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-09 11:01 +0200
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-09 12:28 +0200
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-09 12:29 +0200
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-08 05:53 +0200
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-08 05:58 +0200
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-08 17:14 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-08 17:36 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-10 15:24 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-10 17:28 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-11 01:22 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-11 10:34 +0100
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-11 15:15 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-11 16:51 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-12 00:32 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-12 01:40 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-13 01:01 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-11 17:20 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-15 20:05 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-16 10:58 +0100
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-16 11:30 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-16 14:42 +0100
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-16 14:30 +0000
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-09-16 17:40 +0300
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-16 12:19 -0400
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-16 19:13 +0200
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-09-17 17:32 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-18 09:44 +0200
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-17 14:08 -0400
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-18 10:05 +0200
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-18 07:27 -0400
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-18 14:15 +0200
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-16 19:26 +0200
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-09-17 09:27 -0400
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-12 02:11 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-12 12:27 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-12 12:38 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-12 20:54 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-12 13:51 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-13 14:18 +0100
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-08 05:44 +0200
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-09-08 11:58 +0300
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-08 11:27 +0100
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-09-08 16:34 +0300
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-08 16:39 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-08 17:44 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-10 00:07 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-09 16:53 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-10 01:20 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-09 17:47 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-09 17:51 -0700
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-10 15:15 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-10 17:58 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-11 01:02 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-11 10:52 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-12 00:47 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-12 12:00 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-12 12:39 -0700
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-12 12:39 -0700
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-13 00:46 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-13 15:02 +0100
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-13 15:12 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-09-13 23:01 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-10 13:05 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-09 09:47 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-09 18:27 +0100
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-08 16:40 +0200
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-09-08 20:09 +0300
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-08 11:18 +0100
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-09-08 17:22 +0200
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-08 19:01 +0100
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-08 18:39 +0000
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-08 12:19 -0700
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-09-08 11:50 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-06 04:53 -0700
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-09-06 14:48 +0100
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-09-09 17:57 -0700
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-29 14:26 -0400
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-29 23:53 +0100
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-30 00:08 +0100
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-30 13:28 -0400
                Re: Top 10 most common hard skills listed on resumes... Kaz Kylheku <643-408-1753@kylheku.com> - 2024-08-30 17:36 +0000
                Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-30 14:37 -0400
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-31 02:18 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-31 02:11 -0700
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-30 06:40 -0700
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-29 23:43 +0300
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-26 12:30 -0700
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-26 21:41 +0000
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-27 14:18 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-27 12:22 -0700
                Re: Top 10 most common hard skills listed on resumes... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2024-08-27 12:50 -0700
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-28 00:15 +0100
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-27 17:46 -0700
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-01 07:07 +0000
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-27 18:19 -0700
                Re: Top 10 most common hard skills listed on resumes... Ben Bacarisse <ben@bsb.me.uk> - 2024-08-28 15:47 +0100
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-28 08:18 -0700
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-26 21:40 +0000
            Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-26 05:40 +0000
          Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-25 17:59 +0200
            Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-25 19:28 +0300
              Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-25 20:12 +0200
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-25 19:24 +0100
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-26 03:43 +0200
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-27 01:33 +0200
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-27 00:47 +0100
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-27 07:09 +0200
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-27 09:37 +0200
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-27 10:36 +0200
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-27 11:32 +0200
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-27 11:47 +0200
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-27 14:51 +0200
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-27 15:14 +0200
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-27 20:54 +0200
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 07:02 +0200
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-28 11:26 +0200
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 11:30 +0200
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 11:49 +0200
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-28 13:43 +0300
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 13:02 +0200
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-28 15:06 +0300
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 14:40 +0200
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-30 09:37 +0200
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-28 13:49 +0300
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-28 14:25 +0200
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-08 21:34 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-09 11:34 +0200
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-09 14:36 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-09 17:11 +0200
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-09 23:58 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-10 11:20 +0200
                Re: Top 10 most common hard skills listed on resumes... Waldek Hebisch <antispam@fricas.org> - 2024-09-13 02:16 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-09-13 16:25 +0200
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-09-13 18:05 +0300
                Re: Top 10 most common hard skills listed on resumes... scott@slp53.sl.home (Scott Lurndal) - 2024-09-13 17:32 +0000
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-28 13:55 +0300
                Re: Top 10 most common hard skills listed on resumes... Vir Campestris <vir.campestris@invalid.invalid> - 2024-08-27 21:13 +0100
                Re: Top 10 most common hard skills listed on resumes... scott@slp53.sl.home (Scott Lurndal) - 2024-08-27 21:07 +0000
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 07:03 +0200
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-28 14:01 +0300
                Re: Top 10 most common hard skills listed on resumes... "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2024-08-27 12:39 -0700
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-28 18:48 +0200
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-25 22:00 +0300
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-26 05:39 +0000
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-26 17:16 -0700
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-27 07:10 +0200
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 05:17 +0000
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-27 07:23 +0200
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 06:47 +0000
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-27 08:58 +0200
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 23:44 +0000
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 06:59 +0200
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-28 05:39 +0000
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 08:04 +0200
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-30 03:21 +0000
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-30 10:43 +0200
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-31 00:01 +0000
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-31 06:44 +0200
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-31 22:30 +0000
                Re: Top 10 most common hard skills listed on resumes... scott@slp53.sl.home (Scott Lurndal) - 2024-08-30 14:38 +0000
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-31 00:02 +0000
                Re: Top 10 most common hard skills listed on resumes... scott@slp53.sl.home (Scott Lurndal) - 2024-09-01 15:19 +0000
                Re: Top 10 most common hard skills listed on resumes... scott@slp53.sl.home (Scott Lurndal) - 2024-09-01 15:22 +0000
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-01 23:48 +0000
                Re: Top 10 most common hard skills listed on resumes... Thiago Adams <thiago.adams@gmail.com> - 2024-08-28 08:09 -0300
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 13:32 +0200
                Re: Top 10 most common hard skills listed on resumes... Thiago Adams <thiago.adams@gmail.com> - 2024-08-28 08:47 -0300
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 14:58 +0200
                Re: Top 10 most common hard skills listed on resumes... Thiago Adams <thiago.adams@gmail.com> - 2024-08-28 10:35 -0300
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 15:45 +0200
                Re: Top 10 most common hard skills listed on resumes... Thiago Adams <thiago.adams@gmail.com> - 2024-08-28 10:52 -0300
                Re: Top 10 most common hard skills listed on resumes... Thiago Adams <thiago.adams@gmail.com> - 2024-08-28 11:04 -0300
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 16:18 +0200
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-28 16:51 +0100
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 18:58 +0200
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 16:55 +0200
                Re: Top 10 most common hard skills listed on resumes... Thiago Adams <thiago.adams@gmail.com> - 2024-08-28 14:02 -0300
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 19:13 +0200
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-28 19:29 +0200
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 19:33 +0200
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-27 15:06 +0300
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-27 12:49 +0300
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-27 12:44 +0300
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 23:50 +0000
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-28 06:31 -0700
            Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-25 18:28 +0200
            Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-26 05:38 +0000
          Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-25 18:23 +0200
        Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-25 17:58 +0200
        Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-25 18:51 +0200
      Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-25 18:36 +0200
        Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-25 20:11 +0300
          Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-25 17:48 -0700
            Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-26 10:54 +0300
              Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-26 17:55 -0700
                Re: Top 10 most common hard skills listed on resumes... Michael S <already5chosen@yahoo.com> - 2024-08-27 12:33 +0300
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-27 19:38 -0700
              Re: Top 10 most common hard skills listed on resumes... James Kuyper <jameskuyper@alumni.caltech.edu> - 2024-08-27 09:45 -0400
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-31 03:56 -0700
            Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-26 15:46 +0200
              Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 04:36 +0000
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-27 09:44 +0200
                Re: Top 10 most common hard skills listed on resumes... Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2024-08-27 12:16 -0700
                Re: Top 10 most common hard skills listed on resumes... David Brown <david.brown@hesbynett.no> - 2024-08-27 21:53 +0200
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 23:55 +0000
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 23:53 +0000
                Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-28 01:28 +0100
                Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-28 05:45 +0000
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-28 09:49 +0200
            Re: Top 10 most common hard skills listed on resumes... Bart <bc@freeuk.com> - 2024-08-26 15:13 +0100
              Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-26 18:16 -0700
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-28 19:57 +0200
                Re: Top 10 most common hard skills listed on resumes... scott@slp53.sl.home (Scott Lurndal) - 2024-08-28 18:37 +0000
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-28 23:18 +0200
                Re: Top 10 most common hard skills listed on resumes... scott@slp53.sl.home (Scott Lurndal) - 2024-08-28 22:11 +0000
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-28 13:42 -0700
                Re: Top 10 most common hard skills listed on resumes... Janis Papanagnou <janis_papanagnou+ng@hotmail.com> - 2024-08-28 23:22 +0200
                Re: Top 10 most common hard skills listed on resumes... Tim Rentsch <tr.17687@z991.linuxsc.com> - 2024-08-28 22:36 -0700
              Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-27 04:34 +0000
            Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-27 11:11 +0200
              Re: Top 10 most common hard skills listed on resumes... Vir Campestris <vir.campestris@invalid.invalid> - 2024-08-27 21:20 +0100
                Re: Top 10 most common hard skills listed on resumes... Bonita Montero <Bonita.Montero@gmail.com> - 2024-08-31 10:14 +0200
          Re: Top 10 most common hard skills listed on resumes... Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-08-26 02:33 +0000

csiph-web