From 4e3008d1b66020f8256160ec25b1f6da97af04ad Mon Sep 17 00:00:00 2001 From: Yunus Emre <49655146+yedhrab@users.noreply.github.com> Date: Tue, 10 Sep 2019 23:10:59 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=9F=20De=C4=9Fi=C5=9Fklikleri=20takip?= =?UTF-8?q?=20etme=20alan=C4=B1=20eklendi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitchangelog.rc | 287 +++++++++++ CHANGELOG.md | 1273 ++++++++++++++++++++++++++++++++++++++++++++++ README-dev.md | 10 + SUMMARY.md | 3 +- 4 files changed, 1572 insertions(+), 1 deletion(-) create mode 100644 .gitchangelog.rc create mode 100644 CHANGELOG.md create mode 100644 README-dev.md diff --git a/.gitchangelog.rc b/.gitchangelog.rc new file mode 100644 index 00000000..761c12cf --- /dev/null +++ b/.gitchangelog.rc @@ -0,0 +1,287 @@ +# -*- coding: utf-8; mode: python -*- +## +## Format +## +## ACTION: [AUDIENCE:] COMMIT_MSG [!TAG ...] +## +## Description +## +## ACTION is one of 'chg', 'fix', 'new' +## +## Is WHAT the change is about. +## +## 'chg' is for refactor, small improvement, cosmetic changes... +## 'fix' is for bug fixes +## 'new' is for new features, big improvement +## +## AUDIENCE is optional and one of 'dev', 'usr', 'pkg', 'test', 'doc' +## +## Is WHO is concerned by the change. +## +## 'dev' is for developpers (API changes, refactors...) +## 'usr' is for final users (UI changes) +## 'pkg' is for packagers (packaging changes) +## 'test' is for testers (test only related changes) +## 'doc' is for doc guys (doc only changes) +## +## COMMIT_MSG is ... well ... the commit message itself. +## +## TAGs are additionnal adjective as 'refactor' 'minor' 'cosmetic' +## +## They are preceded with a '!' or a '@' (prefer the former, as the +## latter is wrongly interpreted in github.) Commonly used tags are: +## +## 'refactor' is obviously for refactoring code only +## 'minor' is for a very meaningless change (a typo, adding a comment) +## 'cosmetic' is for cosmetic driven change (re-indentation, 80-col...) +## 'wip' is for partial functionality but complete subfunctionality. +## +## Example: +## +## new: usr: support of bazaar implemented +## chg: re-indentend some lines !cosmetic +## new: dev: updated code to be compatible with last version of killer lib. +## fix: pkg: updated year of licence coverage. +## new: test: added a bunch of test around user usability of feature X. +## fix: typo in spelling my name in comment. !minor +## +## Please note that multi-line commit message are supported, and only the +## first line will be considered as the "summary" of the commit message. So +## tags, and other rules only applies to the summary. The body of the commit +## message will be displayed in the changelog without reformatting. + + +## +## ``ignore_regexps`` is a line of regexps +## +## Any commit having its full commit message matching any regexp listed here +## will be ignored and won't be reported in the changelog. +## +ignore_regexps = [ + r'@minor', r'!minor', + r'@cosmetic', r'!cosmetic', + r'@refactor', r'!refactor', + r'@wip', r'!wip', + r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[p|P]kg:', + r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[d|D]ev:', + r'^(.{3,3}\s*:)?\s*[fF]irst commit.?\s*$', + r'^$', ## ignore commits with empty messages +] + + +## ``section_regexps`` is a list of 2-tuples associating a string label and a +## list of regexp +## +## Commit messages will be classified in sections thanks to this. Section +## titles are the label, and a commit is classified under this section if any +## of the regexps associated is matching. +## +## Please note that ``section_regexps`` will only classify commits and won't +## make any changes to the contents. So you'll probably want to go check +## ``subject_process`` (or ``body_process``) to do some changes to the subject, +## whenever you are tweaking this variable. +## +section_regexps = [ + ('🚀 Yenilikler', [ + r'\bekle|\boluş|(\byeni )|\b[cC]reate' + ]), + ('🌌 Değişikler', [ + r'\btaşı|\bdeğiş|\b[uU]pdate|\bgüncel|\byenile|\bdönül|\bgeç|\bkoyu|\byapılan|\b[rR]evert|\b[gG]eri|\balındı|\baktar|\byenile|(\bevril)', + ]), + ('🗽 Düzeltmeler', [ + r'\b[bB]ug|\bdüzen|\bdüzelt|\bgider|\bkalk|\b[kK]aldır|\bayrıl|\b[dD]elete', + ]), + ('📡 Diğerler', None ## Match all lines + ), +] + + +## ``body_process`` is a callable +## +## This callable will be given the original body and result will +## be used in the changelog. +## +## Available constructs are: +## +## - any python callable that take one txt argument and return txt argument. +## +## - ReSub(pattern, replacement): will apply regexp substitution. +## +## - Indent(chars=" "): will indent the text with the prefix +## Please remember that template engines gets also to modify the text and +## will usually indent themselves the text if needed. +## +## - Wrap(regexp=r"\n\n"): re-wrap text in separate paragraph to fill 80-Columns +## +## - noop: do nothing +## +## - ucfirst: ensure the first letter is uppercase. +## (usually used in the ``subject_process`` pipeline) +## +## - final_dot: ensure text finishes with a dot +## (usually used in the ``subject_process`` pipeline) +## +## - strip: remove any spaces before or after the content of the string +## +## - SetIfEmpty(msg="No commit message."): will set the text to +## whatever given ``msg`` if the current text is empty. +## +## Additionally, you can `pipe` the provided filters, for instance: +#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') | Indent(chars=" ") +#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') +#body_process = noop +body_process = ReSub(r'((^|\n)[A-Z]\w+(-\w+)*: .*(\n\s+.*)*)+$', r'') | strip + + +## ``subject_process`` is a callable +## +## This callable will be given the original subject and result will +## be used in the changelog. +## +## Available constructs are those listed in ``body_process`` doc. +subject_process = (strip | + ReSub(r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n@]*)(@[a-z]+\s+)*$', r'\4') | + SetIfEmpty("No commit message.") | ucfirst | final_dot) + + +## ``tag_filter_regexp`` is a regexp +## +## Tags that will be used for the changelog must match this regexp. +## +tag_filter_regexp = r'^[0-9]+\.[0-9]+(\.[0-9]+)?$' # Yemreak Olmazsa version version ayırıyor + + +## ``unreleased_version_label`` is a string or a callable that outputs a string +## +## This label will be used as the changelog Title of the last set of changes +## between last valid tag and HEAD if any. +unreleased_version_label = "✨ Güncel" # "(unreleased)" + + +## ``output_engine`` is a callable +## +## This will change the output format of the generated changelog file +## +## Available choices are: +## +## - rest_py +## +## Legacy pure python engine, outputs ReSTructured text. +## This is the default. +## +## - mustache() +## +## Template name could be any of the available templates in +## ``templates/mustache/*.tpl``. +## Requires python package ``pystache``. +## Examples: +## - mustache("markdown") +## - mustache("restructuredtext") +## +## - makotemplate() +## +## Template name could be any of the available templates in +## ``templates/mako/*.tpl``. +## Requires python package ``mako``. +## Examples: +## - makotemplate("restructuredtext") +## +#output_engine = rest_py +#output_engine = mustache("restructuredtext") +output_engine = mustache("markdown") +#output_engine = makotemplate("restructuredtext") + + +## ``include_merge`` is a boolean +## +## This option tells git-log whether to include merge commits in the log. +## The default is to include them. +include_merge = True + + +## ``log_encoding`` is a string identifier +## +## This option tells gitchangelog what encoding is outputed by ``git log``. +## The default is to be clever about it: it checks ``git config`` for +## ``i18n.logOutputEncoding``, and if not found will default to git's own +## default: ``utf-8``. +#log_encoding = 'utf-8' + + +## ``publish`` is a callable +## +## Sets what ``gitchangelog`` should do with the output generated by +## the output engine. ``publish`` is a callable taking one argument +## that is an interator on lines from the output engine. +## +## Some helper callable are provided: +## +## Available choices are: +## +## - stdout +## +## Outputs directly to standard output +## (This is the default) +## +## - FileInsertAtFirstRegexMatch(file, pattern, idx=lamda m: m.start()) +## +## Creates a callable that will parse given file for the given +## regex pattern and will insert the output in the file. +## ``idx`` is a callable that receive the matching object and +## must return a integer index point where to insert the +## the output in the file. Default is to return the position of +## the start of the matched string. +## +## - FileRegexSubst(file, pattern, replace, flags) +## +## Apply a replace inplace in the given file. Your regex pattern must +## take care of everything and might be more complex. Check the README +## for a complete copy-pastable example. +## +# publish = FileInsertIntoFirstRegexMatch( +# "CHANGELOG.rst", +# r'/(?P[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n/', +# idx=lambda m: m.start(1) +# ) +#publish = stdout + + +## ``revs`` is a list of callable or a list of string +## +## callable will be called to resolve as strings and allow dynamical +## computation of these. The result will be used as revisions for +## gitchangelog (as if directly stated on the command line). This allows +## to filter exaclty which commits will be read by gitchangelog. +## +## To get a full documentation on the format of these strings, please +## refer to the ``git rev-list`` arguments. There are many examples. +## +## Using callables is especially useful, for instance, if you +## are using gitchangelog to generate incrementally your changelog. +## +## Some helpers are provided, you can use them:: +## +## - FileFirstRegexMatch(file, pattern): will return a callable that will +## return the first string match for the given pattern in the given file. +## If you use named sub-patterns in your regex pattern, it'll output only +## the string matching the regex pattern named "rev". +## +## - Caret(rev): will return the rev prefixed by a "^", which is a +## way to remove the given revision and all its ancestor. +## +## Please note that if you provide a rev-list on the command line, it'll +## replace this value (which will then be ignored). +## +## If empty, then ``gitchangelog`` will act as it had to generate a full +## changelog. +## +## The default is to use all commits to make the changelog. +#revs = ["^1.0.3", ] +#revs = [ +# Caret( +# FileFirstRegexMatch( +# "CHANGELOG.rst", +# r"(?P[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n")), +# "HEAD" +#] +revs = [] diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..6b2205a9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,1273 @@ +# Changelog + + +## ✨ Güncel + +### 🚀 Yenilikler + +* 🌟 Değişklikleri takip etme alanı eklendi. [Yunus Emre] + +* 👇`
` Objelerine tıklama alanı oluşturuldu. [Yunus Emre] + +* 🔗 [How to Run a Shell Command from Python and Get The Output? linki eklendi. [Yunus Emre] + +* Encoding için ek bilgi eklendi. [Yunus Emre] + +* Regex alanı değiştirildi, yeni alana link verildi. [Yunus Emre] + +* Özelliğe göre eleman alma eklendi. [Yunus Emre] + +* Regex yazısı oluşturuldu ⛩ [Yunus Emre] + +* Dosya Kodlanmasını (Encoding) Değiştirme eklendi. [Yunus Emre] + + +## 1.0 (2019-09-10) + +### 🚀 Yenilikler + +* İngilzce ile alakalı 2 uygulaam eklendi. [Yunus Emre] + +* Notebook notları eklendi. [Yunus Emre] + +* Nodejs notu eklendi. [Yunus Emre] + +* Blockchain notu eklendi. [Yunus Emre] + +* Resim eklendi. [Yunus Emre] + +* Açıklama eklendi. [Yunus Emre] + +* Resim eklendi. [Yunus Emre] + +* İki Listenin Farkı eklendi. [Yunus Emre] + +* ⏪ Youtube Playback Speed Control eklentisi. [Yunus Emre] + +* 😴 İndeks düzenlemesi ve python notları eklendi. [Yunus Emre] + +* Reg dosyaları ve windows notları eklendi. [Yunus Emre] + +* Yol işlemleri için öneli hususlar eklendi. [Yunus Emre] + +* Natro Hosting ve Web Sitesi Yönetimi eklendi. [Yunus Emre] + +* 🦋 Issue linki eklendi. [Yunus Emre] + +* Chrome eklentileri ve OneNote eklendi. [Yunus Emre] + +* 🐞 GitBook için hata notları eklendi. [Yunus Emre] + +* ✍ Kişisel Dökümanlarım eklendi. [Yunus Emre] + +* 🧪 Veri Bilimi Egzersizleri eklendi. [Yunus Emre] + +* Linklere detay verme eklendi. [Yunus Emre] + +* Create Quiz 3 - Detection Algorithms.pdf. [Yunus Emre] + +* Detection Algorithms alanı notları eklendi. [Yunus Emre] + +* Karşılama mesajı eklendi. [Yunus Emre] + +* Create README.md. [Yunus Emre] + +* README dosyaları oluşturuldu 🚀 [Yunus Emre] + +* SubModule notları eklendi. [Yunus Emre] + +* Create 0 - Windows 10 Hızlı Kurulumum.md.md. [Yunus Emre] + +* Kanban eklentisi eklendi. [Yunus Emre] + +* Bİr kaç yazılım eklendi. [Yunus Emre] + +* Create GitBook.md. [Yunus Emre] + +* Create .bookignore. [Yunus Emre] + +* Revert "Create GLOSSARY.md" [Yunus Emre] + + This reverts commit 5e589781cca5a717ad07dcfefc1402ad98c0e8b8. + +* Create GLOSSARY.md. [Yunus Emre] + +* 👻 Ufak karşılama mesajları eklendi. [Yunus Emre] + +* 🧪 Test amaçlar alt sayfa oluşturma. [Yunus Emre] + +* Üretkenlik ayarları için yeni repo belirtildi. [Yunus Emre] + +* Ufak düzeltmeler eklendi 🐞 [Yunus Emre] + +* Discord notları eklendi ✨ [Yunus Emre] + +* Telegram için ek ayarlar eklendi. [Yunus Emre] + +* Birkaç eklenti ve ikon eklendi 🌟 [Yunus Emre] + +* React ⚛ IDE eklendi. [Yunus Emre] + +* Excel Cheet Sheet eklendi 📣 [Yunus Emre] + +* Müzik oynatma bilgisi eklendi. [Yunus Emre] + +* Yapı yenilendi yeni repo'ya link verildi 🎈 [Yunus Emre] + +* Telemetry kaldırma eklendi 🔏 [Yunus Emre] + +* Python eklentisi eklendi. [Yunus Emre] + +* Todo List için kısayol eklendi. [Yunus Emre] + +* Github hello world linki eklendi 👶 [Yunus Emre] + +* Ufak react notları eklendi ⚛ [Yunus Emre] + +* Açıklama eklendi. [Yunus Emre] + +* Hata notları ve cihaza usb debug erişimi eklendi. [Yunus Emre] + +* Bilgiler özelliği eklendi (TODO-Tree) [Yunus Emre] + +* TODO yapısı tam olarak oluşturuldu 🚀 [Yunus Emre] + +* URL çekme kodu eklendi 🔗 [Yunus Emre] + +* TODO Eklentisi ayarlarım eklendi 🌳 [Yunus Emre] + +* SystemRoot değişkeni eklendi. [Yunus Emre] + +* OS Modülü eklendi. [Yunus Emre] + +* Renklendirme modülü eklendi. [Yunus Emre] + +* Son commiti kaldırma eklendi. [Yunus Emre] + +* Process bar modülü eklendi. [Yunus Emre] + +* Telegram bot oluşturma 🤖 [Yunus Emre] + +* Head snippet eklendi. [Yunus Emre] + +* Sık kullanılan kısayollar eklendi 🚀 [Yunus Emre] + +* Faydalı kısayollar eklendi 🚀 [Yunus Emre] + +* Choco komutları eklendi 🍫 [Yunus Emre] + +* Yıkama bilgisi eklendi 🧺 [Yunus Emre] + +* Renkli print paketi eklendi ✨ [Yunus Emre] + +* Kısayollar eklendi. [Yunus Emre] + +* Windows 10 için icon eklendi 🔮 [Yunus Emre] + +* DS miniprojects cevabı eklendi 😁 [Yunus Emre] + +* CMD'yi arkaplanda çalıştırma eklendi. [Yunus Emre] + +* Gİthub issue eklentisi eklendi ✨ - Github issue için username ayarı da eklendi. [Yunus Emre] + +* Özet notlar eklendi 📚 [Yunus Emre] + + Asmaa Mirkhan ile DataCamp'a teşekkürler ✨ + +* Code snippet ve birkaç bilgi eklendi. [Yunus Emre] + +* MySQL kaynakları eklendi. [Yunus Emre] + +* Data science için örnekler ve bilgiler eklendi. [Yunus Emre] + +* Data Science kursundaki notlar eklendi 👨‍🔬 [Yunus Emre] + +* Telefonu PC'ye bağlama eklendi. [Yedhrab] + +* Temel dizinler eklendi. [Yedhrab] + +* Tensorflow notları eklendi ✨ [Yedhrab] + +* Açılır menü oluşturma eklendi ✨ [Yedhrab] + +* Cihaz verilerini temizleme notu eklendi. [Yunus Emre] + +* Video editleme notları eklendi 📺 [Yunus Emre] + +* Toplu notlar eklendi 📚 [Yunus Emre] + +* Kısayol ve otomatik başlatma eklendi 🚀 [Yunus Emre] + +* Dom elemanı temizleme eklendi. [Yunus Emre] + +* Ufak notlar eklendi ✨ [Yunus Emre] + +* Input işlemleri eklendi. [Yunus Emre] + +* Kaldırma bilgileri eklendi. [Yunus Emre] + +* Tonla yeni not 📚 [Yunus Emre] + +* Temel kod bilgirimleri eklendi ⚠ [Yunus Emre] + +* Cmd sessiz çalıştırma eklendi 💻 [Yunus Emre] + +* Unicode string eklendi. [Yunus Emre] + +* Döküman örndeği eklendi 📰 [Yunus Emre] + +* Bir kaç yeni bilgi 🎈 [Yunus Emre] + +* Composer eklendi Composer: Özel karakterleri oluşturmayı sağlar. © [Yunus Emre] + +* Raporlama işlemleri eklendi 📰 [Yunus Emre] + +* Debug için ek not eklendi. [Yunus Emre] + +* Bir kaç faydalı program eklendi. [yedhrab] + +* Süreç analizi eklendi. [yedhrab] + +* Kesinlikle bakılası notlar ⚠ Milestones terimi eklendi. [yedhrab] + +* Proje yönetimi notları eklendi 🌟 Gİthub üzerinde profeyonellik için özel notlar eklendi. [yedhrab] + +* Proje dizin yapısı eklendi 🏗 [yedhrab] + +* Proje dizinlerine örnek eklendi. [yedhrab] + +* Çok önemli ⚠ Dizin ve proje yapısı notları eklendi. [yedhrab] + +* Ek bilgiler eklendi. [yedhrab] + +* Kısayol ayalarım eklendi. [yedhrab] + +* Code snippets eklendi 🌟 [yedhrab] + +* UI Design linki eklendi 🎇 [yedhrab] + +* Adobe XD notları eklendi 🏜 [yedhrab] + +* Uygulama bilgileri eklendi. [yedhrab] + +* Ek kaynaklar eklendi 🗂 [yedhrab] + +* VsCode için debug ayarı eklendi. [yedhrab] + +* Yeni kısayol eklendi. [yedhrab] + +* File Explorer'ı geliştirme bilgisi eklendi 🌟 - Tab desteği - Otomatik ön izleme. [yedhrab] + +* Java kitapları eklendi 📕 [yedhrab] + +* Vscode eklentisi oluşturma yenilendi. [yedhrab] + +* Github üzerinden paylaşma eklendi 📭 [yedhrab] + +* Css bilgileri eklendi 🍮 [yedhrab] + +* İlham veren siteler eklendi. [yedhrab] + +* CMD karakter formatı bilgisi eklendi. [yedhrab] + +* E mail hesabı hatası çözümü eklendi. [yedhrab] + +* NPM paket oluşturma eklendi. [yedhrab] + +* Ufak yenilikler eklendi ✨ - JSON ayarlarım güncellendi - Kendi tema eklentim eklendi. [yedhrab] + +* Vscode eklenti yapımı eklendi. [yedhrab] + +* Admin paneli tasarımı eklendi. [yedhrab] + +* Oyun programlama notları eklendi 🎮 [yedhrab] + +* Ses paylaşımı eklendi. [yedhrab] + +* Yeni bilgiler eklendi 🚀 [Yunus Emre] + +* Birkaç not ve konu başlığı eklendi 🚀 [Yunus Emre] + +* İkon uygulaması eklendi. [Yunus Emre] + +* Vscode için yeni önemli bilgiler eklendi. [Yunus Emre] + +* Yeni bilgiler eklendi 🚀 [Yunus Emre] + +* Clink kod tamamlama eklentisi. [Yunus Emre] + +* WSL notları eklendi. [Yunus Emre] + +* Python için PDF işlemleri pdfkit modülünün kullanımı ve örnekleri eklendi. [Yunus Emre] + +* Html to PDF eklendi. [Yunus Emre] + +* Formül örnekleri eklendi. [Yunus Emre] + +* Özel karakter oluşturma eklendi. [Yunus Emre] + +* Yeni bilgiler eklendi. [Yunus Emre] + +* Ayrılık açıklaması eklendi 😢 [Yunus Emre] + +* Çıktıları gizleme bilgisi eklendi. [Yunus Emre] + +* Random modülü eklendi. [Yunus Emre] + +* Yeni bilgiler eklendi ✨ [Yunus Emre] + +* Direct link oluşturma yenilendi. [Yunus Emre] + +* Yeni pdf eklendi. [Yunus Emre] + +* Tasarım notları eklendi. [Yunus Emre] + +* PDF dosya boyutu sorunu eklendi. [Yunus Emre] + +* Saat sorunu bilgisi eklendi. [Yunus Emre] + +* Hasklig fontu ve ligaratür ayarı eklendi. [Yunus Emre] + +* USB notları eklendi. [Yunus Emre] + +* Pencere işlemleri bilgileri eklendi. [Yunus Emre] + +* PDF oluşturma bilgileri yenilendi 🗽 [Yunus Emre] + +* Yeni bilgiler eklendi. [Yunus Emre] + +* Yapılacaklar eklendi 🧹 [Yunus Emre] + +* İmzam eklendi. [Yunus Emre] + +* Markdown notu eklendi. [Yunus Emre] + +* Google dashboard eklendi. [Yunus Emre] + +* Yeni notlar eklendi. [Yunus Emre] + +* Latex ayrıştırma js'i eklendi. [Yunus Emre] + +* Yeni bilgiler eklendi ✨ [Yunus Emre] + +* Gerekli sudo yetkisi eklendi. [Yunus Emre] + +* Yeni bilgiler eklendi 🚀 [Yunus Emre] + +* WakaTime eklendi ⌚ [Yunus Emre] + +* Ek link eklendi. [Yunus Emre] + +* Wapp kısayolu oluşturma eklendi. [Yunus Emre] + +* Saat sorunu eklendi. [YEmreAk] + +* Yeni script eklendi 🚀 [Yunus Emre] + +* Yeni bilgiler eklendi. [Yunus Emre] + +* Yeni bilgiler eklendi 🚀 [Yunus Emre] + +* Yeni bilgi eklendi Enumerate metodunun kullanımı eklendi. [Yunus Emre] + +* Yeni Bilgi String içerisinde metin arama eklendi. [Yunus Emre] + +* String işlemlerinde hız bilgileri eklendi. [Yunus Emre] + +* Eklenti oluşturma linki eklenti. [Yunus Emre] + +* Github.io sayfasına domain bağlama yazısı linki eklendi. [Yunus Emre] + +* Hafif not eklendi. [Yunus Emre] + +* Ek notlar eklendi. [Yunus Emre] + +* Yeni yapılar eklendi 🏗 [Yunus Emre] + +* Yeni bilgiler eklendi 🎗 [Yunus Emre] + +* Gereksizler silindi yapılacaklar eklendi. [YEmreAk] + +* Download sorunu için not eklendi. [Yunus Emre] + +* Yapıalcaklar eklendi 📑 [Yunus Emre] + +* Kayda değer notlar eklendi 🚀 [Yunus Emre] + +* Drive notları eklendi 🆕 [Yunus Emre] + +* Verimlilik eklentileri yenilendi 🚀 [Yunus Emre] + +* Değişken kontrolü eklendi 🚀 [Yunus Emre] + +* Yeni bilgiler eklendi 🚀 [Yunus Emre] + +* Yeni bilgiler eklendi 🚀 [Yunus Emre] + +* Yeni notlar eklendi ✨ [Yunus Emre] + +* Erişim komutu eklendi. [Yunus Emre] + +* Komut ile izin verme eklendi. [Yunus Emre] + +* Ek kaynak eklendi ✨ Pythonpath `.env` için kaynak eklendi. [Yunus Emre] + +* Web için eklentiler geldi ✨ [Yunus Emre] + +* Vscode pythonpath notları eklendi 🌠 [Yunus Emre] + +* Yeni bilgiler eklendi 🌠 Karma bilgiler ile ücretsiz udemy kursları eklendi. [Yunus Emre] + +* Genel güncelleme 🌈 Echo, cat, pylint, vscode değişkenleri vs. eklendi. [Yunus Emre] + +* Udemy ücretsiz kursları eklendi 🗽 [Yunus Emre] + +* 🗽 udemy ücretsiz kursları eklendi. [Yunus Emre] + +* Udemy kursları eklendi 🗽 [Yunus Emre] + +* Yeni notlar eklendi 🗽 Selenium ve API notu eklendi. [Yunus Emre] + +* Kivy GUI programming eklendi 🐧 [Yunus Emre] + +* Komut gitme kısaoylu eklendi. [Yunus Emre] + +* Yapılandırma ayarlarının aktarılması eklendi 🗽 [YEmreAk] + +* Kod gizleme gösterme kısayolu eklendi ✨ [YEmreAk] + +* Ufak eklemeler 🍪 [YEmreAk] + +* Gnome eklentileri eklendi 👣 [YEmreAk] + +* Güzel tasarım örnekleri eklendi 😱 [YEmreAk] + +* En iyi 19 gnome eklentisi eklendi 🕺✨ [YEmreAk] + +* Kurulum notlarına snapd eklendi 🕺 [YEmreAk] + +* Java notları eklendi ✨ [YEmreAk] + +* Github eklentileri güncellendi 🆕 [YEmreAk] + +* Github alanı eklendi ✨ [YEmreAk] + +* Git pull kısayolu eklendi 🌠 [YEmreAk] + +* Github bilgileri eklendi ✨ [YEmreAk] + +* Git sync kısayolu eklendi 🌀 [YEmreAk] + +* Markdown preview kısayolu eklendi. [YEmreAk] + +* Kısa veya uzun commit bilgisi eklendi 👨‍🏫 [YEmreAk] + +* Markdown destekli wordpress eklendi. [YEmreAk] + +* Up testing eklendi 🐑 [YEmreAk] + +* Yapılacak eklendi 🌀 [YEmreAk] + +* Wordpress'in aktarılması için gerekenler eklendi 🗽 [YEmreAk] + +* Hata çözümleri eklendi 🐞 [YEmreAk] + +* Rebase kavramı eklendi. [YEmreAk] + +* Linkler artık sıralı olarak oluşturuluyor 🗽 [YEmreAk] + +* Bashrc dosyasının yedeği eklendi 🗃 [YEmreAk] + +* Git kontrol yardımcısı eklendi ✅ [YEmreAk] + +* Sistemi baştan oluşturma 🏗 [YEmreAk] + +### 🌌 Değişikler + +* Update Php.md. [Yunus Emre] + +* Update SUMMARY.md. [Yunus Emre] + +* Windows 10 notları gerekli yere taşındı. [Yunus Emre] + +* UML notları gerekli yere taşındı. [Yunus Emre] + +* SQL notları gerekli yere taşındı. [Yunus Emre] + +* C# notları gerekli yere taşındı. [Yunus Emre] + +* C, C++ notları gerekli yere koyuldu. [Yunus Emre] + +* Java notları doğru yere aktarıldı. [Yunus Emre] + +* Eski blog postları aktarıldı. [Yunus Emre] + +* Update 1 - Komut İsteminden Python (CLI).md. [Yunus Emre] + +* 🗽 Köklü indeksleme değişikliği. [Yunus Emre] + +* İsim değişikliği. [Yunus Emre] + + Pip ile Kurulabilir Python Paketi Oluşturma + +* Update SUMMARY.md. [Yunus Emre] + +* Update Web Sitesi Yönetimi.md. [Yunus Emre] + +* 🧠 Yapay Zeka notları taşındı. [Yunus Emre] + + ai.yemreak.com + +* 🗽 İçerik yapılandırması. [Yunus Emre] + +* 🚙 Awesome notları, faydalı notlar altına alındı. [Yunus Emre] + +* ✍ Üniversitedeki Notlarım olarak değiştirildi. [Yunus Emre] + +* Update README.md. [Yunus Emre] + +* 🌠 Dökümanlar tekrar geri yüklendi. [Yunus Emre] + +* 💫 Silinenler geri alındı. [Yunus Emre] + +* 🐞 Bug'ı engellemek için geçisi olarak silindi. [Yunus Emre] + +* Update GitBook.md. [Yunus Emre] + +* Update README.md. [Yunus Emre] + +* Update .bookignore. [Yunus Emre] + +* 🚙 Google Chrome ismine geçildi. [Yunus Emre] + +* Update SUMMARY.md. [Yunus Emre] + +* 😒 Index yenilendi. [Yunus Emre] + +* Update Chrome.md. [Yunus Emre] + +* Update README.md. [Yunus Emre] + +* 🐍 Python notebook notları doğru yere taşındı. [Yunus Emre] + +* 🕶 Awesome projesi aktarıldı. [Yunus Emre] + +* ⌨ Grammarly ikonu yenilendi. [Yunus Emre] + +* Update README.md. [Yunus Emre] + +* Update README.md. [Yunus Emre] + +* Revert "Ufak tefek yazım hataları giderildi" [Yunus Emre] + + This reverts commit c66b8b3c5f6f571c956b278a1aa3ac2669feecc3. + +* 🔍 Arama Butonu linki güncellemesi. [Yunus Emre] + +* 🔍 Arama Butonu yenilemesi. [Yunus Emre] + +* Update SUMMARY.md. [Yunus Emre] + +* Update README.md. [Yunus Emre] + +* Update SUMMARY.md. [Yunus Emre] + +* 🗽 İndeksleme yenilendi. [Yunus Emre] + +* Update SUMMARY.md. [Yunus Emre] + +* Merge pull request #12 from yedhrab/wiki. [Yunus Emre] + + 📖 Wiki yapısına geçildi + +* 📖 Wiki yapısına geçildi. [Yunus Emre] + + 🏠 İÜ-CE hariç diğer tüm notlar tek çatı altında toplandı. + + - 🔍 Arama özelliğinden faydalanma arttırıldı + - 🎤 Google arama motoru gibi arama sistemi ayarlandı + - Umarım patlamaz 🚀 + +* Update Git Notları.md. [Yunus Emre] + +* Update GitBook.md. [Yunus Emre] + +* Update SUMMARY.md. [Yunus Emre] + +* Update sum. [Yunus Emre] + +* Update SUMMARY.md. [Yunus Emre] + +* Update SUMMARY.md. [Yunus Emre] + +* Update README.md. [Yunus Emre] + +* Update README.md. [Yunus Emre] + +* Update SUMMARY.md. [Yunus Emre] + +* Update SUMMARY.md. [Yunus Emre] + +* Update README.md. [Yunus Emre] + +* Önemsiz güncelleme. [Yunus Emre] + +* Ufak güncelleme. [Yunus Emre] + +* 🚀 Linkler yenilendi. [Yunus Emre] + +* 📑 emoji güncellendi Teşekkürler @asmaamirkhan 👩‍🏫 [Yunus Emre] + +* Son Değişiklikleri Geri Alma. [Yunus Emre] + +* İçerik yenilendi ✨ [Yunus Emre] + +* AI notları taşındı YArtificalIntelligent reposundadır. [Yunus Emre] + +* Özelleştirme ayarları buluta ☁ aktarıldı. [Yunus Emre] + +* Eklentiler yenilendi ✨ ~ Afozbek 🙏 [Yunus Emre] + +* Gereksiz notlar temizlendi 🧹 [Yunus Emre] + + Makine öğrenimi 👨‍🏫💻, Sinir Ağları 🕸 ve Deep Learning 🧠 üzerine çalışmalarım başka repoya aktarıldır 🚌 + +* Veri bilimi çalışma notlarım 📊 aktarıldı. [Yunus Emre] + +* Temizlik 🧹 [Yunus Emre] + + Veri yığılmasını 🗑 engellemek için içeriği fazla olan 📈 bilgiler farklı *repository*'lere aktarıldı. + +* Butonlar yenilendi. [Yunus Emre] + +* Ayarlar yenilendi. [Yunus Emre] + +* Bat düzenleyici değiştirme ve store dizinine erişme. [Yunus Emre] + +* Yapı değişikliği ve köklü yenilik 🏗✨ [Yunus Emre] + +* Editör ayarları güncellendi ✨ [Yunus Emre] + +* Dizin resmi değiştirme bilgisi. [Yunus Emre] + +* İndekslemeler yenilendi 🗽 [Yunus Emre] + +* Köklü değişiklik 🌲 [Yunus Emre] + +* İndeksleme ve notlar yenilendi ✨ [Yunus Emre] + +* Markdown snippets yenilendi 🚀 [Yedhrab] + +* Açılır menü yapısına geçildi ✨ [Yedhrab] + +* İndeksleme yenilendi. [Yunus Emre] + +* Özelleştirmem yenilendi 🚀 [Yunus Emre] + +* Notlar yenilendi ✨ [Yunus Emre] + +* Özelleştirmelerim yenilendi 🚀 [Yunus Emre] + +* Ortam değişkeni kullanma bilgisi. [Yunus Emre] + +* Önemsiz değişiklik 🗑 [Yunus Emre] + +* İsim değişikliği 🗽 [Yunus Emre] + +* İsiim ve indeks değişikliği 🗽 [Yunus Emre] + +* Proje yapısı bilgisi yenilendi. [yedhrab] + +* Icon sırası değiştirildi. [yedhrab] + +* İndeksleme yenilendi 🗽 [yedhrab] + +* Önemsiz güncelleme. [yedhrab] + +* Windows 10 bilgileri yenilendi. [yedhrab] + +* Java notları yenilendi 🎈 [yedhrab] + +* Format yenilendi. [yedhrab] + +* Youtube indirici kullanımı güncellendi. [yedhrab] + +* İndeksler yenilendi 🗽 [yedhrab] + +* Bilgiler yenilendi ✨ [yedhrab] + +* Google verileri yönetimi güncellendi. [yedhrab] + +* Lisans alanı güncellendi ✍ [yedhrab] + +* Lisans güncellendi ✍ [yedhrab] + +* Lisans alanı değiştirildi 🔁 [yedhrab] + +* Markdown özelliklerim yenilendi 🆕 [yedhrab] + +* Notlar yenilendi 🚀 [Yunus Emre] + +* İndeksleme yenilendi. [Yunus Emre] + +* İndeksleme yenilendi 🗽 [Yunus Emre] + +* Google yazılımları ayrı alana alındı 🚎 [Yunus Emre] + +* JSON ayarlarım yenilendi. [Yunus Emre] + +* JSON ayarlarım güncellendi. [Yunus Emre] + +* İndeksleme yenilendi 🗽 [Yunus Emre] + +* React bilgileri yenilendi. [Yunus Emre] + +* İndeksleme yenilendi ✨ [Yunus Emre] + +* Script yenilendi ✨ [Yunus Emre] + +* İndeksleme yenilendi. [Yunus Emre] + +* Linux ayarları yenilendi. [Yunus Emre] + +* PDF özellikleri yenilendi. [Yunus Emre] + +* PDF imzası yenilendi 🖖 [Yunus Emre] + +* Pull From işlemini Geri Alma. [Yunus Emre] + +* Ayarlarım güncellendi. [Yunus Emre] + +* Ayarlar yenilendi. [Yunus Emre] + +* Özelleştirme güncellendi. [Yunus Emre] + +* Resimlere yapılan indeksleme kaldırıldı. [Yunus Emre] + +* Script güncellendi. [Yunus Emre] + +* Kökten değişiklik 🌲 [Yunus Emre] + +* JSON ayarları güncellendi. [Yunus Emre] + +* Hız bilgileri güncellendi. [Yunus Emre] + +* Script güncellendi 👷 [Yunus Emre] + +* Kökten değişim 🚀 [Yunus Emre] + +* Kökten değişim 🚀 [Yunus Emre] + +* Yeni yapı ve script 🚀 Eski python scripti ve python notları nın yapısı yenilendi. [Yunus Emre] + +* Scope and namespace bilgileri güncellendi. [Yunus Emre] + +* Köklü değişiklik 🌴 [Yunus Emre] + +* Python notları yenilendi. [Yunus Emre] + +* Editör ayarlarım güncellendi. [YEmreAk] + +* Yapısal değişiklik 🏗 [Yunus Emre] + +* Javascript bilgileri yenilendi 🚀 [Yunus Emre] + +* Conda bilgileri güncellendi 🚀 [Yunus Emre] + +* Masterdan aktarıldı 🚀 [Yunus Emre] + +* İndeksleme güncellendi 🗽 [Yunus Emre] + +* Masterdan aktarıldı 🚀 [Yunus Emre] + +* Master aktarıldı 🚀 [Yunus Emre] + +* İndeksleme güncellendi 🚀 [Yunus Emre] + +* Yapılacaklar güncellendi 🏗 [Yunus Emre] + +* Master aktarıldı. [Yunus Emre] + +* İsim değişikliği :) [Yunus Emre] + +* İndeksleme güncellendi 🗽 [Yunus Emre] + +* Constant deyimi güncellendi. [Yunus Emre] + +* Yeniden yapılandırma 🏗 [Yunus Emre] + +* Eklentiler yenilendi 🌈 [Yunus Emre] + +* İçerikler güncellendi 🗽 [Yunus Emre] + +* Master aktarıldı 🏗 [Yunus Emre] + +* Gitpage'e uygun yapılandırıldı 🏗 [Yunus Emre] + +* JSON Ayarlarım güncellendi ✨ [YEmreAk] + + Girinti için artık tab karakteri kullanılacak. + +* Yapılandırma bilgisi yenilendi ✨ [YEmreAk] + +* Kısayol yapısı güncellendi 🏗 [YEmreAk] + +* GitPages için yapılandırıldı 👷🏗 [YEmreAk] + +* README güncelleyen script yenilendi ✨ [YEmreAk] + +* Önemsiz güncelleme 🙄 [YEmreAk] + +* QT Bilgileri yenilendi 🌄 [YEmreAk] + +* Kısayollar yenilendi 🌠 [YEmreAk] + +* Kurulum bilgileri güncellendi 🙇‍♀️ [YEmreAk] + +* JSON ayarları yenilendi ✨ [Yunus Emre] + +* JSON ayarlarım ve kısayollar değişti 🗽 [YEmreAk] + +* İndeksleme yenilendi 🗽 [YEmreAk] + +* Gereksizler Kaldırıldı 🗑 [YEmreAk] + + Ders notları https://github.com/yedhrab/IU-CE-DersNotlari sayfasına alındı + +* Genel güncelleme 🌀 [YEmreAk] + +* Xampp kurulumu güncellendi. [YEmreAk] + +### 🗽 Düzeltmeler + +* Ufak düzeltmeler yapıldı `v`kaldırıldı. [Yunus Emre] + +* Git Tag'ları Kaldırma (Release Aşamasındakiler) [Yunus Emre] + +* Link sorunu giderildi. [Yunus Emre] + +* 🐞 Bug sorunu için dökümanlar tekrar yüklenmek üzere silindi. [Yunus Emre] + +* Delete .bookignore. [Yunus Emre] + +* Delete .bashrc. [Yunus Emre] + +* 🐞 Link ve resim sorunları giderildi. [Yunus Emre] + +* 🧹 Gereksizler kaldırıldı. [Yunus Emre] + +* 🧹 Gereksizler kaldırıldı. [Yunus Emre] + +* 🛩 IPython notları düzenlendi. [Yunus Emre] + +* 😅 Anlatım bozukluğu giderildi. [Yunus Emre] + +* 🐞 Dosya sorunu giderildi. [Yunus Emre] + +* Delete Quiz 3 - Detection Algorithms.pdf. [Yunus Emre] + +* 🐞 Ufak hata düzeltmeleri. [Yunus Emre] + +* 🔍 Arama Buton sorunu giderildi. [Yunus Emre] + +* Emoji sorunu giderildi. [Yunus Emre] + +* 🔍 Arama Buton'u düzeltmesi. [Yunus Emre] + +* Ufak tefek yazım hataları giderildi. [Yunus Emre] + +* 🔍 Arama Buton'undaki kusurlu link düzeltildi. [Yunus Emre] + +* Aşırı fazla yazan 💖 Destek metni kaldırıldı. [Yunus Emre] + +* IPython da ayrıldı 😿 [Yunus Emre] + +* 🧹 Toggle menu desteklenmediğinden kaldırıldı. [Yunus Emre] + +* 🔗 Link düzeltildi. [Yunus Emre] + +* 🧹 Ufak hata düzeltmesi. [Yunus Emre] + +* 🧼🧹 Derin temizlik İçerikler alanı kaldırıldı. [Yunus Emre] + +* Images dizini kaldırıldı 🧹 [Yunus Emre] + +* Android notları ayrıldı 🚛 https://github.com/yedhrab/YAndroid. [Yunus Emre] + +* Önemsiz düzeltme. [Yunus Emre] + +* Gereksiz işaretler kaldırıldı 🧹 [Yunus Emre] + +* Ufak düzeltme 🌳 [Yunus Emre] + +* Todo List yapısı düzenlendi ✨ [Yunus Emre] + +* Todo etiketlerindeki "todo" gibi kısımlar kalktı. [Yunus Emre] + +* Import eksikliği giderildi. [Yunus Emre] + +* Hata düzeltmesi. [Yunus Emre] + +* Windows dosyaları kaldırıldı. [Yunus Emre] + +* Önemsiz düzeltme. [Yunus Emre] + +* Hata düzeltme 🐛 [Yunus Emre] + +* Görev çubuğu sorunların düzeltme. [Yedhrab] + +* Bİlgiler parçalandı ve düzenlendi 🏗 [Yunus Emre] + +* Yazım hatası kaldırıldı. [Yunus Emre] + +* Ufak düzeltmeler ✨ [Yunus Emre] + +* Ufak düzeltme. [Yunus Emre] + +* Gereksiz düzeltme. [yedhrab] + +* Kesinlikle bakılası notlar ⚠ Yazım hatası giderildi. [yedhrab] + +* Ufak düzeltmeler 🧹 [yedhrab] + +* Yinelenen bilgiler kaldırıldı 🧹 [yedhrab] + +* Eksik resim giderildi 🐛 [yedhrab] + +* Gömülü video kaldırıldı 🗑 [yedhrab] + +* Gereksiz bilgi kaldırıldı. [yedhrab] + +* İsim ve index düzeltme 🗽 [yedhrab] + +* Önemsiz düzeltme ✍ [yedhrab] + +* Hata düzeltmesi 🐞 [Yunus Emre] + +* Link sorunu giderildi 🐛 Emojiye link verilmeme sorunundan dolayı emoji kaldırıldı 😢 [Yunus Emre] + +* Link hataları giderildi 🐛 [Yunus Emre] + +* Ufak düzenleme 👷 [Yunus Emre] + +* Hatalar giderildi 🐛 [Yunus Emre] + +* Yapısal düzenleme 👷 [Yunus Emre] + +* Girinti hatası giderildi. [Yunus Emre] + +* Yazım hatası giderildi 😢 [Yunus Emre] + +* Ufak düzeltmeler 🐛 [Yunus Emre] + +* PDF'de emojilerin gözükmemesi sorunu giderildi 🐛 [Yunus Emre] + +* Yeni bilgiler ve script düzenlemesi. [Yunus Emre] + +* Tema kaldırıldı. [Yunus Emre] + +* Res klasörüne indeksleme kaldırıldı. [Yunus Emre] + +* Hata düzeltildi. [Yunus Emre] + +* Önemsiz düzeltme. [Yunus Emre] + +* Yapısal düzenleme 🏗 [Yunus Emre] + +* Yapısal düzenleme 🏗 [Yunus Emre] + +* Yapısal düzenleme 🏗 [Yunus Emre] + +* Hatalı dosya kaldırıldı 🧐 [Yunus Emre] + +* İndeksleme hatası giderildi 🐞 [Yunus Emre] + +* Readme hatası giderildi 🐛 Sİlinen notlar kurtarıldı. [Yunus Emre] + +* İndeksleme düzeltildi 🗽 [Yunus Emre] + +* Yapısal düzenelme 🏗 [Yunus Emre] + +* Yapısal düzenleme 🏗 [Yunus Emre] + +* Markdown hataları giderildi 🐛 [Yunus Emre] + +* Yapısal düzenleme 🏗 [YEmreAk] + +* Yapısal düzenleme 🏗 [YEmreAk] + +* Klavye kısayolları düzeltildi 🏗 [YEmreAk] + +* Yerel dizini (home) kurtarma ve düzelte script ✨ [YEmreAk] + +* ToC hatası giderildi 🐛 [YEmreAk] + +* Markdown düzeltmesi 😒 [YEmreAk] + +* FTP sorunu düzeltildi. [YEmreAk] + +* Boş satır kaldırıldı 😒 [YEmreAk] + +### 📡 Diğerler + +* 🛰 Projeyi PyPI'da Yayınlama. [Yunus Emre] + +* Argparse hakkında ek bilgi. [Yunus Emre] + +* 🧹 CClenaer için lisans ayarlama. [Yunus Emre] + +* Scripting diller hakkında aldığım notlar ✍ [Yunus Emre] + +* Emojilendi. [Yunus Emre] + +* ⏹ RegEdit Düzenleme Dosyası. [Yunus Emre] + +* ✨ Emojilendi. [Yunus Emre] + +* ✨ Emojilendi. [Yunus Emre] + +* ✨ Emojilendi. [Yunus Emre] + +* Gözlük yakışmadı 🚀'e çevrildi. [Yunus Emre] + +* 🚀 Yapay zeka için motivasyon videoları. [Yunus Emre] + +* MacOS için faydalı uygulamaların hepsi 🤩 [Yunus Emre] + +* Windows 10 için faydalı uygulamalar 🤩 [Yunus Emre] + +* 🗑 Dosyalar yeniden yüklenmek üzere silindi. [Yunus Emre] + +* 🧪 Python Terminalinde Kod Tamamlama. [Yunus Emre] + +* 📖 YWiki. [Yunus Emre] + +* 🔍 Arama Butonu testi. [Yunus Emre] + +* 🔍 Arama Buton'a link verildi. [Yunus Emre] + +* 🤔 Sanki emojiler çok sırıttı. [Yunus Emre] + +* 🥃 Github Desktop için fyadalı notlar. [Yunus Emre] + +* 🚀 GitBook detaylandırıldı. [Yunus Emre] + +* 🧼 Temizlik. [Yunus Emre] + +* ✨ Biraz emoji ile süsleyelim. [Yunus Emre] + +* 🔮 GitBook entegrasyonu. [Yunus Emre] + +* 🧹 Buraların temizlenme vakti geldi. [Yunus Emre] + +* Github 🐙 için ek ayarlar. [Yunus Emre] + +* JSON'lar todo için görmezden geliniyor. [Yunus Emre] + +* Tablo işlemleri arttırıldı 🆕 [Yunus Emre] + +* Terimler arttırıldı. [Yunus Emre] + +* Merge branch 'master' of https://github.com/yedhrab/YBilgiler. [Yunus Emre] + +* Faydalı programlar arttırıldı ✨ [Yunus Emre] + +* Issue template test. [Yunus Emre] + +* Favori store apps. [Yunus Emre] + +* Denenmiş resmi stock rom. [Yunus Emre] + +* Mi A2 Lite stock rom June 2019. [Yunus Emre] + +* Windows dosyaları görmezden gelinecek. [Yunus Emre] + +* Sık kullanılan komutlar alanı. [Yunus Emre] + +* Xiaomi Mi A2 Lite stock rom kurlumu 🚀 [Yunus Emre] + +* Tonla not 📚 [Yunus Emre] + +* İndeksleme yapıldı. [Yunus Emre] + +* Video url'lerini dosyadan alma. [Yedhrab] + +* Tonla not 📚 [Yunus Emre] + +* ToC linkleri küçük harflere çevrildi. [Yunus Emre] + +* Yeni bilgiler. [Yunus Emre] + +* Son java notlarım 😪 [Yunus Emre] + +* Veri bilimi notları 🧪 [Yunus Emre] + +* Bir sürü not 📚 [Yunus Emre] + +* Tavsiye class'lar arttırıldı. [Yunus Emre] + +* Exe'ye çevirme bilgisi. [Yunus Emre] + +* Tonla bilgi 📚 [Yunus Emre] + +* Github Üzerindeki Açılmayan Dosyalar. [Yunus Emre] + +* Commit notları ✒ [Yunus Emre] + +* Process işlemleri 🧵 [Yunus Emre] + +* Çok fazla not 📚 [Yunus Emre] + +* Notlar arttırıldı 📚 [yedhrab] + +* Yeni notlar 📚 [yedhrab] + +* Yeni bilgiler 🚀 [yedhrab] + +* Java için GUI notları arttırıldı 🖼 [yedhrab] + +* VsCode notları artık daha anlaşılır 🌟 [yedhrab] + +* Karışık notlar 🌀 [yedhrab] + +* GUI notları arttırıldı. [yedhrab] + +* Java GUI notları. [yedhrab] + +* Yeni bilgiler ✨ [yedhrab] + +* Yeni bilgiler ✨ [yedhrab] + +* Bilgiler yenlendi ✨ [yedhrab] + +* ✍ [yedhrab] + +* Windows boot kurtarma. [Yunus Emre] + +* Yeni bilgiler 🎈 [Yunus Emre] + +* Yeni yapı ve notlar 🚀 [Yunus Emre] + +* Yeni bilgiler ✨ [Yunus Emre] + +* Yeni bilgiler ✨ [Yunus Emre] + +* Python vs Js. [Yunus Emre] + +* Yeni indeksleme 🗽 [Yunus Emre] + +* Yeni bilgiler ✨ [Yunus Emre] + +* Yeni notlar ☄ [Yunus Emre] + +* Uygulamalar listelendi. [Yunus Emre] + +* Font boyutu küçültüldü. [Yunus Emre] + +* Yeni bilgiler 🚀 [Yunus Emre] + +* Yeni bilgiler 🚀 [Yunus Emre] + +* Yeni python bilgileri 🎈 [Yunus Emre] + +* Bilgiler arttırıldı. [Yunus Emre] + +* Top 50 Machine Learning Interview. [Yunus Emre] + +* Yeni notlar. [Yunus Emre] + +* Yeni not 🗞 [Yunus Emre] + +* Merge branch 'master' of https://github.com/yedhrab/YBilgiler. [Yunus Emre] + +* Garip 🤔 [Yunus Emre] + +* Yeni konu 🚀 [Yunus Emre] + +* Merge branch 'master' of https://github.com/yedhrab/YBilgiler. [Yunus Emre] + +* Font size değşitirlidi. [Yunus Emre] + +* Makine öğrenimi notları. [Yunus Emre] + +* React notları. [Yunus Emre] + +* Bağış ♥ [Yunus Emre] + +* Font yükleme bilgisi. [Yunus Emre] + +* Yeni bilgiler. [Yunus Emre] + +* 🔥 [Yunus Emre] + +* 🐛 fix. [Yunus Emre] + +* PDF için python 📄 [Yunus Emre] + +* Yeni bilgiler 🤓 [Yunus Emre] + +* Markdown PDF notları 🔥 [Yunus Emre] + +* Yeni notlar. [Yunus Emre] + +* Yeni Bilgileri. [Yedhrab] + +* Tema görmezden gelindi. [Yunus Emre] + +* Yeni belgiler ✨ [Yunus Emre] + +* Branch işlemleri sadeleştirildi. [Yunus Emre] + +* Linkler dinamikleştirildi. [Yunus Emre] + +* Merge branch 'master' of https://github.com/yedhrab/YBilgiler. [Yunus Emre] + +* PDF'ler arttırıldı. [Yunus Emre] + +* Yeni notlar ✏ [Yunus Emre] + +* Son çalışan ve test edilmiş sürüm 🚀 [Yunus Emre] + +* Yapı oturtuldu 👷 [Yunus Emre] + +* Python verileri dağıtılıyor 🌀 [YEmreAk] + +* Jquery indekslendi 🎗 [Yunus Emre] + +* Merge branch 'master' of https://github.com/yedhrab/YBilgiler into gh-pages. [Yunus Emre] + +* Merge branch 'master' of https://github.com/yedhrab/YBilgiler into gh-pages. [Yunus Emre] + +* Merge branch 'master' of https://github.com/yedhrab/Bilgiler into gh-pages. [Yunus Emre] + +* Yeni bilgiler 🚀 [Yunus Emre] + +* Colab notları arttırılıyor 🌈 [Yunus Emre] + +* Merge branch 'master' of https://github.com/yedhrab/Bilgiler into gh-pages. [Yunus Emre] + +* Yeni repoya bağlantı verildi 🔗 [Yunus Emre] + +* Yenilendi 🌟 [Yunus Emre] + +* Merge branch 'master' of https://github.com/yedhrab/Bilgiler into gh-pages. [Yunus Emre] + +* Merge branch 'master' of https://github.com/yedhrab/Bilgiler into gh-pages. [YEmreAk] + +* Set theme jekyll-theme-midnight. [Yunus Emre] + +* Set theme jekyll-theme-cayman. [Yunus Emre] + +* Java bilgileri indekslendi ✴ [YEmreAk] + +* Merge branch 'master' of https://github.com/yedhrab/Bilgiler. [YEmreAk] + +* Set theme jekyll-theme-midnight. [Yunus Emre] + +* Kısayolalr katagorize edildi 🗂 [YEmreAk] + +* Merge branch 'master' of https://github.com/yedhrab/Bilgiler. [YEmreAk] + +* Yeni bir bilgi başlığı daha 🎉 [YEmreAk] + + diff --git a/README-dev.md b/README-dev.md new file mode 100644 index 00000000..68c8a95b --- /dev/null +++ b/README-dev.md @@ -0,0 +1,10 @@ +# Geliştiriciler için Notlar + +## Changelog Yapısı + +| Özellik | RegEx | +| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | +| `🚀 Yenilikler` | `r'\bekle|\boluş|(\byeni )|\b[cC]reate'` | +| `🌌 Değişiklik` | `r'\btaşı|\bdeğiş|\b[uU]pdate|\bgüncel|\byenile|\bdönül|\bgeç|\bkoyu|\byapılan|\b[rR]evert|\b[gG]eri|\balındı|\baktar|\byenile|(\bevril)'` | +| `🗽 Düzeltmeler` | `r'\b[bB]ug|\bdüzen|\bdüzelt|\bgider|\bkalk|\b[kK]aldır|\bayrıl|\b[dD]elete'` | +| `'📡 Diğerler'` | Geri kalanlar | diff --git a/SUMMARY.md b/SUMMARY.md index 942eaa65..16835b60 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -3,6 +3,7 @@ # Summary - [📖 YWiki](./README.md) + - [🌟 Yenilikler](./CHANGELOG.md) - [🚀 Awesome](./Awesome/README.md) - [🤸‍ Cheet Sheets](./Cheet%20Sheets/README.md) - [🤺 Eski Blog Notlarım](./Eski%20Blog%20Notlar%C4%B1m/README.md) @@ -38,7 +39,7 @@ - [Markdowns](./Programlama%20Notlar%C4%B1/Markdown.md) - [Nodejs](./Programlama%20Notlar%C4%B1/Nodejs.md) - [NPM](./Programlama%20Notlar%C4%B1/NPM.md) - - [Regex](./Programlama%20Notlar%C4%B1/Regex.md) + - [⛩ Regex](./Programlama%20Notlar%C4%B1/Regex.md) - [Shell Script](./Programlama%20Notlar%C4%B1/Shell%20Script.md) - [Verimli Programlama](./Programlama%20Notlar%C4%B1/Verimli%20Programlama.md) - [📱 Android](./Programlama%20Notlar%C4%B1/Android/README.md)