Improve theme README & exampleSite (#157)
* Improve theme README * Update exampleSite * Add "Available Translation" section in README
13
.github/workflows/md-link-checker.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: Check Markdown links
|
||||
|
||||
# Run action on pull request event
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
markdown-link-check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# checkout to latest commit
|
||||
- uses: actions/checkout@master
|
||||
# run markdown linter
|
||||
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
200
README.md
|
@ -4,57 +4,82 @@
|
|||
|
||||
A [Hugo](https://gohugo.io/) theme for a personal portfolio with minimalist design and responsiveness.
|
||||
|
||||

|
||||

|
||||
|
||||
Example Site: [hugo-toha.github.io](https://hugo-toha.github.io)
|
||||
Documentation: [toha-guides.netlify.app](https://toha-guides.netlify.app/posts)
|
||||
- **Example Site:** [hugo-toha.github.io](https://hugo-toha.github.io)
|
||||
- **Documentation:** [toha-guides.netlify.app](https://toha-guides.netlify.app/posts)
|
||||
|
||||
## Features
|
||||
|
||||
- Minimalist Design
|
||||
- Fully Responsive
|
||||
- Carefully designed cards
|
||||
- Great Experience timeline
|
||||
- Achievement gallery
|
||||
- Sidebar to categorize posts
|
||||
- Multiple Language Support
|
||||
- Carefully Designed Cards
|
||||
- Experience Timeline
|
||||
- Achievement Gallery
|
||||
- Sidebar to Categorize the Posts
|
||||
- Short Codes
|
||||
- Google Analytics Support
|
||||
- Disqus Comment Support
|
||||
|
||||
For more details about the features please visit [here](https://toha-guides.netlify.app/posts/features/).
|
||||
|
||||
## Available Translations
|
||||
|
||||
- English
|
||||
- বাংলা
|
||||
- Français
|
||||
- Indonesian
|
||||
- Deutsch
|
||||
- Spanish
|
||||
|
||||
To know more about how to translate your site, please visit [here](https://toha-guides.netlify.app/posts/translation/). Follow, the data and post format from this [example site](https://hugo-toha.github.io).
|
||||
|
||||
## Screenshots
|
||||
|
||||
Here, are few screenshot from the [example site](https://hugo-toha.github.io).
|
||||
|
||||
##### Home Page Sections
|
||||
|
||||

|
||||
|
||||
##### List Page
|
||||
|
||||

|
||||
|
||||
##### Reading Page
|
||||
|
||||

|
||||
|
||||
## Requirements
|
||||
|
||||
- Hugo Version 0.68.0 or higher
|
||||
|
||||
## Installation
|
||||
## Usage
|
||||
|
||||
- Create your site if you haven't already
|
||||
In order to use this theme, follow the following steps:
|
||||
|
||||
#### Add theme as git submodule
|
||||
|
||||
At first, add [Toha](https://github.com/hugo-toha/toha) theme as git submodule to your hugo-site.
|
||||
|
||||
```console
|
||||
hugo new site my-site -f=yaml
|
||||
cd my-site
|
||||
git init
|
||||
```
|
||||
|
||||
- Add the theme as git sub-module
|
||||
|
||||
```console
|
||||
git submodule add https://github.com/hugo-toha/toha.git themes/toha
|
||||
$ git submodule add https://github.com/hugo-toha/toha.git themes/toha
|
||||
```
|
||||
|
||||
>Don't use SSH URL of the theme during adding as git sub-module. Also, don't clone the theme in your `themes` directory using `git clone`. They don't work well with Github Action or Netlify.
|
||||
|
||||
If you want to customize the theme templates, then fork it and use the fork as your theme.
|
||||
If you don't already have a hugo site, create one by following the step by step guide from [here](https://toha-guides.netlify.app/posts/getting-started/prepare-site/).
|
||||
|
||||
## Configuration
|
||||
#### Configuring Site
|
||||
|
||||
Configure your `config.yaml` file of your site as below:
|
||||
Now, configure your site to use `toha` theme by adding the following configuration in `config.yaml` file of your site.
|
||||
|
||||
```yaml
|
||||
baseURL: http://example.org/
|
||||
baseURL: https://hugo-toha.github.io
|
||||
|
||||
languageCode: en-us
|
||||
title: "Toha"
|
||||
title: "John's Blog"
|
||||
theme: "toha"
|
||||
|
||||
# Manage languages
|
||||
|
@ -63,52 +88,23 @@ languages:
|
|||
en:
|
||||
languageName: English
|
||||
weight: 1
|
||||
fr:
|
||||
languageName: Français
|
||||
weight: 2
|
||||
bn:
|
||||
languageName: বাংলা
|
||||
weight: 3
|
||||
|
||||
# Force a locale to be use, really useful to develop the application ! Should be commented in production, the "weight" should rocks.
|
||||
# DefaultContentLanguage: fr
|
||||
|
||||
# Allow raw html in markdown file
|
||||
# Control TOC depth
|
||||
markup:
|
||||
goldmark:
|
||||
renderer:
|
||||
unsafe: true
|
||||
tableOfContents:
|
||||
startLevel: 2
|
||||
endLevel: 6
|
||||
ordered: false
|
||||
|
||||
# Enable Google Analytics
|
||||
googleAnalytics: UA-XXXXXXXXX-X
|
||||
|
||||
# Enable Disqus forum
|
||||
disqusShortname: does-not-exist
|
||||
|
||||
# Enable global emoji support
|
||||
enableEmoji: true
|
||||
|
||||
# Custom parameters
|
||||
# Site parameters
|
||||
params:
|
||||
# background image of the landing page
|
||||
background: "images/background.jpg"
|
||||
|
||||
# Provide logos for your site. The inverted logo will be used in the initial
|
||||
# transparent navbar and the main logo will be used in the non-transparent navbar.
|
||||
# It will be default to the theme logos if not provided.
|
||||
logo:
|
||||
main: /assets/images/main-logo.png
|
||||
inverted: /assets/images/inverted-logo.png
|
||||
favicon: /assets/images/favicon.png
|
||||
|
||||
# GitHub repo URL of your site
|
||||
gitRepo: https://github.com/hugo-toha/toha-example-site
|
||||
gitRepo: https://github.com/hugo-toha/hugo-toha.github.io
|
||||
|
||||
# specify whether you want to write blog post or not
|
||||
# specify whether you want to write some blog posts or not
|
||||
enableBlogPost: true
|
||||
|
||||
# specify whether you want to show Table of Contents in reading page
|
||||
|
@ -120,31 +116,26 @@ params:
|
|||
enable: true
|
||||
```
|
||||
|
||||
You can just copy the content for `config.yaml` files from `theme/toha/exampleSite/config.yaml`.
|
||||
Don't forget to update `title`, `baseURL`, and `gitRepo` fields with your own information. To know about more available configuration options, please visit [here](https://toha-guides.netlify.app/posts/configuration/site-parameters/).
|
||||
|
||||
If you want to customize the any of the CSS styles on your site, create a
|
||||
`static/assets/css/style.css` file and add any custom CSS there.
|
||||
#### Running Locally
|
||||
|
||||
## Usage
|
||||
|
||||
Run your hugo site with this theme.
|
||||
Now, you can run your hugo site with `toha` theme locally with the following command:
|
||||
|
||||
```console
|
||||
hugo server -w
|
||||
$ hugo server -t toha -w
|
||||
```
|
||||
|
||||
When you first run your site, it will start with the default parameters. It should look similar to the [example site](https://toha.netlify.app) except it will not have any sections in the homepage. Those sections are added via some data files.
|
||||
|
||||
You can configure your site by following the step by step guides from [here](https://toha.netlify.app/posts/configuration/).
|
||||
When you run your site for first time, it will start with the default parameters. It should look similar to the [example site](https://hugo-toha.github.io). However, it will not have any sections in the homepage as we haven't configured them yet. You can configure your site by following the guides from [here](https://toha-guides.netlify.app/posts/configuration/).
|
||||
|
||||
## Shortcodes
|
||||
|
||||
Here, are some handy shortcodes you can use with this theme.
|
||||
|
||||
- [img](https://toha.netlify.app/posts/short-codes/img/)
|
||||
- [split](https://toha.netlify.app/posts/short-codes/split/)
|
||||
- [vs](https://toha.netlify.app/posts/short-codes/vs/)
|
||||
- [alert](https://toha.netlify.app/posts/short-codes/alert/)
|
||||
- [Alert](https://toha-guides.netlify.app/posts/short-codes/alert/)
|
||||
- [Image](https://toha-guides.netlify.app/posts/short-codes/img/)
|
||||
- [Split](https://toha-guides.netlify.app/posts/short-codes/split/)
|
||||
- [Vertical Space](https://toha-guides.netlify.app/posts/short-codes/vs/)
|
||||
|
||||
## Project Roadmap
|
||||
|
||||
|
@ -188,6 +179,14 @@ Here, are the current plan and progress of various components of this theme. The
|
|||
|
||||
- [x] **Recent Posts**
|
||||
|
||||
- [ ] **Academic Career**
|
||||
- [ ] Degree
|
||||
- [ ] Institution
|
||||
- [ ] Timeline
|
||||
- [ ] Taken Courses
|
||||
- [ ] CGPA
|
||||
- [ ] Extracurricular Activities
|
||||
|
||||
- [ ] **Publications**
|
||||
- [ ] Category Filter
|
||||
- [ ] Card
|
||||
|
@ -215,10 +214,11 @@ Here, are the current plan and progress of various components of this theme. The
|
|||
|
||||
- [x] Hero Image
|
||||
- [x] Author Information
|
||||
- [x] Sidebar
|
||||
- [x] Table of Contents
|
||||
- [x] Next & Previous Page Navigation
|
||||
- [x] `Improve This Page` Button
|
||||
- [x] Disqus Comment
|
||||
- [x] Option to navigate to list page
|
||||
|
||||
### Tracking and Comments
|
||||
|
||||
|
@ -245,34 +245,62 @@ Pull requests are most welcome and I will be happy to review. Just follow the fo
|
|||
- Use as few dependencies as possible.
|
||||
- Have patience.
|
||||
|
||||
>I am not a web developer. I just created this theme for my personal needs. So, it is reasonable to have some flaws in the codes. Feel free to open issues and PR acknowledging the problems.
|
||||
>I am not a web developer. I have created this theme for my personal needs. So, it is reasonable to have some flaws in the codes. Feel free to open issues and PRs acknowledging the problems.
|
||||
|
||||
## Local Development
|
||||
|
||||
For local development, you can run your own site or the [example site](https://github.com/hugo-toha/toha-example-site) locally and make changes in the theme submodule.
|
||||
For local development, you can make changes in the theme submodule and test the changes against your own site or this [example site](https://github.com/hugo-toha/hugo-toha.github.io) locally.
|
||||
|
||||
### Fork
|
||||
Fork [this repo](https://github.com/hugo-toha/toha) and setup your local submodule with the following from the site's folder by running the following
|
||||
|
||||
```sh
|
||||
git submodule update --init --recursive --remote
|
||||
cd themes/toha
|
||||
git remote add my-fork https://github.com/<your-github-user>/toha
|
||||
git checkout -b my-feature-branch
|
||||
At first, fork [this repo](https://github.com/hugo-toha/toha). Then, follow the following steps to use the forked theme for local developments,
|
||||
|
||||
**Using the forked theme in your own site:**
|
||||
|
||||
If you want to run your local development against your own site, follow the following steps:
|
||||
|
||||
```bash
|
||||
# add the original theme as a submodule of your site if you haven't done already
|
||||
$ git submodule add https://github.com/hugo-toha/toha.git themes/toha
|
||||
# navigate into the toha theme folder
|
||||
$ cd themes/toha
|
||||
# add your own fork as a remote
|
||||
$ git remote add my-fork https://github.com/<your-github-user>/toha
|
||||
# create a new branch for your changes
|
||||
$ git checkout -b my-feature-branch
|
||||
```
|
||||
|
||||
From there you can make changes to the source code of the theme while testing with your running Hugo site.
|
||||
**Using the forked theme in the example site:**
|
||||
|
||||
If your want to run your local development against this [example site](https://github.com/hugo-toha/hugo-toha.github.io), follow the following steps:
|
||||
|
||||
```bash
|
||||
# clone the example site along with the submodules
|
||||
$ git clone git@github.com:hugo-toha/hugo-toha.github.io.git --recursive
|
||||
# navigate into the toha theme folder
|
||||
$ cd themes/toha
|
||||
# add your own fork as a remote
|
||||
$ git remote add my-fork https://github.com/<your-github-user>/toha
|
||||
# create a new branch for your changes
|
||||
$ git checkout -b my-feature-branch
|
||||
```
|
||||
|
||||
From there you can make changes to the source code of the theme while testing with your running Hugo site or the example site.
|
||||
|
||||
### Open a PR
|
||||
|
||||
When the changes look good, commit and push them to your fork
|
||||
```sh
|
||||
git add .
|
||||
git commit -m "A meaningful commit message"
|
||||
git push my-fork my-feature-branch
|
||||
When the changes look good, commit and push them to your fork.
|
||||
|
||||
```bash
|
||||
# stage all the changes
|
||||
$ git add .
|
||||
# commit the changes with a meaning full commit message
|
||||
$ git commit -m "A meaningful commit message"
|
||||
# push the commit to your fork
|
||||
$ git push my-fork my-feature-branch
|
||||
```
|
||||
|
||||
And then open a PR `https://github.com/<your-github-user></your-github-user>/toha/pull/new/my-feature-branch`
|
||||
Then, open a PR against `master` branch of [hugo-toha/toha](https://github.com/hugo-toha/toha) from the `my-feature-branch` branch of your own fork.
|
||||
|
||||
## Attribution
|
||||
|
||||
|
|
|
@ -9,19 +9,21 @@ languages:
|
|||
en:
|
||||
languageName: English
|
||||
weight: 1
|
||||
fr:
|
||||
languageName: Français
|
||||
weight: 2
|
||||
bn:
|
||||
languageName: বাংলা
|
||||
weight: 2
|
||||
fr:
|
||||
languageName: Français
|
||||
weight: 3
|
||||
de:
|
||||
languageName: Deutsch
|
||||
weight: 4
|
||||
id:
|
||||
languageName: Indonesian
|
||||
weight: 4
|
||||
de:
|
||||
languageName: Deutsch
|
||||
weight: 5
|
||||
|
||||
es:
|
||||
languageName: Spanish
|
||||
weight: 6
|
||||
|
||||
# Force a locale to be use, really useful to develop the application ! Should be commented in production, the "weight" should rocks.
|
||||
# DefaultContentLanguage: fr
|
||||
|
@ -45,23 +47,23 @@ disqusShortname: does-not-exist
|
|||
# Enable global emoji support
|
||||
enableEmoji: true
|
||||
|
||||
# Custom parameters
|
||||
# Site parameters
|
||||
params:
|
||||
# background image of the landing page
|
||||
background: "images/background.jpg"
|
||||
# Background image of the landing page
|
||||
background: /images/site/background.jpg
|
||||
|
||||
# Provide logos for your site. The inverted logo will be used in the initial
|
||||
# transparent navbar and the main logo will be used in the non-transparent navbar.
|
||||
# It will be default to the theme logos if not provided.
|
||||
# It will default to the theme logos if not provided.
|
||||
logo:
|
||||
main: /assets/images/main-logo.png
|
||||
inverted: /assets/images/inverted-logo.png
|
||||
favicon: /assets/images/favicon.png
|
||||
main: /images/site/main-logo.png
|
||||
inverted: /images/site/inverted-logo.png
|
||||
favicon: /images/site/favicon.png
|
||||
|
||||
# GitHub repo URL of your site
|
||||
gitRepo: https://github.com/hossainemruz/toha-example-site
|
||||
gitRepo: https://github.com/hugo-toha/hugo-toha.github.io
|
||||
|
||||
# specify whether you want to write blog post or not
|
||||
# specify whether you want to write some blog posts or not
|
||||
enableBlogPost: true
|
||||
|
||||
# specify whether you want to show Table of Contents in reading page
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
# some information about you
|
||||
name: "জেইন ডো"
|
||||
nickname: "জেইন"
|
||||
name: "জন ডো"
|
||||
nickname: "জন"
|
||||
# greeting message before your name. it will default to "Hi! I am" if not provided
|
||||
greeting: "হ্যালো, আমি হলাম"
|
||||
image: "images/avatar.png"
|
||||
image: "images/author/john.png"
|
||||
# give your some contact information. they will be used in the footer
|
||||
contactInfo:
|
||||
email: "janedoe@example.com"
|
||||
phone: "+0123456789"
|
||||
ইমেইল: "johndoe@example.com"
|
||||
ফোন: "+0123456789"
|
||||
|
||||
# some summary about what you do
|
||||
summary:
|
||||
|
|
|
@ -18,7 +18,7 @@ company:
|
|||
resume: "files/resume.pdf"
|
||||
|
||||
# a summary about you
|
||||
summary: 'I am a passionate software engineer with x years of working experience. I built OSS tools for [Kubernetes](https://kubernetes.io/) using GO. My tools help people to deploy their workloads in Kubernetes. Sometimes, I work on some fun projects such as writing a theme, etc.'
|
||||
summary: 'আমি X বছর অভিজ্ঞতা সম্পন্ন একজন দক্ষ সফটওয়্যার ইঞ্জিনিয়ার । আমি Go ভাষা ব্যবহার করে [Kubernetes](https://kubernetes.io/) এর জন্য ওপেন সোর্স টুল তৈরি করি । মাঝে মাঝে আমি থিম বানানোর মত মজার প্রোজেক্ট নিয়ে কাজ করি ।'
|
||||
|
||||
# your social links
|
||||
# give as many as you want. use font-awesome for the icons.
|
||||
|
|
|
@ -11,15 +11,15 @@ section:
|
|||
|
||||
# Your achievements achievements
|
||||
achievements:
|
||||
- title: Best Presenter
|
||||
image: images/achievements/presenter.jpg
|
||||
summary: Best presenter in the 2020 XYZ conference.
|
||||
- title: Champion
|
||||
image: images/achievements/sport.jpg
|
||||
summary: Champion in cycling inter-city cycling championship 2020.
|
||||
- title: Graduation
|
||||
image: images/achievements/graduation-cap.jpg
|
||||
summary: Received Bachelor of Science (B.Sc.) in Computer Science and Engineer from XYZ University.
|
||||
- title: Award Winner
|
||||
image: images/achievements/woman-winner.jpg
|
||||
summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus architecto minus facere vero?
|
||||
- title: সেরা উপস্থাপক
|
||||
image: /images/sections/achievements/presenter.jpg
|
||||
summary: 2020 XYZ কনফারেন্স এ সেরা উপস্থাপক
|
||||
- title: বিজয়ী
|
||||
image: /images/sections/achievements/sport.jpg
|
||||
summary: আন্তঃ শহর সাইক্লিং প্রতিযোগিতা ২০২০ এ বিজয়ী
|
||||
- title: গ্রাজুয়েশন
|
||||
image: /images/sections/achievements/graduation-cap.jpg
|
||||
summary: XYZ ইউনিভার্সিটি থেকে কম্পিউটার বিজ্ঞানে স্নাতক সম্পন্ন করেছি
|
||||
- title: পুরুস্কার বিজয়ী
|
||||
image: /images/sections/achievements/woman-winner.jpg
|
||||
summary: IEE Conference 2020 এ সেরা গবেষণাপত্রের পুরষ্কার বিজয়ী হয়েছি
|
||||
|
|
|
@ -14,52 +14,52 @@ experiences:
|
|||
- company:
|
||||
name: Example Co.
|
||||
url: "https://www.example.com"
|
||||
location: Dhaka Branch
|
||||
location: ঢাকা ব্রাঞ্চ
|
||||
# company overview
|
||||
overview: Example Co. is a widely recognized company for cloud-native development. It builds tools for Kubernetes.
|
||||
overview: Example Co. হচ্ছে ক্লাউড নেটিভ ডেভেলপমেন্টের জন্যে একটি স্বীকৃত প্রতিষ্ঠান । এটি Kubernetes এর জন্যে বিভিন্ন সফটওয়্যার বানায়।
|
||||
positions:
|
||||
- designation: Senior Software Engineer
|
||||
- designation: সিনিয়র সফটওয়্যার ইঞ্জিনিয়ার
|
||||
start: Nov 2019
|
||||
# don't provide end date if you are currently working there. It will be replaced by "Present"
|
||||
# end: Dec 2020
|
||||
# give some points about what was your responsibilities at the company.
|
||||
responsibilities:
|
||||
- Design and develop XYZ tool for ABC task
|
||||
- Design, develop and manage disaster recovery tool [Xtool](https://www.example.com) that backup Kubernetes volumes, databases, and cluster's resource definition.
|
||||
- Lead backend team.
|
||||
- ABC কাজের জন্য XYZ টুল ডিজাইন ও ডেভেলপ করা ।
|
||||
- Kubernetes এর ভলিউম, ডাটাবেজ ইত্যাদি ব্যাকআপ নেওয়ার জন্যে বিপর্যয় পুনরুদ্ধার টুল ডিজাইন, ডেভেলপ এবং পরিচালনা করা।
|
||||
- বাকেন্ড টিমের নেতৃত্ব দেওয়া।
|
||||
|
||||
- designation: Junior Software Engineer
|
||||
- designation: জুনিয়র সফটওয়্যার ইঞ্জিনিয়ার
|
||||
start: Nov 2017
|
||||
end: Oct 2019
|
||||
responsibilities:
|
||||
- Implement and test xyz feature for abc tool.
|
||||
- Support client for abc tool.
|
||||
- Learn k,d,w technology for xyz.
|
||||
- ABC টুল এর জন্য XYZ ফিচার বাস্তবায়ন করা এবং টেস্ট করা।
|
||||
- ABC টুলের ক্লায়েন্ট সাপোর্ট দেওয়া।
|
||||
- XYZ এর জন্য K, D, W টেকনোলজি শিখা।
|
||||
|
||||
- company:
|
||||
name: PreExample Co.
|
||||
url: "https://www.preexample.com"
|
||||
location: Nowhere
|
||||
overview: PreExample Co. is a gateway company to enter into Example co. So, nothing special here.
|
||||
overview: PreExample Co. হচ্ছে Example co. তে যাওয়ার মাধ্যম। সুতারাং, এখানে বিশেষ কিছু নেই।
|
||||
positions:
|
||||
- designation: Software Engineer
|
||||
- designation: সফটওয়্যার ইঞ্জিনিয়ার
|
||||
start: March 2016
|
||||
end: May 2017
|
||||
responsibilities:
|
||||
- Write lots of example codes.
|
||||
- Read lots of examples.
|
||||
- See lots of example videos.
|
||||
- প্রচুর পরিমাণে উদাহারন কোড লিখা ।
|
||||
- প্রচুর পরিমাণে উদাহারন পড়া।
|
||||
- প্রচুর পরিমাণে উদাহারন ভিডিও দেখা ।
|
||||
|
||||
- company:
|
||||
name: Intern Counting Company (ICC).
|
||||
url: "https://www.intern.com"
|
||||
location: Intern Land
|
||||
overview: Intern counting Company (ICC) is responsible for counting worldwide intern Engineers.
|
||||
overview: Intern counting Company (ICC) বিশ্বব্যাপী ইন্টার্ন ইঞ্জিনিয়ারদের গণনার জন্য দায়ী ।
|
||||
positions:
|
||||
- designation: Intern
|
||||
- designation: ইন্টার্ন
|
||||
start: Jun 2015
|
||||
end: Jan 2016
|
||||
responsibilities:
|
||||
- Count lost of interns.
|
||||
- Count more interns.
|
||||
- Count me as an intern.
|
||||
- প্রচুর ইন্টার্ন গণনা করা।
|
||||
- আরও ইন্টার্ন গণনা করা।
|
||||
- নিজেকে ইন্টার্ন হিসেবে গণনা করা ।
|
||||
|
|
|
@ -11,19 +11,19 @@ section:
|
|||
|
||||
# filter buttons
|
||||
buttons:
|
||||
- name: All
|
||||
- name: সব বিষয়
|
||||
filter: "all"
|
||||
- name: Professional
|
||||
- name: প্রোফেসনাল
|
||||
filter: "professional"
|
||||
- name: Academic
|
||||
- name: প্রাতিষ্ঠানিক
|
||||
filter: "academic"
|
||||
- name: Hobby
|
||||
- name: শখের প্রোজেক্ট
|
||||
filter: "hobby"
|
||||
|
||||
# your projects
|
||||
projects:
|
||||
- name: Kubernetes
|
||||
logo: images/projects/kubernetes.png
|
||||
logo: /images/sections/projects/kubernetes.png
|
||||
role: Contributor
|
||||
timeline: "March 2018 - Present"
|
||||
repo: https://github.com/kubernetes/kubernetes # If your project is a public repo on GitHub, then provide this link. it will show star count.
|
||||
|
@ -32,7 +32,7 @@ projects:
|
|||
tags: ["professional", "kubernetes", "cloud"]
|
||||
|
||||
- name: Tensorflow
|
||||
logo: images/projects/tensorflow.png
|
||||
logo: /images/sections/projects/tensorflow.png
|
||||
role: Developer
|
||||
timeline: "Jun 2018 - Present"
|
||||
repo: https://github.com/tensorflow/tensorflow
|
||||
|
@ -48,7 +48,7 @@ projects:
|
|||
tags: ["academic","iot"]
|
||||
|
||||
- name: Nocode
|
||||
logo: images/projects/no-code.png
|
||||
logo: /images/sections/projects/no-code.png
|
||||
role: Nothing
|
||||
timeline: "Oct 2019 - Dec 2019"
|
||||
repo: https://github.com/kelseyhightower/nocode
|
||||
|
@ -57,7 +57,7 @@ projects:
|
|||
tags: ["hobby", "fun"]
|
||||
|
||||
- name: Toha
|
||||
logo: images/projects/toha.png
|
||||
logo: /images/sections/projects/toha.png
|
||||
role: Owner
|
||||
timeline: "Jun 2019 - Present"
|
||||
repo: https://github.com/hossainemruz/toha
|
||||
|
|
|
@ -13,38 +13,38 @@ section:
|
|||
# Give a summary of you each skill in the summary section.
|
||||
skills:
|
||||
- name: Kubernetes
|
||||
icon: "images/skills/kubernetes.png"
|
||||
summary: "Capable of deploying, managing application on Kubernetes. Experienced in writing Kubernetes controllers for CRDs."
|
||||
icon: "/images/sections/skills/kubernetes.png"
|
||||
summary: "আমি Kubernetes এ অ্যাপ্লিকেশান পরিচালনা করতে সক্ষম । আমার Kubernetes এ CRD এর জন্য কন্ট্রোলার লিখার অভিজ্ঞতা আছে ।"
|
||||
url: "https://kubernetes.io/"
|
||||
|
||||
- name: Go Development
|
||||
icon: "images/skills/go.png"
|
||||
summary: "Using as the main language for professional development. Capable of writing scalable, testable, and maintainable program."
|
||||
- name: Go ডেভেলপমেন্ট
|
||||
icon: "/images/sections/skills/go.png"
|
||||
summary: "ডেভেলপমেন্টের জন্য প্রধান ভাষা হিসেবে ব্যবহার করছি। টেস্ট যোগ্য, রক্ষণাবেক্ষণ যোগ্য কোড লিখতে সক্ষম।"
|
||||
url: "https://golang.org/"
|
||||
|
||||
- name: Cloud Computing
|
||||
icon: "images/skills/cloud.png"
|
||||
summary: "Worked with most of the major clouds such as GCP, AWS, Azure etc."
|
||||
- name: ক্লাউড কম্পিউটিং
|
||||
icon: "/images/sections/skills/cloud.png"
|
||||
summary: "GCP, AWS, Azure গুলোর মত বেশিরভাগ বড় বড় ক্লাউড নিয়ে কাজর অভিজ্ঞতা আছে।"
|
||||
|
||||
- name: Docker
|
||||
icon: "images/skills/docker.svg"
|
||||
summary: "Write most of the programs as dockerized container. Experienced with multi-stage, multi-arch build process."
|
||||
icon: "/images/sections/skills/docker.svg"
|
||||
summary: "বেশির ভাগ প্রোগ্রামেরই Docker কন্টেইনার তৈরি করি। মাল্টি স্টেজ এবং মাল্টি আর্কিটেকচার কন্টেইনার নিয়ে অভিজ্ঞতা আছে।"
|
||||
url: "https://www.docker.com/"
|
||||
|
||||
- name: Prometheus
|
||||
icon: "images/skills/prometheus.png"
|
||||
summary: "Capable of setup, configure Prometheus metrics. Experienced with PromQL, AlertManager. Also, experienced with writing metric exporters."
|
||||
icon: "/images/sections/skills/prometheus.png"
|
||||
summary: "Prometheus metrics সেটআপ ও কনফিগার করতে সক্ষম। PromQL, AlertManager নিয়ে অভিজ্ঞতা আছে। Metric exporters লিখাতেও অভিজ্ঞতা আছে।"
|
||||
url: "https://prometheus.io/"
|
||||
|
||||
- name: Linux
|
||||
icon: "images/skills/linux.png"
|
||||
summary: "Using as the main operating system. Capable of writing bash/shell scripts."
|
||||
- name: লিনাক্স
|
||||
icon: "/images/sections/skills/linux.png"
|
||||
summary: "প্রধান অপারেটিং সিস্টেম হিসেবে ব্যবহার করছি। bash/shell scripts লিখতে সক্ষম।"
|
||||
|
||||
- name: Git
|
||||
icon: "images/skills/git.png"
|
||||
summary: "Experienced with git-based development. Mostly, use Github. Also, have experience in working with GitLab."
|
||||
- name: গিট
|
||||
icon: "/images/sections/skills/git.png"
|
||||
summary: "গিট ভিত্তিক ডেভেলপমেন্টের অভিজ্ঞতা আছে। বেশির ভাগ ক্ষেতরেই GitHub ব্যবহার করি তবে GitLab ব্যবহারেরও অভিজ্ঞতা আছে।"
|
||||
url: "https://git-scm.com/"
|
||||
|
||||
- name: C++
|
||||
icon: "images/skills/c++.png"
|
||||
summary: "Know basic C/C++ programming. Used for contest programming and problem solving."
|
||||
icon: "/images/sections/skills/c++.png"
|
||||
summary: "বেসিক C/C++ প্রোগ্রামিং জানি । প্রব্লেম সল্ভিং এবং কন্টেস্ট এর জন্য ব্যবহার করেছি।"
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
copyright: © 2020 Copyright.
|
||||
|
||||
# Meta description for your site. This will help the search engines to find your site.
|
||||
description: Portfolio and personal blog of Jane Doe.
|
||||
description: জন ডো এর বাক্তিগত পোর্টফোলিও ও ব্লগ.
|
||||
|
||||
# specify the list of custom menus that you want to show in the top navbar.
|
||||
# they will be separated by a divider from the main menus.
|
||||
customMenus:
|
||||
- name: নোটসমুহ
|
||||
url: https://hossainemruz.gitbook.io/
|
||||
- name: ডকুমেন্টেশন
|
||||
url: https://toha-guides.netlify.app/posts/
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# some information about you
|
||||
name: "Jane Doe"
|
||||
nickname: "Jane"
|
||||
name: "John Doe"
|
||||
nickname: "John"
|
||||
# greeting message before your name. it will default to "Hi! I am" if not provided
|
||||
greeting: "Hi, I am"
|
||||
image: "images/avatar.png"
|
||||
image: "images/author/john.png"
|
||||
# give your some contact information. they will be used in the footer
|
||||
contactInfo:
|
||||
email: "janedoe@example.com"
|
||||
email: "johndoe@example.com"
|
||||
phone: "+0123456789"
|
||||
|
||||
# some summary about what you do
|
||||
|
|
|
@ -11,14 +11,14 @@ section:
|
|||
# Your achievements achievements
|
||||
achievements:
|
||||
- title: Best Presenter
|
||||
image: images/achievements/presenter.jpg
|
||||
image: /images/sections/achievements/presenter.jpg
|
||||
summary: Best presenter in the 2020 XYZ conference.
|
||||
- title: Champion
|
||||
image: images/achievements/sport.jpg
|
||||
image: /images/sections/achievements/sport.jpg
|
||||
summary: Champion in cycling inter-city cycling championship 2020.
|
||||
- title: Graduation
|
||||
image: images/achievements/graduation-cap.jpg
|
||||
image: /images/sections/achievements/graduation-cap.jpg
|
||||
summary: Received Bachelor of Science (B.Sc.) in Computer Science and Engineer from XYZ University.
|
||||
- title: Award Winner
|
||||
image: images/achievements/woman-winner.jpg
|
||||
summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus architecto minus facere vero?
|
||||
image: /images/sections/achievements/woman-winner.jpg
|
||||
summary: Wined best paper award at IEE Conference 2020.
|
||||
|
|
|
@ -22,7 +22,7 @@ buttons:
|
|||
# your projects
|
||||
projects:
|
||||
- name: Kubernetes
|
||||
logo: images/projects/kubernetes.png
|
||||
logo: /images/sections/projects/kubernetes.png
|
||||
role: Contributor
|
||||
timeline: "March 2018 - Present"
|
||||
repo: https://github.com/kubernetes/kubernetes # If your project is a public repo on GitHub, then provide this link. it will show star count.
|
||||
|
@ -31,7 +31,7 @@ projects:
|
|||
tags: ["professional", "kubernetes", "cloud"]
|
||||
|
||||
- name: Tensorflow
|
||||
logo: images/projects/tensorflow.png
|
||||
logo: /images/sections/projects/tensorflow.png
|
||||
role: Developer
|
||||
timeline: "Jun 2018 - Present"
|
||||
repo: https://github.com/tensorflow/tensorflow
|
||||
|
@ -47,7 +47,7 @@ projects:
|
|||
tags: ["academic","iot"]
|
||||
|
||||
- name: Nocode
|
||||
logo: images/projects/no-code.png
|
||||
logo: /images/sections/projects/no-code.png
|
||||
role: Nothing
|
||||
timeline: "Oct 2019 - Dec 2019"
|
||||
repo: https://github.com/kelseyhightower/nocode
|
||||
|
@ -56,7 +56,7 @@ projects:
|
|||
tags: ["hobby", "fun"]
|
||||
|
||||
- name: Toha
|
||||
logo: images/projects/toha.png
|
||||
logo: /images/sections/projects/toha.png
|
||||
role: Owner
|
||||
timeline: "Jun 2019 - Present"
|
||||
repo: https://github.com/hossainemruz/toha
|
||||
|
|
|
@ -12,38 +12,38 @@ section:
|
|||
# Give a summary of you each skill in the summary section.
|
||||
skills:
|
||||
- name: Kubernetes
|
||||
icon: "images/skills/kubernetes.png"
|
||||
icon: "/images/sections/skills/kubernetes.png"
|
||||
summary: "Capable of deploying, managing application on Kubernetes. Experienced in writing Kubernetes controllers for CRDs."
|
||||
url: "https://kubernetes.io/"
|
||||
|
||||
- name: Go Development
|
||||
icon: "images/skills/go.png"
|
||||
icon: "/images/sections/skills/go.png"
|
||||
summary: "Using as the main language for professional development. Capable of writing scalable, testable, and maintainable program."
|
||||
url: "https://golang.org/"
|
||||
|
||||
- name: Cloud Computing
|
||||
icon: "images/skills/cloud.png"
|
||||
icon: "/images/sections/skills/cloud.png"
|
||||
summary: "Worked with most of the major clouds such as GCP, AWS, Azure etc."
|
||||
|
||||
- name: Docker
|
||||
icon: "images/skills/docker.svg"
|
||||
icon: "/images/sections/skills/docker.svg"
|
||||
summary: "Write most of the programs as dockerized container. Experienced with multi-stage, multi-arch build process."
|
||||
url: "https://www.docker.com/"
|
||||
|
||||
- name: Prometheus
|
||||
icon: "images/skills/prometheus.png"
|
||||
icon: "/images/sections/skills/prometheus.png"
|
||||
summary: "Capable of setup, configure Prometheus metrics. Experienced with PromQL, AlertManager. Also, experienced with writing metric exporters."
|
||||
url: "https://prometheus.io/"
|
||||
|
||||
- name: Linux
|
||||
icon: "images/skills/linux.png"
|
||||
icon: "/images/sections/skills/linux.png"
|
||||
summary: "Using as the main operating system. Capable of writing bash/shell scripts."
|
||||
|
||||
- name: Git
|
||||
icon: "images/skills/git.png"
|
||||
icon: "/images/sections/skills/git.png"
|
||||
summary: "Experienced with git-based development. Mostly, use Github. Also, have experience in working with GitLab."
|
||||
url: "https://git-scm.com/"
|
||||
|
||||
- name: C++
|
||||
icon: "images/skills/c++.png"
|
||||
icon: "/images/sections/skills/c++.png"
|
||||
summary: "Know basic C/C++ programming. Used for contest programming and problem solving."
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
copyright: © 2020 Copyright.
|
||||
|
||||
# Meta description for your site. This will help the search engines to find your site.
|
||||
description: Portfolio and personal blog of Jane Doe.
|
||||
description: Portfolio and personal blog of John Doe.
|
||||
|
||||
# specify the list of custom menus that you want to show in the top navbar.
|
||||
# they will be separated by a divider from the main menus.
|
||||
customMenus:
|
||||
- name: Notes
|
||||
url: https://hossainemruz.gitbook.io/
|
||||
- name: Docs
|
||||
url: https://toha-guides.netlify.app/posts/
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
name: "Jane Doe"
|
||||
nickname: "Jane"
|
||||
image: "images/avatar.png"
|
||||
# some information about you
|
||||
name: "John Doe"
|
||||
nickname: "John"
|
||||
|
||||
# greeting message before your name. it will default to "Hi! I am" if not provided
|
||||
greeting: "Bonjour, je suis"
|
||||
image: "images/author/john.png"
|
||||
|
||||
# give your some contact information. they will be used in the footer
|
||||
contactInfo:
|
||||
email: "janedoe@example.com"
|
||||
email: "johndoe@example.com"
|
||||
phone: "+0123456789"
|
||||
|
||||
# some summary about what you do
|
||||
|
|
|
@ -12,14 +12,14 @@ section:
|
|||
# Your achievements achievements
|
||||
achievements:
|
||||
- title: Meilleur présentateur
|
||||
image: images/achievements/presenter.jpg
|
||||
image: /images/sections/achievements/presenter.jpg
|
||||
summary: Meilleur présentateur de la conférence XYZ 2020.
|
||||
- title: Champion
|
||||
image: images/achievements/sport.jpg
|
||||
image: /images/sections/achievements/sport.jpg
|
||||
summary: Champion du championnat cycliste interurbain 2020.
|
||||
- title: Remise des diplômes
|
||||
image: images/achievements/graduation-cap.jpg
|
||||
image: /images/sections/achievements/graduation-cap.jpg
|
||||
summary: J'ai obtenu une licence en sciences (B.Sc.) en informatique et en ingénierie à l'université XYZ.
|
||||
- title: Lauréat du prix
|
||||
image: images/achievements/woman-winner.jpg
|
||||
image: /images/sections/achievements/woman-winner.jpg
|
||||
summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus architecto minus facere vero?
|
||||
|
|
|
@ -23,7 +23,7 @@ buttons:
|
|||
# your projects
|
||||
projects:
|
||||
- name: Kubernetes
|
||||
logo: images/projects/kubernetes.png
|
||||
logo: /images/sections/projects/kubernetes.png
|
||||
role: Contributeur
|
||||
timeline: "Mars 2018 - Présent"
|
||||
repo: https://github.com/kubernetes/kubernetes # If your project is a public repo on GitHub, then provide this link. it will show star count.
|
||||
|
@ -32,7 +32,7 @@ projects:
|
|||
tags: ["professionnel", "kubernetes", "cloud"]
|
||||
|
||||
- name: Tensorflow
|
||||
logo: images/projects/tensorflow.png
|
||||
logo: /images/sections/projects/tensorflow.png
|
||||
role: Développeur
|
||||
timeline: "Juin 2018 - Présent"
|
||||
repo: https://github.com/tensorflow/tensorflow
|
||||
|
@ -48,7 +48,7 @@ projects:
|
|||
tags: ["ecole","iot"]
|
||||
|
||||
- name: Nocode
|
||||
logo: images/projects/no-code.png
|
||||
logo: /images/sections/projects/no-code.png
|
||||
role: Rien
|
||||
timeline: "Oct 2019 - Dec 2019"
|
||||
repo: https://github.com/kelseyhightower/nocode
|
||||
|
@ -57,7 +57,7 @@ projects:
|
|||
tags: ["hobby", "fun"]
|
||||
|
||||
- name: Toha
|
||||
logo: images/projects/toha.png
|
||||
logo: /images/sections/projects/toha.png
|
||||
role: Owner
|
||||
timeline: "Juin 2019 - Présent"
|
||||
repo: https://github.com/hossainemruz/toha
|
||||
|
|
|
@ -13,38 +13,38 @@ section:
|
|||
# Give a summary of you each skill in the summary section.
|
||||
skills:
|
||||
- name: Kubernetes
|
||||
icon: "images/skills/kubernetes.png"
|
||||
icon: "/images/sections/skills/kubernetes.png"
|
||||
summary: "Capable de déployer, de gérer l'application sur Kubernetes. Expérimenté dans la rédaction de contrôleurs Kubernetes pour les CRD."
|
||||
url: "https://kubernetes.io/"
|
||||
|
||||
- name: Go
|
||||
icon: "images/skills/go.png"
|
||||
icon: "/images/sections/skills/go.png"
|
||||
summary: "Utiliser comme langue principale pour le développement professionnel. Capable d'écrire des programmes évolutifs, testables et maintenables."
|
||||
url: "https://golang.org/"
|
||||
|
||||
- name: Cloud Computing
|
||||
icon: "images/skills/cloud.png"
|
||||
icon: "/images/sections/skills/cloud.png"
|
||||
summary: "A travaillé avec la plupart des principaux nuages tels que GCP, AWS, Azure, etc."
|
||||
|
||||
- name: Docker
|
||||
icon: "images/skills/docker.svg"
|
||||
icon: "/images/sections/skills/docker.svg"
|
||||
summary: "Inscrivez la plupart des programmes en tant que conteneur déchargé. Expérimenté dans le processus de construction en plusieurs étapes et en plusieurs arcs."
|
||||
url: "https://www.docker.com/"
|
||||
|
||||
- name: Prometheus
|
||||
icon: "images/skills/prometheus.png"
|
||||
icon: "/images/sections/skills/prometheus.png"
|
||||
summary: "Capable d'installation, de configurer les métriques de Prometheus. Expérimenté avec PromQL, AlertManager. Expérimenté également dans la rédaction d'exportateurs de métriques."
|
||||
url: "https://prometheus.io/"
|
||||
|
||||
- name: Linux
|
||||
icon: "images/skills/linux.png"
|
||||
icon: "/images/sections/skills/linux.png"
|
||||
summary: "Utilisé comme système d'exploitation principal. Capable d'écrire des scripts bash/shell."
|
||||
|
||||
- name: Git
|
||||
icon: "images/skills/git.png"
|
||||
icon: "/images/sections/skills/git.png"
|
||||
summary: "Expérimenté dans le développement basé sur les GIT. Surtout, utilisez Github. Avoir également une expérience de travail avec GitLab."
|
||||
url: "https://git-scm.com/"
|
||||
|
||||
- name: C++
|
||||
icon: "images/skills/c++.png"
|
||||
icon: "/images/sections/skills/c++.png"
|
||||
summary: "Connaître les bases de la programmation C/C++. Utilisé pour la programmation de concours et la résolution de problèmes."
|
||||
|
|
|
@ -7,5 +7,5 @@ description: Portfolio et blog personnel de Jane Doe.
|
|||
# specify the list of custom menus that you want to show in the top navbar.
|
||||
# they will be separated by a divider from the main menus.
|
||||
customMenus:
|
||||
- name: Remarques
|
||||
url: https://hossainemruz.gitbook.io/
|
||||
- name: Docs
|
||||
url: https://toha-guides.netlify.app/posts/
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# some information about you
|
||||
name: "Jane Doe"
|
||||
nickname: "Jane"
|
||||
name: "John Doe"
|
||||
nickname: "John"
|
||||
# greeting message before your name. it will default to "Hi! I am" if not provided
|
||||
greeting: "Halo, saya"
|
||||
image: "images/avatar.png"
|
||||
image: "images/author/john.png"
|
||||
# give your some contact information. they will be used in the footer
|
||||
contactInfo:
|
||||
email: "janedoe@example.com"
|
||||
email: "johndoe@example.com"
|
||||
phone: "+0123456789"
|
||||
|
||||
# some summary about what you do
|
||||
|
|
|
@ -11,14 +11,14 @@ section:
|
|||
# Your achievements achievements
|
||||
achievements:
|
||||
- title: Presenter Terbaik
|
||||
image: images/achievements/presenter.jpg
|
||||
image: /images/sections/achievements/presenter.jpg
|
||||
summary: Best presenter in the 2020 XYZ conference.
|
||||
- title: Juara
|
||||
image: images/achievements/sport.jpg
|
||||
image: /images/sections/achievements/sport.jpg
|
||||
summary: Champion in cycling inter-city cycling championship 2020.
|
||||
- title: Wisuda
|
||||
image: images/achievements/graduation-cap.jpg
|
||||
image: /images/sections/achievements/graduation-cap.jpg
|
||||
summary: Received Bachelor of Science (B.Sc.) in Computer Science and Engineer from XYZ University.
|
||||
- title: Pemenang Award
|
||||
image: images/achievements/woman-winner.jpg
|
||||
image: /images/sections/achievements/woman-winner.jpg
|
||||
summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus architecto minus facere vero?
|
||||
|
|
|
@ -22,7 +22,7 @@ buttons:
|
|||
# your projects
|
||||
projects:
|
||||
- name: Kubernetes
|
||||
logo: images/projects/kubernetes.png
|
||||
logo: /images/sections/projects/kubernetes.png
|
||||
role: Contributor
|
||||
timeline: "March 2018 - Present"
|
||||
repo: https://github.com/kubernetes/kubernetes # If your project is a public repo on GitHub, then provide this link. it will show star count.
|
||||
|
@ -31,7 +31,7 @@ projects:
|
|||
tags: ["professional", "kubernetes", "cloud"]
|
||||
|
||||
- name: Tensorflow
|
||||
logo: images/projects/tensorflow.png
|
||||
logo: /images/sections/projects/tensorflow.png
|
||||
role: Developer
|
||||
timeline: "Jun 2018 - Present"
|
||||
repo: https://github.com/tensorflow/tensorflow
|
||||
|
@ -47,7 +47,7 @@ projects:
|
|||
tags: ["academic","iot"]
|
||||
|
||||
- name: Nocode
|
||||
logo: images/projects/no-code.png
|
||||
logo: /images/sections/projects/no-code.png
|
||||
role: Nothing
|
||||
timeline: "Oct 2019 - Dec 2019"
|
||||
repo: https://github.com/kelseyhightower/nocode
|
||||
|
@ -56,7 +56,7 @@ projects:
|
|||
tags: ["hobby", "fun"]
|
||||
|
||||
- name: Toha
|
||||
logo: images/projects/toha.png
|
||||
logo: /images/sections/projects/toha.png
|
||||
role: Owner
|
||||
timeline: "Jun 2019 - Present"
|
||||
repo: https://github.com/hossainemruz/toha
|
||||
|
|
|
@ -12,38 +12,38 @@ section:
|
|||
# Give a summary of you each skill in the summary section.
|
||||
skills:
|
||||
- name: Kubernetes
|
||||
icon: "images/skills/kubernetes.png"
|
||||
icon: "/images/sections/skills/kubernetes.png"
|
||||
summary: "Mampu menerapkan, mengelola aplikasi di Kubernetes. Berpengalaman dalam menulis pengontrol Kubernetes untuk CRD."
|
||||
url: "https://kubernetes.io/"
|
||||
|
||||
- name: Go Development
|
||||
icon: "images/skills/go.png"
|
||||
icon: "/images/sections/skills/go.png"
|
||||
summary: "Menggunakan sebagai bahasa utama untuk pengembangan profesional. Mampu menulis program yang dapat diskalakan, dapat diuji, dan dipelihara."
|
||||
url: "https://golang.org/"
|
||||
|
||||
- name: Cloud Computing
|
||||
icon: "images/skills/cloud.png"
|
||||
icon: "/images/sections/skills/cloud.png"
|
||||
summary: "Worked with most of the major clouds such as GCP, AWS, Azure etc."
|
||||
|
||||
- name: Docker
|
||||
icon: "images/skills/docker.svg"
|
||||
icon: "/images/sections/skills/docker.svg"
|
||||
summary: "Tulis sebagian besar program sebagai kontainer docker. Berpengalaman dengan proses pembangunan multi-tahap dan multi-arch."
|
||||
url: "https://www.docker.com/"
|
||||
|
||||
- name: Prometheus
|
||||
icon: "images/skills/prometheus.png"
|
||||
icon: "/images/sections/skills/prometheus.png"
|
||||
summary: "Mampu mengatur, mengkonfigurasi metrik Prometheus. Berpengalaman dengan PromQL, AlertManager. Juga, berpengalaman dengan eksportir menulis metrik."
|
||||
url: "https://prometheus.io/"
|
||||
|
||||
- name: Linux
|
||||
icon: "images/skills/linux.png"
|
||||
icon: "/images/sections/skills/linux.png"
|
||||
summary: "Menggunakan sebagai sistem operasi utama. Mampu menulis skrip bash / shell."
|
||||
|
||||
- name: Git
|
||||
icon: "images/skills/git.png"
|
||||
icon: "/images/sections/skills/git.png"
|
||||
summary: "Berpengalaman dengan pengembangan berbasis git. Kebanyakan, gunakan Github. Juga, miliki pengalaman bekerja dengan GitLab."
|
||||
url: "https://git-scm.com/"
|
||||
|
||||
- name: C++
|
||||
icon: "images/skills/c++.png"
|
||||
icon: "/images/sections/skills/c++.png"
|
||||
summary: "Ketahui pemrograman C / C ++ dasar. Digunakan untuk pemrograman kontes dan pemecahan masalah."
|
||||
|
|
|
@ -7,5 +7,5 @@ description: Portofolio dan blog pribadi dari Jane Doe.
|
|||
# specify the list of custom menus that you want to show in the top navbar.
|
||||
# they will be separated by a divider from the main menus.
|
||||
customMenus:
|
||||
- name: Catatan
|
||||
url: https://hossainemruz.gitbook.io/
|
||||
- name: Docs
|
||||
url: https://toha-guides.netlify.app/posts/
|
BIN
exampleSite/static/images/author/jessica.png
Normal file
After Width: | Height: | Size: 8 KiB |
BIN
exampleSite/static/images/author/john.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 385 KiB After Width: | Height: | Size: 385 KiB |
Before Width: | Height: | Size: 97 KiB After Width: | Height: | Size: 97 KiB |
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 142 KiB |
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 280 KiB After Width: | Height: | Size: 280 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 280 KiB After Width: | Height: | Size: 280 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
BIN
exampleSite/static/images/site/background.jpg
Normal file
After Width: | Height: | Size: 346 KiB |
BIN
exampleSite/static/images/site/favicon.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
exampleSite/static/images/site/inverted-logo.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
exampleSite/static/images/site/main-logo.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
images/about.png
Normal file
After Width: | Height: | Size: 167 KiB |
BIN
images/list.png
Normal file
After Width: | Height: | Size: 294 KiB |
Before Width: | Height: | Size: 389 KiB After Width: | Height: | Size: 698 KiB |
BIN
images/single.png
Normal file
After Width: | Height: | Size: 147 KiB |
BIN
images/tn.png
Before Width: | Height: | Size: 256 KiB After Width: | Height: | Size: 127 KiB |
BIN
images/tn2.png
Normal file
After Width: | Height: | Size: 344 KiB |