Forwarded from Находки в опенсорсе
This extension integrates Draw.io into #vscode
Features
- Edit .drawio or .dio files in the Draw.io editor, as xml or both.
- Edit .drawio.svg files with embedded Draw.io diagrams (might be slow for diagrams with > 400 nodes).
- To create a new diagram, simply create an empty .drawio or .drawio.svg file and open it!
.drawio.svg are valid .svg files.
- Uses an offline version of Draw.io by default.
- An online Draw.io url can be configured.
- A Draw.io theme can be selected.
https://github.com/hediet/vscode-drawio
#ts #docops
Features
- Edit .drawio or .dio files in the Draw.io editor, as xml or both.
- Edit .drawio.svg files with embedded Draw.io diagrams (might be slow for diagrams with > 400 nodes).
- To create a new diagram, simply create an empty .drawio or .drawio.svg file and open it!
.drawio.svg are valid .svg files.
- Uses an offline version of Draw.io by default.
- An online Draw.io url can be configured.
- A Draw.io theme can be selected.
https://github.com/hediet/vscode-drawio
#ts #docops
#sql #tools
Интересная штучка - надо обязательно разобраться.
Window functions allow calculations to be performed across a set of rows related to the current row
https://mariadb.com/kb/en/window-functions-overview/
https://dev.mysql.com/doc/refman/8.0/en/window-function-descriptions.html
Интересная штучка - надо обязательно разобраться.
Window functions allow calculations to be performed across a set of rows related to the current row
https://mariadb.com/kb/en/window-functions-overview/
https://dev.mysql.com/doc/refman/8.0/en/window-function-descriptions.html
Common Table Expression (CTE)
The WITH keyword signifies a Common Table Expression (CTE). It allows you to refer to a subquery expression many times in a query, as if having a temporary table that only exists for the duration of a query.
Тоже полезная вещь. В последнем проекте использовал, чтобы построить дерево одним запросом.
The WITH keyword signifies a Common Table Expression (CTE). It allows you to refer to a subquery expression many times in a query, as if having a temporary table that only exists for the duration of a query.
Тоже полезная вещь. В последнем проекте использовал, чтобы построить дерево одним запросом.
Forwarded from PHP Books
Build an API with Laravel
Автор: Thomas Gamborg Nørgaard
Год издания: 2019
Скачать книгу pdf
Скачать книгу epub
#Laravel #english
Автор: Thomas Gamborg Nørgaard
Год издания: 2019
Скачать книгу pdf
Скачать книгу epub
#Laravel #english
#fullstack #php #js #css #mysql #course #english #нереклама
Бесплатный курс по фулстек-разработке. 48 часов. Еще два дня можно бесплатно зарегаться. Вроде, выглядит неплохо. Налетай, пока дают! :)
https://www.udemy.com/course/the-complete-php-full-stack-web-developer-bootcamp/?couponCode=STAY-SAFE-HOME
Бесплатный курс по фулстек-разработке. 48 часов. Еще два дня можно бесплатно зарегаться. Вроде, выглядит неплохо. Налетай, пока дают! :)
https://www.udemy.com/course/the-complete-php-full-stack-web-developer-bootcamp/?couponCode=STAY-SAFE-HOME
Всем привет!
В списке моих каналов - прибавление 😁
https://t.me/svelte_uncolored
Svelte очень активно развивается и очень быстро догоняет большую тройку лидеров. Поэтому мне кажется, сейчас самое время в него погрузиться, чтобы оказаться на вершине этой волны через пару лет, когда он догонит остальных.
В связи с этим я решил начать копить материалы по Svelte на отдельном канале. Присоединяйтесь - будем разбираться с ним вместе ;)
В списке моих каналов - прибавление 😁
https://t.me/svelte_uncolored
Svelte очень активно развивается и очень быстро догоняет большую тройку лидеров. Поэтому мне кажется, сейчас самое время в него погрузиться, чтобы оказаться на вершине этой волны через пару лет, когда он догонит остальных.
В связи с этим я решил начать копить материалы по Svelte на отдельном канале. Присоединяйтесь - будем разбираться с ним вместе ;)
Forwarded from TechSkills - книги по программированию
Forwarded from Laravel World
Балансировка обработки задач между разными пользователями/тенантами(арендаторами)
Стратегии сбалансированной обаботки очередей для мультитенантной системы. Цель, не дать одному тенанту, пушащему слишком много задач, задержать обработку задач других тенатов.
#english
https://divinglaravel.com/balancing-job-processing-across-different-userstenants
Стратегии сбалансированной обаботки очередей для мультитенантной системы. Цель, не дать одному тенанту, пушащему слишком много задач, задержать обработку задач других тенатов.
#english
https://divinglaravel.com/balancing-job-processing-across-different-userstenants
Diving Laravel
Balancing job processing across different users/tenants - Diving Laravel
A look into preventing one tenant that's pushing too many jobs from delaying job processing of other tenants.
Forwarded from Laravel World
Javel — Добавляем Eloquent в Javascript
Работаем в яваскрипте с объектами так же легко, как в Ларавел
#english
https://lorisleiva.com/introducing-javel/
Работаем в яваскрипте с объектами так же легко, как в Ларавел
#english
https://lorisleiva.com/introducing-javel/
Loris
Introducing Javel
Wrap your plain JavaScript objects into customizable Laravel-like models.
Forwarded from Находки в опенсорсе
sql-lint is a linter for SQL, it brings back any error from the supported servers as well as custom errors written for sql-lint.
sql-lint will show errors about the following things (and more)
- DELETE statements missing WHERE clauses
- DROP/TRUNCATE/ALTER/CREATE statements with invalid options specified
- Odd code points in queries
- Invalid arguments to the LIMIT clause
- Any SQL server errors
sql-lint brings back errors from the supported servers too. It will catch any error from the server. these include but are not limited to:
- Unknown columns on a table
- A non existent database
- A non existent table
- Syntax errors
https://github.com/joereynolds/sql-lint
#ts #sql
sql-lint will show errors about the following things (and more)
- DELETE statements missing WHERE clauses
- DROP/TRUNCATE/ALTER/CREATE statements with invalid options specified
- Odd code points in queries
- Invalid arguments to the LIMIT clause
- Any SQL server errors
sql-lint brings back errors from the supported servers too. It will catch any error from the server. these include but are not limited to:
- Unknown columns on a table
- A non existent database
- A non existent table
- Syntax errors
https://github.com/joereynolds/sql-lint
#ts #sql
Forwarded from PHP Books
Forwarded from Laravel World
Как загружать изображения с помощью Livewire
#english
https://saleem.dev/blog/upload-images-and-files-using-laravel-livewire/
#english
https://saleem.dev/blog/upload-images-and-files-using-laravel-livewire/
saleem.dev
Upload images and files using Laravel Livewire
Learn how to handle files and images upload using Laravel Livewire framework to any storage driver including S3.
Forwarded from Laravel World
Почему нужно избегать наследования в Laravel. Какие есть альтернативы и компромиссы.
#english
https://jasonmccreary.me/articles/avoiding-inheritance-laravel/
#english
https://jasonmccreary.me/articles/avoiding-inheritance-laravel/
Jason McCreary
Avoiding inheritance in Laravel
Developers often choose to use inheritance. However, in Laravel, this may prove to be a painful decision.