6 new Bitbucket Cloud features that spark joy – #SelectedArticles

The return of warmer weather in recent weeks means spring has finally sprung. For the Bitbucket team, this is the time of year we are especially reminded of the potential in clearing out clutter in your day-to-day, giving you back time to do the things that truly spark joy. from …

Пример создания REST-сервиса с использованием Spring – #SelectedArticles

Вы узнаете, что такое RESTFul-сервисы (протокол, стандарт, архитектура), разберётесь в причинах возникновения REST и где их использовать. На семинаре вы увидите несколько from Tigo Source https://www.youtube.com/watch?v=z59GYW4aI2U

Разработка парсеров с помощью ANTLR – #SelectedArticles

На этом вебинаре мы погрузимся в методологию разработки парсеров и их внутреннего устройства на примере ANTLR.План вебинара:1. Парсеры, что это и зачем они нужны.2. ANTLR – from Tigo Source https://www.youtube.com/watch?v=f76y3Id0Ayo

Understanding Service Workers and Caching Strategies – #SelectedArticles

If you have been in the javascript or development world for some time, you must have heard about Service Workers. from Tigo Source https://blog.bitsrc.io/understanding-service-workers-and-caching-strategies-a6c1e1cbde03

Новости 512 — Выпуск №38 (09.02 — 15.02) – #SelectedArticles

by published on Релиз React 16.8.2 — http://bit.ly/2GqUh3U Релиз Laravel 5.7.26 — http://bit.ly/2BzUZI9 Релиз Django 2.0.13 — http://bit.ly/2BEpUDe. from Tigo Source https://soundcloud.com/csssr/novosti-512-vypusk-38-0902-1502

Laravel API Tutorial: How to Build and Test a RESTful API – #SelectedArticles

With the rise of mobile development and JavaScript frameworks, using a RESTful API is the best option to build a single interface between your data and your client. Laravel is a PHP framework developed with PHP developer productivity in mind. from Tigo Source https://www.toptal.com/laravel/restful-laravel-api-tutorial

alkhachatryan/encryptable – Laravel package to encrypt the database columns and tables

GitHub page https://github.com/alkhachatryan/encryptable

Laravel package to encrypt / decrypt the database tables / columns

Installation

Via Composer

$ composer require alkhachatryan/encryptable

Usage

class User extends Model
{
    use Encryptable;

    /**
     * Fillable columns
     */
    protected $fillable = ['name', 'email', 'password'];

    /**
     * Columns which should be encrypted
     */
    protected $encryptable = ['name', 'email'];
}

 

36 лучших видео для тех, кто хочет углубить знания в Python. – #SelectedArticles

Познавательная подборка видеоматериалов о языке программирования Python. Подборка разбита на временной ряд от 2007 до 2015 года. from Tigo Source https://proglib.io/p/py-must-watch-videos/

GOTO 2018 • Developing a Chaos Architecture Mindset • Adrian Cockcroft – #SelectedArticles

This presentation was recorded at GOTO Chicago Cockcroft – Vice President Cloud Architecture Strategy at Amazon Web ServicesABSTRACTWe’ve seen cloud usage patterns begin with a faster data center and greenfield applications, move to cloud-native migrations, and end up from Tigo Source https://www.youtube.com/watch?v=vHl7EZ5o0uY

Zend Framework Community News for the week of 2018-09-13 – #SelectedArticles

Summer is almost over, kids are back to school, and conference season is starting up. We’re working on finalizing a few modules for building APIs in Expressive, amongst other things, and hope to have a few announcements in time for ZendCon. from Tigo Source https://tinyletter.com/mwopzend/letters/zend-framework-community-news-for-the-week-of-2018-09-13

GOTO 2018 • Pragmatic Event-Driven Microservices • Allard Buijze – #SelectedArticles

This presentation was recorded at GOTO Amsterdam Buijze – Creator of Axon FrameworkABSTRACTMost discussions about the implementation of a new system or component (especially when considering a microservices-based architecture) start by evaluating the various technical opt from Tigo Source https://www.youtube.com/watch?v=vSd_0zGxsIU

Setting up PhpStorm with Xdebug for local development on Docker – #SelectedArticles

In the second part of this tutorial series on developing PHP on Docker we’re taking a good hard look at PhpStorm, Xdebug and how to run and debug scripts from within PhpStorm on Docker. from Tigo Source https://www.pascallandau.com/blog/setup-phpstorm-with-xdebug-on-docker/

How to use Docker for local web development: an update – #SelectedArticles

Thing is, Docker (and its ecosystem) is a fast-paced project that gets updated very often, and things changed quite a bit since that article was first published. from Tigo Source http://tech.osteel.me/posts/2017/01/15/how-to-use-docker-for-local-web-development-an-update.html#step-4-named-volumes

Простое объяснение принципов SOLID – #SelectedArticles

Принципы SOLID — это стандарт программирования, который все разработчики должны хорошо понимать, чтобы избегать создания плохой архитектуры. from Tigo Source http://telegra.ph/Prostoe-obyasnenie-principov-SOLID-06-06

Zend Framework Community News for the week of 2018-05-17 – #SelectedArticles

We’re soliciting case studies to include in the Zend Framework site, covering anything from use of individual components, to full-stack zend-mvc applications, to Apigility, to Expressive. from Tigo Source https://tinyletter.com/mwopzend/letters/zend-framework-community-news-for-the-week-of-2018-05-17

Zend Framework/Homestead Integration – #SelectedArticles

Last year, we wrote about using Laravel Homestead with ZF projects. Today, we contributed some changes to Homestead to simplify setting it up to serve Apigility, Expressive, and Zend Framework projects. from Tigo Source https://framework.zend.com/blog/2018-05-16-homestead.html

Zend Framework Community News for the week of 2018-05-10 – #SelectedArticles

This week, we finished our PHP 7.2 support initiative, and wrote up a blog post detailing the process we used to do so: If you are using Zend Framework, Apigility, or Expressive, you’re a composer update away from using code that works on PHP 7.2! With Expressive 3 and PHP …

Zend Framework Community News for the week of 2018-05-03 – #SelectedArticles

The big news since the last newsletter is the PHP 7.2 milestone. With Expressive 3 released, we were finally able to work on a rather important milestone: ensuring all components and modules work on PHP 7.2. from Tigo Source https://tinyletter.com/mwopzend/letters/zend-framework-community-news-for-the-week-of-2018-05-03

Zend Framework Community News for the week of 2018-04-19 – #SelectedArticles

A month has snuck by without me noticing I’ve not dropped a newsletter; funny how a conference and a vacation can interrupt your schedule! When last I wrote, we’d just released Expressive 3. from Tigo Source https://tinyletter.com/mwopzend/letters/zend-framework-community-news-for-the-week-of-2018-04-19

Back to Top