Skip to content

Commit ca3b28a

Browse files
committed
Blog updated to latest versione chirpy 6.4.2 (part 2)
1 parent c8fd6b0 commit ca3b28a

File tree

142 files changed

+4343
-3
lines changed

Some content is hidden

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

142 files changed

+4343
-3
lines changed

_tabs/about me.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ img_path: /images/about
99
[![eMAPT](eMAPT.png){: .shadow .normal width="60" height="60" }](https://verified.elearnsecurity.com/certificates/b6fb6013-fe8e-461f-be8a-3b3dd6df024d)
1010
[![eJPT](eJPT.png){: .shadow .normal width="60" height="60" }](https://verified.elearnsecurity.com/certificates/0dc0d891-394a-44fb-9180-ffc3829fa123)
1111

12-
[![HackTheBox](https://www.hackthebox.com/badge/image/73653){: .shadow .right}](https://app.hackthebox.com/profile/73653)
1312

13+
Yo! 👋 Here Paolo, security folk from Italy trying to keep this blog interesting!
1414

15-
My name is Paolo Serra, a pentester currently focused on Application security most of the time. I often deal with Web and Mobile Security, but I also adore Machine Learning: it blows me away, and that's why automating tasks, getting them done and creating AIs are my best-loved things to do when I have time to lose. I like creating and playing CTFs, analyzing tools and reading other people's blogs.
15+
##### 🦠 Pentester & Offensive Security Specialist
1616

17-
I don't want to write blog posts similar to those tons of articles out there, but something more exotic, uncommon, helpful and interesting. Hope you enjoy the reading!
17+
##### 🌐 Dev for things that I want to dev

assets/lib/.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
# 2 space indentation
6+
indent_style = space
7+
indent_size = 2
8+
trim_trailing_whitespace = true
9+
# Unix-style newlines with a newline ending every file
10+
end_of_line = lf
11+
insert_final_newline = true

assets/lib/.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
versioning-strategy: increase
6+
groups:
7+
npm:
8+
dependency-type: "production"
9+
schedule:
10+
interval: "monthly"

assets/lib/.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# hidden files
2+
.*
3+
!.git*
4+
!.editorconfig
5+
6+
# NPM
7+
node_modules
8+
package-lock.json

assets/lib/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2022 Cotes Chung
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

assets/lib/README.md

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Static Assets for Chirpy Jekyll Theme
2+
3+
## Introduction
4+
5+
Static assets (libraries/plugins/web-fonts) required by the [_Chirpy_][chirpy] based website to run. It provides the opportunity to choose self-host assets in production or development mode.
6+
7+
## Usage
8+
9+
- If you want to use these assets only in local development:
10+
11+
Go to the root of your site and clone the assets as follows:
12+
13+
```console
14+
$ git submodule init
15+
$ git submodule update
16+
```
17+
18+
And then set your site configuration options:
19+
20+
```yml
21+
# _config.yml
22+
assets:
23+
self_host:
24+
enabled: true
25+
env: development
26+
```
27+
28+
- If you expect the assets to be self-hosted when your website is published:
29+
30+
Keep the `_config.yml` options as follows:
31+
32+
```yml
33+
# _config.yml
34+
assets:
35+
self_host:
36+
enabled: true
37+
```
38+
39+
And then update the GitHub Actions workflow in `.github/workflows/pages-deploy.yml`:
40+
41+
```diff
42+
steps:
43+
- name: Checkout
44+
uses: actions/checkout@v2
45+
with:
46+
+ submodules: true
47+
```
48+
49+
## Versions
50+
51+
| Dependency | Version |
52+
| :------------------------------------------------------- | --------: |
53+
| [Bootstrap][bootstrap] | `5.3.2` |
54+
| [Clipboard][clipboard] | `2.0.11` |
55+
| [Day.js][dayjs] | `1.11.10` |
56+
| [Font Awesome Free][fontawesome] | `6.5.1` |
57+
| [jQuery][jquery] | `3.7.1` |
58+
| [Loading-attribute-polyfill][loading-attribute-polyfill] | `2.1.1` |
59+
| [Magnific Popup][magnific-popup] | `1.1.0` |
60+
| [Mermaid][mermaid] | `10.6.1` |
61+
| [Simple-Jekyll-Search][simple-jekyll-search] | `1.10.0` |
62+
| [Tocbot][tocbot] | `4.25.0` |
63+
64+
[chirpy]: https://github.com/cotes2020/jekyll-theme-chirpy
65+
66+
<!-- deps -->
67+
68+
[bootstrap]: https://www.jsdelivr.com/package/npm/bootstrap
69+
[clipboard]: https://www.jsdelivr.com/package/npm/clipboard
70+
[dayjs]: https://www.jsdelivr.com/package/npm/dayjs
71+
[fontawesome]: https://fontawesome.com/download
72+
[jquery]: https://www.jsdelivr.com/package/npm/jquery
73+
[loading-attribute-polyfill]: https://www.jsdelivr.com/package/npm/loading-attribute-polyfill
74+
[magnific-popup]: https://www.jsdelivr.com/package/npm/magnific-popup
75+
[mermaid]: https://www.jsdelivr.com/package/npm/mermaid
76+
[simple-jekyll-search]: https://www.jsdelivr.com/package/npm/simple-jekyll-search
77+
[tocbot]: https://www.jsdelivr.com/package/npm/tocbot

assets/lib/bootstrap/bootstrap.bundle.min.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/lib/bootstrap/bootstrap.bundle.min.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/lib/bootstrap/bootstrap.min.css

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/lib/bootstrap/bootstrap.min.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/lib/clipboard/clipboard.min.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)