This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
| "basics": { | |
| "name": "Hardi K\u00f5vamees", | |
| "label": "UX Designer & Information Architect", | |
| "image": "", | |
| "email": "hardikovamees@gmail.com", | |
| "phone": "+372 505 1175", | |
| "url": "https://hardi.design/works", | |
| "summary": "Experienced UX Designer with 10+ years of expertise in turning complex, data-heavy content into intuitive, high-performing digital services. Skilled in leading the full design lifecycle, from user journey mapping to delivering robust design systems. Proud of work on Estonian public sector websites like politsei.ee, rara.ee, and arenguseire.ee.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs') | |
| const archiver = require('archiver') | |
| const MAX = 13 * 1024 // 13kb | |
| const output = fs.createWriteStream(`${__dirname}/dist/build.zip`) | |
| const archive = archiver('zip', { | |
| zlib: { level: 9 } // set compression to best | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| import MarkdownIt from 'markdown-it' | |
| import mdAttrs from 'markdown-it-attrs' | |
| import mdDecorate from 'markdown-it-decorate' | |
| import mdTaskLists from 'markdown-it-task-lists' | |
| import mdExpandTabs from 'markdown-it-expand-tabs' | |
| import mdAbbr from 'markdown-it-abbr' | |
| import mdSup from 'markdown-it-sup' | |
| import mdSub from 'markdown-it-sub' | |
| import mdMark from 'markdown-it-mark' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Pug; // https://github.com/pug-php/pug | |
| use Cockpit; | |
| require_once __DIR__.'/vendor/autoload.php'; // Composer | |
| require_once __DIR__.'/cockpit/bootstrap.php'; // https://github.com/COCOPi/cockpit | |
| chdir(dirname(__FILE__)); // Keep this directory if called directly or from Cockpit | |
| //setlocale(LC_TIME, 'et_EE', 'et', 'EE', 'ET', 'Estonia'); | |
| //define('DATE_FORMAT', "%e. %B %G"); |