Skip to content

Commit

Permalink
add github & email
Browse files Browse the repository at this point in the history
  • Loading branch information
azuline committed Jun 12, 2024
1 parent b194153 commit daea45a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion scripts/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
exit(1)
os.chdir(p)

PORT = 8080
PORT = 27771
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print(f"Serving build on http://localhost:{PORT}")
Expand Down
9 changes: 6 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/svg+xml" href="/icons/logo.svg" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="/assets/css/global.css" />
<link rel="stylesheet" type="text/css" href="/assets/css/index.css" />
<title>sunsetglow</title>
<title>sunset glow</title>
</head>
<body>
<div class="flex flex-col gap-2 p-4">
<div>sunset glow / under construction</div>
<div>sunset glow / under construction :)</div>
<div>
<a href="mailto:[email protected]">[email protected]</a> /
<a href="https://github.com/azuline">azuline@github</a>
</div>
<div>posts:</div>
<div><a href="/posts/frontend-build-systems.html">Exposition of Frontend Build Systems</a></div>
</div>
Expand Down
10 changes: 5 additions & 5 deletions src/posts/frontend-build-systems.tex
Original file line number Diff line number Diff line change
Expand Up @@ -241,15 +241,15 @@ \subsection{Meta-Frameworks}

Meta-frameworks provide a curated set of already selected packages, including build tools, that
synergize and enable specialized application paradigms. For example,
\href{https://nextjs.org}{\tb{Next.JS}} specializes in Server-Side Rendering (SSR) and
\href{https://remix.run}{\tb{Remix}} specializes in progressive enhancement.
\href{https://nextjs.org}{\textbf{Next.JS}} specializes in Server-Side Rendering (SSR) and
\href{https://remix.run}{\textbf{Remix}} specializes in progressive enhancement.

Meta-frameworks typically provide a preconfigured build system, removing the need for you to stitch
one together. Their build systems have configurations for both production and development servers.

Like meta-frameworks, build tools like \href{https://vitejs.dev/}{\tb{Vite}} provide preconfigured
build systems for both production and development. Unlike meta-frameworks, they do not force a
specialized application paradigm. They are suitable for generic frontend applications.
Like meta-frameworks, build tools like \href{https://vitejs.dev/}{\textbf{Vite}} provide
preconfigured build systems for both production and development. Unlike meta-frameworks, they do not
force a specialized application paradigm. They are suitable for generic frontend applications.

\subsection{Sourcemaps}

Expand Down
1 change: 0 additions & 1 deletion src/posts/template.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/svg+xml" href="/icons/logo.svg" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="/assets/css/global.css" />
<link rel="stylesheet" type="text/css" href="/assets/css/post.css" />
Expand Down

0 comments on commit daea45a

Please sign in to comment.