Compare commits

..

No commits in common. "main" and "upstream_master" have entirely different histories.

78 changed files with 1733 additions and 2182 deletions

View file

@ -0,0 +1,29 @@
{
"name": "Jekyll",
"image": "mcr.microsoft.com/devcontainers/jekyll:2-bullseye",
"onCreateCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}",
"postCreateCommand": "bash .devcontainer/post-create.sh",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh"
},
"extensions": [
// Liquid tags auto-complete
"killalau.vscode-liquid-snippets",
// Liquid syntax highlighting and formatting
"Shopify.theme-check-vscode",
// Shell
"timonwong.shellcheck",
"mkhl.shfmt",
// Common formatter
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint",
"yzhang.markdown-all-in-one",
// Git
"mhutchie.git-graph"
]
}
}
}

View file

@ -0,0 +1,18 @@
#!/usr/bin/env bash
if [ -f package.json ]; then
bash -i -c "nvm install --lts && nvm install-latest-npm"
npm i
npm run build
fi
# Install dependencies for shfmt extension
curl -sS https://webi.sh/shfmt | sh &>/dev/null
# Add OMZ plugins
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
sed -i -E "s/^(plugins=\()(git)(\))/\1\2 zsh-syntax-highlighting zsh-autosuggestions\3/" ~/.zshrc
# Avoid git log use less
echo -e "\nunset LESS" >>~/.zshrc

View file

@ -1,64 +0,0 @@
name: "Build and Deploy Test Version (with Drafts) - next.asandikci.com"
on:
push:
branches:
- main
paths-ignore:
- .gitignore
- README.md
- LICENSE
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build-drafts-and-deploy:
runs-on: docker
container:
image: git.asandikci.com/docker-images/website_builder:latest
steps:
- name: Git Clone
run: |
git clone https://git.asandikci.com/asandikci.com/web
ls -la ./web
- name: Build Site (with Drafts!)
run: |
cd web
bundle install
bundle exec jekyll b --drafts
ls -la
pwd
env:
JEKYLL_ENV: "production"
# TODO: WILL BE FIXED
# - name: Test Site
# run: |
# cd web
# bundle exec htmlproofer _site \
# \-\-disable-external \
# \-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"
- name: Deploy
run: |
mkdir deploy && cd deploy
cp -rfv ../web/_site .
cd _site
# CURRENTLY USING PURE STFP FOR AUTH ONLY
# TODO: CHANGE THIS
echo '${{ secrets.SFTP_PASSWORD }}' > ~/.passwd
chmod 0400 ~/.passwd
sshpass -f ~/.passwd sftp -oBatchMode=no -o StrictHostKeyChecking=accept-new -b - ${{ secrets.SFTP_USERNAME }}@${{ vars.SFTP_HOST }} << !
bye
!
lftp --user ${{ secrets.SFTP_USERNAME }} --password ${{ secrets.SFTP_PASSWORD }} sftp://${{ vars.SFTP_HOST }} -e "mirror -R --delete . www/"

View file

@ -1,67 +0,0 @@
name: "Build and Deploy PRODUCTION Version - asandikci.com"
on:
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build-and-push-prod:
runs-on: docker
container:
image: git.asandikci.com/docker-images/website_builder:latest
steps:
- name: Git Clone
run: |
git clone https://git.asandikci.com/asandikci.com/web
ls -la ./web
- name: Build Site
run: |
cd web
bundle install
bundle exec jekyll b
env:
JEKYLL_ENV: "production"
- name: Push to "website" branch
run: |
mkdir website_branch && cd website_branch
git clone https://git.asandikci.com/asandikci.com/web
cd web
git checkout website
rm -rfv ./_site/
cp -rfv ../../web/_site .
git config --global user.name "Aliberk Sandıı (CI)"
git config --global user.email git+ci@asandikci.com
git add -A
git commit --all --message "Updated! [CI]"
git push https://asandikci:${{ secrets.PUSH_KEY }}@git.asandikci.com/asandikci.com/web
publish:
runs-on: docker
container:
image: git.asandikci.com/docker-images/website_builder:latest
steps:
- name: Checkout & Deploy
run: |
git clone https://git.asandikci.com/asandikci.com/web
cd web
git checkout website
cd _site
echo '${{ secrets.SFTP_PASSWORD_PROD }}' > ~/.passwd
chmod 0400 ~/.passwd
sshpass -f ~/.passwd sftp -oBatchMode=no -o StrictHostKeyChecking=accept-new -b - ${{ secrets.SFTP_USERNAME_PROD }}@${{ vars.SFTP_HOST_PROD }} << !
put -r . www/
bye
!
## TODO: WILL BE REPLACED WITH NEW LFTP SETUP !!!

17
.github/DISCUSSION_TEMPLATE/general.yml vendored Normal file
View file

@ -0,0 +1,17 @@
body:
- type: checkboxes
attributes:
label: Checklist
description: Following the guidelines can make you more likely to get responses.
options:
- label: >-
I have read and accepted the
[contributing guidelines](https://github.com/cotes2020/jekyll-theme-chirpy/blob/master/docs/CONTRIBUTING.md).
required: true
- type: textarea
attributes:
label: Description
description: Please describe in detail what you want to share.
validations:
required: true

7
.github/DISCUSSION_TEMPLATE/ideas.yml vendored Normal file
View file

@ -0,0 +1,7 @@
body:
- type: textarea
attributes:
label: Description
description: Please describe in detail what you want to share.
validations:
required: true

40
.github/DISCUSSION_TEMPLATE/q-a.yml vendored Normal file
View file

@ -0,0 +1,40 @@
body:
- type: checkboxes
attributes:
label: Checklist
description: Following the guidelines can make you more likely to get responses.
options:
- label: >-
I have read and accepted the
[contributing guidelines](https://github.com/cotes2020/jekyll-theme-chirpy/blob/master/docs/CONTRIBUTING.md).
required: true
- type: dropdown
id: download
attributes:
label: How did you create the site?
options:
- Generated from `chirpy-starter`
- Built from `jekyll-theme-chirpy`
validations:
required: true
- type: textarea
attributes:
label: Description
description: Please describe your need in detail.
validations:
required: true
- type: textarea
attributes:
label: Operations you have already tried
description: Describe the effort you went through.
validations:
required: true
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Or logs? Anything that will give us more context about the issue you are encountering!

2
.github/FUNDING.yml vendored Normal file
View file

@ -0,0 +1,2 @@
ko_fi: coteschung
custom: https://sponsor.cotes.page

64
.github/ISSUE_TEMPLATE/bug_report.yml vendored Normal file
View file

@ -0,0 +1,64 @@
name: Bug Report
description: Create a report to help us improve
body:
- type: checkboxes
attributes:
label: Checklist
description: Following the guidelines can make you more likely to get responses.
options:
- label: >-
I have read and accepted the
[contributing guidelines](https://github.com/cotes2020/jekyll-theme-chirpy/blob/master/docs/CONTRIBUTING.md).
required: true
- type: dropdown
id: download
attributes:
label: How did you create the site?
options:
- Generated from `chirpy-starter`
- Built from `jekyll-theme-chirpy`
validations:
required: true
- type: textarea
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
validations:
required: true
- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. In this environment...
2. With this config...
3. Run '...'
4. See error...
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
validations:
required: true
- type: textarea
attributes:
label: Environment
value: |
- Ruby: <!-- run `ruby -v` -->
- Jekyll: <!-- run `bundle exec jekyll -v` -->
- Chirpy: <!-- run `bundle info jekyll-theme-chirpy` -->
validations:
required: true
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Or logs? Anything that will give us more context about the issue you are encountering!

5
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View file

@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Ask the community for help
url: https://github.com/cotes2020/jekyll-theme-chirpy/discussions
about: Please ask and answer questions here.

View file

@ -0,0 +1,38 @@
name: Feature Request
description: Suggest an idea for this project
labels:
- enhancement
body:
- type: checkboxes
attributes:
label: Checklist
description: Following the guidelines can make you more likely to get responses.
options:
- label: >-
I have read and accepted the
[contributing guidelines](https://github.com/cotes2020/jekyll-theme-chirpy/blob/master/docs/CONTRIBUTING.md).
required: true
- type: textarea
attributes:
label: Is your feature request related to a problem? Please describe
description: A clear and concise description of what the problem is.
validations:
required: true
- type: textarea
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.
- type: textarea
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.

17
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View file

@ -0,0 +1,17 @@
## Type of change
<!-- Please select the desired item checkbox and change it from `[ ]` to `[x]` and then delete the irrelevant options. -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Improvement (refactoring and improving code)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Documentation update
## Description
<!--
Please include a summary of the change and which issue is fixed.
Please also include relevant motivation and context.
List any dependencies that are required for this change.
-->
## Additional context
<!-- e.g. Fixes #(issue) -->

2
.github/codeql/codeql-config.yml vendored Normal file
View file

@ -0,0 +1,2 @@
paths-ignore:
- "assets/js"

28
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,28 @@
version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "npm"
directory: "/"
versioning-strategy: increase
groups:
prod-deps:
dependency-type: production
dev-deps:
dependency-type: development
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
groups:
gh-actions:
update-types:
- "major"
schedule:
interval: "weekly"
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly

39
.github/workflows/cd.yml vendored Normal file
View file

@ -0,0 +1,39 @@
name: CD
on:
push:
branches: [production]
tags-ignore: ["**"]
jobs:
release:
if: ${{ ! startsWith(github.event.head_commit.message, 'chore(release)') }}
permissions:
contents: write
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm install
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
publish:
needs: release
uses: ./.github/workflows/publish.yml
secrets:
GH_PAT: ${{ secrets.GH_PAT }}
BUILDER: ${{ secrets.BUILDER }}

53
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,53 @@
name: CI
on:
push:
branches:
- master
- "hotfix/*"
paths-ignore:
- ".github/**"
- "!.github/workflows/ci.yml"
- .gitignore
- "docs/**"
- README.md
- LICENSE
pull_request:
paths-ignore:
- ".github/**"
- "!.github/workflows/ci.yml"
- .gitignore
- "docs/**"
- README.md
- LICENSE
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.1", "3.2", "3.3"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # for posts's lastmod
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Build Assets
run: npm i && npm run build
- name: Test Site
run: bash tools/test.sh

44
.github/workflows/codeql.yml vendored Normal file
View file

@ -0,0 +1,44 @@
name: "CodeQL"
on:
push:
branches: ["master"]
paths: ["_javascript/**/*.js"]
pull_request:
paths: ["_javascript/**/*.js"]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["javascript"]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: "${{ matrix.language }}"
config-file: .github/codeql/codeql-config.yml
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"

15
.github/workflows/commitlint.yml vendored Normal file
View file

@ -0,0 +1,15 @@
name: Lint Commit Messages
on:
push:
branches:
- master
- "hotfix/*"
pull_request:
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wagoid/commitlint-github-action@v6

25
.github/workflows/pr-filter.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: PR Filter
on:
pull_request_target:
types: [opened, reopened]
jobs:
check-template:
if: github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Check PR Content
id: intercept
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const script = require('.github/workflows/scripts/pr-filter.js');
await script({ github, context, core });

23
.github/workflows/publish.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: Publish
on:
push:
branches:
- docs
workflow_call:
secrets:
GH_PAT:
required: true
BUILDER:
required: true
workflow_dispatch:
jobs:
launch:
runs-on: ubuntu-latest
steps:
- run: |
curl -X POST -H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.GH_PAT }}" \
https://api.github.com/repos/${{ secrets.BUILDER }}/dispatches \
-d '{"event_type":"deploy", "client_payload":{"branch": "${{ github.ref_name }}"}}'

36
.github/workflows/scripts/pr-filter.js vendored Normal file
View file

@ -0,0 +1,36 @@
function hasTypes(markdown) {
return /## Type of change/.test(markdown) && /-\s\[x\]/i.test(markdown);
}
function hasDescription(markdown) {
return (
/## Description/.test(markdown) &&
!/## Description\s*\n\s*(##|\s*$)/.test(markdown)
);
}
module.exports = async ({ github, context, core }) => {
const pr = context.payload.pull_request;
const body = pr.body === null ? '' : pr.body;
const markdown = body.replace(/<!--[\s\S]*?-->/g, '');
const action = context.payload.action;
const isValid =
markdown !== '' && hasTypes(markdown) && hasDescription(markdown);
if (!isValid) {
await github.rest.pulls.update({
...context.repo,
pull_number: pr.number,
state: 'closed'
});
await github.rest.issues.createComment({
...context.repo,
issue_number: pr.number,
body: `Oops, it seems you've ${action} an invalid pull request. No worries, we'll close it for you.`
});
core.setFailed('PR content does not meet template requirements.');
}
};

32
.github/workflows/stale.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: "Close stale issues and PRs"
on:
schedule:
- cron: "0 0 * * *" # every day at 00:00 UTC
permissions:
issues: write
pull-requests: write
env:
STALE_LABEL: inactive
EXEMPT_LABELS: "pending,planning,in progress"
MESSAGE: >
This conversation has been automatically marked as stale because it has not had recent activity.
It will be closed if no further activity occurs.
Thank you for your contributions.
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
# 60 days before marking issues/PRs stale
days-before-close: -1 # does not close automatically
stale-issue-label: ${{ env.STALE_LABEL }}
exempt-issue-labels: ${{ env.EXEMPT_LABELS }}
stale-issue-message: ${{ env.MESSAGE }}
stale-pr-label: ${{ env.STALE_LABEL }}
exempt-pr-labels: ${{ env.EXEMPT_LABELS }}
stale-pr-message: ${{ env.MESSAGE }}

View file

@ -0,0 +1,73 @@
name: "Build and Deploy"
on:
push:
branches:
- main
- master
paths-ignore:
- .gitignore
- README.md
- LICENSE
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# submodules: true
# If using the 'assets' git submodule from Chirpy Starter, uncomment above
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- name: Build site
run: bundle exec jekyll b -d "_site${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: "production"
- name: Test site
run: |
bundle exec htmlproofer _site \
\-\-disable-external \
\-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"
- name: Upload site artifact
uses: actions/upload-pages-artifact@v3
with:
path: "_site${{ steps.pages.outputs.base_path }}"
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

25
.github/workflows/style-lint.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Style Lint
on:
push:
branches:
- master
- "hotfix/*"
paths: ["_sass/**/*.scss"]
pull_request:
paths: ["_sass/**/*.scss"]
jobs:
stylelint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm i
- run: npm test

3
.gitignore vendored
View file

@ -23,4 +23,5 @@ package-lock.json
!.vscode/tasks.json !.vscode/tasks.json
# Misc # Misc
#_sass/dist _sass/dist
assets/js/dist

1
.husky/commit-msg Normal file
View file

@ -0,0 +1 @@
npx --no -- commitlint --edit $1

View file

@ -1,6 +0,0 @@
FROM bitnami/minideb:bookworm-arm64
RUN apt update -y
RUN apt upgrade -y
RUN apt install nodejs sshpass ruby jekyll ruby-html-proofer -y

View file

@ -1,44 +1,104 @@
# The Site Configuration # The Site Configuration
# Import the theme
theme: jekyll-theme-chirpy theme: jekyll-theme-chirpy
# The language of the webpage http://www.lingoes.net/en/translator/langcode.htm
# If it has the same name as one of the files in folder `_data/locales`, the layout language will also be changed,
# otherwise, the layout language will use the default value of 'en'.
lang: en lang: en
timezone: Europe/Istanbul
# See for Jekyll SEO Tag Settings: https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md # Change to your timezone https://kevinnovak.github.io/Time-Zone-Picker
timezone: Asia/Shanghai
title: Aliberk Sandıı # jekyll-seo-tag settings https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md
tagline: Personal Website & Blog # ↓ --------------------------
description: >-
Personal Website & Blog of Aliberk Sandıı
url: "https://asandikci.com" title: Chirpy # the main title
baseurl: "/"
forgejo: tagline: A text-focused Jekyll theme # it will display as the subtitle
username: asandikci
domain: "git.asandikci.com" description: >- # used by seo meta and the atom feed
A minimal, responsive and feature-rich Jekyll theme for technical writing.
# Fill in the protocol & hostname for your site.
# E.g. 'https://username.github.io', note that it does not end with a '/'.
url: ""
github: github:
username: asandikci username: github_username # change to your GitHub username
twitter:
username: twitter_username # change to your Twitter username
social: social:
name: Aliberk Sandıı # Change to your full name.
email: contact@aliberksandikci.com.tr # It will be displayed as the default author of the posts and the copyright owner in the Footer
name: your_full_name
email: example@domain.com # change to your email address
links: links:
- https://git.asandikci.com/asandikci # The first element serves as the copyright owner's link
- https://github.com/asandikci - https://twitter.com/username # change to your Twitter homepage
- https://mastodon.social/@asandikci - https://github.com/username # change to your GitHub homepage
- https://www.linkedin.com/in/asandikci # Uncomment below to add more social links
# - https://www.facebook.com/username
# - https://www.linkedin.com/in/username
theme_mode: # [light | dark] # Site Verification Settings
webmaster_verifications:
google: # fill in your Google verification code
bing: # fill in your Bing verification code
alexa: # fill in your Alexa verification code
yandex: # fill in your Yandex verification code
baidu: # fill in your Baidu verification code
facebook: # fill in your Facebook verification code
# ↑ --------------------------
# The end of `jekyll-seo-tag` settings
# Web Analytics Settings # Web Analytics Settings
analytics: analytics:
google:
id: # fill in your Google Analytics ID
goatcounter:
id: # fill in your GoatCounter ID
umami: umami:
id: 80f4b239-3529-46be-b7a1-df82c6967a87 id: # fill in your Umami ID
domain: https://analytics.yayindasin.org domain: # fill in your Umami domain
matomo:
id: # fill in your Matomo ID
domain: # fill in your Matomo domain
cloudflare:
id: # fill in your Cloudflare Web Analytics token
fathom:
id: # fill in your Fathom Site ID
# Page views settings
pageviews:
provider: # now only supports 'goatcounter'
# Prefer color scheme setting.
#
# Note: Keep empty will follow the system prefer color by default,
# and there will be a toggle to switch the theme between dark and light
# on the bottom left of the sidebar.
#
# Available options:
#
# light — Use the light color scheme
# dark — Use the dark color scheme
#
theme_mode: # [light | dark]
# The CDN endpoint for media resources.
# Notice that once it is assigned, the CDN url
# will be added to all media resources (site avatar, posts' images, audio and video files) paths starting with '/'
#
# e.g. 'https://cdn.com'
cdn: "https://chirpy-img.netlify.app"
# the avatar on sidebar, support local or CORS resources # the avatar on sidebar, support local or CORS resources
avatar: https://asandikci.com/assets/img/pp.png avatar: "/commons/avatar.jpg"
# The URL of the site-wide social preview image used in SEO `og:image` meta tag. # The URL of the site-wide social preview image used in SEO `og:image` meta tag.
# It can be overridden by a customized `page.image` in front matter. # It can be overridden by a customized `page.image` in front matter.
@ -89,6 +149,9 @@ pwa:
paginate: 10 paginate: 10
# The base URL of your site
baseurl: ""
# ------------ The following options are not recommended to be modified ------------------ # ------------ The following options are not recommended to be modified ------------------
kramdown: kramdown:

View file

@ -6,6 +6,12 @@
# url: {homepage_of_author} # url: {homepage_of_author}
# ------------------------------------- # -------------------------------------
asandikci: cotes:
name: Aliberk Sandıı name: Cotes Chung
url: https://mastodon.social/@asandikci twitter: cotes2020
url: https://github.com/cotes2020/
sille_bille:
name: Dinesh Prasanth Moluguwan Krishnamoorthy
twitter: dinesh_MKD
url: https://github.com/SilleBille/

View file

@ -1,45 +1,31 @@
# The contact options. # The contact options.
- type: forgejo - type: github
icon: "fa-solid fa-code-branch" icon: "fab fa-github"
url: 'https://git.asandikci.com/'
- type: xmpp - type: twitter
icon: 'fa fa-xmpp' icon: "fa-brands fa-x-twitter"
url: 'xmpp:asandikci@aliberksandikci.com.tr'
- type: email - type: email
icon: "fas fa-envelope" icon: "fas fa-envelope"
noblank: false noblank: true # open link in current tab
- type: mastodon
icon: 'fa fa-mastodon'
url: 'https://mastodon.social/@asandikci/'
- type: linkedin
icon: 'fab fa-linkedin'
url: 'https://linkedin.com/in/asandikci'
- type: discord
icon: 'fa fa-discord'
url: 'https://discord.com/users/987999573479944222'
- type: instagram
icon: 'fa fa-instagram'
url: 'https://instagram.com/aliberksandikci'
# - type: codeberg
# icon: 'fl-codeberg'
# url: 'https://codeberg.org/asandikci'
- type: github
icon: 'fab fa-github'
url: 'https://github.com/asandikci'
- type: rss - type: rss
icon: "fas fa-rss" icon: "fas fa-rss"
noblank: true noblank: true
# Uncomment and complete the url below to enable more contact options
#
# - type: mastodon
# icon: 'fab fa-mastodon' # icons powered by <https://fontawesome.com/>
# url: '' # Fill with your Mastodon account page, rel="me" will be applied for verification
#
# - type: linkedin
# icon: 'fab fa-linkedin' # icons powered by <https://fontawesome.com/>
# url: '' # Fill with your Linkedin homepage
#
# - type: stack-overflow
# icon: 'fab fa-stack-overflow'
# url: '' # Fill with your stackoverflow homepage
# #
# - type: bluesky # - type: bluesky
# icon: 'fa-brands fa-bluesky' # icon: 'fa-brands fa-bluesky'

View file

@ -23,18 +23,9 @@ toc:
css: https://cdn.jsdelivr.net/npm/tocbot@4.29.0/dist/tocbot.min.css css: https://cdn.jsdelivr.net/npm/tocbot@4.29.0/dist/tocbot.min.css
js: https://cdn.jsdelivr.net/npm/tocbot@4.29.0/dist/tocbot.min.js js: https://cdn.jsdelivr.net/npm/tocbot@4.29.0/dist/tocbot.min.js
fontlogos:
css: https://cdn.jsdelivr.net/npm/font-logos@1/assets/font-logos.css
forkawesome:
css: https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css
fontawesome: fontawesome:
css: https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/all.min.css css: https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/all.min.css
ballooncss:
css: https://unpkg.com/balloon-css/balloon.min.css
search: search:
js: https://cdn.jsdelivr.net/npm/simple-jekyll-search@1.10.0/dest/simple-jekyll-search.min.js js: https://cdn.jsdelivr.net/npm/simple-jekyll-search@1.10.0/dest/simple-jekyll-search.min.js

View file

@ -1,21 +1,7 @@
# Sharing options at the bottom of the post.
# Icons from <https://fontawesome.com/>
platforms: platforms:
- type: Linkedin
icon: "fab fa-linkedin"
link: "https://www.linkedin.com/sharing/share-offsite/?url=URL"
- type: Mastodon
icon: "fa fa-mastodon"
# See: https://github.com/justinribeiro/share-to-mastodon#properties
instances:
- label: mastodon.social
link: "https://mastodon.social/"
- label: mastodon.online
link: "https://mastodon.online/"
- label: fosstodon.org
link: "https://fosstodon.org/"
- label: mastodon.com.tr
link: "https://mastodon.com.tr/"
- type: Twitter - type: Twitter
icon: "fa-brands fa-square-x-twitter" icon: "fa-brands fa-square-x-twitter"
link: "https://twitter.com/intent/tweet?text=TITLE&url=URL" link: "https://twitter.com/intent/tweet?text=TITLE&url=URL"
@ -28,18 +14,6 @@ platforms:
icon: "fab fa-telegram" icon: "fab fa-telegram"
link: "https://t.me/share/url?url=URL&text=TITLE" link: "https://t.me/share/url?url=URL&text=TITLE"
- type: Bluesky
icon: "fa-brands fa-bluesky"
link: "https://bsky.app/intent/compose?text=TITLE%20URL"
- type: Reddit
icon: "fa-brands fa-square-reddit"
link: "https://www.reddit.com/submit?url=URL&title=TITLE"
- type: Threads
icon: "fa-brands fa-square-threads"
link: "https://www.threads.net/intent/post?text=TITLE%20URL"
# Uncomment below if you need to. # Uncomment below if you need to.
# #
# - type: Linkedin # - type: Linkedin

View file

@ -1,56 +0,0 @@
---
title: "Pardus/Linux Yanına Windows Kurulumu"
date: 2024-07-22 10:00:00 +3000
categories: Linux
tags: pardus linux
author: asandikci
image:
path: https://4.bp.blogspot.com/-7lTiQNNrJjI/WAojkdqEvNI/AAAAAAAAAVI/IcAysrVEssYmTxQIi7t6nCRy5TtQXCXHACLcB/w1200-h630-p-k-no-nu/112159e69714e8cab4e1ab16f57447cb5e2559476e001.jpg
alt: "Pardus ve Windows"
---
GNU/Linux - Pardus işletim sistemi bir bilgisayar kullanıcısının isteyebileceği her türlü programı/kolaylığı sağlamakta. Lakin çeşitli programların yapımcıları tarafından Linux için desteklenmemesi (Adobe Programları gibi) veya oyunlarda bulunan çeşitli hile engelleme sistemlerinin Linux için portlanmamış olması (Valorant, LOL, Roblox vb.) sebebi ile Windows bir makineye hâlen bağımlılığınız bulunuyor olabilir. Bu tarz bir durumda **Pardus ile Windows'u birlikte kullanmak** gibi çok güzel bir seçeneğe sahibiz. Eğer Pardus'u denemek için indirdiyseniz silip Windows kurmadan önce bu seçeneği bir değerlendirin derim. Eğer yeterince disk alanınız varsa (ben en az 256GiB öneriyorum) **dual boot** dediğimiz iki sistemi aynı anda kullanma işlemini gerçekleştirmeniz için bu yazıyı yazmak istedim. Kolaylıklar dilerim
### Not
Bu yazı, Pardus'un yanına -> Windows kurmak içindir. Eğer Windows'un yanına -> Pardus kurmak istiyorsanız, Pardus sitesindeki yazıyı takip edebiliirsiniz: https://www.pardus.org.tr/windows-ile-dual-boot-olusturma/
### Windows'a bağımlığınızın olup olmadığını öğrenin !
Linux'te oynayabileceğiniz / oynayamayacağınız oyunlar: https://protondb.com
Desteklenen / Desteklenmeyen anticheat sistemleri: https://areweanticheatyet.com/
Popüler uygulamalara alternatifler: https://alternativeto.net
# Ön Gereklilikler
- En az 1 USB Bellek
- Pardus/Linux Kurulu bir makine (**64 Bit**)
- Mümkünse Ortalama/Hızlı bir internet bağlantısı _veya_ sabır
## Uyarı
- Sisteminizdeki önemli dosyaları yedek almanızı öneriyorum. Bu işlem kurulu olan Pardus sistemine _ufak bir ihtimal de olsa_ zarar verebilir
### Tahmini Süre
- 2-3 Saat (imaj dosyalarının indirilmesi hariç)
# Adımlar
- **Ventoy** programını Pardus mağaza üzerinden indiriniz ve Ventoy programını USB belleğinize kurunuz.
- Pardus/Linux sisteminizin yerini azaltmak için GParted uygulamasının **imaj (.iso)** dosyasını indiriniz, dosyanın doğruluğunu kontrol ediniz ve Ventoy'a (USB belleğinize) atınız.
- indirme linki: <https://downloads.sourceforge.net/gparted/gparted-live-1.6.0-3-amd64.iso>
- dosya kontrol linki: <https://gparted.org/gparted-live/stable/CHECKSUMS.TXT>
- tüm indirme seçenekleri: <https://gparted.org/download.php>
- Windows veya Pardus'un yanına kurmak istediğiniz herhangi bir İmaj (.iso) dosyasını indirin. Bu imaj dosyasını da Ventoy'a (USB Belleğinize) atınız
- Son olarak olası bir sıkıntıda GRUB (başlatma) ekranına erişim için BootRepair uygulamasının imaj dosyasını indirip USB Belleğe atınız (zorunlu değil ama kurtarma adımları için hayat kurtarabilir). İndirme linki: <https://sourceforge.net/projects/boot-repair-cd/files/latest/download>
- Tüm İndirme ve USB Belleğe atma işlemleri bittiğinde dosyaları doğrulamak için mümkünse Hash değerlerini kontrol edin. Veya en azından `sync` komutunu herhangi bir terminalde çalıştırarak komutun sonlanmasını bekleyin (duruma göre 15dk+ bekletebilir). Bu komut tüm verilerin USB Belleğe yazıldığında emin olmanızı sağlar. Sonrasında USB Belleğinizi isterseniz çıkarabilirsiniz.
- USB Belleğinizi cihazınıza takın. Bilgisayarınızı Yeniden başlatın ve Boot Tuşuna basarak cihazınızın başlatma menüsüne girin. Sonrasında _Ventoy_, _USB_ veya USB belleğinizin markasının isminin olduğu seçeneği seçiniz.
- Eğer her şey yolunda giderse içinde 3 tane .iso dosyasının bulunduğu bir ekran açılmış olacak. İlk önce Gparted (`gparted-live*.iso`) dosyasını seçiniz.
### Sıradaki adımlar Kısaca (sonradan güncellenecek)
- GParted üzerinden Pardus'un kurulu olduğu diski küçültün
- Windows'u kalan boş alana kurun
- Kurulum sonrasında ya BootRepair uygulamasını kullanın ya da Pardus'a bir şekilde girip boot-repair komutunu kullanın

View file

@ -1,14 +0,0 @@
---
title: "TUSAŞ Gezisi"
date: 2024-07-31 10:00:00 +3000
categories: Trip
tags: tusaş trip
author: asandikci
image:
path: https://trthaberstatic.cdn.wp.trt.com.tr/resimler/2022000/tusas-trt-haber-2022093.jpg
alt: "Türk Havacılık ve Uzay Sanayii AŞ"
---
Geçtiğimiz gün, 2024 tercih dönemi kapsamında bilgilendirme amaçlı TUSAŞ'ın düzenlediği geziye okulum İzmir Fen Lisesi adına katıldım. Her ne kadar havacılık konusunda pek bir bilgim olmasa da aldığım notlardan ve geziye dair deneyimlerim ile ilgili ufak bir yazı yazmak istedim. İyi okumalar
7 otobüs olarak TUSAŞ'a doğru yola çıktık. Girişte telefonlarımız toplandı ve otobüslerden inip konferans salonuna geçtik.

View file

@ -1,128 +1,107 @@
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta <meta name="theme-color" media="(prefers-color-scheme: light)" content="#f7f7f7">
name="theme-color" <meta name="theme-color" media="(prefers-color-scheme: dark)" content="#1b1b1e">
media="(prefers-color-scheme: light)" <meta name="mobile-web-app-capable" content="yes">
content="#f7f7f7" <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#1b1b1e"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta <meta
name="viewport" name="viewport"
content="width=device-width, user-scalable=no initial-scale=1, shrink-to-fit=no, viewport-fit=cover" content="width=device-width, user-scalable=no initial-scale=1, shrink-to-fit=no, viewport-fit=cover"
/> >
{%- capture seo_tags -%} {% seo title=false %} {%- endcapture -%} {%- capture seo_tags -%}
{% seo title=false %}
{%- endcapture -%}
<!-- Setup Open Graph image --> <!-- Setup Open Graph image -->
{% if page.image %} {% assign src = page.image.path | default: page.image %} {% if page.image %}
{% unless src contains '://' %} {%- capture img_url -%} {% include {% assign src = page.image.path | default: page.image %}
media-url.html src=src subpath=page.media_subpath absolute=true %} {%-
endcapture -%} {%- capture old_url -%}{{ src | absolute_url }}{%- endcapture {% unless src contains '://' %}
-%} {%- capture new_url -%}{{ img_url }}{%- endcapture -%} {% assign seo_tags {%- capture img_url -%}
= seo_tags | replace: old_url, new_url %} {% endunless %} {% elsif {% include media-url.html src=src subpath=page.media_subpath absolute=true %}
site.social_preview_image %} {%- capture img_url -%} {% include media-url.html {%- endcapture -%}
src=site.social_preview_image absolute=true %} {%- endcapture -%} {%- capture
og_image -%} {%- capture old_url -%}{{ src | absolute_url }}{%- endcapture -%}
<meta property="og:image" content="{{ img_url }}" /> {%- capture new_url -%}{{ img_url }}{%- endcapture -%}
{%- endcapture -%} {%- capture twitter_image -%}
<meta name="twitter:card" content="summary_large_image" /> {% assign seo_tags = seo_tags | replace: old_url, new_url %}
<meta property="twitter:image" content="{{ img_url }}" /> {% endunless %}
{%- endcapture -%} {% assign old_meta_clip = '
<meta name="twitter:card" content="summary" /> {% elsif site.social_preview_image %}
' %} {% assign new_meta_clip = og_image | append: twitter_image %} {% assign {%- capture img_url -%}
seo_tags = seo_tags | replace: old_meta_clip, new_meta_clip %} {% endif %} {{ {% include media-url.html src=site.social_preview_image absolute=true %}
seo_tags }} {%- endcapture -%}
{%- capture og_image -%}
<meta property="og:image" content="{{ img_url }}" />
{%- endcapture -%}
{%- capture twitter_image -%}
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:image" content="{{ img_url }}" />
{%- endcapture -%}
{% assign old_meta_clip = '<meta name="twitter:card" content="summary" />' %}
{% assign new_meta_clip = og_image | append: twitter_image %}
{% assign seo_tags = seo_tags | replace: old_meta_clip, new_meta_clip %}
{% endif %}
{{ seo_tags }}
<title> <title>
{%- unless page.layout == 'home' -%} {{ page.title | append: ' | ' }} {%- {%- unless page.layout == 'home' -%}
endunless -%} {{ site.title }} {{ page.title | append: ' | ' }}
{%- endunless -%}
{{ site.title }}
</title> </title>
{% include_cached favicons.html %} {% include_cached favicons.html %}
<!-- Resource Hints --> <!-- Resource Hints -->
{% unless site.assets.self_host.enabled %} {% for hint in {% unless site.assets.self_host.enabled %}
site.data.origin.cors.resource_hints %} {% for link in hint.links %} <link {% for hint in site.data.origin.cors.resource_hints %}
rel="{{ link.rel }}" href="{{ hint.url }}" {{ link.opts | join: ' ' }}> {% {% for link in hint.links %}
endfor %} {% endfor %} {% endunless %} <link rel="{{ link.rel }}" href="{{ hint.url }}" {{ link.opts | join: ' ' }}>
{% endfor %}
{% endfor %}
{% endunless %}
<!-- Bootstrap --> <!-- Bootstrap -->
{% unless jekyll.environment == 'production' %} {% unless jekyll.environment == 'production' %}
<link <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
/>
{% endunless %} {% endunless %}
<!-- Font Logos -->
<link
rel="stylesheet"
href="{{ site.data.origin[type].fontlogos.css | relative_url }}"
/>
<!-- Font Awesome Icons -->
<link
rel="stylesheet"
href="{{ site.data.origin[type].fontawesome.css | relative_url }}"
/>
<!-- Fork Awesome [added by asandikci] -->
<link
rel="stylesheet"
href="{{ site.data.origin[type].forkawesome.css | relative_url }}"
integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY="
crossorigin="anonymous"
/>
<!-- Balloon CSS [added by asandikci] -->
<link
rel="stylesheet"
href="{{ site.data.origin[type].ballooncss.css | relative_url }}"
/>
<!-- Theme style --> <!-- Theme style -->
<link <link rel="stylesheet" href="{{ '/assets/css/:THEME.css' | replace: ':THEME', site.theme | relative_url }}">
rel="stylesheet"
href="{{ '/assets/css/:THEME.css' | replace: ':THEME', site.theme | relative_url }}"
/>
<!-- Web Font --> <!-- Web Font -->
<link <link rel="stylesheet" href="{{ site.data.origin[type].webfonts | relative_url }}">
rel="stylesheet"
href="{{ site.data.origin[type].webfonts | relative_url }}" <!-- Font Awesome Icons -->
/> <link rel="stylesheet" href="{{ site.data.origin[type].fontawesome.css | relative_url }}">
<!-- 3rd-party Dependencies -->
{% if site.toc and page.toc %} {% if site.toc and page.toc %}
<link <link rel="stylesheet" href="{{ site.data.origin[type].toc.css | relative_url }}">
rel="stylesheet" {% endif %}
href="{{ site.data.origin[type].toc.css | relative_url }}"
/> {% if page.layout == 'post' or page.layout == 'page' or page.layout == 'home' %}
{% endif %} {% if page.layout == 'post' or page.layout == 'page' or <link rel="stylesheet" href="{{ site.data.origin[type]['lazy-polyfill'].css | relative_url }}">
page.layout == 'home' %} {% endif %}
<link
rel="stylesheet" {% if page.layout == 'page' or page.layout == 'post' %}
href="{{ site.data.origin[type]['lazy-polyfill'].css | relative_url }}" <!-- Image Popup -->
/> <link rel="stylesheet" href="{{ site.data.origin[type].glightbox.css | relative_url }}">
{% endif %} {% if page.layout == 'page' or page.layout == 'post' %}
<!-- Image Popup -->
<link
rel="stylesheet"
href="{{ site.data.origin[type].glightbox.css | relative_url }}"
/>
{% endif %} {% endif %}
<!-- JavaScript --> <!-- JavaScript -->
{% unless site.theme_mode %} {% include mode-toggle.html %} {% endunless %} {% {% unless site.theme_mode %}
include metadata-hook.html %} {% include mode-toggle.html %}
{% endunless %}
{% include metadata-hook.html %}
</head> </head>

View file

@ -1,7 +1,6 @@
<!-- JS selector for site. --> <!-- JS selector for site. -->
<!-- commons --> <!-- commons -->
<script src="/assets/js/user/copy.js"></script>
{% assign urls = site.data.origin[type].search.js %} {% assign urls = site.data.origin[type].search.js %}

View file

@ -19,12 +19,12 @@
<nav class="flex-column flex-grow-1 w-100 ps-0"> <nav class="flex-column flex-grow-1 w-100 ps-0">
<ul class="nav"> <ul class="nav">
<!-- home --> <!-- home -->
<!--<li class="nav-item{% if page.layout == 'home' %}{{ " active" }}{% endif %}"> <li class="nav-item{% if page.layout == 'home' %}{{ " active" }}{% endif %}">
<a href="{{ '/' | relative_url }}" class="nav-link"> <a href="{{ '/' | relative_url }}" class="nav-link">
<i class="fa-fw fas fa-home"></i> <i class="fa-fw fas fa-home"></i>
<span>{{ site.data.locales[include.lang].tabs.home | upcase }}</span> <span>{{ site.data.locales[include.lang].tabs.home | upcase }}</span>
</a> </a>
</li>--> </li>
<!-- the real tabs --> <!-- the real tabs -->
{% for tab in site.tabs %} {% for tab in site.tabs %}
<li class="nav-item{% if tab.url == page.url %}{{ " active" }}{% endif %}"> <li class="nav-item{% if tab.url == page.url %}{{ " active" }}{% endif %}">
@ -32,7 +32,7 @@
<i class="fa-fw {{ tab.icon }}"></i> <i class="fa-fw {{ tab.icon }}"></i>
{% capture tab_name %}{{ tab.url | split: '/' }}{% endcapture %} {% capture tab_name %}{{ tab.url | split: '/' }}{% endcapture %}
<span>{{ site.data.locales[include.lang].tabs.[tab_name] | default: tab.sidebartitle | upcase }}</span> <span>{{ site.data.locales[include.lang].tabs.[tab_name] | default: tab.title | upcase }}</span>
</a> </a>
</li> </li>
<!-- .nav-item --> <!-- .nav-item -->
@ -53,9 +53,9 @@
{% for entry in site.data.contact %} {% for entry in site.data.contact %}
{% case entry.type %} {% case entry.type %}
{% when 'forgejo' %} {% when 'github', 'twitter' %}
{%- capture url -%} {%- capture url -%}
https://{{ site[entry.type].domain }}/{{ site[entry.type].username }} https://{{ entry.type }}.com/{{ site[entry.type].username }}
{%- endcapture -%} {%- endcapture -%}
{% when 'email' %} {% when 'email' %}
{% assign email = site.social.email | split: '@' %} {% assign email = site.social.email | split: '@' %}

View file

@ -0,0 +1,200 @@
---
title: Text and Typography
description: Examples of text, typography, math equations, diagrams, flowcharts, pictures, videos, and more.
author: cotes
date: 2019-08-08 11:33:00 +0800
categories: [Blogging, Demo]
tags: [typography]
pin: true
math: true
mermaid: true
image:
path: /commons/devices-mockup.png
lqip: data:image/webp;base64,UklGRpoAAABXRUJQVlA4WAoAAAAQAAAADwAABwAAQUxQSDIAAAARL0AmbZurmr57yyIiqE8oiG0bejIYEQTgqiDA9vqnsUSI6H+oAERp2HZ65qP/VIAWAFZQOCBCAAAA8AEAnQEqEAAIAAVAfCWkAALp8sF8rgRgAP7o9FDvMCkMde9PK7euH5M1m6VWoDXf2FkP3BqV0ZYbO6NA/VFIAAAA
alt: Responsive rendering of Chirpy theme on multiple devices.
---
## Headings
<!-- markdownlint-capture -->
<!-- markdownlint-disable -->
# H1 — heading
{: .mt-4 .mb-0 }
## H2 — heading
{: data-toc-skip='' .mt-4 .mb-0 }
### H3 — heading
{: data-toc-skip='' .mt-4 .mb-0 }
#### H4 — heading
{: data-toc-skip='' .mt-4 }
<!-- markdownlint-restore -->
## Paragraph
Quisque egestas convallis ipsum, ut sollicitudin risus tincidunt a. Maecenas interdum malesuada egestas. Duis consectetur porta risus, sit amet vulputate urna facilisis ac. Phasellus semper dui non purus ultrices sodales. Aliquam ante lorem, ornare a feugiat ac, finibus nec mauris. Vivamus ut tristique nisi. Sed vel leo vulputate, efficitur risus non, posuere mi. Nullam tincidunt bibendum rutrum. Proin commodo ornare sapien. Vivamus interdum diam sed sapien blandit, sit amet aliquam risus mattis. Nullam arcu turpis, mollis quis laoreet at, placerat id nibh. Suspendisse venenatis eros eros.
## Lists
### Ordered list
1. Firstly
2. Secondly
3. Thirdly
### Unordered list
- Chapter
- Section
- Paragraph
### ToDo list
- [ ] Job
- [x] Step 1
- [x] Step 2
- [ ] Step 3
### Description list
Sun
: the star around which the earth orbits
Moon
: the natural satellite of the earth, visible by reflected light from the sun
## Block Quote
> This line shows the _block quote_.
## Prompts
<!-- markdownlint-capture -->
<!-- markdownlint-disable -->
> An example showing the `tip` type prompt.
{: .prompt-tip }
> An example showing the `info` type prompt.
{: .prompt-info }
> An example showing the `warning` type prompt.
{: .prompt-warning }
> An example showing the `danger` type prompt.
{: .prompt-danger }
<!-- markdownlint-restore -->
## Tables
| Company | Contact | Country |
| :--------------------------- | :--------------- | ------: |
| Alfreds Futterkiste | Maria Anders | Germany |
| Island Trading | Helen Bennett | UK |
| Magazzini Alimentari Riuniti | Giovanni Rovelli | Italy |
## Links
<http://127.0.0.1:4000>
## Footnote
Click the hook will locate the footnote[^footnote], and here is another footnote[^fn-nth-2].
## Inline code
This is an example of `Inline Code`.
## Filepath
Here is the `/path/to/the/file.extend`{: .filepath}.
## Code blocks
### Common
```text
This is a common code snippet, without syntax highlight and line number.
```
### Specific Language
```bash
if [ $? -ne 0 ]; then
echo "The command was not successful.";
#do the needful / exit
fi;
```
### Specific filename
```sass
@import
"colors/light-typography",
"colors/dark-typography";
```
{: file='_sass/jekyll-theme-chirpy.scss'}
## Mathematics
The mathematics powered by [**MathJax**](https://www.mathjax.org/):
$$
\begin{equation}
\sum_{n=1}^\infty 1/n^2 = \frac{\pi^2}{6}
\label{eq:series}
\end{equation}
$$
We can reference the equation as \eqref{eq:series}.
When $a \ne 0$, there are two solutions to $ax^2 + bx + c = 0$ and they are
$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a} $$
## Mermaid SVG
```mermaid
gantt
title Adding GANTT diagram functionality to mermaid
apple :a, 2017-07-20, 1w
banana :crit, b, 2017-07-23, 1d
cherry :active, c, after b a, 1d
```
## Images
### Default (with caption)
![Desktop View](/posts/20190808/mockup.png){: width="972" height="589" }
_Full screen width and center alignment_
### Left aligned
![Desktop View](/posts/20190808/mockup.png){: width="972" height="589" .w-75 .normal}
### Float to left
![Desktop View](/posts/20190808/mockup.png){: width="972" height="589" .w-50 .left}
Praesent maximus aliquam sapien. Sed vel neque in dolor pulvinar auctor. Maecenas pharetra, sem sit amet interdum posuere, tellus lacus eleifend magna, ac lobortis felis ipsum id sapien. Proin ornare rutrum metus, ac convallis diam volutpat sit amet. Phasellus volutpat, elit sit amet tincidunt mollis, felis mi scelerisque mauris, ut facilisis leo magna accumsan sapien. In rutrum vehicula nisl eget tempor. Nullam maximus ullamcorper libero non maximus. Integer ultricies velit id convallis varius. Praesent eu nisl eu urna finibus ultrices id nec ex. Mauris ac mattis quam. Fusce aliquam est nec sapien bibendum, vitae malesuada ligula condimentum.
### Float to right
![Desktop View](/posts/20190808/mockup.png){: width="972" height="589" .w-50 .right}
Praesent maximus aliquam sapien. Sed vel neque in dolor pulvinar auctor. Maecenas pharetra, sem sit amet interdum posuere, tellus lacus eleifend magna, ac lobortis felis ipsum id sapien. Proin ornare rutrum metus, ac convallis diam volutpat sit amet. Phasellus volutpat, elit sit amet tincidunt mollis, felis mi scelerisque mauris, ut facilisis leo magna accumsan sapien. In rutrum vehicula nisl eget tempor. Nullam maximus ullamcorper libero non maximus. Integer ultricies velit id convallis varius. Praesent eu nisl eu urna finibus ultrices id nec ex. Mauris ac mattis quam. Fusce aliquam est nec sapien bibendum, vitae malesuada ligula condimentum.
### Dark/Light mode & Shadow
The image below will toggle dark/light mode based on theme preference, notice it has shadows.
![light mode only](/posts/20190808/devtools-light.png){: .light .w-75 .shadow .rounded-10 w='1212' h='668' }
![dark mode only](/posts/20190808/devtools-dark.png){: .dark .w-75 .shadow .rounded-10 w='1212' h='668' }
## Video
{% include embed/youtube.html id='Balreaj8Yqs' %}
## Reverse Footnote
[^footnote]: The footnote source
[^fn-nth-2]: The 2nd footnote source

View file

@ -0,0 +1,505 @@
---
title: Writing a New Post
author: cotes
date: 2019-08-08 14:10:00 +0800
categories: [Blogging, Tutorial]
tags: [writing]
render_with_liquid: false
---
This tutorial will guide you how to write a post in the _Chirpy_ template, and it's worth reading even if you've used Jekyll before, as many features require specific variables to be set.
## Naming and Path
Create a new file named `YYYY-MM-DD-TITLE.EXTENSION`{: .filepath} and put it in the `_posts`{: .filepath} of the root directory. Please note that the `EXTENSION`{: .filepath} must be one of `md`{: .filepath} and `markdown`{: .filepath}. If you want to save time of creating files, please consider using the plugin [`Jekyll-Compose`](https://github.com/jekyll/jekyll-compose) to accomplish this.
## Front Matter
Basically, you need to fill the [Front Matter](https://jekyllrb.com/docs/front-matter/) as below at the top of the post:
```yaml
---
title: TITLE
date: YYYY-MM-DD HH:MM:SS +/-TTTT
categories: [TOP_CATEGORIE, SUB_CATEGORIE]
tags: [TAG] # TAG names should always be lowercase
---
```
> The posts' _layout_ has been set to `post` by default, so there is no need to add the variable _layout_ in the Front Matter block.
{: .prompt-tip }
### Timezone of Date
To accurately record the release date of a post, you should not only set up the `timezone` of `_config.yml`{: .filepath} but also provide the post's timezone in variable `date` of its Front Matter block. Format: `+/-TTTT`, e.g. `+0800`.
### Categories and Tags
The `categories` of each post are designed to contain up to two elements, and the number of elements in `tags` can be zero to infinity. For instance:
```yaml
---
categories: [Animal, Insect]
tags: [bee]
---
```
### Author Information
The author information of the post usually does not need to be filled in the _Front Matter_ , they will be obtained from variables `social.name` and the first entry of `social.links` of the configuration file by default. But you can also override it as follows:
Adding author information in `_data/authors.yml` (If your website doesn't have this file, don't hesitate to create one).
```yaml
<author_id>:
name: <full name>
twitter: <twitter_of_author>
url: <homepage_of_author>
```
{: file="_data/authors.yml" }
And then use `author` to specify a single entry or `authors` to specify multiple entries:
```yaml
---
author: <author_id> # for single entry
# or
authors: [<author1_id>, <author2_id>] # for multiple entries
---
```
Having said that, the key `author` can also identify multiple entries.
> The benefit of reading the author information from the file `_data/authors.yml`{: .filepath } is that the page will have the meta tag `twitter:creator`, which enriches the [Twitter Cards](https://developer.twitter.com/en/docs/twitter-for-websites/cards/guides/getting-started#card-and-content-attribution) and is good for SEO.
{: .prompt-info }
### Post Description
By default, the first words of the post are used to display on the home page for a list of posts, in the _Further Reading_ section, and in the XML of the RSS feed. If you don't want to display the auto-generated description for the post, you can customize it using the `description` field in the _Front Matter_ as follows:
```yaml
---
description: Short summary of the post.
---
```
Additionally, the `description` text will also be displayed under the post title on the post's page.
## Table of Contents
By default, the **T**able **o**f **C**ontents (TOC) is displayed on the right panel of the post. If you want to turn it off globally, go to `_config.yml`{: .filepath} and set the value of variable `toc` to `false`. If you want to turn off TOC for a specific post, add the following to the post's [Front Matter](https://jekyllrb.com/docs/front-matter/):
```yaml
---
toc: false
---
```
## Comments
The global switch of comments is defined by variable `comments.active` in the file `_config.yml`{: .filepath}. After selecting a comment system for this variable, comments will be turned on for all posts.
If you want to close the comment for a specific post, add the following to the **Front Matter** of the post:
```yaml
---
comments: false
---
```
## Media
We refer to images, audio and video as media resources in _Chirpy_.
### URL Prefix
From time to time we have to define duplicate URL prefixes for multiple resources in a post, which is a boring task that you can avoid by setting two parameters.
- If you are using a CDN to host media files, you can specify the `cdn` in `_config.yml`{: .filepath }. The URLs of media resources for site avatar and posts are then prefixed with the CDN domain name.
```yaml
cdn: https://cdn.com
```
{: file='_config.yml' .nolineno }
- To specify the resource path prefix for the current post/page range, set `media_subpath` in the _front matter_ of the post:
```yaml
---
media_subpath: /path/to/media/
---
```
{: .nolineno }
The option `site.cdn` and `page.media_subpath` can be used individually or in combination to flexibly compose the final resource URL: `[site.cdn/][page.media_subpath/]file.ext`
### Images
#### Caption
Add italics to the next line of an image, then it will become the caption and appear at the bottom of the image:
```markdown
![img-description](/path/to/image)
_Image Caption_
```
{: .nolineno}
#### Size
To prevent the page content layout from shifting when the image is loaded, we should set the width and height for each image.
```markdown
![Desktop View](/assets/img/sample/mockup.png){: width="700" height="400" }
```
{: .nolineno}
> For an SVG, you have to at least specify its _width_, otherwise it won't be rendered.
{: .prompt-info }
Starting from _Chirpy v5.0.0_, `height` and `width` support abbreviations (`height` → `h`, `width``w`). The following example has the same effect as the above:
```markdown
![Desktop View](/assets/img/sample/mockup.png){: w="700" h="400" }
```
{: .nolineno}
#### Position
By default, the image is centered, but you can specify the position by using one of the classes `normal`, `left`, and `right`.
> Once the position is specified, the image caption should not be added.
{: .prompt-warning }
- **Normal position**
Image will be left aligned in below sample:
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .normal }
```
{: .nolineno}
- **Float to the left**
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .left }
```
{: .nolineno}
- **Float to the right**
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .right }
```
{: .nolineno}
#### Dark/Light mode
You can make images follow theme preferences in dark/light mode. This requires you to prepare two images, one for dark mode and one for light mode, and then assign them a specific class (`dark` or `light`):
```markdown
![Light mode only](/path/to/light-mode.png){: .light }
![Dark mode only](/path/to/dark-mode.png){: .dark }
```
#### Shadow
The screenshots of the program window can be considered to show the shadow effect:
```markdown
![Desktop View](/assets/img/sample/mockup.png){: .shadow }
```
{: .nolineno}
#### Preview Image
If you want to add an image at the top of the post, please provide an image with a resolution of `1200 x 630`. Please note that if the image aspect ratio does not meet `1.91 : 1`, the image will be scaled and cropped.
Knowing these prerequisites, you can start setting the image's attribute:
```yaml
---
image:
path: /path/to/image
alt: image alternative text
---
```
Note that the [`media_subpath`](#url-prefix) can also be passed to the preview image, that is, when it has been set, the attribute `path` only needs the image file name.
For simple use, you can also just use `image` to define the path.
```yml
---
image: /path/to/image
---
```
#### LQIP
For preview images:
```yaml
---
image:
lqip: /path/to/lqip-file # or base64 URI
---
```
> You can observe LQIP in the preview image of post \"[Text and Typography](../text-and-typography/)\".
For normal images:
```markdown
![Image description](/path/to/image){: lqip="/path/to/lqip-file" }
```
{: .nolineno }
### Video
#### Social Media Platform
You can embed videos from social media platforms with the following syntax:
```liquid
{% include embed/{Platform}.html id='{ID}' %}
```
Where `Platform` is the lowercase of the platform name, and `ID` is the video ID.
The following table shows how to get the two parameters we need in a given video URL, and you can also know the currently supported video platforms.
| Video URL | Platform | ID |
| -------------------------------------------------------------------------------------------------- | ---------- | :------------- |
| [https://www.**youtube**.com/watch?v=**H-B46URT4mg**](https://www.youtube.com/watch?v=H-B46URT4mg) | `youtube` | `H-B46URT4mg` |
| [https://www.**twitch**.tv/videos/**1634779211**](https://www.twitch.tv/videos/1634779211) | `twitch` | `1634779211` |
| [https://www.**bilibili**.com/video/**BV1Q44y1B7Wf**](https://www.bilibili.com/video/BV1Q44y1B7Wf) | `bilibili` | `BV1Q44y1B7Wf` |
#### Video Files
If you want to embed a video file directly, use the following syntax:
```liquid
{% include embed/video.html src='{URL}' %}
```
Where `URL` is a URL to a video file e.g. `/path/to/sample/video.mp4`.
You can also specify additional attributes for the embedded video file. Here is a full list of attributes allowed.
- `poster='/path/to/poster.png'` — poster image for a video that is shown while video is downloading
- `title='Text'` — title for a video that appears below the video and looks same as for images
- `autoplay=true` — video automatically begins to play back as soon as it can
- `loop=true` — automatically seek back to the start upon reaching the end of the video
- `muted=true` — audio will be initially silenced
- `types` — specify the extensions of additional video formats separated by `|`. Ensure these files exist in the same directory as your primary video file.
Consider an example using all of the above:
```liquid
{%
include embed/video.html
src='/path/to/video.mp4'
types='ogg|mov'
poster='poster.png'
title='Demo video'
autoplay=true
loop=true
muted=true
%}
```
### Audios
If you want to embed an audio file directly, use the following syntax:
```liquid
{% include embed/audio.html src='{URL}' %}
```
Where `URL` is a URL to an audio file e.g. `/path/to/audio.mp3`.
You can also specify additional attributes for the embedded audio file. Here is a full list of attributes allowed.
- `title='Text'` — title for an audio that appears below the audio and looks same as for images
- `types` — specify the extensions of additional audio formats separated by `|`. Ensure these files exist in the same directory as your primary audio file.
Consider an example using all of the above:
```liquid
{%
include embed/audio.html
src='/path/to/audio.mp3'
types='ogg|wav|aac'
title='Demo audio'
%}
```
## Pinned Posts
You can pin one or more posts to the top of the home page, and the fixed posts are sorted in reverse order according to their release date. Enable by:
```yaml
---
pin: true
---
```
## Prompts
There are several types of prompts: `tip`, `info`, `warning`, and `danger`. They can be generated by adding the class `prompt-{type}` to the blockquote. For example, define a prompt of type `info` as follows:
```md
> Example line for prompt.
{: .prompt-info }
```
{: .nolineno }
## Syntax
### Inline Code
```md
`inline code part`
```
{: .nolineno }
### Filepath Highlight
```md
`/path/to/a/file.extend`{: .filepath}
```
{: .nolineno }
### Code Block
Markdown symbols ```` ``` ```` can easily create a code block as follows:
````md
```
This is a plaintext code snippet.
```
````
#### Specifying Language
Using ```` ```{language} ```` you will get a code block with syntax highlight:
````markdown
```yaml
key: value
```
````
> The Jekyll tag `{% highlight %}` is not compatible with this theme.
{: .prompt-danger }
#### Line Number
By default, all languages except `plaintext`, `console`, and `terminal` will display line numbers. When you want to hide the line number of a code block, add the class `nolineno` to it:
````markdown
```shell
echo 'No more line numbers!'
```
{: .nolineno }
````
#### Specifying the Filename
You may have noticed that the code language will be displayed at the top of the code block. If you want to replace it with the file name, you can add the attribute `file` to achieve this:
````markdown
```shell
# content
```
{: file="path/to/file" }
````
#### Liquid Codes
If you want to display the **Liquid** snippet, surround the liquid code with `{% raw %}` and `{% endraw %}`:
````markdown
{% raw %}
```liquid
{% if product.title contains 'Pack' %}
This product's title contains the word Pack.
{% endif %}
```
{% endraw %}
````
Or adding `render_with_liquid: false` (Requires Jekyll 4.0 or higher) to the post's YAML block.
## Mathematics
We use [**MathJax**][mathjax] to generate mathematics. For website performance reasons, the mathematical feature won't be loaded by default. But it can be enabled by:
[mathjax]: https://www.mathjax.org/
```yaml
---
math: true
---
```
After enabling the mathematical feature, you can add math equations with the following syntax:
- **Block math** should be added with `$$ math $$` with **mandatory** blank lines before and after `$$`
- **Inserting equation numbering** should be added with `$$\begin{equation} math \end{equation}$$`
- **Referencing equation numbering** should be done with `\label{eq:label_name}` in the equation block and `\eqref{eq:label_name}` inline with text (see example below)
- **Inline math** (in lines) should be added with `$$ math $$` without any blank line before or after `$$`
- **Inline math** (in lists) should be added with `\$$ math $$`
```markdown
<!-- Block math, keep all blank lines -->
$$
LaTeX_math_expression
$$
<!-- Equation numbering, keep all blank lines -->
$$
\begin{equation}
LaTeX_math_expression
\label{eq:label_name}
\end{equation}
$$
Can be referenced as \eqref{eq:label_name}.
<!-- Inline math in lines, NO blank lines -->
"Lorem ipsum dolor sit amet, $$ LaTeX_math_expression $$ consectetur adipiscing elit."
<!-- Inline math in lists, escape the first `$` -->
1. \$$ LaTeX_math_expression $$
2. \$$ LaTeX_math_expression $$
3. \$$ LaTeX_math_expression $$
```
> Starting with `v7.0.0`, configuration options for **MathJax** have been moved to file `assets/js/data/mathjax.js`{: .filepath }, and you can change the options as needed, such as adding [extensions][mathjax-exts].
> If you are building the site via `chirpy-starter`, copy that file from the gem installation directory (check with command `bundle info --path jekyll-theme-chirpy`) to the same directory in your repository.
{: .prompt-tip }
[mathjax-exts]: https://docs.mathjax.org/en/latest/input/tex/extensions/index.html
## Mermaid
[**Mermaid**](https://github.com/mermaid-js/mermaid) is a great diagram generation tool. To enable it on your post, add the following to the YAML block:
```yaml
---
mermaid: true
---
```
Then you can use it like other markdown languages: surround the graph code with ```` ```mermaid ```` and ```` ``` ````.
## Learn More
For more knowledge about Jekyll posts, visit the [Jekyll Docs: Posts](https://jekyllrb.com/docs/posts/).

View file

@ -0,0 +1,151 @@
---
title: Getting Started
description: >-
Get started with Chirpy basics in this comprehensive overview.
You will learn how to install, configure, and use your first Chirpy-based website, as well as deploy it to a web server.
author: cotes
date: 2019-08-09 20:55:00 +0800
categories: [Blogging, Tutorial]
tags: [getting started]
pin: true
media_subpath: '/posts/20180809'
---
## Creating a Site Repository
When creating your site repository, you have two options depending on your needs:
### Option 1. Using the Starter (Recommended)
This approach simplifies upgrades, isolates unnecessary files, and is perfect for users who want to focus on writing with minimal configuration.
1. Sign in to GitHub and navigate to the [**starter**][starter].
2. Click the <kbd>Use this template</kbd> button and then select <kbd>Create a new repository</kbd>.
3. Name the new repository `<username>.github.io`, replacing `username` with your lowercase GitHub username.
### Option 2. Forking the Theme
This approach is convenient for modifying features or UI design, but presents challenges during upgrades. So don't try this unless you are familiar with Jekyll and plan to heavily modify this theme.
1. Sign in to GitHub.
2. [Fork the theme repository](https://github.com/cotes2020/jekyll-theme-chirpy/fork).
3. Name the new repository `<username>.github.io`, replacing `username` with your lowercase GitHub username.
## Setting up the Environment
Once your repository is created, it's time to set up your development environment. There are two primary methods:
### Using Dev Containers (Recommended for Windows)
Dev Containers offer an isolated environment using Docker, which prevents conflicts with your system and ensures all dependencies are managed within the container.
**Steps**:
1. Install Docker:
- On Windows/macOS, install [Docker Desktop][docker-desktop].
- On Linux, install [Docker Engine][docker-engine].
2. Install [VS Code][vscode] and the [Dev Containers extension][dev-containers].
3. Clone your repository:
- For Docker Desktop: Start VS Code and [clone your repo in a container volume][dc-clone-in-vol].
- For Docker Engine: Clone your repo locally, then [open it in a container][dc-open-in-container] via VS Code.
4. Wait for the Dev Containers setup to complete.
### Setting up Natively (Recommended for Unix-like OS)
For Unix-like systems, you can set up the environment natively for optimal performance, though you can also use Dev Containers as an alternative.
**Steps**:
1. Follow the [Jekyll installation guide](https://jekyllrb.com/docs/installation/) to install Jekyll and ensure [Git](https://git-scm.com/) is installed.
2. Clone your repository to your local machine.
3. If you forked the theme, install [Node.js][nodejs] and run `bash tools/init.sh` in the root directory to initialize the repository.
4. Run command `bundle` in the root of your repository to install the dependencies.
## Usage
### Start the Jekyll Server
To run the site locally, use the following command:
```terminal
$ bundle exec jekyll s
```
> If you are using Dev Containers, you must run that command in the **VS Code** Terminal.
{: .prompt-info }
After a few seconds, the local server will be available at <http://127.0.0.1:4000>.
### Configuration
Update the variables in `_config.yml`{: .filepath} as needed. Some typical options include:
- `url`
- `avatar`
- `timezone`
- `lang`
### Social Contact Options
Social contact options are displayed at the bottom of the sidebar. You can enable or disable specific contacts in the `_data/contact.yml`{: .filepath} file.
### Customizing the Stylesheet
To customize the stylesheet, copy the theme's `assets/css/jekyll-theme-chirpy.scss`{: .filepath} file to the same path in your Jekyll site, and add your custom styles at the end of the file.
Starting with version `6.2.0`, if you want to overwrite the SASS variables defined in `_sass/addon/variables.scss`{: .filepath}, copy the main SASS file `_sass/main.scss`{: .filepath} to the `_sass`{: .filepath} directory in your site's source, then create a new file `_sass/variables-hook.scss`{: .filepath} and assign your new values there.
### Customizing Static Assets
Static assets configuration was introduced in version `5.1.0`. The CDN of the static assets is defined in `_data/origin/cors.yml`{: .filepath }. You can replace some of them based on the network conditions in the region where your website is published.
If you prefer to self-host the static assets, refer to the [_chirpy-static-assets_](https://github.com/cotes2020/chirpy-static-assets#readme) repository.
## Deployment
Before deploying, check the `_config.yml`{: .filepath} file and ensure the `url` is configured correctly. If you prefer a [**project site**](https://help.github.com/en/github/working-with-github-pages/about-github-pages#types-of-github-pages-sites) and don't use a custom domain, or if you want to visit your website with a base URL on a web server other than **GitHub Pages**, remember to set the `baseurl` to your project name, starting with a slash, e.g., `/project-name`.
Now you can choose _ONE_ of the following methods to deploy your Jekyll site.
### Deploy Using Github Actions
Prepare the following:
- If you're on the GitHub Free plan, keep your site repository public.
- If you have committed `Gemfile.lock`{: .filepath} to the repository, and your local machine is not running Linux, update the platform list of the lock file:
```console
$ bundle lock --add-platform x86_64-linux
```
Next, configure the _Pages_ service:
1. Go to your repository on GitHub. Select the _Settings_ tab, then click _Pages_ in the left navigation bar. In the **Source** section (under _Build and deployment_), select [**GitHub Actions**][pages-workflow-src] from the dropdown menu.
![Build source](pages-source-light.png){: .light .border .normal w='375' h='140' }
![Build source](pages-source-dark.png){: .dark .normal w='375' h='140' }
2. Push any commits to GitHub to trigger the _Actions_ workflow. In the _Actions_ tab of your repository, you should see the workflow _Build and Deploy_ running. Once the build is complete and successful, the site will be deployed automatically.
You can now visit the URL provided by GitHub to access your site.
### Manual Build and Deployment
For self-hosted servers, you will need to build the site on your local machine and then upload the site files to the server.
Navigate to the root of the source project, and build your site with the following command:
```console
$ JEKYLL_ENV=production bundle exec jekyll b
```
Unless you specified the output path, the generated site files will be placed in the `_site`{: .filepath} folder of the project's root directory. Upload these files to your target server.
[nodejs]: https://nodejs.org/
[starter]: https://github.com/cotes2020/chirpy-starter
[pages-workflow-src]: https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#publishing-with-a-custom-github-actions-workflow
[docker-desktop]: https://www.docker.com/products/docker-desktop/
[docker-engine]: https://docs.docker.com/engine/install/
[vscode]: https://code.visualstudio.com/
[dev-containers]: https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers
[dc-clone-in-vol]: https://code.visualstudio.com/docs/devcontainers/containers#_quick-start-open-a-git-repository-or-github-pr-in-an-isolated-container-volume
[dc-open-in-container]: https://code.visualstudio.com/docs/devcontainers/containers#_quick-start-open-an-existing-folder-in-a-container

View file

@ -0,0 +1,37 @@
---
title: Customize the Favicon
author: cotes
date: 2019-08-11 00:34:00 +0800
categories: [Blogging, Tutorial]
tags: [favicon]
---
The [favicons](https://www.favicon-generator.org/about/) of [**Chirpy**](https://github.com/cotes2020/jekyll-theme-chirpy/) are placed in the directory `assets/img/favicons/`{: .filepath}. You may want to replace them with your own. The following sections will guide you to create and replace the default favicons.
## Generate the favicon
Prepare a square image (PNG, JPG, or SVG) with a size of 512x512 or more, and then go to the online tool [**Real Favicon Generator**](https://realfavicongenerator.net/) and click the button <kbd>Select your Favicon image</kbd> to upload your image file.
In the next step, the webpage will show all usage scenarios. You can keep the default options, scroll to the bottom of the page, and click the button <kbd>Generate your Favicons and HTML code</kbd> to generate the favicon.
## Download & Replace
Download the generated package, unzip and delete the following two from the extracted files:
- `browserconfig.xml`{: .filepath}
- `site.webmanifest`{: .filepath}
And then copy the remaining image files (`.PNG`{: .filepath} and `.ICO`{: .filepath}) to cover the original files in the directory `assets/img/favicons/`{: .filepath} of your Jekyll site. If your Jekyll site doesn't have this directory yet, just create one.
The following table will help you understand the changes to the favicon files:
| File(s) | From Online Tool | From Chirpy |
|---------------------|:---------------------------------:|:-----------:|
| `*.PNG` | ✓ | ✗ |
| `*.ICO` | ✓ | ✗ |
<!-- markdownlint-disable-next-line -->
> ✓ means keep, ✗ means delete.
{: .prompt-info }
The next time you build the site, the favicon will be replaced with a customized edition.

View file

@ -1,202 +0,0 @@
---
title: "Pardus Ekibinden Ali Rıza ile Röportaj"
date: 2023-02-14 15:00:00 +3000
categories: Reportages
tags: linux pardus tubitak duzenlenecek
author: asandikci
---
<!-- wp:paragraph {"align":"left"} -->
<p class="has-text-align-left">Ankara'da düzenlenen 5. <strong>Verimlilik ve Teknoloji Fuarı</strong> kapsamında birçok stand ve etkinliğin yanında <strong>Pardus</strong> standı da vardı. Ben de hazır Ankara'da iken hem Pardus ekibi ile konuşmak hem de fuarı gezmek için alana gittim. Ekip ile tanıştıktan sonraki gün hazır ekibi yerinde bulmuşken neden bir röportaj yapmayayım dedim. Soruları hazırlamak için <a href="https://discord.gg/yusufipek" target="_blank" rel="noreferrer noopener" data-type="URL" data-id="https://discord.gg/yusufipek">Yusuf İpek'in Discord kanalı</a>ndanki değerli arkadaşlara danıştım, kendilerine müteşekkirim. Şimdi yanıtları bu blogun devamında soru-cevap şeklinde paylaşıyor olacağım.</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">1. <strong>Pardus ETAP neden Windows'tan gelen öğretmenler ve öğrenciler için Windows benzeri bir arayüz ile gelmiyor? Neden varsayılan olarak mesela GNOME kullanıyor ama özelleştirilmiş bir versiyonunu kullanmıyor ?</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Bunun en büyük sebebi Milli Eğitim Bakanlığı ile yapılan anlaşmalar gereği, onların istekleri doğrultusunda arayüz tasarladığımızdan dolayı o şekilde. İkincisi de Windows da çok kullanışlı bir sistem değil aslında biz bunu fark ettiğimiz için tahtalarda daha kullanışlı hâle getirmek için ona (Windows'a) benzemesinin gerekmediğini düşünüp ona göre bir tasarım yaptık.</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">2. <strong>Pardus etap neden <em>wine</em> önyüklü bir biçimde gelmiyor? En azından farklı imaj dosyaları harici çoğu imajda önyüklü olarak gelmiyor. Gelmesinin istenme sebebi de çoğu z-kitap vb. uygulamanın sadece wine üzerinden çalıştırılabiliyor olması</strong>.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Yani burada asıl mantık şu: O z-kitap ların windows versiyonlarını çıkarıp alın kullanın tarzı bir yaklaşımdan ziyade bunu özellikle linux tarafına uyarlamalarını istememizden dolayı böyle bir şey ortaya çıktı ve isteyen kişiler için de direkt wine ile gelen imajlar da var zaten. Resmi <a href="https://www.etap.org.tr/index.php/imajlar/" target="_blank" rel="noreferrer noopener">imajlar</a> diye bir bölüm var, oraya basarsanız görebilirsiniz.</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">3. <strong>Pardus neden varsayılan olarak libre office kullanıyor da onlyoffice kullanmiyor? en azından çoğu kullanıcı için microsofta uyumlulugu daha iyi</strong>.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Onlyoffice görünüş olarak microsoft officeye benziyor olabilir fakat uyumluluk ve belge formatının asıl üreticisinin libre office olmasından dolayı libre office'i tercih ediyoruz. Libre Office alıştıktan sonra herhangi bir arayüz sıkıntısı olmuyor zaten.</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">4. <strong>Pardus ETAP gibi sürümler <em>immutable</em> yapılmayı düşünülüyor mu ya da bir immutable sürüm yapmayı düşünüyorlar mı. Mesela sadece Flatpak vb. yöntemlerle uygulama kurulabilecek bir sürüm <time datetime="2023-02-14T21:21:55.565Z" aria-label="Edited February 15, 2023 12:21 AM"></time></strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Şu anda öyle bir planımız yok, isteyen kendisi bu şekilde ayarlayabilir.</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">5. <strong>Pardusun online kurulum seçeneği neden yok, paket ekleme çıkarma ve DE seçme vb. kurulum öncesi işlemleri için</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Online kurulum isosunu diyorsun, o var. Depo üzerinden indirilebiliyor. Sitede insanlar yanlışlıkla onu indirip niye kuramıyorum diye kafaları karışmasın diye eklemedik</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">6. <strong>Neden package updater ile pardus updater aynı sistem içerisinde bulunuyor, upgrade geldiğinde package updater karşımıza çıkıyor ama pardus mağazanın içinde de var.</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size">Onu ileride kaldırmayı düşünüyoruz</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">-<strong><em>benzer bir şey deb paket yükleyicisinde de olmuştu, yeterince geliştirince diğerini kaldıracaksınız sanırım</em></strong>-</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size">Aynen</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">7. <strong>Pardus kernel konfigrasyonlarında herhangi bir değişiklik yapıyor musunuz, eklenen bir patch var mı?</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Yok, direkt debian kerneli</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">8. <strong>BTRFS hakkında ne düşünüyorsunuz? varsayılan kurulumda BTRFS'i neden seçmiyorsunuz?</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">BTRFS kurumsal yerlerde çok gerekli bir özellik değil ayrıca kurulum aşamalarının da karmaşıklaşmasına sebep oluyor. Fakat manuel olarak kurulumu yapabilirsiniz, sitemizde de bununla ilgili bir <a href="https://gonullu.pardus.org.tr/pardus-btrfs-kurulum-bolum-1/" target="_blank" rel="noreferrer noopener">içerik</a> paylaştık zaten. Kurumlar bir sıkıntı olduğu zaman direkt imaj basıp geçmeyi tercih ediyor zaten.</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">9. <strong>Depodaki paketleriniz genel olarak eski ve örneğin FirefoxESR kullanılıyor, bu nedenden dolayı Kurumsal ve bireysel kullanıcılar için farklı iso yapma planınız var mı?</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Şu an için yok, biz şu anda kararlılık üzerine odaklanıyoruz.</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">10. <strong>Neden systemd bootloaderini kullanmıyorsunuz da grub kullanıyorsunuz</strong> <strong>?</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Debianda varsayılan olarak gelen o olduğu için. Bir de bir sıkıntı çıktığı zaman grub'da konsola girdiği için bazı komutlar ile hatanın ne olduğunu da anlayabiliyoruz.</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">11. <strong>Paketleri derlediğiniz sunucuda hangi dağıtımı kullanıyorsunuz?</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Debian. Pardus için derleme yaptığımız imajlar var, o imajların üzerinde bütün derleme araçları kurulu geliyor, onu kullanarak derliyoruz. Hem işimizi kolaylaştırıyor hem de neyin neye bağlı olduğunu görebiliyoruz. Aslında pardus kullanıyoruz bi bakıma ama debiandan çok bir farkı yok</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">12. <strong>Neden okullarda pardus zorunlu hale getirilmiyor, okulun bir bilişimcisi varsa hemen windowsa dönüştürüyor. Bunun için aldığınız bir önlem var mı?</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">O bizden ziyade Milli Eğitim Bakanlığı ile ilgili bir durum</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">-<strong><em>Anlıyorum ama şunları da eklemek istiyorum: tahta.etap.gov.tr adresinde bir veri paylaşıyorsunuz. Bizzat arkadaşlar ile o verileri inceledik ve tutarlı olmadığı kanısına vardık, o verilerin pardus etap <strong>kurulu gelen</strong> tahta sayısı olduğunu düşünüyorum ben. Bizim okulda da varmış bir tane ama benim haberim yok mesela</em></strong>-</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">3 ay ele alınmayan makineler database'den düşüyor. interneti olmayabilir, bozuk olabilir 3 ay boyunca mesela, o zaman da sistemden düşüyor</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">13. <strong>Gibux'a nasıl bakıyorsunuz, gibux yerine pardus kullanılamaz mıydı, neden kendi işletim sistemini yapmışlar bir daha? Tübitak ve Gelir Idaresi başkanlığının kararları ile ilgili şeyler mi?</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Hem o şekilde olabilir, hem de sistemlerinin tamamının kontrolünün kendilerinde olmasını istemiş olabilirler.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">-<strong><em>arkadan başka biri: Bir de tam 2013 zamanlarına denk gelmişti, o arada bi kopukluk\karmaşa var...</em></strong>-</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Aynen, iletişimsizlikten dolayı da olabilir...</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">14. <strong>Pardusu yaygınlaştırmak için başka çalışmalarınız var mı?</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Bu tür etkinliklerde, teknofestte varız. Çevremiz ile paylaşıyoruz, Kurumlar ile bazı anlaşmalarımız oluyor.</p>
<!-- /wp:paragraph -->
<!-- wp:separator --><hr class="wp-block-separator has-alpha-channel-opacity" /><!-- /wp:separator -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"18px"}}} -->
<p style="font-size: 18px;">15. <strong>Pardus debian tabanına geçtiği zaman sanırım bazı geliştiriciler pisi linux adında devam ettiler. Onların bu yönden ilerlemeye çalışma sebepleri nedir. Acaba onların şu anda olduğu gibi bu yönden gidilseydi acaba daha iyi mi olurdu</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">O konuda benim tecrübem var. Çünkü ben de bi ara onların arasındaydım, eskiden kalma bazı teknolojileri artık günümüzde kullanmak çok mantıklı değil. Hız bakımından olsun, daha modern teknolojiler olsun. O yüzden bazı şeylerin yenilenmesi gerektiğini düşünüyorum ben, buna en basit örnek de mesela debiandaki apt paket sistemi, yıllardır -25 civarı- aynı mantık ile gidiyor. bu yüzden paket yazması en zor dağıtımlardan birisi. Çünkü yeterince modern değil, onun yanında arch linux un paket yapısına baktığınızda gayet modern bir paket yapısına sahip. Fakat debian kadar uzun bir süre geliştirilip test edilmediği için onun kadar stabil bir yapıya da sahip değil. Bizim burada asıl amacımız taban oluşturmak olmadığı için biz debianı tercih ettik.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;"><strong><em>-Stabilite için yani?-</em></strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Aynen. Yani bazı şeylerin modernize edilmesi lazım haklısınız. Pisi linux konusunda da şunu söyleyeyim. Belki pisi linux kullanan arkadaşlar biraz kızabilir. Aslında yaptıkları şey 2011den sonraki bütün sadece paketleri güncellemek, bunun haricinde herhangi bir göze dokunur bir gelişme yok dediğin gibi ölü dağıtım haline geldi.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;"><strong><em>-Acaba mesela pardus bir yandan destek verseydi ölmeyip pardusun gelişmesine de katkı sağlayabilir miydi ?-</em></strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"typography":{"fontSize":"15px"}}} -->
<p style="font-size: 15px;">Ona yönelik de şöyle, ben 2016 yılında pisi linuxtan desteğimi tamamen çektim, yaptığınız iş kötü, geleceği yok gibisinden. Kendim projeler yapmaya başladım, önce onların -eski pardusun- tabanını alıp modernize etmeye başladım. Ordan da bir şey çıkmayınca hani ondan sonra kendim tekrar paket sistemi tasarlayım gibi bir uğraşlara girdim ve gerçekten aşırı uğraştırıcı ve zor bir iş. Anca siyah ekranda bir pencere çıkartabiliyorum</p>
<!-- /wp:paragraph -->

View file

@ -1,38 +0,0 @@
---
title: "Teknofest Pardus 21 Hata Yakalama ve Öneri Yarışması Deneyimlerim"
date: 2023-06-15 15:00:00 +3000
categories: Competitions
tags: teknofest pardus liderahenk tubitak duzenlenecek
author: asandikci
image:
path: https://gonullu.pardus.org.tr/wp-content/uploads/2023/07/pardus.jpg
alt: "Teknofest sitesindeki Pardus 21 Hata Yakalama ve Öneri Yarışması Kategorisi"
---
<!-- wp:paragraph -->
<p>Merhabalar, ben Teknofest 2023 Pardus 21 Hata Yakalama ve Öneri Yarışması finalisti Aliberk. Bu yazı içerisinde sizlere milli imkanlarla geliştirilen işletim sistemimiz Pardus üzerinde yakalamış olduğum hatalardan, yaptığım önerilerden ve genel olarak süreçten bahsetmek istiyorum.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Yaklaşık 2 yıldır GNU/Linux işletim sistemleri kullanmaktayım. Bu sebepten Teknofest içerisinde düzenlenen Pardus Hata Yakalama ve Öneri Yarışması özellikle dikkatimi çekti. Teknofest portalı üzerinden gerekli bilgileri doldurarak yarışmaya kaydımı yaptım. Sonrasında ilk işim bilgisayarıma Pardus kurmak ve kurcalamak oldu. Ben bilgisayar özelliklerimin çok iyi olmamasından kaynaklı XFCEyi tercih ettim.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Pardusu günlük yaşamımda da kullanarak fark ettiğim hataları ve “böyle bir özellik olsa güzel olurmuş” diye düşündüğüm özellikleri not ettim. Aynı zamanda bilişim öğretmenimden de okuldaki bilgisayarları kullanmak için izin aldım. Yarışma için 10 tane talep gönderebiliyorduk ve ben bu sayıyı tamamlamak istedim. Ama süreç içerisinde yeterince hata yakalayamadığımdan dolayı ben de Pardusun diğer alt projelerini inceleme kararı aldım.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Ahtapot, Engerek, Etap ve Liderahenk alt projelerinden daha çok ilgimi çektiğinden dolayı Liderahenk üzerinde hata yakalamak için çalışmalara başladım. Okuldaki 1 bilgisayara Lider sunucusunu 2 bilgisayara da Ahenk istemcisini kurdum. Bu sayede birkaç hata daha yakalama imkanım oldu. Bulduğum hatalar kritik hatalar değildi ama yine de kullanıcı deneyimini etkiliyordu.</p>
<!-- /wp:paragraph -->
<!-- wp:image {"id":7507,"linkDestination":"custom"} -->
<figure class="wp-block-image"><a href="https://gonullu.pardus.org.tr/merkezi-yonetim-sistemi/"><img src="https://gonullu.pardus.org.tr/wp-content/uploads/2023/07/maxresdefault-190757013-1-edited-1.jpg" alt="Pardus alt projesi Liderahenk, Merkezi Yönetim Sistemi" class="wp-image-7507"/></a></figure>
<!-- /wp:image -->
<!-- wp:paragraph -->
<p>Talep oluşturmak için gerekli hata ve önerileri biriktirdikten sonra bulduğum hataların iyi anlaşılması için sıfırdan bir sanal makine kurdum. Sonrasında video kaydı ve ekran görüntüleri de alarak gerekli raporlamaları yaptım. Aynı zamanda GitHub üzerinden de pull request açtım. Sonuç olarak, 4 hata, 6 öneri talebini sistem üzerinden ilettim.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Yaklaşık 3 hafta sonra ise Teknofest ekibinden bir mail geldi. Mailde Pardus 21 Hata Yakalama ve Öneri Yarışmasında finalist olduğum yazıyordu. 1 ay sonra da Teknofest için İstanbula gittim. Teknofest alanında 3. olduğumu öğrendim ve Pardus ekibi ile vakit geçirme fırsatı buldum. Standa gelen insanlara Pardusu tanıtma imkanı buldum. Benim için unutulmaz bir deneyimdi. İlgisini çekenlerin seneye katılmasını tavsiye ediyorum.</p>
<!-- /wp:paragraph -->

View file

@ -1,151 +0,0 @@
---
title: "Linux / Pardus / Debian üzerinde Epson Yazıcı Kullanma"
date: 2023-09-15 15:00:00 +3000
categories: [Linux, Troubleshooting]
tags: epson printer linux arch debian pardus duzenlenecek
author: asandikci
---
<!-- wp:paragraph -->
<p>Merhabalar evimde 1 Arch, 1 Pardus bilgisayarı olan biri olarak Epson yazıcı kullanmak ilk başlarda benim için bir işkenceydi. Ancak araştırmalarım neticesinde şu anda rahat bir şekilde Epson yazıcımı kullanabiliyor ve gerekli bakım işlemlerini yapabiliyorum.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Öncelikle bu blog yazısında anlatacağım tüm işlemleri L382 model bir Epson yazıcıda ve Pardus XFCE 21.4 ve 21.5 sürümlerinde denediğimi belirtmek isterim. L38x modellerinde benzer adımlar ile siz de yazıcınızı herhangi bir GNU/Linux sürümünde çalıştırabilirsiniz.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Gerekli dosyaları kurmadan önce yazıcınızın gerçekten bir sürücüye ihtiyacı olup olmadığını kontrol etmeniz işinizi kolaylaştırabilir. https://openprinting.github.io/printers/ adresinde eğer yazıcınız listelenmiş ise sürücü yüklemeye gerek olmadan kullanabilme ihtimaliniz var. Veya kullandığınız dağıtımınızdaki yazıcı ayarları veya yazıcı yönetimi uygulaması gerekli sürücüleri zaten indiriyor olabilir. Bunları da kontrol etmenizde fayda var. Epson L38x model yazıcılarda bu destek olmadığı için blogun geri kalanında manuel olarak nasıl bir driver yüklenebileceğini anlatıyor olacağım.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><strong>Debian / Pardus İçin Sürücü Yükleme İşlemi</strong></h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Debian veya Pardus üzerinde bir Epson Inkjet Driver'ı kurmak için öncelikle <code>lsb</code> paketine ihtiyaç var. Ne yazık ki bu paket artık desteklenmemekte ve artık debian/pardus repolarında direkt binary file olarak bulunmamakta, sadece kaynak kodu [1] var ve artık <code>lsb-release</code> ve <code>lsb-base</code> adı altında iki farklı binary file olarak yüklenip kullanılması öneriliyor. Ama Epsonun sitesinden indireceğiniz ilgili yazıcı sürücüsü [2] illa da <code>lsb&gt;=3.2</code> sürümünü istiyor.<br>Bu yüzden <em>her ne kadar <strong>eski</strong> olsa da</em> lsb uyumluluk sorunu çözmek için bu [3] <code>lsb-compat</code> paketini kullanabilirsiniz. Sonrasında gerekli sürücüleri siteden[2] indirip, direkt olarak kurabilir, yazıcı seçeneklerinden yapılandırabilirsiniz.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Tek bir kod öbeği içinde toplayacak olursak:</p>
<!-- /wp:paragraph -->
<!-- wp:code -->
```bash
sudo apt update -y
# paketleri günceller
sudo apt install lsb-* -y
sudo apt install lib32z1 wget -y
# gerekli çalıştırılabilir paketleri yükler
wget https://archive.debian.org/debian/pool/main/l/lsb/lsb-compat_9.20161125_amd64.deb
# lsb-compat paketini debian repolarından indirir
sudo apt install ./lsb-compat_9.20161125_amd64.deb -y
# lsb-compat paketini kur
```
<!-- /wp:code -->
<!-- wp:paragraph -->
<p>Not: <em>Bilgisayarınızın mimarisinin amd64 olduğu varsayılmıştır <code>uname -m</code> komutunu çalıştırarak kontrol edebilirsiniz. çıktı <code>x86_64</code> ise üstteki kod öbeğini kullanabilirsiniz</em>. Değilse <a href="https://archive.debian.org/debian/pool/main/l/lsb/lsb-compat_9.20161125_amd64.deb">https://archive.debian.org/debian/pool/main/l/lsb/</a> adresinden lsb-compat ile başlayan sizin mimarinize uygun .deb dosyasını indirip benzer şekilde yükleme adımını tamamlayabilirsiniz.</p>
<!-- /wp:paragraph -->
<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->
<!-- wp:paragraph -->
<p>Sonrasında <a href="https://download.ebz.epson.net/dsc/search/01/search/searchModule">EPSON Download Center</a> adresinden Linux ve L382 (veya sizin yazıcı modelinizi) seçip ürünü aratın. <code>ARM(AArch32)</code> yazanlar <strong>hariç</strong> diğer sürücülerin <code>amd64.deb</code> uzantısı ile biten versiyonlarını indirmeniz gerekiyor. (tabii ki yine bilgisayarınızın mimarisinin amd64 olduğunu varsayıyorum). Bende sadece ilkini indirince de sürücüyü algıladı, sanıyorum listedeki diğer paketler ekstra işlemler için. Eğer sizin modelinizin sürücüsünü bulamadıysanız https://www.openprinting.org/drivers adresinde de arayabilirsiniz. Yükleme işlemini yaptıktan sonra <code>sudo /etc/init.d/cups restart</code> komutunu girmeniz gerekebilir.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Son olarak şu adımları uygulayın:</p>
<!-- /wp:paragraph -->
<!-- wp:list {"ordered":true} -->
<ol><!-- wp:list-item -->
<li>Uygulamalar menüsünden <strong>Yazıcı ayarları</strong> seçeneğini seçin</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>ılan menüden aygıtınızı seçin</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Veri tabanından yazıcı seç seçeneğini işaretleyin</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Marka olarak Epson seçin</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Model listesinde L382 (veya sizin yazıcı modelinizi) bulun ve sağdan sürücüyü seçin</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Yazıcı bilgilerini ekleyin (isteğe bağlı)</li>
<!-- /wp:list-item --></ol>
<!-- /wp:list -->
<!-- wp:paragraph -->
<p>Bu adımları yaptıktan sonra yazıcınızın hem uygulamalar tarafından algılanıyor hem de doğru bir şekilde çıktı veriyor olması lazım. Dilerseniz test sayfası yazdırarak doğrulayabilirsiniz.</p>
<!-- /wp:paragraph -->
<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->
<!-- wp:paragraph -->
<p>Kaynaklar:<br>[1] <a href="https://packages.debian.org/source/bullseye/lsb">https://packages.debian.org/source/bullseye/lsb</a><br>[2] <a href="http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX">http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX</a><br>[3] <a href="https://archive.debian.org/debian/pool/main/l/lsb/lsb-compat_9.20161125_amd64.deb">https://archive.debian.org/debian/pool/main/l/lsb/lsb-compat_9.20161125_amd64.deb</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Ağustost 2023 Güncellemesi: <a href="https://packages.debian.org/stretch/lsb-compat">https://packages.debian.org/stretch/lsb-compat 1</a> linkinde bulunan lsb-compat artık arşivlenmiş durumdadır. Kaynak [3]'ten ulaşabilirsiniz. <br>İşlemlerin denendiği donanımlar: Pardus XFCE 21.4 ve 21.5, <code>x86_64</code> mimari , Epson L382 yazıcı</p>
<!-- /wp:paragraph -->
<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->
<!-- wp:paragraph -->
<p>Bu adımlar sürücüyü yüklemenizi sağladı mı? Herhangi bir sorunla karşılaştınız mı? Yorumlar kısmında belirtebilirsiniz.</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2 class="wp-block-heading">Arch İçin Sürücü Yükleme İşlemi</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Arch tabanlı dağıtımlarda Aur gibi bir nimet olduğu için sürücü yüklemek görece daha kolay. Hatta neden bilmiyorum L310 sürücüsü direkt yüklü olarak geldi (CUPS+Gutenprint) ve benim yazıcım ile de uyumlu idi. Onu direkt kullanabildim. Yine de yavaş yazdırıyordu ve bazen sıkıntı çıkartabiliyordu. O yüzden aur kullanarak kendi modelinizin sürücüsünü kurmanızı öneririm. Bunun için <code>yay epson | grep -B 1 L382</code> komutunu kullanarak ilgili sürücü bulabilir ve yükleyebilirsiniz. Tabii ki L382 yerine kendi modelinizi yazınız. Ayrıca PKGBUILD dosyasını da incelemek isteyebilirsiniz. </p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2 class="wp-block-heading">Yazıcı Yönetim Uygulaması Yükleme İşlemi</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>LSB kullanan yazıcıların yönetim uygulaması için <a href="https://support.epson.net/linux/Printer/LSB_distribution_pages/en/utility.php ">https://support.epson.net/linux/Printer/LSB_distribution_pages/en/utility.php </a> adresinden ilgili linki (debian/pardus için ilk link) indirip kurabilirsiniz. Arch için epson-printer-utility paketini aur üzerinden kurabilirsiniz. Uygulamanın çalışması için cihazınızı aç/kapa yapmanız gerekebilir. Ayrıca arch üzerinde ilk önce <code>/opt/epson-printer-utility/lib/epson-backend</code> içerisinde bulunan ecbd dosyasını root olarak çalıştırmanız gerekebilir. Uygulama kılavuzu için https://download.ebz.epson.net/man/linux/utility.html adresine göz atabilirsiniz. </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Umarım yazım faydalı olmuştur. Yanlış olduğunu düşündüğünüz kısımları veya sorularınızı yorumlar kısmından iletebilirsiniz.</p>
<!-- /wp:paragraph -->

View file

@ -1,570 +0,0 @@
---
title: "Android Cihazlar için Açık Kaynak / Özgür Yazılım Uygulama Alternatifleri"
date: 2023-11-21 15:00:00 +3000
categories: Android
tags: app-recommendations foss duzenlenecek
author: asandikci
---
<!-- wp:paragraph -->
<p>Günümüzde gizlilik ve güvenlik en önemli konulardan biri. Bunu sağlamanın en garanti yollarında biri ise kullandığımız uygulamaların açık kaynak olmasına dikkat etmek. Bu tarz uygulamaların kaynak kodu herkese açık bir şekilde görüntülenebildiği için hem güvenlik yamaları daha hızlı bir şekilde gelmekte hem de gizlilik ile ilgili kafamızda bir soru işareti oluşmamakta. Dolayısı ile bu uygulamaları teknolojik cihazlarımızda kullanmamız büyük bir önem taşımaktadır. Bu yazımızda sizin için hem gizlilik ve güvenliğinizi sağlayacak hem de verimliliğinizden geri bırakmayacak açık kaynak kodlu Android uygulamalarına yer vermek istedik.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"level":1} -->
<!-- <h1>[ez-toc]</h1> -->
<hr />
## Uygulama Mağazaları
<!-- /wp:heading -->
<!-- wp:paragraph -->
<ul>
<li>Burada paylaşacağım diğer tüm uygulamalar için öncelikle bu mağazalardan bir veya birkaçını indirmek işini kolayaştıracak ve otomatik güncelleme almanızı sağlayacaktır. Bu başlık altında <strong>Google Play Store</strong> için alternatif uygulamaları bulabilirsiniz.</li>
</ul>
<!-- /wp:paragraph -->
<!-- wp:heading -->
### [F-Droid](https://f-droid.org/F-Droid.apk)
<!-- <h2 class="wp-block-heading"><a href="https://f-droid.org/F-Droid.apk" target="_blank" rel="noreferrer noopener">F-Droid</a></h2> -->
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li>ık kaynak kodlu uygulamaların toplandığı bir mağaza. Kendi uygulama listenizi ekleyebildiğiniz gibi bu listedeki tüm uygulamaları bulmak için IzzyOnDroid reposunu da eklemek isteyebilirsiniz.</li>
<li>Benzer alternatif-1: <strong>AuroraDroid</strong>
<ul>
<li>Varsayılan olarak daha fazla özelliği var ama hem aktif olarak geliştirilmiyor hem de görece yavaş çalışıyor. Bir de bazı uygulamaların ikonları gözükmemekte</li>
</ul>
</li>
<li>Benzer alternatif-2: <strong>NeoStore</strong></li>
</ul>
### [AuroraStore](https://f-droid.org/en/packages/com.aurora.store/)
<!-- <h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/com.aurora.store/" target="_blank" rel="noreferrer noopener">AuroraStore</a> - Play Store Alternatifi</h2> -->
<ul>
<li class="wp-block-heading"><!-- wp:paragraph -->Play Store için alternatif arayüz. paralel uygulama yükleme, uygulamdaki izleyicileri(tracker) gösterme benzeri güzel özellikleri var. Anonim olarak veya Google Hesabınız ile giriş yaparak kullanabilirsiniz. <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:heading -->
<!-- wp:quote --><!-- /wp:quote -->
<!-- wp:heading -->
### [Obtainium](https://github.com/ImranR98/Obtainium/releases)
<!-- <h2 class="wp-block-heading"><a href="https://github.com/ImranR98/Obtainium/releases" target="_blank" rel="noreferrer noopener">Obtainium</a></h2> -->
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->GitHub, GitLab vb. bir linkten uygulamayı direkt siteden güncellemek için. Anında güncel tutmak istediğiniz veya üstteki diğer mağazalarda bulamadığınız uygulamalar için kullanılabilir.</li>
</ul>
<hr />
## Genel Kullanım
<!-- <h1>Genel Kullanım/wp:paragraph</h1> -->
<!-- /wp:quote -->
<!-- wp:heading {"level":1} --><!-- /wp:heading -->
<!-- wp:heading -->
### [Fossify Serisi](https://github.com/fossifyorg)
<!-- <h2 class="wp-block-heading"><a href="https://github.com/SimpleMobileTools/" target="_blank" rel="noreferrer noopener">Simple Mobile Tools Serisi</a></h2> -->
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Sade temel mobil uygulamalar serisi, özellikle önerdiklerim: <a href="https://f-droid.org/en/packages/org.fossify.gallery/" target="_blank" rel="noreferrer noopener">Galeri</a>, <a href="https://f-droid.org/en/packages/org.fossify.filemanager/" target="_blank" rel="noreferrer noopener">Dosya Yöneticisi</a>, <a href="https://f-droid.org/en/packages/org.fossify.calendar/" target="_blank" rel="noreferrer noopener">Takvim</a>, <a href="https://f-droid.org/en/packages/com.simplemobiletools.flashlight/" target="_blank" rel="noreferrer noopener">Fener</a>, <a href="https://f-droid.org/en/packages/org.fossify.voicerecorder/" target="_blank" rel="noreferrer noopener">Ses Kaydedici</a>, <a href="https://f-droid.org/en/packages/org.fossify.phone/" target="_blank" rel="noreferrer noopener">Telefon</a>, <a href="https://f-droid.org/en/packages/org.fossify.messages/" target="_blank" rel="noreferrer noopener">SMS</a>, <a href="https://f-droid.org/en/packages/org.fossify.contacts/" target="_blank" rel="noreferrer noopener">Kişiler</a>, <a href="https://f-droid.org/en/packages/com.simplemobiletools.notes.pro/" target="_blank" rel="noreferrer noopener">Notlar</a> <!-- /wp:paragraph --></li>
<li>güncelleme: Simple Mobile Tools uygulamaları artık Fossify adı ile devam etmekte</li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
### [Open Camera](https://f-droid.org/en/packages/net.sourceforge.opencamera/)
<!-- <h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/net.sourceforge.opencamera/" target="_blank" rel="noreferrer noopener">Open Camera</a></h2> -->
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote">Özelleştirilebilir kamera uygulaması. Hem Profesyonel fotoğrafçılar hem de günlük kullanıcılar için vazgeçilmez. Otomatik fotoğraf hizalayıcı, açı göstergeleri, gelişmiş odak noktası ayarları, iso ve estantene ayarları ve benzeri bir çok diğer kamera uygulamasında olmayan özelliklere sahip.<!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/eu.faircode.email/" target="_blank" rel="noreferrer noopener">Fair Mail</a> - Gmail Alternatifi</h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Gelişmiş kullanıcılar için özelleştirilebilir Mail arayüzü. Mail arayüzü, hesaplar, bildirimler, mail klasörleri, filterler için birçok özelleştirme yapmayı sağlıyor.<!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/app.organicmaps/" target="_blank" rel="noreferrer noopener">Organic Maps</a> - Google Maps Alternatifi</h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->OpenStreetMap için mobil arayüz, modern harita uygulaması. <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Benzer Alternatif: <strong><a href="https://f-droid.org/en/packages/com.graphhopper.maps/" target="_blank" rel="noreferrer noopener">GraphHopper Maps</a></strong><!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Arayüzü modern değil ama daha fazla yol seçeneği var (bisiklet, tır vb.)</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list --></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/org.tasks/" target="_blank" rel="noreferrer noopener">Tasks</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Görevler uygulaması, etiketler ve farklı kategoriler oluşturulabiliyor. Markdown desteği, görev önceliği, başlangıç/bitiş tarihi ekleme, alt görev ekleme vb. zengin özelliklere sahip . Aynı zamanda DAVx5, Nextcloud, Google Tasks vb. servisler ile de senkronize edilebiliyor. <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading {"level":3} --><hr /><!-- /wp:heading -->
<!-- wp:heading {"level":1} -->
<h1 class="wp-block-heading">Media &amp; Müzik</h1>
<!-- /wp:heading -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/org.schabi.newpipe/" target="_blank" rel="noreferrer noopener">Newpipe</a> - YouTube Alternatifi</h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Reklamsız YouTube deneyimi. Google hesabı gerektirmiyor. Videolar x3 hızlandırılabiliyor, ses olmayan kısımlar otomatik atlanabiliyor ve videolar indirilebiliyor. Görece eski bir arayüze sahip olsa da oldukça işlevsel <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Uygulamanın bu sürümünü tavsiye ediyorum: <a href="https://apt.izzysoft.de/fdroid/repo/org.polymorphicshade.newpipe_994.apk" target="_blank" rel="noreferrer noopener"><strong>Newpipe x SponsorBlock</strong></a><!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Newpipe forku, dislike sayısı gözüküyor ve sponsorlu kısımlar atlanabiliyor.</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list --></li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Benzer Alternatif 1: <strong>LibreTube</strong><!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Daha modern gözüken yeni bir alternatif ama şimdilik biraz buglu</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list --></li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Benzer Alternatif 2: <strong>ReVanced</strong><!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Komple YouTube görünümlü, YouTube engelleyene kadar Vanced ismi ile isimlendiriliyordu</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list --></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/de.danoeh.antennapod/" target="_blank" rel="noreferrer noopener">AntennaPod</a> - Google Podcast Alternatifi</h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Podcast dinlemek için mükemmel bir uygulama, birçok farklı podcast uygulamasından podcast çekebiliyor ve ses hızlandırma/senkronizasyon gibi gelişmiş özelliklere de sahip<!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/oss.krtirtho.spotube/" target="_blank" rel="noreferrer noopener">Spotube</a> - Spotify Alternatifi</h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Reklamsız spotify. Spotify hesabını bağlayabiliyorsunuz ve playlist oluşturma/üretme vb. değişik özelliklere sahip. Müzikleri YouTube üzerinden çekmekte ve Piped API'yı da kullanılabiliyor. Biraz yavaş ve buglu. <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Benzer Alternatif: <strong><a href="https://f-droid.org/en/packages/com.gokadzev.musify.fdroid/" target="_blank" rel="noreferrer noopener">Musify</a></strong><!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Bu listeyi hazırlarken bulduğum müzik için spotube uygulamasına güzel bir alternatif. Deneme fırsatım olmadı ama arayüzü güzel gözüküyor.</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list --></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/com.cliffracertech.soundaura/" target="_blank" rel="noreferrer noopener">SoundAura</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Farklı ses dosyalarını içeri aktarıp farklı ses miktarlarında karabiliyorsunuz. Ortam sesi oluşturmak için birebir.<!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/org.videolan.vlc/" target="_blank" rel="noreferrer noopener">VLC</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Anlatmaya gerek yok sanırım. En çok bilinen ve kullanılan medya oynatıcılarından biri.<!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<ul>
<li class="wp-block-heading">Benzer Alternatif: <a href="https://f-droid.org/en/packages/is.xyz.mpv/" target="_blank" rel="noreferrer noopener"><strong>mpv</strong></a></li>
</ul>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li style="list-style-type: none;">
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Sade ama güçlü medya oynatıcı. Benim için VLC'den öne çıkan yanı aynı anda iki farklı altyazı eklenebilmesi. Varsayılan olarak biraz daha hantal olabiliyor ama ayarlardan birçok performans ayarı yapılabiliyor (eski tip türkçe altyazılarda sıkıntı çıkabiliyor, öncesinde dönüştürme işlemi gerekebiliyor) <!-- /wp:paragraph --></li>
</ul>
</li>
</ul>
<hr /><!-- /wp:quote -->
<!-- wp:heading {"level":3} --><!-- /wp:heading -->
<!-- wp:heading {"level":1} -->
<h1 class="wp-block-heading">Dokümanlar</h1>
<!-- /wp:heading -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/net.gsantner.markor/" target="_blank" rel="noreferrer noopener">Markor</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Basit Markdown düzenleyici <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/com.foobnix.pro.pdf.reader/" target="_blank" rel="noreferrer noopener">Librera Reader</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->ık ara en iyi mobil pdf okuyucu, koyu modu var. Ne kadar yavaş da olsa daha birçok özellik barındırmakta. <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/org.documentfoundation.libreoffice/" target="_blank" rel="noreferrer noopener">LibreOffice Viewer</a> - Google Dökümanlar Alternatifi</h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->LibreOffice Görüntüleyici. ODT türü dosyaları görüntülemek için kullanılabilir. Word, Excel, Powerpoint dosyalarını da açmakta</li>
</ul>
<hr />
<p><!-- /wp:paragraph --></p>
<!-- /wp:quote -->
<!-- wp:heading {"level":1} -->
<h1 class="wp-block-heading">Sosyal</h1>
<!-- /wp:heading -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/fr.gouv.etalab.mastodon/" target="_blank" rel="noreferrer noopener">Fedilab</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Fediverse kullanıyorsanız bu uygulamaya bakmak isteyebilirsiniz. Gelişmiş bir arayüz. Mastodon, Pixelfed, PeerTube vb. uyumlu. <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://www.beeper.com/download" target="_blank" rel="noreferrer noopener">Beeper</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote">G<!-- wp:paragraph -->eliştirme aşamasında, 15 tane sosyal medya uygulamasını (whatsapp, telegram, discord vb.) tek bir uygulamadan yönetebilecekmişiz, kapalı beta sırasına girmek isteyebilirsiniz. <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/packages/eu.siacs.conversations/" target="_blank" rel="noreferrer noopener">Conversations</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->XMPP için kullanabileceğiniz sade bir uygulama <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading {"level":1} -->
<h1 class="wp-block-heading">Akıllı Bileklik veya Saati Olanlara</h1>
<!-- /wp:heading -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/nodomain.freeyourgadget.gadgetbridge/" target="_blank" rel="noreferrer noopener">Gadgetbridge</a> - MiFit Alternatifi</h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Akıllı bilekli ve saatler için açık kaynak mobil uygulama alternatifi, yaklaşik 1 senedir MiBand cihazım ile sorunsuz bir şekilde kullanıyorum ve daha birçok cihaz ile de sorunsuz çalışmakta. <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/de.dennisguse.opentracks/" target="_blank" rel="noreferrer noopener">OpenTracks</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Yürüyüş için istatistik ve konum geçmişi vb. Gadgetbridge ile uyumlu bir şekilde çalıştığı için bu başlık altına aldım ama akıllı bileklik/saat olmadan da kullanabilirsiniz. <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/com.ominous.quickweather/" target="_blank" rel="noreferrer noopener">QuickWeather</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Hava durumu uygulaması. Aynı zamanda Gadgetbridge'a hava durumu verisi sağlamakta.<!-- /wp:paragraph --></li>
</ul>
<hr /><!-- /wp:quote -->
<!-- wp:paragraph --><!-- /wp:paragraph -->
<!-- wp:heading {"level":1} -->
<h1 class="wp-block-heading">Kendi Sunucusu Olanların İlgisini Çekebilir</h1>
<ul>
<li>Eğer evde veya bir VPS üzerinde kendi sunucunuza sahip iseniz bu başlık altındaki android uygulamaları ilginizi çekebilir.</li>
</ul>
<!-- /wp:heading -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/com.nextcloud.client/" target="_blank" rel="noreferrer noopener">Nextcloud</a> - Google Drive Alternatifi</h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Verilerinizi nextcloud sunucunuz ile senkronize etmek ve verilerinize ulaşmak için <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/site.leos.apps.lespas/" target="_blank" rel="noreferrer noopener">Les Pas</a> - Google Fotoğraflar Alternatifi</h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Nextcloud fotoğraflarınız için galeri uygulaması <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/at.bitfire.davdroid/" target="_blank" rel="noreferrer noopener">Davx5</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Nextcloud veya CalDAV/CardDAV sunucunuz ile takvim, kişilerinizi senkronize etmek için.<!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/fr.chenry.android.freshrss/" target="_blank" rel="noreferrer noopener">FreshRSS</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->FreshRSS sunucunuz varsa resmi mobil uygulaması <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/org.mian.gitnex/" target="_blank" rel="noreferrer noopener">GitNex</a> - GitHub Alternatifi</h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Kendi Gitea veya Forgejo sunucusu olanlar kullanabilirler <!-- /wp:paragraph --></li>
</ul>
<hr /><!-- /wp:quote -->
<!-- wp:paragraph --><!-- /wp:paragraph -->
<!-- wp:paragraph --><!-- /wp:paragraph -->
<!-- wp:heading {"level":1} -->
<h1 class="wp-block-heading">Root Kullanıcıları İçin</h1>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Telefonu bizzat Rootlamadığım için burada vereceğim örnekler sığ olacaktır. Hâlihazırda cihazını rootlamış olanlar yorumlarda önerilerini yazabilirler. <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/org.adaway/" target="_blank" rel="noreferrer noopener">AdAway</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Reklam engelleyici, cihazda root olmadan vpn olarak çalıştırarak da kullanabilirsiniz ama root olarak çalıştırırsanız daha fazla verim alırsınız.<!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/com.topjohnwu.magisk/" target="_blank" rel="noreferrer noopener">Magisk</a>  /  <a href="https://apt.izzysoft.de/fdroid/index/apk/moe.shizuku.privileged.api" target="_blank" rel="noreferrer noopener">Shizuku</a></h2>
<!-- /wp:heading -->
<!-- wp:heading --><!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Bildiğim kadarı ile diğer uygulamalara root izni vermek için <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading -->
<h2 class="wp-block-heading"><a href="https://f-droid.org/en/packages/com.machiav3lli.backup/" target="_blank" rel="noreferrer noopener">Neo Backup</a></h2>
<!-- /wp:heading -->
<!-- wp:quote -->
<ul>
<li class="wp-block-quote"><!-- wp:paragraph -->Uygulamaların yedeğini almak için <!-- /wp:paragraph --></li>
</ul>
<!-- /wp:quote -->
<!-- wp:heading {"level":1} -->
<h1 class="wp-block-heading">Diğer</h1>
<ul>
<li><em>Diğer Uygulamalar ve Kategorize Etmeye Üşendiklerim .d</em></li>
</ul>
<!-- /wp:heading -->
<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Table Habit (mhabit)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>LibreSudoku</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>lichess</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Aliucord (telemetri kapatılmış discord, obtanium ile indirebilirsiniz.)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Binary Eye (barkod okuyucu)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Arity (2 ve 3 boyutlu görüntüleme özelliği olan hesap makinesi)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>WhatsDeleted (silinen WhatsApp mesajlarını görmek için <img src="https://discord.com/assets/ed49a11bddacc0f05ee7.svg" alt="" /> )</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Semitone (müzik ile uğraşanlar için metronom uygulaması)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Vector Camera</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>OpenKeychain</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Bitwarden</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Myne</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Logcat</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Termux (telefon terminali)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Shelter (uygulamaları ikinci kere yüklemek ve ayırmak için)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>LibreSpeed (speed test uygulaması)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>SD Maid SE (telefonda yer boşaltmak için)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>RHVoice (TTS motoru, ne yazık ki Türkçesi yok)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Openreads (kitap listesi uygulaması)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Florisboard (klavye uygulaması)</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->
<!-- wp:paragraph --><hr /><!-- /wp:paragraph -->
<!-- wp:heading {"level":1} -->
<h1 class="wp-block-heading">Alternatif bulamadıklarım</h1>
<!-- /wp:heading -->
<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Türkçe TTS (Text-to-speech) motoru</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>STT (Speech-to-text) motoru (Türkçe/İngilizce) (Kõnele var ama doğru düzgün ayarlamaya fırsatım olmadı)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>WebView alternatifi (Mozilla <a href="https://github.com/mozilla/geckoview" target="_blank" rel="noreferrer noopener">geckoview</a> üzerinde çalışıyor sanırım ama emin değilim)</li>
<!-- /wp:list-item -->
<!-- wp:list-item -->
<li>Zamanlanmış mail gönderebilen Mail Uygulaması (Fair Mail bunu sadece pro sürümünde yapıyor)</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->
<!-- wp:paragraph -->
<p>&nbsp;</p>
<h3>Siz de kullandığınız mobil açık kaynak / özgür yazılımları listeleyebilirsiniz, ekleme yapabilirsiniz veya benim bizzat bulamadıklarımı bulmamda yardımcı olabilirsiniz <img src="https://discord.com/assets/92fac0627ff6cd675f28.svg" alt="" /> Okuduğunuz için teşekkürler.</h3>
<!-- /wp:paragraph -->

View file

@ -728,7 +728,7 @@ $btn-mb: 0.5rem;
} }
.profile-wrapper { .profile-wrapper {
@include mt-mb(0.5rem); @include mt-mb(2.5rem);
@extend %clickable-transition; @extend %clickable-transition;
padding-left: 2.5rem; padding-left: 2.5rem;

File diff suppressed because one or more lines are too long

View file

@ -1,134 +1,8 @@
--- ---
# the default layout is 'page' # the default layout is 'page'
icon: fas fa-info-circle icon: fas fa-info-circle
order: 1 order: 4
title: About Me
--- ---
<div style="text-align:center;"><b> > Add Markdown syntax content to file `_tabs/about.md`{: .filepath } and it will show up on this page.
Software Enthusiast<br> {: .prompt-tip }
FOSS Advocate<br>
Linux User 🐧<br>
</b></div>
### I love...
- programming,
- learning new things (about everything but especially about new technologies),
- open source methodology,
- reading science-fiction and
- biking
### I speak...
- Turkish (Native)
- English (Intermediate)
### I interested in...
- network technologies
- devops
- system engineering
- system administration
- operating systems
- artificial intelligence
- algorithms
- back-end development
- activity-pub protocol
- linux development
### I spend my spare time with...
- cybersecurity
- self-hosting
- exploring foss projects
- web development
- android development
- playing piano
### I am volunteer of...
- Pardus
- TEMA
<!-- TODO - include other some open-source software/org here -->
<hr>
### Development Stack & Skills
<details><summary>Expand!</summary>
Note: How should I (or should I) rate these?
- Version Control
- Git
- Linux
- Debian
- Pardus
- Ubuntu
- Mint
- Kali
- NixOS
- Arch
- Programming Languages
- Go
- C/Cpp
- Python
- JavaScript
- PHP
- Scripting / Markup / Other Languages
- Bash
- HTML/CSS
- Markdown
- ...
- To be updated...
</details>
### Experience
- Summer Internship in <abbr title="Scientific and Technological Research Council of Turkey">TÜBİTAK</abbr>
- 2 months (hybrid)
- with Pardus & Liderahenk Team
- [see project](git.aliberksandikci.com.tr/liderahenk/ahenk-go)
### Education
- Izmir Science High School (2020 - 2024)
<!-- TODO - add school activites here -->
<!-- TODO ### Awards
- Ulusal Bilgisayar Olimpiyatları Bronz Madalya
* İzmir Bölge Yazılım Üçüncülüğü (53. 2204-A)
* İzmir Bölge Biyoloji Birinciliği (55. 2204-A)
* Ulusal Biyoloji Üçüncülüğü (55. 2204-A)
#Teknofest
* Pardus 21 Hata Yakalama ve Öneri Yarışması Üçüncülük
#GYEC Girişimcilik Yarışması
* Türkiye Birinciliği -->
<!-- TODO Linkedin'den doldur burayı -->
### Projects
- See the [Projects](/projects) tab!
### Setup
- NixOS [main]
- DE: KDE
- Display Server: Wayland
- Debian Bookworm [self-host]
- Administration: YunoHost
<hr>
Trying to use my own network services as alternative to services of big companies. I don't use any <abbr title="Facebook, Amazon, Apple, Microsoft, Google">FAAMG</abbr> services directly. Instead of them,
- I use my own services with self-hosting them:
- [Nextcloud](https://cloud.asandikci.com) - Cloud Service (alternative to Drive)
- [Forgeje](https://git.asandikci.com) - Git Service (alternative to GitHub)
- [FreshRSS](https://rss.asandikci.com) - News Service
- ...
- I use other alternative privacy-friendly services:
- [Mastodon](https://joinmastodon.org/) - Social Media (alternative to Twitter/Instagram etc.)
- [PeerTube](https://joinpeertube.org/) - Video Sharing (alternative to YouTube/Twitch etc.)
- ...
- I use alternative open-source clients for accessing <abbr title="Facebook, Amazon, Apple, Microsoft, Google">FAAMG</abbr> content:
- [Invidious](https://invidious.io/) - Alternative Frontend for ~~YouTube~~
- [Libreddit](https://github.com/libreddit/libreddit) - Alternative Frontend for ~~Reddit~~
- ...
- I also serve useful tools/services for public usage:
- See the [Services](/services) tab!

View file

@ -1,6 +1,5 @@
--- ---
layout: archives layout: archives
icon: fas fa-archive icon: fas fa-archive
order: 8 order: 3
title: Archives
--- ---

View file

@ -1,6 +1,5 @@
--- ---
layout: categories layout: categories
icon: fas fa-stream icon: fas fa-stream
order: 6 order: 1
title: Categories
--- ---

View file

@ -1,13 +0,0 @@
---
icon: fa-solid fa-mug-hot
order: 9
title: Buy me a Coffee ☕
sidebartitle: Donate
---
#### I work on free/libre and open source software and offer free services. General hosting and stuff costs around 890₺ (~$30), so feel free to donate in order to help me keep everything up and running!
| Platform | | ID |
|----------|-|------------|
| IBAN (Papara) | <button style="border-radius:10px;" onclick="addToClipboard('iban')" id="iban-button"><span class="fa-regular fa-copy"></span></button> | <span id="iban">TR63 0082 9000 0949 1444 3182 51</span> |
| Papara | <button style="border-radius:10px;" onclick="addToClipboard('papara')" id="papara-button"><span class="fa-regular fa-copy"></span></button> | <span id="papara">1444318251</span> |

View file

@ -1,8 +0,0 @@
---
icon: fas fa-stream
order: 3
title: Links
sidebartitle: Links
---
to be updated

View file

@ -1,14 +0,0 @@
---
icon: fa-solid fa-clock
order: 2
title: What I'm Doing Now
sidebartitle: Now
---
<ul>
<li style="font-size:x-large;">📚 Focusing YKS 🤓</li>
<li>working for ISEF project</li>
<li>self-hosting maintenance in free time</li>
</ul>
<p>Last Update: 17 November 2024</p>
<p style="font-size:small;">Inspired by: <br><a href="https://johanv.net/now/">https://johanv.net/now/</a><br><a href="https://nownownow.com/">https://nownownow.com/</a></p>

View file

@ -1,9 +0,0 @@
---
icon: fas fa-stream
order: 4
title: Projects
sidebartitle: Projects
---
to be updated
see [linkedin](https://linkedin.com/in/asandikci) for now

View file

@ -1,9 +0,0 @@
---
icon: fas fa-stream
order: 5
title: Services
sidebartitle: Services
---
to be updated
see [services.yayindasin.org](https://services.yayindasin.org) for now

View file

@ -1,6 +1,5 @@
--- ---
layout: tags layout: tags
icon: fas fa-tags icon: fas fa-tags
order: 7 order: 2
title: Tags
--- ---

View file

@ -7,4 +7,4 @@
{%- endif -%} {%- endif -%}
'; ';
/* append your custom style below */ /* append your custom style below */

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -1,46 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="500.000000pt" height="500.000000pt" viewBox="0 0 500.000000 500.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.14, written by Peter Selinger 2001-2017
</metadata>
<g transform="translate(0.000000,500.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M2287 4814 c-1 -2 -218 -4 -482 -5 -537 -3 -515 0 -581 -76 -17 -19
-52 -47 -79 -61 -27 -15 -57 -38 -67 -52 -15 -21 -131 -343 -198 -550 -10 -30
-23 -68 -30 -85 -7 -16 -14 -34 -15 -40 -5 -18 -127 -370 -175 -500 -12 -33
-27 -78 -35 -100 -11 -34 -77 -224 -153 -437 -11 -32 -17 -58 -14 -58 4 0 2
-4 -4 -8 -5 -4 -20 -36 -32 -72 -21 -66 -59 -172 -69 -200 -4 -8 -7 -17 -8
-20 0 -3 -9 -30 -20 -60 -10 -30 -18 -57 -18 -60 1 -3 -5 -16 -12 -30 -12 -20
-83 -228 -91 -265 -2 -5 -19 -53 -39 -105 -20 -52 -37 -102 -39 -110 -1 -8
-10 -33 -20 -55 -10 -22 -19 -66 -21 -98 -5 -66 14 -96 62 -98 163 -6 827 3
865 12 32 7 63 25 93 52 25 23 66 54 93 68 56 31 90 78 117 162 33 105 16 100
304 101 166 1 254 -3 261 -10 6 -6 24 -47 40 -93 30 -85 63 -149 99 -190 12
-13 21 -27 21 -30 0 -18 114 -120 185 -166 67 -44 183 -105 200 -105 3 0 24
-9 48 -19 110 -51 299 -98 502 -125 393 -54 565 -110 565 -184 0 -17 -9 -22
-57 -28 -85 -10 -240 2 -303 24 -30 11 -91 42 -134 71 -43 28 -95 56 -115 62
-24 6 -190 9 -487 7 l-452 -3 -21 -25 c-11 -14 -20 -40 -21 -57 0 -33 0 -33
-49 -33 -93 0 -115 -44 -98 -195 12 -108 81 -266 157 -359 82 -101 252 -230
382 -290 68 -32 173 -73 208 -81 8 -2 44 -10 80 -18 110 -26 252 -49 325 -53
39 -2 86 -6 105 -7 19 -2 43 1 52 5 9 4 19 5 21 0 3 -4 29 -6 59 -5 241 9 295
13 364 23 43 7 87 17 98 22 14 8 17 7 11 -3 -5 -7 -4 -10 2 -6 5 3 20 8 34 11
165 34 382 121 519 209 69 45 79 52 145 108 24 20 60 46 81 59 94 56 249 243
301 365 25 58 55 149 52 161 -1 5 0 11 1 14 10 25 14 255 5 315 -32 218 -121
382 -275 506 -43 35 -190 123 -190 114 0 -3 -17 4 -37 15 -104 54 -434 133
-703 169 -146 20 -228 35 -234 43 -8 11 -46 122 -42 125 2 2 34 -17 72 -43
122 -84 86 -79 584 -82 245 -2 460 0 479 3 44 8 81 46 81 83 0 28 2 30 59 36
97 11 118 52 97 189 -23 150 -167 346 -366 498 -133 102 -242 160 -393 210
-88 29 -112 35 -177 44 -19 3 -55 10 -80 15 -46 10 -235 22 -345 22 -49 0
-148 -4 -305 -14 -38 -3 -49 5 -65 45 -9 23 -18 50 -20 59 -2 9 -16 50 -30 90
-15 40 -28 78 -29 83 -1 6 -4 15 -7 20 -4 6 -12 28 -18 50 -7 22 -16 49 -20
60 -5 11 -14 33 -20 48 -6 15 -11 35 -11 43 0 8 -8 33 -19 57 -10 23 -28 74
-40 112 -13 39 -31 93 -41 120 -11 28 -37 104 -60 170 -23 66 -44 127 -47 135
-3 8 -7 20 -9 25 -14 48 -69 196 -84 226 -21 40 -73 89 -96 89 -8 0 -17 1 -21
2 -16 5 -103 14 -106 12z m-496 -1369 c4 -6 13 -31 19 -55 6 -25 12 -52 14
-60 11 -44 86 -292 91 -300 7 -11 -13 -13 -173 -13 -62 0 -115 3 -118 6 -6 5
50 204 108 391 30 93 32 98 41 70 5 -16 13 -34 18 -39z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 272 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,7 +0,0 @@
---
permalink: /:basename
---
/*!
* jekyll-theme-chirpy v7.1.1 | © 2019 Cotes Chung | MIT Licensed | https://github.com/cotes2020/jekyll-theme-chirpy/
*/
!function(){"use strict";importScripts("./assets/js/data/swconf.js");const e=swconf.purge,t=swconf.interceptor;self.addEventListener("install",(t=>{e||t.waitUntil(caches.open(swconf.cacheName).then((e=>e.addAll(swconf.resources))))})),self.addEventListener("activate",(t=>{t.waitUntil(caches.keys().then((t=>Promise.all(t.map((t=>e||t!==swconf.cacheName?caches.delete(t):void 0))))))})),self.addEventListener("message",(e=>{"SKIP_WAITING"===e.data&&self.skipWaiting()})),self.addEventListener("fetch",(s=>{s.request.headers.has("range")||s.respondWith(caches.match(s.request).then((n=>n||fetch(s.request).then((n=>{const r=s.request.url;if(e||"GET"!==s.request.method||!function(e){const s=new URL(e),n=s.pathname;if(!s.protocol.startsWith("http"))return!1;for(const e of t.urlPrefixes)if(s.href.startsWith(e))return!1;for(const e of t.paths)if(n.startsWith(e))return!1;return!0}(r))return n;let a=n.clone();return caches.open(swconf.cacheName).then((e=>{e.put(s.request,a)})),n})))))}))}();

View file

@ -1,16 +0,0 @@
async function addToClipboard(id) {
var copyText = document.getElementById(id);
navigator.clipboard.writeText(copyText.innerHTML);
var copyButton = document.getElementById(id+"-button");
copyButton.setAttribute("aria-label", "Copied!");
copyButton.setAttribute("data-balloon-pos", "up");
copyButton.setAttribute("data-balloon-visible", "1");
// hide message after 2s
setTimeout(() => {
copyButton.removeAttribute("aria-label");
copyButton.removeAttribute("data-balloon-pos");
copyButton.removeAttribute("data-balloon-visible");
}, 2000);
}

View file

@ -1,11 +0,0 @@
with (import <nixpkgs> {});
let
gems = bundlerEnv {
name = "your-package";
inherit ruby;
gemdir = ./.;
};
in stdenv.mkDerivation {
name = "your-package";
buildInputs = [gems ruby];
}

View file

@ -1,508 +0,0 @@
{
addressable = {
dependencies = ["public_suffix"];
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0cl2qpvwiffym62z991ynks7imsm87qmgxf0yfsmlwzkgi9qcaa6";
type = "gem";
};
version = "2.8.7";
};
bigdecimal = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1gi7zqgmqwi5lizggs1jhc3zlwaqayy9rx2ah80sxy24bbnng558";
type = "gem";
};
version = "3.1.8";
};
colorator = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0f7wvpam948cglrciyqd798gdc6z3cfijciavd0dfixgaypmvy72";
type = "gem";
};
version = "1.1.0";
};
concurrent-ruby = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0chwfdq2a6kbj6xz9l6zrdfnyghnh32si82la1dnpa5h75ir5anl";
type = "gem";
};
version = "1.3.4";
};
em-websocket = {
dependencies = ["eventmachine" "http_parser.rb"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1a66b0kjk6jx7pai9gc7i27zd0a128gy73nmas98gjz6wjyr4spm";
type = "gem";
};
version = "0.5.3";
};
ethon = {
dependencies = ["ffi"];
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "17ix0mijpsy3y0c6ywrk5ibarmvqzjsirjyprpsy3hwax8fdm85v";
type = "gem";
};
version = "0.16.0";
};
eventmachine = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0wh9aqb0skz80fhfn66lbpr4f86ya2z5rx6gm5xlfhd05bj1ch4r";
type = "gem";
};
version = "1.2.7";
};
ffi = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "07139870npj59jnl8vmk39ja3gdk3fb5z9vc0lf32y2h891hwqsi";
type = "gem";
};
version = "1.17.0";
};
forwardable-extended = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "15zcqfxfvsnprwm8agia85x64vjzr2w0xn9vxfnxzgcv8s699v0v";
type = "gem";
};
version = "2.6.0";
};
google-protobuf = {
dependencies = ["bigdecimal" "rake"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1xq6430n0464a8qwpbd16al5ndg3pfph2r2q2nsf9jgvpzvfkjph";
type = "gem";
};
version = "4.27.3";
};
html-proofer = {
dependencies = ["addressable" "mercenary" "nokogiri" "parallel" "rainbow" "typhoeus" "yell" "zeitwerk"];
groups = ["test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "00hhwzl5llvsasbj6gpgd1272xrqz8wlxzq7qm0xa4z3mk24013j";
type = "gem";
};
version = "4.4.3";
};
"http_parser.rb" = {
groups = ["default"];
platforms = [{
engine = "jruby";
}];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1gj4fmls0mf52dlr928gaq0c0cb0m3aqa9kaa6l0ikl2zbqk42as";
type = "gem";
};
version = "0.8.0";
};
i18n = {
dependencies = ["concurrent-ruby"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1ffix518y7976qih9k1lgnc17i3v6yrlh0a3mckpxdb4wc2vrp16";
type = "gem";
};
version = "1.14.5";
};
jekyll = {
dependencies = ["addressable" "colorator" "em-websocket" "i18n" "jekyll-sass-converter" "jekyll-watch" "kramdown" "kramdown-parser-gfm" "liquid" "mercenary" "pathutil" "rouge" "safe_yaml" "terminal-table" "webrick"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0638cvpmk3py1w2dxpav6l0c854y6l94b6gyc2aa16i7r897z64a";
type = "gem";
};
version = "4.3.3";
};
jekyll-archives = {
dependencies = ["jekyll"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0c2rks7xf6ajp18h4f4wmmbqm5ljprv70bqcz2sabi17zncmz9n0";
type = "gem";
};
version = "2.2.1";
};
jekyll-include-cache = {
dependencies = ["jekyll"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "01d2l6qrmjc42664ns83cv36jbvalcxqbkmj5i22fakka7jvkm67";
type = "gem";
};
version = "0.2.1";
};
jekyll-paginate = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0r7bcs8fq98zldih4787zk5i9w24nz5wa26m84ssja95n3sas2l8";
type = "gem";
};
version = "1.1.0";
};
jekyll-redirect-from = {
dependencies = ["jekyll"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1nz6kd6qsa160lmjmls4zgx7fwcpp8ac07mpzy80z6zgd7jwldb6";
type = "gem";
};
version = "0.16.0";
};
jekyll-sass-converter = {
dependencies = ["sass-embedded"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "00n9v19h0qgjijygfdkdh2gwpmdlz49nw1mqk6fnp43f317ngrz2";
type = "gem";
};
version = "3.0.0";
};
jekyll-seo-tag = {
dependencies = ["jekyll"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0638mqhqynghnlnaz0xi1kvnv53wkggaq94flfzlxwandn8x2biz";
type = "gem";
};
version = "2.8.0";
};
jekyll-sitemap = {
dependencies = ["jekyll"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0622rwsn5i0m5xcyzdn86l68wgydqwji03lqixdfm1f1xdfqrq0d";
type = "gem";
};
version = "1.4.0";
};
jekyll-theme-chirpy = {
dependencies = ["jekyll" "jekyll-archives" "jekyll-include-cache" "jekyll-paginate" "jekyll-redirect-from" "jekyll-seo-tag" "jekyll-sitemap"];
groups = ["default"];
platforms = [];
source = {
path = ./.;
type = "path";
};
version = "6.5.5";
};
jekyll-watch = {
dependencies = ["listen"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1qd7hy1kl87fl7l0frw5qbn22x7ayfzlv9a5ca1m59g0ym1ysi5w";
type = "gem";
};
version = "2.2.1";
};
kramdown = {
dependencies = ["rexml"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1ic14hdcqxn821dvzki99zhmcy130yhv5fqfffkcf87asv5mnbmn";
type = "gem";
};
version = "2.4.0";
};
kramdown-parser-gfm = {
dependencies = ["kramdown"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0a8pb3v951f4x7h968rqfsa19c8arz21zw1vaj42jza22rap8fgv";
type = "gem";
};
version = "1.1.0";
};
liquid = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1czxv2i1gv3k7hxnrgfjb0z8khz74l4pmfwd70c7kr25l2qypksg";
type = "gem";
};
version = "4.0.4";
};
listen = {
dependencies = ["rb-fsevent" "rb-inotify"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0rwwsmvq79qwzl6324yc53py02kbrcww35si720490z5w0j497nv";
type = "gem";
};
version = "3.9.0";
};
mercenary = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0f2i827w4lmsizrxixsrv2ssa3gk1b7lmqh8brk8ijmdb551wnmj";
type = "gem";
};
version = "0.4.0";
};
nokogiri = {
dependencies = ["racc"];
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1xj0dawahc1jbw0w99dlzvln0d8nf66422y6fzw2m56m863447ly";
type = "gem";
};
version = "1.16.7";
};
parallel = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1vy7sjs2pgz4i96v5yk9b7aafbffnvq7nn419fgvw55qlavsnsyq";
type = "gem";
};
version = "1.26.3";
};
pathutil = {
dependencies = ["forwardable-extended"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "12fm93ljw9fbxmv2krki5k5wkvr7560qy8p4spvb9jiiaqv78fz4";
type = "gem";
};
version = "0.16.2";
};
public_suffix = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0vqcw3iwby3yc6avs1vb3gfd0vcp2v7q310665dvxfswmcf4xm31";
type = "gem";
};
version = "6.0.1";
};
racc = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0byn0c9nkahsl93y9ln5bysq4j31q8xkf2ws42swighxd4lnjzsa";
type = "gem";
};
version = "1.8.1";
};
rainbow = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0smwg4mii0fm38pyb5fddbmrdpifwv22zv3d3px2xx497am93503";
type = "gem";
};
version = "3.1.1";
};
rake = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "17850wcwkgi30p7yqh60960ypn7yibacjjha0av78zaxwvd3ijs6";
type = "gem";
};
version = "13.2.1";
};
rb-fsevent = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1zmf31rnpm8553lqwibvv3kkx0v7majm1f341xbxc0bk5sbhp423";
type = "gem";
};
version = "0.11.2";
};
rb-inotify = {
dependencies = ["ffi"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0vmy8xgahixcz6hzwy4zdcyn2y6d6ri8dqv5xccgzc1r292019x0";
type = "gem";
};
version = "0.11.1";
};
rexml = {
dependencies = ["strscan"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1ik3in0957l9s6iwdm3nsk4za072cj27riiqgpx6zzcd22flbw3s";
type = "gem";
};
version = "3.3.6";
};
rouge = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "072qvvrcqj0yfr3b0j932mlhvn41i38bq37z7z07i3ikagndkqwy";
type = "gem";
};
version = "4.3.0";
};
safe_yaml = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0j7qv63p0vqcd838i2iy2f76c3dgwzkiz1d1xkg7n0pbnxj2vb56";
type = "gem";
};
version = "1.0.5";
};
sass-embedded = {
dependencies = ["google-protobuf" "rake"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0696qnrb29y1q4wwp1s7lmx233iixq3gqgqv52h87afqz2nr5kv2";
type = "gem";
};
version = "1.77.8";
};
strscan = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0mamrl7pxacbc79ny5hzmakc9grbjysm3yy6119ppgsg44fsif01";
type = "gem";
};
version = "3.1.0";
};
terminal-table = {
dependencies = ["unicode-display_width"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "14dfmfjppmng5hwj7c5ka6qdapawm3h6k9lhn8zj001ybypvclgr";
type = "gem";
};
version = "3.0.2";
};
typhoeus = {
dependencies = ["ethon"];
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0z7gamf6s83wy0yqms3bi4srirn3fc0lc7n65lqanidxcj1xn5qw";
type = "gem";
};
version = "1.4.1";
};
unicode-display_width = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1d0azx233nags5jx3fqyr23qa2rhgzbhv8pxp46dgbg1mpf82xky";
type = "gem";
};
version = "2.5.0";
};
webrick = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "13qm7s0gr2pmfcl7dxrmq38asaza4w0i2n9my4yzs499j731wh8r";
type = "gem";
};
version = "1.8.1";
};
yell = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1g16kcdhdfvczn7x81jiq6afg3bdxmb73skqjyjlkp5nqcy6y5hx";
type = "gem";
};
version = "2.2.2";
};
zeitwerk = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1b1azc3qlyzlnld4d5yav9j13dlqlyygnml5qf4gqpzaj861d588";
type = "gem";
};
version = "2.6.17";
};
}