Compare commits

...

6 Commits

@ -10,6 +10,8 @@ a
a.print:after
content: " (" attr(href) ") "
font-size: 50%
.noprint
display: none
.synopsis
.desc > p

@ -1,17 +1,17 @@
$bg: #444444
$mg: #222222
$fg: #C8C8C8
$fg: #B4B4B4
$dim: #A4A4A4
$bright: #D8D8D8
$dimmer: #888888
$brighter: #FBFBFB
$dim: #8A8A8A
$bright: #C8C8C8
$dimmer: #767676
$brighter: #DADADA
$accent1: #98e2ff
$accent2: #ffe655
$accent3: #82cdff
$accent4: #69f07b
$accent1: #71c9ec
$accent2: #f8d34a
$accent3: #4cc17f
$accent4: #d77942
body
background-color: $bg
@ -44,7 +44,7 @@ header, footer
.main
b
color: $accent4
color: $accent3
em
color: $accent1
h1
@ -53,13 +53,13 @@ header, footer
em
color: $accent1
.options b
color: $accent4
color: $accent3
.synopsis
.desc > p > b
color: $accent4
color: $accent3
.history
.job
color: $accent4
color: $accent3
.target a, a.target
text-decoration: none

@ -8,4 +8,5 @@ section.copyright
| Created with #[+ext_a('https://pugjs.org', 'pug')]
| and #[+ext_a('https://sass-lang.com', 'sass')].
| Built with #[+ext_a('https://parceljs.org', 'parcel')].
| Pronunciation generated by #[+ext_a('https://ipa-reader.xyz', 'ipa-reader')].
|
span.noprint Pronunciation generated by #[+ext_a('https://ipa-reader.xyz', 'ipa-reader')].

@ -3,7 +3,7 @@ section.history
.desc
// p My professional employment summary with notable duties is listed below.
ul
li #[b.job DevOps Consultant] - #[em.org contract] #[span.period 2021-....]
li #[b.job DevOps Consultant] - #[em.org contractual] #[span.period 2022-....]
ul
li adapting classic workloads to serverless architecture
li implementing modern logging and tracing solutions

@ -6,7 +6,7 @@ section.seealso
|(7),
|
a(href="https://github.com/bdeshi" target="_blank" rel="external nofollow noopener noreferrer").print: b github
|(1)
|(4)
//-
|
|

@ -1,21 +1,31 @@
-
var first_name = '<fn>',
last_name = '<ln>',
site_url = 'http://localhost',
description = '<description>',
meta_description = "<meta-description>"
var section = 7,
section_name = 'Miscellaneous Information Manual',
name = first_name.toLowerCase() + '_' + last_name.toLowerCase()
var first_name = 'Sammay',
last_name = 'Sarkar',
name = first_name.toLowerCase() + '_' + last_name.toLowerCase(),
site_url = 'https://sammay.sarkar.website',
description = 'server magician',
meta_description = "a self-taught tech professional with a strong background in system administration and general programming, with proven hands-on experience in modern DevOps, cloud, and IaC work areas."
var section = 8,
section_name = 'System Administration Manuals'
var version = require('child_process').execSync('git rev-parse HEAD').toString().trim(),
short_version = version.substring(0, 7),
date = (new Date()).toDateString(),
date = (new Date()).toDateString()
year = (new Date()).getFullYear()
var contacts = {
'email': '<a href="mailto:<mail>"><mail></a>',
'pubkey': '<a href="assets/pubkey.asc">0x<fingerprint></a>',
'linkedin': '<a href="https://www.linkedin.com/in/<name>/"><name></a>',
'cell': '<span id="phone"><a href="tel:<phone>"><phone></a> <span id="phone-hint">/* please consider texting first? */</span></span>',
'email': '<a href="mailto:sammay@sarkar.website">sammay@sarkar.website</a>',
'pubkey': '<a href="assets/pubkey.asc">0x2F66DAA6F22F092C</a>',
'linkedin': '<a href="https://www.linkedin.com/in/sammay-sarkar/">sammay-sarkar</a>',
'cell': '<span id="phone"><a href="tel:+8801622085295">+8801622085295</a> <span id="phone-hint">/* please consider texting first? */</span></span>',
}
var source_link = 'https://<host>/<user>/<repo>/commit/' + version
include vars.local.pug
var links = {
'blog': '<a href="https://bdeshi.space">bdeshi.space</a>',
'showcase': '<a href="/portfolio">/portfolio</a>',
'github': '<a href="https://github.com/bdeshi">github.com/bdeshi</a>',
// 'fediverse': '<a href="https://mastodon.social/@bdeshi">@bdeshi</a>',
'telegram': '<a href="https://t.me/bdeshi">bdeshi</a>',
'irc': 'bdeshi at libera.chat'
}
var monospace_font_css = "https://fonts.googleapis.com/css2?"
+ "family=IBM+Plex+Mono:ital,wght@0,400;0,700;1,400;1,700"
+ "display=swap"
var source_link = 'https://git.bdeshi.space/bdeshi/resume-manpage/commit/' + version

Loading…
Cancel
Save