Skip to content

Instantly share code, notes, and snippets.

View Ardakilic's full-sized avatar

Arda Kılıçdağı Ardakilic

View GitHub Profile
{
"meta": {
"title": "Global Coffee Varieties Database",
"version": "1.0",
"total_entries": 120,
"categories": 6
},
"categories": [
{
"id": "arabica_heirloom",
@Ardakilic
Ardakilic / coffee_equipments.json
Created May 25, 2026 21:20
coffee_equipments.json
{
"meta": {
"title": "Global Coffee Equipment Database",
"version": "1.0",
"total_entries": 280,
"categories": 9
},
"categories": [
{
"id": "espresso_machines_commercial",
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Headphone Power Calculator</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
@Ardakilic
Ardakilic / nginx.conf
Created November 5, 2021 21:03 — forked from thoop/nginx.conf
Official prerender.io nginx.conf for nginx
# Change YOUR_TOKEN to your prerender token
# Change example.com (server_name) to your website url
# Change /path/to/your/root to the correct value
server {
listen 80;
server_name example.com;
root /path/to/your/root;
index index.html;
@Ardakilic
Ardakilic / firmware.md
Last active March 6, 2024 08:02
Domo Macropad birleştirme ve firmware kurulum dökümanı

Pro Micro'ya Firmware Yüklemek

Öncelikle QMK Firmware'i bilgisayarınıza kurmalısınız. Ben Linux ve macOS'te nasıl kurduğumu anlatayım:

cd $HOME
git clone --recurse-submodules git@github.com:qmk/qmk_firmware.git
cd qmk_firmware
make git-submodule
@Ardakilic
Ardakilic / php-pools.md
Created September 15, 2020 10:05 — forked from holmberd/php-pools.md
Adjusting child processes for PHP-FPM (Nginx)

Adjusting child processes for PHP-FPM (Nginx)

When setting these options consider the following:

  • How long is your average request?
  • What is the maximum number of simultaneous visitors the site(s) get?
  • How much memory on average does each child process consume?

Determine if the max_children limit has been reached.

  • sudo grep max_children /var/log/php?.?-fpm.log.1 /var/log/php?.?-fpm.log
@Ardakilic
Ardakilic / sonarr_symlink_script.sh
Created March 26, 2018 22:35
Sonarr symlink script
@Ardakilic
Ardakilic / nextcloud manuel kurulum.md
Created April 29, 2017 10:03
nextcloud manuel kurulum.md
@Ardakilic
Ardakilic / Google Translate Abbrevations.md
Created June 21, 2016 19:19
Google Translate Abbrevations

Google Translate

Abbreviation Language
af Afrikaans
ar Arabic
az Azerbaijani
be Belarusian
bg Bulgarian
@Ardakilic
Ardakilic / nginx-elasticsearch.conf
Last active June 19, 2016 15:39
elasticsearch served over nginx with proxy + Let's encrypt (certbot) for SSL
server {
listen 80;
server_name elasticsite.com;
access_log off;
error_log off;
# enforce https
return 301 https://$server_name$request_uri;
}