<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Loops — Clinton David Skakun</title>
  <meta name="description" content="Loops by Clinton David Skakun is a hand-crafted collection of practical software philosophies and coding wisdom shaped by two decades of experience. Discover simple, pragmatic approaches to managing code complexity in a beautifully illustrated, developer-focused book. Download the free PDF today.">
  <!-- Open Graph Metadata -->
<meta property="og:title" content="Loops — Clinton David Skakun">
<meta property="og:description" content="A hand-crafted book on simple, pragmatic approaches to managing code complexity. Download the free PDF.">
<meta property="og:image" content="loops-book-cover-cropped-site.jpg">
<meta property="og:url" content="https://blue-riki-63.tiiny.site/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Loops">
  <link href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=EB+Garamond&display=swap" rel="stylesheet">
  <style>
    body {
      background: #f9f9f9;
      font-family: 'EB Garamond', serif;
      margin: 0;
      padding: 2rem;
      color: #222;
      background: white;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 7rem;
    }

    .book-cover-wrapper {
      perspective: 1000px;
      flex: 1 1 300px;
      max-width: 300px;
      align-items: center;
    }

    .book-cover {
      box-shadow: 0 20px 30px rgba(0,0,0,0.2);
      border: 2px solid #000;
      margin-top: 2em;
      margin-left: 2.3em;
      overflow: hidden;
      max-width: 225px;
      height: 367px;
      width: 225px;
      position: relative;
    }

    .book-cover img {
      display: block;
      width: 300px;
      text-align: left;
      height: auto;
      position: absolute;
      right: 0;
    }

    .content {
      flex: 2 1 600px;
    }

    h1 {
      font-family: 'Amatic SC', cursive;
      font-size: 4rem;
      margin: 0;
    }

    .subtitle {
      font-size: 1.2rem;
      font-style: italic;
      margin: 0.5rem 0 2rem 0;
    }

    .hand-drawn-box {
      position: relative;
      padding: 0 1.5rem;
      background: #fff;
      box-shadow: 5px 5px 0 #000;
      border: 2px solid black;
      border-radius: 8px;
    }

    .hand-drawn-box::before {
      content: '';
      position: absolute;
      top: -6px;
      left: -6px;
      right: -6px;
      bottom: -6px;
      border: 2px solid black;
      border-radius: 8px;
      z-index: -1;
      background: transparent;
      transform: rotate(-1.5deg);
    }

    .description {
      font-size: 1.2rem;
      line-height: 1.7;
      padding: 0 1.7em 1.7em;
      white-space: pre-line;
    }

    .sketch-button {
      display: inline-block;
      margin-top: 4rem;
      margin-left: 1.5rem;
    }

    .sketch-button svg {
      width: 260px;
      height: 60px;
      cursor: pointer;
    }

    .sketch-button text {
      font-family: 'Amatic SC', cursive;
      font-size: 22px;
      fill: #000;
    }

    .sketch-button a {
      text-decoration: none;
    }

    footer {
      text-align: center;
      font-size: 0.9rem;
      margin-top: 10rem;
      padding-top: 1rem;
      border-top: 1px solid black;
    }
    
    a, a:hover, a:link, a:visited {
      color: #888;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        align-items: center;
      }

      .book-cover-wrapper {
        max-width: 100%;
      }

      .content {
        flex: 1 1 100%;
      }
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="book-cover-wrapper">
      <div class="book-cover">
        <img src="loops-book-cover-cropped-site.jpg" alt="Loops book cover"/>
      </div>
      <div class="sketch-button">
        <a href="loops-by-clinton-david-skakun_compressed.pdf">
          <svg viewBox="0 0 260 60" xmlns="http://www.w3.org/2000/svg">
            <!-- Sketch-style button border -->
            <path d="M5 5 Q15 2, 30 5 T60 5 T90 5 T120 6 T150 4 T180 5 T210 7 T240 4 Q250 6, 255 5 Q258 10, 255 20 T250 40 T245 50 Q240 55, 230 56 T210 55 T180 54 T150 53 T120 54 T90 55 T60 54 T30 53 Q10 55, 5 50 Q2 40, 4 30 T3 20 Q2 10, 5 5"
              fill="none" stroke="black" stroke-width="2"/>

            <!-- Sketch-style arrow next to text -->
            <g transform="translate(75, 22)">
              <line x1="0" y1="0" x2="0" y2="20" stroke="black" stroke-width="2" stroke-linecap="round"/>
              <line x1="0" y1="20" x2="-8" y2="13" stroke="black" stroke-width="2" stroke-linecap="round"/>
              <line x1="0" y1="20" x2="8" y2="13" stroke="black" stroke-width="2" stroke-linecap="round"/>
            </g>

            <!-- Text aligned with arrow -->
            <text x="95" y="40" font-family="Amatic SC, cursive" font-size="20" text-anchor="start" fill="black">
              Read The Book
            </text>
          </svg>
        </a>
      </div>
    </div>
    <div class="content">
      <h1>Loops</h1>
      <p class="subtitle">
        By <a href="https://www.linkedin.com/in/clintonskakun" target="_blank">Clinton David Skakun</a>
      </p>
      <div class="hand-drawn-box">
        <p class="description">
Welcome to Loops!, a collection of philosophies refined
over two decades of coding across various languages
and frameworks. This isn't a textbook of strict rules;
it's a set of guidelines rooted in experience, focused on
productivity, maintainability, and solving real-world
problems. The core idea is simple: Software develop-
ment is complex, and our job isn't to eliminate com-
plexity but to manage it effectively.
        </p>
      </div>
    </div>
  </div>

  <footer>
  <div class="footer-box">
    <p><strong>Copyright © 2025 Clinton David Skakun</strong></p>

    <p style="max-width: 700px; margin: 0 auto;">
      All rights reserved. <br />
      No part of this publication may be reproduced, distributed, or transmitted in any form or by any means,
      including photocopying, recording, or other electronic or mechanical methods, without the prior written
      permission of the publisher or author, except in the case of brief quotations embodied in critical reviews
      and certain other noncommercial uses permitted by copyright law.
    </p>

    <p>
      For permission requests, write to the publisher at the address below: <br />
      <a href="/cdn-cgi/l/email-protection#b5d6d9dcdbc1dadbc6ded4dec0dbf5d2d8d4dcd99bd6dad8"><span class="__cf_email__" data-cfemail="50333c393e243f3e233b313b253e10373d31393c7e333f3d">[email&#160;protected]</span></a>
    </p>

    <p>
      <strong>Loops</strong> <br />
      Written by Clinton David Skakun
    </p>
  </div>
</footer>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script></body>
</html>