Book Review - The Midnight Library

Going by the popularity, I picked the book “Midnight Library” by Matt Haig to be my next read. But it wasn’t before long that I realised that this is not the kind of book I am into. I haven’t read “The Alchemist” or “The monk who sold his Ferrari”.

100 Days of Code Log R1D16

Today, there has been some heavy lifting! User defined types, dynamic memory, pointers and all its associated magics! Definitely will be revisiting soon. Also, want to acknowledge that I’m finding the method of logging everything here in blog to be too daunting. If I try to make it useful, the post needs to be lengthy but that eats up the time on learning itself.

100 Days of Code Log R1D15

Randomly Generated plot in Fortran I owe this to one of the participants of matlab contest - Matlab Mini Hack - where this simple but powerful method was shared. Here is my implementation 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 module charchal use, intrinsic :: iso_fortran_env, only : wp=>real64 implicit none private real, parameter :: pi = 4.