Skip to content

Commit

Permalink
Add review & fix style
Browse files Browse the repository at this point in the history
Found a problem with <li> elements. Fixed it by introducing a class.
  • Loading branch information
sturmer committed Jan 15, 2023
1 parent af9f26c commit 828bbe8
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 7 deletions.
37 changes: 37 additions & 0 deletions content/reviews/firestarter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: Firestarter
author: Stephen King
vote: 6/10
read_in: English
created_at: 2018-01-29
tags: ['review']
---

[//]: # (<a target="_blank" rel="noopener" href="https://www.amazon.fr/Charlie-King-Stephen-R%C3%A9f-18219/dp/B011KF3K8C/ref=sr_1_4" title="Firestarter &#40;French translation&#41;"><img alt="Firestarter &#40;French translation&#41;" src="/images/firestarter.jpg" width="150" /></a>)

Let’s start with the cover, shall we? My God, it’s horrible. Apart from still not being sure what the heck it represents (the little girl in the book is 7-8 years old, not like the face on the cover; and that can’t be her mum), the drawing is ugly. Mystery. Also, in the lower part, it says _Épouvante_ (French for _dread_) – but there’s nothing scary in this book. A few gory details, but that’s nothing to do with fear. So far for empty marketing of a book from the Eighties (it’s too easy to criticize that from our point in time).

But let’s discuss literature. I recognize Stephen King. There are elements in him that recur in many of his books (at least, the ones I’ve read:

- _The Shining_ (great)
- _Bag of Bones_ (absolute best)
- _Misery_ (very good)
- something from the Dark Tower, the one with the love story between the guy and a girl that gets killed in the end
- _Storm of the Century_ (meh)

The one that strikes me the most is the sentence that goes like _He/She didn’t know this was the last time he/she saw him/her alive_. It’s literally in every book. It’s a great device and makes you realize who you’re dealing with, in case you forgot. I think that King is also the one writer I’ve read the most when it comes to a writer’s reflection on his craft, so I can detect a few of his acute observations. In this case, for example, the mark of blood on the map, left by one of the participants in the infamous experiment, is one of those: A seemingly minor detail that can haunt you and your imagination (and the character’s too).

## Plot – HUGE spoiler alert!

The story: It’s the Seventies and the government pays a bunch of students to do tests with some drug on them. Most of them die or go crazy. Two survive (Andy McGee and Vicky) and get married, and give birth to a child, Charlene (Charlie). Both Andy and Vicky have psychic powers as a result of the experiment, but with severe limitations (Andy gets crippling migraines when using his mind domination power, Vicky barely has any power at all but some mild telekinesis), but Charlie got pyrokinesis without any side-effect, except the sense of guilt that her parents try to instill in her in order for her not to cause huge damage.

Flash-forward 7 years, Andy is wanted by a secret branch of the CIA, Vicky has been killed to get information about the whereabouts of Charlie, and father and daughter are running away from their pursuers. Who at the end get them with the help of a Native American, some John Rainbird, who has been disfigured in Vietnam. Andy and Charlie are made prisoners in a secret government facility but resist on not showing any superpower. Rainbird deceives Charlie into believing he’s a friend (he hadn’t been seen at the time of the capture) and convinces her to collaborate with the scientists conducting the experiments in order to get something in return, eventually to meet her father. The only interest of Rainbird, however, is to kill the little girl in the hope of capturing some alleged secret in her eyes at the moment of her death.

Needless to say, father and daughter almost escape the facility, but Rainbird kills Andy. Charlie gets mad and burns everything down, then flees. Then goes to New York to tell her story to _Rolling Stone_.

## Verdict

I think it’s a good book, despite the subject bordering the ridiculous. King, as everyone knows by now, has a huge talent for storytelling, and that’s what it is: A very improbable story that can capture your attention. It feels at times very slow because the author tries to reveal little by little, even though I don’t think he ever gets away from the core. A few passages might be more convincing than others, some characters work better than others, but the overall works quite well.

I recommend it.

7 changes: 4 additions & 3 deletions content/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,14 @@ pre#song {
margin: 20px;
}

#main li {
.catalog li {
font-size: 2em;
line-height: 1.1em;
list-style-type: none;
}

#main ul li {
list-style-type: none;
li {
font-size: 1.6em;
}

#sidebar {
Expand Down
2 changes: 1 addition & 1 deletion layouts/poems.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h1>

<%= yield %>

<ul>
<ul class="catalog">
<% items_with_tag('poetry').sort_by { |s| attribute_to_time(s[:created_at])}.each do |poetry| %>
<li>
<%= poetry[:created_at] %>
Expand Down
2 changes: 1 addition & 1 deletion layouts/reviews.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h1><%= @item[:title] %> (<%= items_with_tag('review').length %>)</h1>

<%= yield %>

<ul>
<ul class="catalog">
<% items_with_tag('review').sort_by { |s| attribute_to_time(s[:created_at])}.each do |r| %>
<li>
<%= r[:created_at] %>
Expand Down
2 changes: 1 addition & 1 deletion layouts/songs_to_the_stone.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h1>

<%= yield %>

<ul>
<ul class="catalog">
<% items_with_tag('song').sort_by { |s| attribute_to_time(s[:created_at])}.each do |song| %>
<li>
<%= song[:created_at] %> <%= link_to song[:title], song.path %>
Expand Down
2 changes: 1 addition & 1 deletion layouts/story_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ <h1><%= @item[:title] %></h1>

<%= yield %>

<ul>
<ul class="catalog">
<% sorted_articles.each do |story| %>
<li>
<%= link_to story[:title], story.path %> (<%= story[:created_at] %>)
Expand Down

0 comments on commit 828bbe8

Please sign in to comment.