How to Create a Successful Side Project | by Prajix | CodeX | Oct, 2021

A side project can be your hobby, passion, or part-time business. It’s a chance to use your creativity, learn new skills, and even make some money along the way doing something you generally love. The key to making side projects successful is setting clear goals, developing a strategy, and taking action. This guide will walk … Read more

Practical Uses of Object URLs

At PSPDFKit, we always try to leverage every technology available to us to improve the quality and performance of our products. As an example of this, PSPDFKit for Web introduces new web API features as soon as they’re available in the browsers we support. In the case of object URLs, they’ve been around for a … Read more

Making The Easiest JavaScript Game | by Valerias Bangert | CodeX | Oct, 2021

A casual eli5 tutorial with a $200 merch giveaway challenge. Make 3 files: script.js, index.html, and style.css Copy basic HTML boilerplate: <!DOCTYPE html><html lang=”en”><head><meta charset=”UTF-8″><title>Game</title></head></html> Link stylesheet (in <head>) & JavaScript (in <html>) file by adding: <link rel=”stylesheet” href=”style.css”> & <script src=”script.js”></script> Time to make the actual game! We start by making a body with … Read more

💪Using Infrastructure-As-Code to deploy Azure Sentinel + Watchlists to lower IP false positives | by Dave R – Microsoft Azure MVP☁️ | CodeX | Oct, 2021

This article intends to show you how to deploy the resources needed to deploy Azure Sentinel and a Watchlist using Infrastructure-As-Code so that you can investigate threats and respond to incidents. Azure Sentinel is a cloud-native security information and event manager (SIEM) platform that uses built-in AI to help analyze large volumes of data across … Read more