Planet Drupal
Translating views strings programmatically in Drupal 8
In Drupal 8 views strings like sort options, header, footer or any other string can only be translated through configuration translation but here is a code snippet to add translations for a view programmatically with config override.
Hide register link for administrator role users in Drupal 8
While working on Drupal 8 one of the issues you might face is you won't get the "Register" link for anonymous users. Here are two simple ways how to hide the "Register" link for users with administrator roles.
Right way to call theme functions in Drupal
Drupal core and contrib modules defines theme functions. These theme functions can be defined by themes as well. hook_theme() implementations is where all the information exists.
Role Delay Module - Automatically assign role to user
There are situations where drupal you want to assign a particular role to a user after he/she has been registered for a period of time. This functionality might be needed for situations where you want a user to get permission to perform a particular task on your site.