Skip to content

Commit 5ad3f26

Browse files
committed
version 2.0
1 parent a5e3f5f commit 5ad3f26

File tree

154 files changed

+50382
-143
lines changed

Some content is hidden

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

154 files changed

+50382
-143
lines changed

.dir-locals.el

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
(("content-org/"
2+
. ((org-mode . ((eval . (org-hugo-auto-export-mode)))))))

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
public/
22
.#*
3+
static/ltximg/
4+
content-org/posts/ltximg/
5+
content-org/studies/ltximg/

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: python
22

33
install:
4-
- wget https://github.com/gohugoio/hugo/releases/download/v0.48/hugo_0.48_Linux-64bit.deb
4+
- wget https://github.com/gohugoio/hugo/releases/download/v0.92.0/hugo_0.92.0_Linux-64bit.deb
55
- sudo dpkg -i hugo*.deb
66
- pip install Pygments
77

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2014 Steve Francia
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.

README.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

README.org

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#+Title: STRM.sh blog
2+
3+
This repository contains the source code of the website https://strm.sh
4+
5+
Feel free to contribute, this is open source and an open community. Check out
6+
discussions on this project for a place to exchange ideas about the topics
7+
discussed.
8+
9+
* Stack
10+
11+
- Hugo
12+
- Emacs
13+
- Org-Mode, ox-hugo
14+
- Python, Poetry
15+
- Theme based on risotto theme.
16+
17+
* How to contribute ?
18+
19+
The written content is stored inside =content-org=, is written in =Org-Mode= and can
20+
be easily extended. For working on this project is recommended the usage of
21+
=Spacemacs= or =Doom Emacs=.
22+
23+
For contributing with bibliography, the =bib= files are on the root of this project.
24+
25+
For contributions related to files, malware samples or others, check the =static=
26+
folder where they should be properly added.

config.toml

Lines changed: 0 additions & 16 deletions
This file was deleted.

config.yml

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
baseURL: 'https://strm.sh'
2+
theme: strm
3+
title: STRM
4+
author: OPSXCQ
5+
copyright: STRM
6+
paginate: 3
7+
languageCode: en
8+
DefaultContentLanguage: en
9+
enableInlineShortcodes: true
10+
ignoreErrors:
11+
- error-remote-getjson
12+
sectionPagesMenu: main
13+
params:
14+
math: true
15+
theme:
16+
palette: strm-dark
17+
mode: dark-mode
18+
about:
19+
title: '## STRM ##'
20+
description: |
21+
A pro-freedom hacktivist thinktank.
22+
23+
socialLinks:
24+
- icon: fab fa-github
25+
title: GitHub
26+
url: 'https://github.com/opsxcq/blog'
27+
- icon: fas fa-envelope
28+
title: Email
29+
url: 'mailto:[email protected]'
30+
- icon: fab fa-keybase
31+
title: Keybase OPSXCQ
32+
url: 'https://keybase.io/terminator'
33+
- icon: fas fa-users
34+
title: Keybase Crypto
35+
url: 'https://keybase.io/team/cryptoanarquismo'
36+
- icon: fas fa-users
37+
title: Keybase Deep Web
38+
url: 'https://keybase.io/team/deepweb'
39+
- icon: fas fa-users
40+
title: Forum
41+
url: 'https://github.com/opsxcq/blog/discussions/3'
42+
comments:
43+
utterances:
44+
repo: opsxcq/blog
45+
issue_term: title
46+
label: comment
47+
theme: dark-blue
48+
49+
menu:
50+
external:
51+
- name: Forum
52+
url: "https://github.com/opsxcq/blog/discussions/3"
53+
main:
54+
- identifier: studies
55+
name: Studies
56+
url: /studies/
57+
weight: 100
58+
- identifier: posts
59+
name: Posts
60+
url: /posts/
61+
weight: 10
62+
- identifier: projects
63+
name: Projects
64+
url: /projects/
65+
weight: 20
66+
- identifier: malware-samples
67+
name: Malware
68+
url: /malware-samples/
69+
weight: 40
70+
taxonomies:
71+
studies: studies
72+
projects: projects
73+
post: posts
74+
category: categories
75+
tag: tags
76+
series: series
77+
markup:
78+
goldmark:
79+
renderer:
80+
unsafe: true
81+
privacy:
82+
vimeo:
83+
disabled: false
84+
simple: true
85+
twitter:
86+
disabled: false
87+
enableDNT: true
88+
simple: true
89+
instagram:
90+
disabled: false
91+
simple: true
92+
youtube:
93+
disabled: false
94+
privacyEnhanced: true
95+
services:
96+
instagram:
97+
disableInlineCSS: true
98+
twitter:
99+
disableInlineCSS: true

content-org/_index.org

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#+title: Main Page
2+
#+author: OPSXCQ
3+
#+date: 2017-07-20
4+
#+hugo_base_dir: ../
5+
#+hugo_front_matter_format: yaml
6+
#+hugo_section:
7+
#+hugo_categories:
8+
#+HUGO_CODE_FENCE: nil
9+
#+HUGO_PAIRED_SHORTCODES: tweet
10+
11+
12+
ACTUAL MAIN

0 commit comments

Comments
 (0)