Monday, May 06, 2024

"Learn C++ by Example" by Frances Buontempo

Currently taking part in a study group for the abovementioned book.

I was curious to see if I could write a simple filter. Using cppreference.com for information on the C++ standard libraries, I came up with this, saved into the file irb-filter.cpp:-

/*
  The most basic filter ever, copies cin to cout.

  Ian Bruntlett 5th May 2024

  To check for memory errors, do this:
  $ valgrind --tool=memcheck ./irb-filter <rose.txt

  To see cache performance, do this:
  $ valgrind --tool=cachegrind ./irb-filter <rose.txt

  See valgrind.org for more info on valgrind
 
*/

#include <iostream>
#include <string>

int main()
{
  std::string line;
 
  //std::cout << "line.capacity() = " << line.capacity() << '\n';
  //line.reserve(200); // assume lines typically 200 characters or less

  while ( std::getline(std::cin,line) )
    std::cout << line << '\n';
    //std::cout << line.capacity() << " length " << line.length() << ' ' << line << '\n';
}

I've left in some comments in case the reader want to delve a bit deeper. I've also left in some commented bits of code I used to check my understanding of what is happening when the code is being run.

I compiled the code with my makefile, which in turn ran this command:

g++ -g -Wall -Wshadow -Wconversion -std=c++23  -Wl,-Map=irb-filter.map  irb-filter.cpp   -o irb-filter

Here are the contents of rose.txt:

 The Sick Rose
By William Blake
O Rose thou art sick.
The invisible worm,
That flies in the night
In the howling storm:

Has found out thy bed
Of crimson joy:
And his dark secret love
Does thy life destroy.

Monday, January 29, 2024

git update

 OK, so it's taking a while, a lot of effort, but... I think I am getting to grips with git. Still got a long way to go but its doable.

Wednesday, January 10, 2024

Traveller Update

Well, we are in the third adventure, set in a world of asteroids, mining and... other things. This Traveller supplement was published 16 years ago, supporting Mongoose Traveller 1st Edition, and is still relevant. At the conclusion of the second adventure, the Travellers (aka Player Characters) were rewarded with action figures of themselves.

Wednesday, November 22, 2023

More Traveller

 I ran a brief Traveller session this week. My OCD kicked in and I turned up late - having door to door salesmen come round twice did not help.

 I've started a new adventure, published by Mongoose Publishing, and it has quite a bit of set up work required before the action gets going.

Tomorrow will be all about studying "Learning Git".



Wednesday, November 15, 2023

Traveller Update

 I ran a Traveller adventure this week. I think it went well. Will continue playing Traveller.

Monday, September 11, 2023

Mission: Impossible – Dead Reckoning Part One.


This is a long film – about two and three quarter hours and it kept my attention throughout. I’ve always preferred M.I. films that have an ensemble cast and this film has that in spades. Yes, Tom Cruise does get to run around the roofs of tall buildings and ride a motor bike but that was integral to this story. As always, the M.I. team are roused into action by the need to acquire a gadget / MacGuffin – in this case, the ultimate information weapon. Definitely worth seeing.

Thursday, August 17, 2023

Good Omens

 One of my meds, Aripiprazole, could have been named after a demon from Good Omens...