Programming
- https://roadmap.sh/roadmaps - road maps
- algoexpert - site with algorithms
- https://visualgo.net/en - algorithms visualize (https://habr.com/ru/company/gnivc/blog/689770/ описание)
- https://codersrank.io/ - popularity instruments
- colorer site color and format source for copy - http://hilite.me/
- https://www.codota.com/setup/vscode - codota AI Code Completions
- https://www.tabnine.com/?utm_source=search-web - vscode ai code completion
- search code grep -
grep -inIEr -C1 –include=“*.java” “codere*” ./src/
Programming backlog
Какие подходы и методологии Вы применяли для формирования бэклога и проектирования функциональности продукта в этом году?
- СJM, UJM
- Service Blueprint
- Jobs to be done и Job Story
- User Story и User Story Mapping
- Use Case
- UML
- Текстовое описание по собственным шаблонам
- Другое (укажите, что именно)
Какие способы визуализации и моделирования Вы применяли в этом году?
- IDEF0
- BPMN
- EPC
- Блок-схемы
- UML
- User Flow, UJM
- Прототипы и мокапы интерфейсов
- Другое (укажите, что именно)
Programming.stacks стэк
Programming.concepts
O notation
Popularity популярность
HTTP
HTML
- https://github.com/APIs-guru/graphql-voyager - graphql voyager
- https://api.prisma-cms.com/ api prisma
- https://squoosh.app/editor - picture image optimize smashingmagazine modern image formats 2021
- нагрузочное тестирование
HTML Beauty
- https://www.leafgon.com/nav/breezyforest/demo - great indicator
SVG
- Svg editor https://boxy-svg.com/app
CSS
- Flexbox Вёрстка на Flexbox в CSS
- TailWind Components https://tailwindcomponents.com/components/Forms
Bootstrap
Php
- for reading good site - https://stitcher.io/blog/constructor-promotion-in-php-8
PHP config
- PHP-FPM configure https://thisinterestsme.com/php-fpm-settings/
- Производительность PHP: планируем, профилируем, оптимизируем https://habr.com/ru/company/badoo/blog/430722/
#memory use of PHP https://serverfault.com/questions/1055507/php-fpm-using-100-cpu-on-a-server-that-has-16-threads ps --no-headers -o "rss,cmd" -C php-fpm | awk '{ sum+=$1 } END { printf ("%d%s\n", sum/NR/1024,"M") }' echo " pm = static pm.max_children = 25 pm.start_servers = 5 pm.min_spare_servers = 5 pm.max_spare_servers = 10 pm.max_requests = 1000 " >> to_php_ini
Php Laravel
Php MODX
- debugging habr_debug tracy php debug
- https://webdesign-master.ru/blog/modx/ - site for learn
- https://www.markhamstra.com/modx/2018/deprecated-notices-in-modx-2.7/ - deprecated and examples
- https://modx.pro/development/19365 - new version of modx on php
- https://ilyaut.ru/extjs/how-modx-extras-work-6/ - utkin how extension work
- https://modzone.ru/blog/2020/07/25/queues-in-modx-out-of-the-box/ - очереди modx queu из коробки
- https://docs.modx.pro/komponentyi/pdotools/fajlovyie-elementyi - компоненты в файлех
PHP.gost
- ESIA есиа https://github.com/fr05t1k/esia
PHP.webcheatsheets
35 Website Cheat Sheets For Developers https://dev.to/haycuoilennao19/35-website-cheat-sheet-for-developer-22hk
Python
- good book https://python-scripts.com/sleep
- install pip from wheels
python3 ./pip-19.2.2-py2.py3-none-any.whl/pip install ./pip-19.2.2-py2.py3-none-any.whl
- psycopg3 - postgres driver https://www.psycopg.org/psycopg3/ https://www.psycopg.org/psycopg3/docs/advanced/typing.html
- pydantic - https://pydantic-docs.helpmanual.io/usage/validators/ - Data validation and settings management using python type annotations.
- pudb - debugger на стероидах
- ptpython - repl advanced
Python request Cookie example
#https://stackoverflow.com/questions/13030095/how-to-save-requests-python-cookies-to-a-file from http.cookiejar import MozillaCookieJar import requests s = requests.Session() s.cookies = MozillaCookieJar('cookies.txt') # or s.cookies = MozillaCookieJar() and later use s.cookies.filename = 'cookies.txt' or pass the file name to save method. response = s.get('https://www.msn.com') s.cookies.save()
Python library
- https://habr.com/ru/company/cloud4y/blog/650357/ - 30 лучших проектов python
Python linter best practice
- самые распространенные ошибки https://habr.com/ru/company/breakpoint/blog/686104/
- правила написания кода https://github.com/best-doctor/guides/blob/master/guides/python_styleguide.md
Python puenv virtualenv
Python Docker
- multistage and health https://gabnotes.org/lighten-your-python-image-docker-multi-stage-builds/
- wheels in python multistage https://morioh.com/p/d777482dea93
Python. Flask
Python. Data visualization
- plotly great example - analyze data - https://medium.com/plotly/introducing-dash-5ecf7191b503
- dash filter example https://gist.github.com/chriddyp/9b2b3e8a6c67697279d3724dce5dab3c
- dash in 20 minutes https://dash.plotly.com/tutorial
Python.Diagram
- Diagram as a code - https://blog.bytebytego.com/p/diagram-as-code
Grafana
- grafana export graph to png with curl https://community.grafana.com/t/programatically-export-images-png-jpg-of-grafana-dashboard/15780
Git
- Коммиты — это снимки, а не различия / Блог … - Habr - https://habr.com/ru/company/skillfactory/blog/551848/
- Git tree
git log --graph --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset'