Skip to content

Commit 247d5d4

Browse files
committed
Search and typo fixes
1 parent 92ea213 commit 247d5d4

File tree

6 files changed

+72
-11
lines changed

6 files changed

+72
-11
lines changed

Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ gemspec
66
gem "github-pages", group: :jekyll_plugins
77

88
gem "jekyll-seo-tag"
9-
gem "jekyll-sitemap"
9+
gem "jekyll-sitemap"
10+
gem "webrick"

_includes/head-custom.html

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
11
<!-- start custom head snippets, customize with your own _includes/head-custom.html file -->
22
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
3-
3+
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
4+
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.4/css/jquery.dataTables.css">
5+
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.11.4/js/jquery.dataTables.js"></script>
46
<!-- Setup Google Analytics -->
7+
<script type="text/javascript">
58
{% include head-custom-google-analytics.html %}
6-
9+
$(document).ready( function () {
10+
$('#dodgetable').DataTable(
11+
{
12+
"pageLength": 25,
13+
"fixedHeader": true,
14+
"order": [[3, 'asc']]
15+
}
16+
);
17+
} );
18+
</script>
719
<!-- You can set your favicon here -->
820
{% if site.favicon %}
921
<link rel="shortcut icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}">
1022
{% endif %}
1123

12-
<!-- end custom head snippets -->
24+
<!-- end custom head snippets -->

_sass/jekyll-theme-minimalist.scss

+28
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,34 @@ body {
1010
font-weight:400;
1111
}
1212

13+
.dataTables_wrapper {
14+
background-color: #dcdcdc;
15+
border-radius: 25px;
16+
padding: 20px;
17+
}
18+
19+
.dataTables_filter {
20+
input {
21+
background-color: ghostwhite !important;
22+
margin: 5px;
23+
}
24+
}
25+
26+
tr {
27+
background-color: #2b2b2b !important;
28+
}
29+
30+
tbody {
31+
tr {
32+
td.sorting_1 {
33+
background-color: #333 !important;
34+
}
35+
td {
36+
color: #dcdcdc;
37+
}
38+
}
39+
}
40+
1341
h1, h2, h3, h4, h5, h6 {
1442
color: var(--clr-h1-and-bold);
1543
margin:0 0 20px;

dodges.md

+23-3
Large diffs are not rendered by default.

index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ e.g. standard 3 camp gank timings based on champ and side of the map.
99

1010
Let's explore some statistics to see how much is true and how much is severe Dunning-Krueger since S5 knowledge no longer applies.
1111

12-
*N.B. Stats are via Riot API data using last two seasons. These stats are up to date as of `1/26/2021`
12+
*N.B. Stats are via Riot API data using last two seasons. These stats are up to date as of `1/26/2022`
1313

1414
## Current Status: _Different Game?_
1515

16-
Currently that Cope-Index&trade; is at: `76.789%`
16+
Currently the Cope-Index&trade; is at: `76.789%`
1717
<input type='range' list='tickmarks' disabled value='76.789' /><datalist id='tickmarks'>
1818
<option value=0 label='Yes!' style='color:green;'></option>
1919
<option value=1 label='Probably' style='color:greenyellow;'></option>
@@ -35,7 +35,7 @@ A look at recency bias and which champs are actually bad on their team but good
3535
{name: 'twisted_fate', ally_wr: 0.2593, enemy_wr: 0.6207, delta: -0.3614},
3636
{name: 'ryze', ally_wr: 0.3529, enemy_wr: 0.7143, delta: -0.3613}
3737
]
38-
# Full dodge list (>20% delta, >10 games):
38+
# Full dodge list (<-20% delta, >10 games):
3939
['taric', 'alistar', 'rell', 'kennen', 'olaf', 'twisted_fate', 'ryze', 'kindred', 'zeri', 'master_yi', 'lissandra', 'vex', 'udyr', 'malzahar']
4040

4141
# Cope Dodges (>20% delta, >10 games):

loser.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Index:
1313

1414
#### Victim Blaming
1515

16-
```python
16+
```
1717
The loser in the queue is currently:
1818
YoRHa Destiny#NA1
1919

0 commit comments

Comments
 (0)