With discussion about dual citizenship, Fred Hooper used my experiences as an example in an interview on Drive, broadcast on ABC Northern Tasmania on Tuesday 15 August 2017
It is hard to review any of the Black Ocean series on their own as the fit so neatly together. It is certainly easy to read them as stand-alone novels but the body of work J.S Morin is putting together hear is as interesting as the characters which make up the series
from Customer reviews on Amazon http://amzn.to/29FlSyy
via IFTTT
Ceres (Universe Eventual Book 3) I was sent a review copy of the third book in the Universe Eternal series, which reminded me I hadn’t read the second book. Since I’d enjoyed Chimera, the first book so much I decided to binge, buying Helios, and then diving into Ceres.
One of the fascinating parts of this series I’m finding is that we are talking youthful characters stepping up to take on big roles in their worlds. This continues as the Chimera travels to find an older colony ship, Ceres. The first book laid out the generational reasons for the ships crews to be so young, and in a way this latest episode develops the characters as the young people would be developing in their own right.
Add in another world, a lost society, another psychopath, and a couple of new young characters and Ceres is a gift to sci-fi. I can’t wait until the next in the series.
from Customer reviews on Amazon http://amzn.to/29GN9wX
via IFTTT
Following Chimera, this second book in the series follows most of the same characters and has a similar set of features including the rites of passage. That said, we shouldn’t expect this to be just an update on book one as some of the characters gain significant depth, and some just die.
In Marcus you have a complete psychopath, comfortable at manipulating others to get to his goals, and killing them if they threaten him. Of all the characters Selena’s and Theo’s develops the most, though in very different ways.
Being only the second book in a series don’t be looking for ‘happily ever after’ but do expect gripping hard sci-fi.Helios (Universe Eventual) (Volume 2)
from Customer reviews on Amazon http://amzn.to/29GCL8f
via IFTTT
I regularly get a block of data with 45 different entries in the first collum, repeated for each time a month appears in column 2. I wanted to split the data based on column value quickly and automatically
1. Open the Microsoft Visual Basic for Applications window. I used the Developer > Visual Basic commands from the toolbar
2. Click Insert > Module, and paste the following code in the Module Window.
Sub parse_data()
Dim lr As Long
Dim ws As Worksheet
Dim vcol, i As Integer
Dim icol As Long
Dim myarr As Variant
Dim title As String
Dim titlerow As Integer
vcol = 1
Set ws = Sheets(“Sheet1”)
lr = ws.Cells(ws.Rows.Count, vcol).End(xlUp).Row
title = “A1:C1”
titlerow = ws.Range(title).Cells(1).Row
icol = ws.Columns.Count
ws.Cells(1, icol) = “Unique”
For i = 2 To lr
On Error Resume Next
If ws.Cells(i, vcol) “” And Application.WorksheetFunction.Match(ws.Cells(i, vcol), ws.Columns(icol), 0) = 0 Then
ws.Cells(ws.Rows.Count, icol).End(xlUp).Offset(1) = ws.Cells(i, vcol)
End If
Next
myarr = Application.WorksheetFunction.Transpose(ws.Columns(icol).SpecialCells(xlCellTypeConstants))
ws.Columns(icol).Clear
For i = 2 To UBound(myarr)
ws.Range(title).AutoFilter field:=vcol, Criteria1:=myarr(i) & “”
If Not Evaluate(“=ISREF(‘” & myarr(i) & “‘!A1)”) Then
Sheets.Add(after:=Worksheets(Worksheets.Count)).Name = myarr(i) & “”
Else
Sheets(myarr(i) & “”).Move after:=Worksheets(Worksheets.Count)
End If
ws.Range(“A” & titlerow & “:A” & lr).EntireRow.Copy Sheets(myarr(i) & “”).Range(“A1”)
Sheets(myarr(i) & “”).Columns.AutoFit
Next
ws.AutoFilterMode = False
ws.Activate
End Sub
Note: In the above code:
vcol =1, the number 1 is the column number that you want to split the data based on.
Set ws = Sheets(“Sheet1”), Sheet1 is the sheet name that you want to apply this code.
title = “A1:C1”, A1:C1 is the range of the title.
All of them are variables, you can change them as your need.
3. Then press F5 key to run the code, all data in the active worksheet are split into multiple worksheets by the column value. And the split worksheets are named with the split cell names.
Note: The split worksheets are placed in the end of the workbook where the master worksheet is in.