Conditional operator (ternary operator) in JavaScript (or TypeScript)
Let’s imagine that we could optimize / minify if statement. What could we do?
Master Destructuring Assignment in JavaScript: Simplify Your Code with Unpacking
Let’s imagine that we have an object which we want to access. This object will look like this: To access elements of […]
XOR Cipher: Implementation, Analysis Of The Encryption Algorithm In Python
While working on one of the NATAS challenges from overthewire.com, I encountered the XOR encryption algorithm. It is a symmetric-key algorithm, meaning […]
Disable XML-RPC in WordPress: What It Is and Why It’s Important
XML-RPC is a vulnerability of WordPress if it is used unproperly. How to disable it?
Urgent Alert: Removing Unwanted Files from Your WordPress Server (/wp-content/uploads/et_temp/slots-online)
I had a chance to work with one of websites which was affected by hackers attack. Files structure was looking like hell […]
State Management: Properly Prepare Your Environment for Success
To start project we will need to create node project. I assume that you have installed Node.js on your machine.
Master Pug: The Ultimate Video Course to Elevate Your HTML Skills Today!
Give back to community they said and here it comes!
Unleash the Power: Masterfully Craft Your Own Redux-Like State Machine in JavaScript
This article will describe shortly how to build Redux-like state machine engine.
Kickstart Your Project: Vue, Vue Router, and Vuex with TypeScript – Part 1
This article will be an introduction how to create project based on TypeScript using Vue.js and Vuex . We will start with […]
Fix Axios Empty Data: Defeat CORB and CORS Blocking Cross-Origin Responses
I had a situation last week with requests to server from Vue using Axios where data field has been empty. Server had […]
TypeScript – Types in Destructuring Assignment – Vue and Vuex
This is very common right now to use TypeScript in JavaScript project.