• Member Avatar for dcblack56
    dcblack56

    Replied To a Post in Need help with Psuedocode please

    Try drawing a simple [flow chart](https://en.wikipedia.org/wiki/Flowchart). Simple boxes with a two connection points and contain no more than a single sentence expressing a step. Arrows move from one step to …
  • Member Avatar for dcblack56
    dcblack56

    Began Watching Need help with Psuedocode please

    Design a computer software application that reads a data file containing the homework grades for a student. Your program must calculate the average homework grade for that student and also …
  • Member Avatar for dcblack56
    dcblack56

    Replied To a Post in find occurrence of column per second via bash

    Perhaps unreadable, but quick/easy/works -- you just have to master Perl5 perl -ne '$R{$1,$2}++ if m/^(\d+:\d+:\d+)[.]\d+;(\d+)$/; END{ for $tv (keys %R) { ($t,$v)=split($;,$tv); printf "%s occured at %s %d times\n",$v,$t,$R{$tv};}}' …
  • Member Avatar for dcblack56
    dcblack56

    Began Watching find occurrence of column per second via bash

    Hello everybody, I have the following records in a file. > 15:00:00.870;334 > 15:00:00.872;1314 > 15:00:00.889;334 > 15:00:00.890;334 > 15:00:00.891;334 > 15:00:00.892;334 > 15:00:00.909;212 > 15:00:00.910;334 > 15:00:00.929;334 > 15:00:00.948;334 …