Improve theme README & exampleSite (#157)

* Improve theme README

* Update exampleSite

* Add "Available Translation" section in README
This commit is contained in:
Emruz Hossain 2020-11-05 02:11:32 +06:00 committed by GitHub
parent b39ed5213e
commit 7a05e9b022
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
55 changed files with 283 additions and 239 deletions

13
.github/workflows/md-link-checker.yml vendored Normal file
View 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
View file

@ -4,57 +4,82 @@
A [Hugo](https://gohugo.io/) theme for a personal portfolio with minimalist design and responsiveness. A [Hugo](https://gohugo.io/) theme for a personal portfolio with minimalist design and responsiveness.
![Thumbnail](https://github.com/hugo-toha/toha/blob/master/images/tn.png) ![Thumbnail](https://raw.githubusercontent.com/hugo-toha/toha/master/images/screenshot.png)
Example Site: [hugo-toha.github.io](https://hugo-toha.github.io) - **Example Site:** [hugo-toha.github.io](https://hugo-toha.github.io)
Documentation: [toha-guides.netlify.app](https://toha-guides.netlify.app/posts) - **Documentation:** [toha-guides.netlify.app](https://toha-guides.netlify.app/posts)
## Features ## Features
- Minimalist Design - Minimalist Design
- Fully Responsive - Fully Responsive
- Carefully designed cards - Multiple Language Support
- Great Experience timeline - Carefully Designed Cards
- Achievement gallery - Experience Timeline
- Sidebar to categorize posts - Achievement Gallery
- Sidebar to Categorize the Posts
- Short Codes - Short Codes
- Google Analytics Support - Google Analytics Support
- Disqus Comment Support - Disqus Comment Support
For more details about the features please visit [here](https://toha-guides.netlify.app/posts/features/). 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
![Home Page Sections](https://raw.githubusercontent.com/hugo-toha/toha/master/images/about.png)
##### List Page
![List Page](https://raw.githubusercontent.com/hugo-toha/toha/master/images/list.png)
##### Reading Page
![Reading Page](https://raw.githubusercontent.com/hugo-toha/toha/master/images/single.png)
## Requirements ## Requirements
- Hugo Version 0.68.0 or higher - 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 ```console
hugo new site my-site -f=yaml $ git submodule add https://github.com/hugo-toha/toha.git themes/toha
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
``` ```
>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. >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 ```yaml
baseURL: http://example.org/ baseURL: https://hugo-toha.github.io
languageCode: en-us languageCode: en-us
title: "Toha" title: "John's Blog"
theme: "toha" theme: "toha"
# Manage languages # Manage languages
@ -63,52 +88,23 @@ languages:
en: en:
languageName: English languageName: English
weight: 1 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. # Control TOC depth
# DefaultContentLanguage: fr
# Allow raw html in markdown file
markup: markup:
goldmark:
renderer:
unsafe: true
tableOfContents: tableOfContents:
startLevel: 2 startLevel: 2
endLevel: 6 endLevel: 6
ordered: false ordered: false
# Enable Google Analytics
googleAnalytics: UA-XXXXXXXXX-X
# Enable Disqus forum
disqusShortname: does-not-exist
# Enable global emoji support # Enable global emoji support
enableEmoji: true enableEmoji: true
# Custom parameters # Site parameters
params: 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 # 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 enableBlogPost: true
# specify whether you want to show Table of Contents in reading page # specify whether you want to show Table of Contents in reading page
@ -120,31 +116,26 @@ params:
enable: true 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 #### Running Locally
`static/assets/css/style.css` file and add any custom CSS there.
## Usage Now, you can run your hugo site with `toha` theme locally with the following command:
Run your hugo site with this theme.
```console ```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. 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/).
You can configure your site by following the step by step guides from [here](https://toha.netlify.app/posts/configuration/).
## Shortcodes ## Shortcodes
Here, are some handy shortcodes you can use with this theme. Here, are some handy shortcodes you can use with this theme.
- [img](https://toha.netlify.app/posts/short-codes/img/) - [Alert](https://toha-guides.netlify.app/posts/short-codes/alert/)
- [split](https://toha.netlify.app/posts/short-codes/split/) - [Image](https://toha-guides.netlify.app/posts/short-codes/img/)
- [vs](https://toha.netlify.app/posts/short-codes/vs/) - [Split](https://toha-guides.netlify.app/posts/short-codes/split/)
- [alert](https://toha.netlify.app/posts/short-codes/alert/) - [Vertical Space](https://toha-guides.netlify.app/posts/short-codes/vs/)
## Project Roadmap ## Project Roadmap
@ -188,6 +179,14 @@ Here, are the current plan and progress of various components of this theme. The
- [x] **Recent Posts** - [x] **Recent Posts**
- [ ] **Academic Career**
- [ ] Degree
- [ ] Institution
- [ ] Timeline
- [ ] Taken Courses
- [ ] CGPA
- [ ] Extracurricular Activities
- [ ] **Publications** - [ ] **Publications**
- [ ] Category Filter - [ ] Category Filter
- [ ] Card - [ ] Card
@ -215,10 +214,11 @@ Here, are the current plan and progress of various components of this theme. The
- [x] Hero Image - [x] Hero Image
- [x] Author Information - [x] Author Information
- [x] Sidebar
- [x] Table of Contents
- [x] Next & Previous Page Navigation - [x] Next & Previous Page Navigation
- [x] `Improve This Page` Button - [x] `Improve This Page` Button
- [x] Disqus Comment - [x] Disqus Comment
- [x] Option to navigate to list page
### Tracking and Comments ### 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. - Use as few dependencies as possible.
- Have patience. - 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 ## 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
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 At first, fork [this repo](https://github.com/hugo-toha/toha). Then, follow the following steps to use the forked theme for local developments,
git submodule update --init --recursive --remote
cd themes/toha **Using the forked theme in your own site:**
git remote add my-fork https://github.com/<your-github-user>/toha
git checkout -b my-feature-branch 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 ### Open a PR
When the changes look good, commit and push them to your fork When the changes look good, commit and push them to your fork.
```sh
git add . ```bash
git commit -m "A meaningful commit message" # stage all the changes
git push my-fork my-feature-branch $ 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 ## Attribution

View file

@ -9,19 +9,21 @@ languages:
en: en:
languageName: English languageName: English
weight: 1 weight: 1
fr:
languageName: Français
weight: 2
bn: bn:
languageName: বাংলা languageName: বাংলা
weight: 2
fr:
languageName: Français
weight: 3 weight: 3
de:
languageName: Deutsch
weight: 4
id: id:
languageName: Indonesian languageName: Indonesian
weight: 4
de:
languageName: Deutsch
weight: 5 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. # Force a locale to be use, really useful to develop the application ! Should be commented in production, the "weight" should rocks.
# DefaultContentLanguage: fr # DefaultContentLanguage: fr
@ -45,23 +47,23 @@ disqusShortname: does-not-exist
# Enable global emoji support # Enable global emoji support
enableEmoji: true enableEmoji: true
# Custom parameters # Site parameters
params: params:
# background image of the landing page # Background image of the landing page
background: "images/background.jpg" background: /images/site/background.jpg
# Provide logos for your site. The inverted logo will be used in the initial # 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. # 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: logo:
main: /assets/images/main-logo.png main: /images/site/main-logo.png
inverted: /assets/images/inverted-logo.png inverted: /images/site/inverted-logo.png
favicon: /assets/images/favicon.png favicon: /images/site/favicon.png
# GitHub repo URL of your site # 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 enableBlogPost: true
# specify whether you want to show Table of Contents in reading page # specify whether you want to show Table of Contents in reading page

View file

@ -1,13 +1,13 @@
# some information about you # some information about you
name: "জেইন ডো" name: "জন ডো"
nickname: "জেইন" nickname: "জন"
# greeting message before your name. it will default to "Hi! I am" if not provided # greeting message before your name. it will default to "Hi! I am" if not provided
greeting: "হ্যালো, আমি হলাম" greeting: "হ্যালো, আমি হলাম"
image: "images/avatar.png" image: "images/author/john.png"
# give your some contact information. they will be used in the footer # give your some contact information. they will be used in the footer
contactInfo: contactInfo:
email: "janedoe@example.com" ইমেইল: "johndoe@example.com"
phone: "+0123456789" ফোন: "+0123456789"
# some summary about what you do # some summary about what you do
summary: summary:

View file

@ -18,7 +18,7 @@ company:
resume: "files/resume.pdf" resume: "files/resume.pdf"
# a summary about you # 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 # your social links
# give as many as you want. use font-awesome for the icons. # give as many as you want. use font-awesome for the icons.

View file

@ -11,15 +11,15 @@ section:
# Your achievements achievements # Your achievements achievements
achievements: achievements:
- title: Best Presenter - title: সেরা উপস্থাপক
image: images/achievements/presenter.jpg image: /images/sections/achievements/presenter.jpg
summary: Best presenter in the 2020 XYZ conference. summary: 2020 XYZ কনফারেন্স এ সেরা উপস্থাপক
- title: Champion - title: বিজয়ী
image: images/achievements/sport.jpg image: /images/sections/achievements/sport.jpg
summary: Champion in cycling inter-city cycling championship 2020. summary: আন্তঃ শহর সাইক্লিং প্রতিযোগিতা ২০২০ এ বিজয়ী
- title: Graduation - title: গ্রাজুয়েশন
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. summary: XYZ ইউনিভার্সিটি থেকে কম্পিউটার বিজ্ঞানে স্নাতক সম্পন্ন করেছি
- title: Award Winner - title: পুরুস্কার বিজয়ী
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? summary: IEE Conference 2020 এ সেরা গবেষণাপত্রের পুরষ্কার বিজয়ী হয়েছি

View file

@ -14,52 +14,52 @@ experiences:
- company: - company:
name: Example Co. name: Example Co.
url: "https://www.example.com" url: "https://www.example.com"
location: Dhaka Branch location: ঢাকা ব্রাঞ্চ
# company overview # company overview
overview: Example Co. is a widely recognized company for cloud-native development. It builds tools for Kubernetes. overview: Example Co. হচ্ছে ক্লাউড নেটিভ ডেভেলপমেন্টের জন্যে একটি স্বীকৃত প্রতিষ্ঠান । এটি Kubernetes এর জন্যে বিভিন্ন সফটওয়্যার বানায়।
positions: positions:
- designation: Senior Software Engineer - designation: সিনিয়র সফটওয়্যার ইঞ্জিনিয়ার
start: Nov 2019 start: Nov 2019
# don't provide end date if you are currently working there. It will be replaced by "Present" # don't provide end date if you are currently working there. It will be replaced by "Present"
# end: Dec 2020 # end: Dec 2020
# give some points about what was your responsibilities at the company. # give some points about what was your responsibilities at the company.
responsibilities: responsibilities:
- Design and develop XYZ tool for ABC task - ABC কাজের জন্য XYZ টুল ডিজাইন ও ডেভেলপ করা ।
- Design, develop and manage disaster recovery tool [Xtool](https://www.example.com) that backup Kubernetes volumes, databases, and cluster's resource definition. - Kubernetes এর ভলিউম, ডাটাবেজ ইত্যাদি ব্যাকআপ নেওয়ার জন্যে বিপর্যয় পুনরুদ্ধার টুল ডিজাইন, ডেভেলপ এবং পরিচালনা করা।
- Lead backend team. - বাকেন্ড টিমের নেতৃত্ব দেওয়া।
- designation: Junior Software Engineer - designation: জুনিয়র সফটওয়্যার ইঞ্জিনিয়ার
start: Nov 2017 start: Nov 2017
end: Oct 2019 end: Oct 2019
responsibilities: responsibilities:
- Implement and test xyz feature for abc tool. - ABC টুল এর জন্য XYZ ফিচার বাস্তবায়ন করা এবং টেস্ট করা।
- Support client for abc tool. - ABC টুলের ক্লায়েন্ট সাপোর্ট দেওয়া।
- Learn k,d,w technology for xyz. - XYZ এর জন্য K, D, W টেকনোলজি শিখা।
- company: - company:
name: PreExample Co. name: PreExample Co.
url: "https://www.preexample.com" url: "https://www.preexample.com"
location: Nowhere location: Nowhere
overview: PreExample Co. is a gateway company to enter into Example co. So, nothing special here. overview: PreExample Co. হচ্ছে Example co. তে যাওয়ার মাধ্যম। সুতারাং, এখানে বিশেষ কিছু নেই।
positions: positions:
- designation: Software Engineer - designation: সফটওয়্যার ইঞ্জিনিয়ার
start: March 2016 start: March 2016
end: May 2017 end: May 2017
responsibilities: responsibilities:
- Write lots of example codes. - প্রচুর পরিমাণে উদাহারন কোড লিখা ।
- Read lots of examples. - প্রচুর পরিমাণে উদাহারন পড়া।
- See lots of example videos. - প্রচুর পরিমাণে উদাহারন ভিডিও দেখা ।
- company: - company:
name: Intern Counting Company (ICC). name: Intern Counting Company (ICC).
url: "https://www.intern.com" url: "https://www.intern.com"
location: Intern Land location: Intern Land
overview: Intern counting Company (ICC) is responsible for counting worldwide intern Engineers. overview: Intern counting Company (ICC) বিশ্বব্যাপী ইন্টার্ন ইঞ্জিনিয়ারদের গণনার জন্য দায়ী ।
positions: positions:
- designation: Intern - designation: ইন্টার্ন
start: Jun 2015 start: Jun 2015
end: Jan 2016 end: Jan 2016
responsibilities: responsibilities:
- Count lost of interns. - প্রচুর ইন্টার্ন গণনা করা।
- Count more interns. - আরও ইন্টার্ন গণনা করা।
- Count me as an intern. - নিজেকে ইন্টার্ন হিসেবে গণনা করা ।

View file

@ -11,19 +11,19 @@ section:
# filter buttons # filter buttons
buttons: buttons:
- name: All - name: সব বিষয়
filter: "all" filter: "all"
- name: Professional - name: প্রোফেসনাল
filter: "professional" filter: "professional"
- name: Academic - name: প্রাতিষ্ঠানিক
filter: "academic" filter: "academic"
- name: Hobby - name: শখের প্রোজেক্ট
filter: "hobby" filter: "hobby"
# your projects # your projects
projects: projects:
- name: Kubernetes - name: Kubernetes
logo: images/projects/kubernetes.png logo: /images/sections/projects/kubernetes.png
role: Contributor role: Contributor
timeline: "March 2018 - Present" 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. 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"] tags: ["professional", "kubernetes", "cloud"]
- name: Tensorflow - name: Tensorflow
logo: images/projects/tensorflow.png logo: /images/sections/projects/tensorflow.png
role: Developer role: Developer
timeline: "Jun 2018 - Present" timeline: "Jun 2018 - Present"
repo: https://github.com/tensorflow/tensorflow repo: https://github.com/tensorflow/tensorflow
@ -48,7 +48,7 @@ projects:
tags: ["academic","iot"] tags: ["academic","iot"]
- name: Nocode - name: Nocode
logo: images/projects/no-code.png logo: /images/sections/projects/no-code.png
role: Nothing role: Nothing
timeline: "Oct 2019 - Dec 2019" timeline: "Oct 2019 - Dec 2019"
repo: https://github.com/kelseyhightower/nocode repo: https://github.com/kelseyhightower/nocode
@ -57,7 +57,7 @@ projects:
tags: ["hobby", "fun"] tags: ["hobby", "fun"]
- name: Toha - name: Toha
logo: images/projects/toha.png logo: /images/sections/projects/toha.png
role: Owner role: Owner
timeline: "Jun 2019 - Present" timeline: "Jun 2019 - Present"
repo: https://github.com/hossainemruz/toha repo: https://github.com/hossainemruz/toha

View file

@ -13,38 +13,38 @@ section:
# Give a summary of you each skill in the summary section. # Give a summary of you each skill in the summary section.
skills: skills:
- name: Kubernetes - 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." summary: "আমি Kubernetes এ অ্যাপ্লিকেশান পরিচালনা করতে সক্ষম । আমার Kubernetes এ CRD এর জন্য কন্ট্রোলার লিখার অভিজ্ঞতা আছে ।"
url: "https://kubernetes.io/" url: "https://kubernetes.io/"
- name: Go Development - name: Go ডেভেলপমেন্ট
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." summary: "ডেভেলপমেন্টের জন্য প্রধান ভাষা হিসেবে ব্যবহার করছি। টেস্ট যোগ্য, রক্ষণাবেক্ষণ যোগ্য কোড লিখতে সক্ষম।"
url: "https://golang.org/" url: "https://golang.org/"
- name: Cloud Computing - name: ক্লাউড কম্পিউটিং
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." summary: "GCP, AWS, Azure গুলোর মত বেশিরভাগ বড় বড় ক্লাউড নিয়ে কাজর অভিজ্ঞতা আছে।"
- name: Docker - 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." summary: "বেশির ভাগ প্রোগ্রামেরই Docker কন্টেইনার তৈরি করি। মাল্টি স্টেজ এবং মাল্টি আর্কিটেকচার কন্টেইনার নিয়ে অভিজ্ঞতা আছে।"
url: "https://www.docker.com/" url: "https://www.docker.com/"
- name: Prometheus - 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." summary: "Prometheus metrics সেটআপ ও কনফিগার করতে সক্ষম। PromQL, AlertManager নিয়ে অভিজ্ঞতা আছে। Metric exporters লিখাতেও অভিজ্ঞতা আছে।"
url: "https://prometheus.io/" url: "https://prometheus.io/"
- name: Linux - name: লিনাক্স
icon: "images/skills/linux.png" icon: "/images/sections/skills/linux.png"
summary: "Using as the main operating system. Capable of writing bash/shell scripts." summary: "প্রধান অপারেটিং সিস্টেম হিসেবে ব্যবহার করছি। bash/shell scripts লিখতে সক্ষম।"
- name: Git - name: গিট
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." summary: "গিট ভিত্তিক ডেভেলপমেন্টের অভিজ্ঞতা আছে। বেশির ভাগ ক্ষেতরেই GitHub ব্যবহার করি তবে GitLab ব্যবহারেরও অভিজ্ঞতা আছে।"
url: "https://git-scm.com/" url: "https://git-scm.com/"
- name: C++ - 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." summary: "বেসিক C/C++ প্রোগ্রামিং জানি । প্রব্লেম সল্ভিং এবং কন্টেস্ট এর জন্য ব্যবহার করেছি।"

View file

@ -2,10 +2,10 @@
copyright: © 2020 Copyright. copyright: © 2020 Copyright.
# Meta description for your site. This will help the search engines to find your site. # 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. # 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. # they will be separated by a divider from the main menus.
customMenus: customMenus:
- name: নোটসমুহ - name: ডকুমেন্টেশন
url: https://hossainemruz.gitbook.io/ url: https://toha-guides.netlify.app/posts/

View file

@ -1,12 +1,12 @@
# some information about you # some information about you
name: "Jane Doe" name: "John Doe"
nickname: "Jane" nickname: "John"
# greeting message before your name. it will default to "Hi! I am" if not provided # greeting message before your name. it will default to "Hi! I am" if not provided
greeting: "Hi, I am" 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 # give your some contact information. they will be used in the footer
contactInfo: contactInfo:
email: "janedoe@example.com" email: "johndoe@example.com"
phone: "+0123456789" phone: "+0123456789"
# some summary about what you do # some summary about what you do

View file

@ -11,14 +11,14 @@ section:
# Your achievements achievements # Your achievements achievements
achievements: achievements:
- title: Best Presenter - title: Best Presenter
image: images/achievements/presenter.jpg image: /images/sections/achievements/presenter.jpg
summary: Best presenter in the 2020 XYZ conference. summary: Best presenter in the 2020 XYZ conference.
- title: Champion - title: Champion
image: images/achievements/sport.jpg image: /images/sections/achievements/sport.jpg
summary: Champion in cycling inter-city cycling championship 2020. summary: Champion in cycling inter-city cycling championship 2020.
- title: Graduation - 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. summary: Received Bachelor of Science (B.Sc.) in Computer Science and Engineer from XYZ University.
- title: Award Winner - title: Award Winner
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? summary: Wined best paper award at IEE Conference 2020.

View file

@ -22,7 +22,7 @@ buttons:
# your projects # your projects
projects: projects:
- name: Kubernetes - name: Kubernetes
logo: images/projects/kubernetes.png logo: /images/sections/projects/kubernetes.png
role: Contributor role: Contributor
timeline: "March 2018 - Present" 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. 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"] tags: ["professional", "kubernetes", "cloud"]
- name: Tensorflow - name: Tensorflow
logo: images/projects/tensorflow.png logo: /images/sections/projects/tensorflow.png
role: Developer role: Developer
timeline: "Jun 2018 - Present" timeline: "Jun 2018 - Present"
repo: https://github.com/tensorflow/tensorflow repo: https://github.com/tensorflow/tensorflow
@ -47,7 +47,7 @@ projects:
tags: ["academic","iot"] tags: ["academic","iot"]
- name: Nocode - name: Nocode
logo: images/projects/no-code.png logo: /images/sections/projects/no-code.png
role: Nothing role: Nothing
timeline: "Oct 2019 - Dec 2019" timeline: "Oct 2019 - Dec 2019"
repo: https://github.com/kelseyhightower/nocode repo: https://github.com/kelseyhightower/nocode
@ -56,7 +56,7 @@ projects:
tags: ["hobby", "fun"] tags: ["hobby", "fun"]
- name: Toha - name: Toha
logo: images/projects/toha.png logo: /images/sections/projects/toha.png
role: Owner role: Owner
timeline: "Jun 2019 - Present" timeline: "Jun 2019 - Present"
repo: https://github.com/hossainemruz/toha repo: https://github.com/hossainemruz/toha

View file

@ -12,38 +12,38 @@ section:
# Give a summary of you each skill in the summary section. # Give a summary of you each skill in the summary section.
skills: skills:
- name: Kubernetes - 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." summary: "Capable of deploying, managing application on Kubernetes. Experienced in writing Kubernetes controllers for CRDs."
url: "https://kubernetes.io/" url: "https://kubernetes.io/"
- name: Go Development - 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." summary: "Using as the main language for professional development. Capable of writing scalable, testable, and maintainable program."
url: "https://golang.org/" url: "https://golang.org/"
- name: Cloud Computing - 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." summary: "Worked with most of the major clouds such as GCP, AWS, Azure etc."
- name: Docker - 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." summary: "Write most of the programs as dockerized container. Experienced with multi-stage, multi-arch build process."
url: "https://www.docker.com/" url: "https://www.docker.com/"
- name: Prometheus - 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." summary: "Capable of setup, configure Prometheus metrics. Experienced with PromQL, AlertManager. Also, experienced with writing metric exporters."
url: "https://prometheus.io/" url: "https://prometheus.io/"
- name: Linux - 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." summary: "Using as the main operating system. Capable of writing bash/shell scripts."
- name: Git - 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." summary: "Experienced with git-based development. Mostly, use Github. Also, have experience in working with GitLab."
url: "https://git-scm.com/" url: "https://git-scm.com/"
- name: C++ - 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." summary: "Know basic C/C++ programming. Used for contest programming and problem solving."

View file

@ -2,10 +2,10 @@
copyright: © 2020 Copyright. copyright: © 2020 Copyright.
# Meta description for your site. This will help the search engines to find your site. # 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. # 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. # they will be separated by a divider from the main menus.
customMenus: customMenus:
- name: Notes - name: Docs
url: https://hossainemruz.gitbook.io/ url: https://toha-guides.netlify.app/posts/

View file

@ -1,13 +1,14 @@
name: "Jane Doe" # some information about you
nickname: "Jane" name: "John Doe"
image: "images/avatar.png" nickname: "John"
# greeting message before your name. it will default to "Hi! I am" if not provided # greeting message before your name. it will default to "Hi! I am" if not provided
greeting: "Bonjour, je suis" greeting: "Bonjour, je suis"
image: "images/author/john.png"
# give your some contact information. they will be used in the footer # give your some contact information. they will be used in the footer
contactInfo: contactInfo:
email: "janedoe@example.com" email: "johndoe@example.com"
phone: "+0123456789" phone: "+0123456789"
# some summary about what you do # some summary about what you do

View file

@ -12,14 +12,14 @@ section:
# Your achievements achievements # Your achievements achievements
achievements: achievements:
- title: Meilleur présentateur - 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. summary: Meilleur présentateur de la conférence XYZ 2020.
- title: Champion - title: Champion
image: images/achievements/sport.jpg image: /images/sections/achievements/sport.jpg
summary: Champion du championnat cycliste interurbain 2020. summary: Champion du championnat cycliste interurbain 2020.
- title: Remise des diplômes - 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. summary: J'ai obtenu une licence en sciences (B.Sc.) en informatique et en ingénierie à l'université XYZ.
- title: Lauréat du prix - 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? summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus architecto minus facere vero?

View file

@ -23,7 +23,7 @@ buttons:
# your projects # your projects
projects: projects:
- name: Kubernetes - name: Kubernetes
logo: images/projects/kubernetes.png logo: /images/sections/projects/kubernetes.png
role: Contributeur role: Contributeur
timeline: "Mars 2018 - Présent" 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. 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"] tags: ["professionnel", "kubernetes", "cloud"]
- name: Tensorflow - name: Tensorflow
logo: images/projects/tensorflow.png logo: /images/sections/projects/tensorflow.png
role: Développeur role: Développeur
timeline: "Juin 2018 - Présent" timeline: "Juin 2018 - Présent"
repo: https://github.com/tensorflow/tensorflow repo: https://github.com/tensorflow/tensorflow
@ -48,7 +48,7 @@ projects:
tags: ["ecole","iot"] tags: ["ecole","iot"]
- name: Nocode - name: Nocode
logo: images/projects/no-code.png logo: /images/sections/projects/no-code.png
role: Rien role: Rien
timeline: "Oct 2019 - Dec 2019" timeline: "Oct 2019 - Dec 2019"
repo: https://github.com/kelseyhightower/nocode repo: https://github.com/kelseyhightower/nocode
@ -57,7 +57,7 @@ projects:
tags: ["hobby", "fun"] tags: ["hobby", "fun"]
- name: Toha - name: Toha
logo: images/projects/toha.png logo: /images/sections/projects/toha.png
role: Owner role: Owner
timeline: "Juin 2019 - Présent" timeline: "Juin 2019 - Présent"
repo: https://github.com/hossainemruz/toha repo: https://github.com/hossainemruz/toha

View file

@ -13,38 +13,38 @@ section:
# Give a summary of you each skill in the summary section. # Give a summary of you each skill in the summary section.
skills: skills:
- name: Kubernetes - 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." 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/" url: "https://kubernetes.io/"
- name: Go - 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." summary: "Utiliser comme langue principale pour le développement professionnel. Capable d'écrire des programmes évolutifs, testables et maintenables."
url: "https://golang.org/" url: "https://golang.org/"
- name: Cloud Computing - 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." summary: "A travaillé avec la plupart des principaux nuages tels que GCP, AWS, Azure, etc."
- name: Docker - 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." 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/" url: "https://www.docker.com/"
- name: Prometheus - 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." 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/" url: "https://prometheus.io/"
- name: Linux - 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." summary: "Utilisé comme système d'exploitation principal. Capable d'écrire des scripts bash/shell."
- name: Git - 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." 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/" url: "https://git-scm.com/"
- name: C++ - 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." summary: "Connaître les bases de la programmation C/C++. Utilisé pour la programmation de concours et la résolution de problèmes."

View file

@ -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. # 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. # they will be separated by a divider from the main menus.
customMenus: customMenus:
- name: Remarques - name: Docs
url: https://hossainemruz.gitbook.io/ url: https://toha-guides.netlify.app/posts/

View file

@ -1,12 +1,12 @@
# some information about you # some information about you
name: "Jane Doe" name: "John Doe"
nickname: "Jane" nickname: "John"
# greeting message before your name. it will default to "Hi! I am" if not provided # greeting message before your name. it will default to "Hi! I am" if not provided
greeting: "Halo, saya" greeting: "Halo, saya"
image: "images/avatar.png" image: "images/author/john.png"
# give your some contact information. they will be used in the footer # give your some contact information. they will be used in the footer
contactInfo: contactInfo:
email: "janedoe@example.com" email: "johndoe@example.com"
phone: "+0123456789" phone: "+0123456789"
# some summary about what you do # some summary about what you do

View file

@ -11,14 +11,14 @@ section:
# Your achievements achievements # Your achievements achievements
achievements: achievements:
- title: Presenter Terbaik - title: Presenter Terbaik
image: images/achievements/presenter.jpg image: /images/sections/achievements/presenter.jpg
summary: Best presenter in the 2020 XYZ conference. summary: Best presenter in the 2020 XYZ conference.
- title: Juara - title: Juara
image: images/achievements/sport.jpg image: /images/sections/achievements/sport.jpg
summary: Champion in cycling inter-city cycling championship 2020. summary: Champion in cycling inter-city cycling championship 2020.
- title: Wisuda - 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. summary: Received Bachelor of Science (B.Sc.) in Computer Science and Engineer from XYZ University.
- title: Pemenang Award - 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? summary: Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus architecto minus facere vero?

View file

@ -22,7 +22,7 @@ buttons:
# your projects # your projects
projects: projects:
- name: Kubernetes - name: Kubernetes
logo: images/projects/kubernetes.png logo: /images/sections/projects/kubernetes.png
role: Contributor role: Contributor
timeline: "March 2018 - Present" 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. 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"] tags: ["professional", "kubernetes", "cloud"]
- name: Tensorflow - name: Tensorflow
logo: images/projects/tensorflow.png logo: /images/sections/projects/tensorflow.png
role: Developer role: Developer
timeline: "Jun 2018 - Present" timeline: "Jun 2018 - Present"
repo: https://github.com/tensorflow/tensorflow repo: https://github.com/tensorflow/tensorflow
@ -47,7 +47,7 @@ projects:
tags: ["academic","iot"] tags: ["academic","iot"]
- name: Nocode - name: Nocode
logo: images/projects/no-code.png logo: /images/sections/projects/no-code.png
role: Nothing role: Nothing
timeline: "Oct 2019 - Dec 2019" timeline: "Oct 2019 - Dec 2019"
repo: https://github.com/kelseyhightower/nocode repo: https://github.com/kelseyhightower/nocode
@ -56,7 +56,7 @@ projects:
tags: ["hobby", "fun"] tags: ["hobby", "fun"]
- name: Toha - name: Toha
logo: images/projects/toha.png logo: /images/sections/projects/toha.png
role: Owner role: Owner
timeline: "Jun 2019 - Present" timeline: "Jun 2019 - Present"
repo: https://github.com/hossainemruz/toha repo: https://github.com/hossainemruz/toha

View file

@ -12,38 +12,38 @@ section:
# Give a summary of you each skill in the summary section. # Give a summary of you each skill in the summary section.
skills: skills:
- name: Kubernetes - 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." summary: "Mampu menerapkan, mengelola aplikasi di Kubernetes. Berpengalaman dalam menulis pengontrol Kubernetes untuk CRD."
url: "https://kubernetes.io/" url: "https://kubernetes.io/"
- name: Go Development - 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." summary: "Menggunakan sebagai bahasa utama untuk pengembangan profesional. Mampu menulis program yang dapat diskalakan, dapat diuji, dan dipelihara."
url: "https://golang.org/" url: "https://golang.org/"
- name: Cloud Computing - 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." summary: "Worked with most of the major clouds such as GCP, AWS, Azure etc."
- name: Docker - 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." summary: "Tulis sebagian besar program sebagai kontainer docker. Berpengalaman dengan proses pembangunan multi-tahap dan multi-arch."
url: "https://www.docker.com/" url: "https://www.docker.com/"
- name: Prometheus - 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." summary: "Mampu mengatur, mengkonfigurasi metrik Prometheus. Berpengalaman dengan PromQL, AlertManager. Juga, berpengalaman dengan eksportir menulis metrik."
url: "https://prometheus.io/" url: "https://prometheus.io/"
- name: Linux - name: Linux
icon: "images/skills/linux.png" icon: "/images/sections/skills/linux.png"
summary: "Menggunakan sebagai sistem operasi utama. Mampu menulis skrip bash / shell." summary: "Menggunakan sebagai sistem operasi utama. Mampu menulis skrip bash / shell."
- name: Git - 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." summary: "Berpengalaman dengan pengembangan berbasis git. Kebanyakan, gunakan Github. Juga, miliki pengalaman bekerja dengan GitLab."
url: "https://git-scm.com/" url: "https://git-scm.com/"
- name: C++ - 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." summary: "Ketahui pemrograman C / C ++ dasar. Digunakan untuk pemrograman kontes dan pemecahan masalah."

View file

@ -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. # 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. # they will be separated by a divider from the main menus.
customMenus: customMenus:
- name: Catatan - name: Docs
url: https://hossainemruz.gitbook.io/ url: https://toha-guides.netlify.app/posts/

Binary file not shown.

After

Width:  |  Height:  |  Size: 8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

View file

Before

Width:  |  Height:  |  Size: 385 KiB

After

Width:  |  Height:  |  Size: 385 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 97 KiB

After

Width:  |  Height:  |  Size: 97 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 142 KiB

After

Width:  |  Height:  |  Size: 142 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 280 KiB

After

Width:  |  Height:  |  Size: 280 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 51 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 98 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 280 KiB

After

Width:  |  Height:  |  Size: 280 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

BIN
images/about.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

BIN
images/list.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 389 KiB

After

Width:  |  Height:  |  Size: 698 KiB

Before After
Before After

BIN
images/single.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 KiB

After

Width:  |  Height:  |  Size: 127 KiB

Before After
Before After

BIN
images/tn2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 KiB