Skip to content

Commit 01db56a

Browse files
committed
Merge branch 'main' into podcast
2 parents d3fd53e + 49ed074 commit 01db56a

File tree

192 files changed

+49988
-61
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+49988
-61
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# The directory Mix will write compiled artifacts to.
22
/_build/
33

4+
# Elixir LS
5+
.elixir_ls
6+
47
# If you run "mix test --cover", coverage assets end up here.
58
/cover/
69

assets/tailwind.config.js

+10-3
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,16 @@ module.exports = {
2323
"background-position": "right center",
2424
},
2525
},
26+
keyframes: {
27+
wiggle: {
28+
'0%, 100%': { transform: 'rotate(-3deg)' },
29+
'50%': { transform: 'rotate(3deg)' },
30+
}
31+
},
2632
"fade-in": {
2733
"0%": {
2834
opacity: "0",
29-
transform: "scale(1.2)",
35+
transform: "scale(1.1)",
3036
},
3137
"100%": {
3238
opacity: "1",
@@ -35,9 +41,10 @@ module.exports = {
3541
},
3642
},
3743
animation: {
38-
'spin-slow': 'spin 100s linear infinite',
44+
'spin-slow': 'spin 60s linear infinite',
3945
"gradient-x": "gradient-x 9s ease infinite",
40-
"fade-in": "fade-in ease 1s",
46+
"fade-in": "fade-in ease-in 0.5s",
47+
"wiggle": "wiggle 0.5s",
4148
},
4249
},
4350
},

lib/elixir_newbie/academy_content.ex

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
defmodule ElixirNewbie.AcademyContent do
2+
alias ElixirNewbie.AcademyContent.Lesson
3+
4+
use NimblePublisher,
5+
build: Lesson,
6+
from: Application.app_dir(:elixir_newbie, "priv/academy_content/*.md"),
7+
as: :lessons,
8+
highlighters: [:makeup_elixir]
9+
10+
# And finally export them
11+
def all_lessons, do: @lessons
12+
end

lib/elixir_newbie/blog/post.ex lib/elixir_newbie/academy_content/lesson.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
defmodule ElixirNewbie.Blog.Post do
1+
defmodule ElixirNewbie.AcademyContent.Lesson do
22
@enforce_keys [:id, :title, :body]
33
defstruct [:id, :title, :body]
44

lib/elixir_newbie/blog/blog.ex

-12
This file was deleted.

lib/elixir_newbie_web/live/home_live.ex

+14-21
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ defmodule ElixirNewbieWeb.HomeLive do
99
~H"""
1010
<section class="flex h-fit w-full flex-col gap-12 4k:gap-36 lg:flex-row xl:gap-24">
1111
<article class="grid h-fit w-full grid-cols-6 grid-rows-6">
12-
<article class="aspect-square relative col-start-1 col-end-6 row-start-1 row-end-6 rounded-full border-t-4 border-l-4 border-white">
12+
<article class="aspect-square relative col-start-1 col-end-6 row-start-1 row-end-6 rounded-full">
13+
<div class="absolute h-full w-full rounded-full border-t-4 border-l-4 border-white"/>
1314
<img
1415
class="rounded-full"
1516
alt="home page icon of a wizard"
@@ -18,42 +19,34 @@ defmodule ElixirNewbieWeb.HomeLive do
1819
</article>
1920
<.link
2021
href="https://twitter.com/BrooklinJMyers"
21-
class="row-start-3 col-start-5 relative left-1/2 bottom-1/3 group animate-fade-in"
22+
class="row-start-3 col-start-5 relative left-1/2 bottom-1/3 group"
2223
>
23-
<div class="transition duration-300 ease-in-out group-hover:scale-110">
24-
<div class="animate-spin-slow absolute h-full w-full rounded-full border-l-2 border-cyan-600"/>
25-
<img alt="Twitter Icon Button" class="rounded-full border-2" src="images/twitter_icon_reduced.webp"/>
26-
</div>
24+
<div class="animate-fade-in absolute h-full w-full rounded-full border-4 border-dotted transition duration-300 ease-in-out group-hover:scale-110"/>
25+
<img alt="Twitter Icon Button" class="rounded-full p-1" src="images/twitter_icon_reduced.webp"/>
2726
<p class="absolute -bottom-6 w-full text-center text-sm text-white">Twitter</p>
2827
</.link>
2928
<.link
3029
href="https://github.com/BrooklinJazz"
31-
class="relative col-start-5 relative left-1/3 sm:left-1/4 row-start-4 group animate-fade-in"
30+
class="relative col-start-5 relative left-1/3 sm:left-1/4 row-start-4 group"
3231
>
33-
<div class="transition duration-300 ease-in-out group-hover:scale-110">
34-
<div class="animate-spin-slow absolute h-full w-full rounded-full border-l-2 border-green-600"/>
35-
<img alt="GitHub Icon Button" class="rounded-full border-2" src="images/github_icon_reduced.webp"/>
36-
</div>
32+
<div class="animate-fade-in absolute h-full w-full rounded-full border-4 border-dotted transition duration-300 ease-in-out group-hover:scale-110"/>
33+
<img alt="GitHub Icon Button" class="rounded-full p-1" src="images/github_icon_reduced.webp"/>
3734
<p class="absolute -bottom-6 w-full text-center text-sm text-white">GitHub</p>
3835
</.link>
3936
<.link
4037
href="https://www.linkedin.com/in/brooklinmyers/"
41-
class="row-start-5 col-start-4 relative left-1/2 group animate-fade-in"
38+
class="row-start-5 col-start-4 relative left-1/2 group"
4239
>
43-
<div class="transition duration-300 ease-in-out group-hover:scale-110">
44-
<div class="animate-spin-slow absolute h-full w-full rounded-full border-l-2 border-blue-600"/>
45-
<img alt="Linkedin Icon Button" class="rounded-full border-2" src="images/linkedin_icon_reduced.webp"/>
46-
</div>
40+
<div class="animate-fade-in absolute h-full w-full rounded-full border-4 border-dotted transition duration-300 ease-in-out group-hover:scale-110"/>
41+
<img alt="Linkedin Icon Button" class="rounded-full p-1" src="images/linkedin_icon_reduced.webp"/>
4742
<p class="absolute -bottom-6 w-full text-center text-sm text-white">Linkedin</p>
4843
</.link>
4944
<.link
5045
href="https://github.com/DockYard-Academy/beta_curriculum"
51-
class="row-start-5 col-start-3 relative left-1/4 top-1/2 group animate-fade-in"
46+
class="row-start-5 col-start-3 relative left-1/4 top-1/2 group"
5247
>
53-
<div class="transition duration-300 ease-in-out group-hover:scale-110">
54-
<div class="animate-spin-slow absolute h-full w-full rounded-full border-l-2 border-black"/>
55-
<img alt="DockYard Academy Icon Button" class="rounded-full border-2" src="images/dockyard_academy_icon_reduced.webp"/>
56-
</div>
48+
<div class="animate-fade-in absolute h-full w-full rounded-full border-4 border-dotted transition duration-300 ease-in-out group-hover:scale-110"/>
49+
<img alt="DockYard Academy Icon Button" class="rounded-full p-1" src="images/dockyard_academy_icon_reduced.webp"/>
5750
<p class="absolute -bottom-12 w-full text-center text-sm text-white">DockYard Academy</p>
5851
</.link>
5952
</article>

lib/elixir_newbie_web/live/resources_live.ex

+8-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,19 @@ defmodule ElixirNewbieWeb.ResourcesLive do
55
~H"""
66
<section class="text-white">
77
<p>Resources</p>
8-
<%= for post <- @posts do %>
9-
<%= raw post.body %>
8+
<ul>
9+
<%= for lesson <- @lessons do %>
10+
<li>
11+
<%= lesson.title %>
12+
</li>
1013
<% end %>
14+
</ul>
1115
</section>
1216
"""
1317
end
1418

1519
def mount(_params, _session, socket) do
16-
{:ok, assign(socket, posts: ElixirNewbie.Blog.all_posts())}
20+
lessons = ElixirNewbie.AcademyContent.all_lessons()
21+
{:ok, assign(socket, lessons: lessons)}
1722
end
1823
end

lib/mix/tasks/sync.ex

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
defmodule Mix.Tasks.Sync do
2+
@moduledoc "Sync DockYard Academy Content With Nimble Publisher"
3+
use Mix.Task
4+
5+
@shortdoc @moduledoc
6+
def run(_) do
7+
Mix.Task.run("app.start")
8+
url = "https://raw.githubusercontent.com/DockYard-Academy/beta_curriculum/main/start.livemd"
9+
10+
{:ok, %HTTPoison.Response{body: body}} = HTTPoison.get(url)
11+
12+
Regex.scan(~r/\* \[([^\]]+)\]\(([^\)]+)\)/, body)
13+
|> Enum.each(fn [_full_match, title, file_name] ->
14+
page_url =
15+
"https://raw.githubusercontent.com/DockYard-Academy/beta_curriculum/main/#{file_name}"
16+
17+
{:ok, %HTTPoison.Response{body: markdown}} = HTTPoison.get(page_url)
18+
19+
File.write!("./priv/academy_content/#{Path.rootname(Path.basename(file_name))}.md", """
20+
%{
21+
title: "#{title}"
22+
}
23+
---
24+
#{markdown}
25+
""")
26+
end)
27+
end
28+
end

0 commit comments

Comments
 (0)