This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| debug 2025/11/22 18:04:15 RunCommandImmediate: [config list --color never --include-defaults --ignore-working-copy] | |
| debug 2025/11/22 18:04:15 RunCommandStreaming: [log --color always --quiet -r present(@) | ancestors(immutable_heads().., 2) | present(trunk())] | |
| debug 2025/11/22 18:04:15 Starting streaming revisions with tag: 1 | |
| debug 2025/11/22 18:04:15 ========new segment below======== | |
| debug 2025/11/22 18:04:15 @/ /syv/ysrmz/ /[email protected]/ /2025-11-22 18:03:57/ /3df/76350/ | |
| debug 2025/11/22 18:04:15 after parsing: syv, ysrmz, false | |
| debug 2025/11/22 18:04:15 ========new segment below======== | |
| debug 2025/11/22 18:04:15 │ /(empty)/ /(no description set)/ | |
| debug 2025/11/22 18:04:15 ========new segment below======== | |
| debug 2025/11/22 18:04:15 ○ /xu/olurxu/ /[email protected]/ /2025-11-22 04:56:46/ /yc/parsing-debug/ /12/7ed2d4/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| autoload -U compinit; compinit | |
| zstyle ':completion:*' matcher-list 'r:[^A-Z0-9]||[A-Z0-9]=** r:|=*' | |
| zstyle ':completion:*' menu select | |
| alias k='kubectl' | |
| alias la='exa -a' | |
| alias ll='exa -lah' | |
| alias ls='exa --color=auto' | |
| alias idiff='open -na "/Applications/idea" --args diff ' | |
| export EDITOR=nvim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set hlsearch | |
| set visualbell | |
| set noerrorbells | |
| set ignorecase smartcase | |
| set showmode | |
| set multiple-cursors | |
| set surround | |
| nnoremap <space>u :action FindUsages<cr> | |
| nnoremap <space>k :action HighlightUsagesInFile<cr> | |
| nnoremap <space>j :action EditorCompleteStatement<cr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let mapleader=" " | |
| map <leader>p "*p | |
| map <leader>d :vsc ReSharper.ReSharper_GotoDeclaration<Enter> | |
| map <leader>f :vsc Edit.Find<Enter> | |
| map <leader>h :vsc ReSharper.ReSharper_HighlightUsages<Enter> | |
| map <leader>n :vsc ReSharper.ReSharper_ResultListGoToNextLocation<Enter> | |
| vmap <C-c> "*y | |
| map <M-j> :vsc ReSharper.ReSharper_ResultListGoToNextLocation<Enter> | |
| map <M-k> :vsc ReSharper.ReSharper_ResultListGoToPrevLocation<Enter> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible " be iMproved | |
| filetype off " required! | |
| :syntax on | |
| set encoding=utf-8 | |
| set relativenumber | |
| set ignorecase | |
| set smartcase | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set expandtab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Place your key bindings in this file to overwrite the defaults | |
| [{ | |
| "key": "alt+8", | |
| "command": "workbench.action.gotoSymbol" | |
| },{ | |
| "key": "shift+alt+t", | |
| "command": "workbench.action.showAllSymbols" | |
| },{ | |
| "key": "ctrl+r ctrl+r", | |
| "command": "editor.action.rename" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package actors | |
| import akka.actor.{ActorLogging, Actor} | |
| import parsers.EksiSozlukSiteParser | |
| import persistence.PostgreSqlPersistence | |
| import scala.concurrent.duration._ | |
| object TrackerActor { | |
| case class TrackPage(page: Integer) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package parsers | |
| import java.net.URL | |
| import java.time.LocalDate | |
| import core.Rezalet | |
| import org.jsoup.Jsoup | |
| import org.jsoup.nodes.{Element, Document} | |
| import scala.collection.JavaConversions._ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package parsers | |
| import java.time.LocalDate | |
| import core.Rezalet | |
| trait SiteParser { | |
| type TitleInfo = (String, LocalDate) | |
| type RezaletProcessor= Rezalet => Unit | |
| def source: String |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible " be iMproved | |
| filetype off " required! | |
| :syntax on | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set expandtab | |
| set guifont=Consolas:h10:cTURKISH | |
| set smartindent | |
| set autoindent | |
| set number |
NewerOlder