-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.html
77 lines (69 loc) · 2.24 KB
/
notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<RDOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Notes</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='assets/css/main.css'>
<link rel='stylesheet' type='text/css' media='screen' href='assets/css/notes.css'>
<link rel='stylesheet' type='text/css' media='screen' href='assets/css/header_footer.css'>
</head>
<body>
<div class="background">
<header>
<ul>
<li class="header"><a href="https://aavalam.org/" target="_blank">Aavalam Home</a></li>
<li class="header">|</li>
<li class="header"><a href="./index.html">Kelly's Aavalam Space</a></li>
</ul>
<hr>
<br>
</header>
<article class="notes">
<summary><h2>Test feed using `entr`</h2></summary>
<p>When you save a ruby file in that directory, the test refreshes and re-runs.</p>
<ul>
<li><h3>Ruby: Minitest</h3></li>
<li>
<code>
ls *.rb | entr ruby *_test.rb
</code>
</li>
<li><h3>Ruby: RSpec</h3></li>
<li>
<code>
ls lib/*.rb | entr rspec spec/*
</code>
</li>
</ul>
<ul>
<li><h3>Elixir: Mix</h3></li>
<li>
<code>
ls *exs | entr mix test
</code>
</li>
<li><h3>JavaScript: Yarn</h3></li>
<li>
<code>
ls *.js | entr yarn test
</code>
</li>
</ul>
</article>
<footer>
<hr>
<br>
<ul>
<li class="footer"><a href="https://kellyky.github.io/resume/resume.html" target="_blank">Resume (draft)</a></li>
<li class="footer"><a href="https://github.com/kellyky" target="_blank">GitHub</a></li>
<li class="footer"><a href="https://medium.com/@kelpopko" target="_blank">Medium</a></li>
<li class="footer"><a href="https://exercism.org/profiles/kellyky" target="_blank">Exercism</a></li>
<li class="footer"><a href="https://www.codewars.com/users/kellyky" target="_blank">CodeWars</a></li>
<li class="footer"><a href="https://www.linkedin.com/in/kelly-popko/" target="_blank">LinkedIn</a></li>
</ul>
</footer>
</div>
</body>
</html>