daloRADIUS Import Users – fix password type
A bug fix for importing users into daloRADIUS with a different password type than the default Cleartext-Password
A bug fix for importing users into daloRADIUS with a different password type than the default Cleartext-Password
Example of how to setup vagrant networking to enable Internet accessible machine setup with a Vagrantfile
An open source contribution from Ezequiel Villarreal to fix a bug in daloRADIUS's accounting interface
Getting started with penetration testing for Android devices
How to fix Drupal 6 subscription notifications not sent to users via email
Disclosing a Cross-site Scripting vulnerability in the Advanced Poll module for Drupal.
How to disable the Drupal Database Log and enable Syslog instead
One of my first public speaking engagements was at Drupal Camp 2013
This is the 4th of several on-going blog post series which aim to educate on the process of porting modules to Drupal 8 with real life examples by porting a popular Drupal 7 module to Drupal 8.
Another post in the series of Drupal 8 module development articles. This time we'll add a settings page to our module.
You need a module configuration page for your new Drupal 8 module and here is how to build one using GlobalredirectSettingsForm
If you are coming from Drupal 7 you'll need to figure out how to use globalredirect_menu() and hook_menu() in Drupal 8 to handle page routing
This is the first of several on-going blog post series which aim to educate on the process of porting modules to Drupal 8 with real life examples by porting a popular Drupal 7 module to Drupal 8.
MyISAM or InnoDB? know how to choose database engines
My GitHub Actions hackathon application entry is about all the small things that would contribute to a better maintainer life.
This is a blog mirror of Snyk’s State of JavaScript frameworks security report 2019.
As a follow-up to Snyk’s State of JavaScript frameworks security report 2019, this section of the report is about Angular and React…
This article is from Snyk’s State of JavaScript frameworks security report 1. In this blog post we’ll review security vulnerabilities…
In the State of Open Source Security Report 2019, we set out to measure the pulse of the open source security landscape throughout the…
Sharing my thoughts and experience on attending JSConf Budapest for the first time
npm security tips to keep you safe of malicious modules
what makes a test case good? how can we improve the developer friendliness when writing test code?
June 4th is a historic date where the millionth package was indexed into the npm registry. npm is a package manager for JavaScript packages.
Sometimes, when building an application inside a Docker image, you need secrets such as an SSH private key to pull code from a private repository but you may be going about it the wrong way by leaking secrets into the image. Here is how to avoid it.
Docker provides two commands for copying files from the host to the Docker image when building it: `COPY` and `ADD`. which one should you use?