Redux is a state management library for JavaScript applications, often used with React. It helps manage the global state of an application in a centralized way, ensuring data remains consistent and predictable.
Store
Holds the entire application state.
There is only one store per application.
Actions
Represent events that trigger state changes.
Are simple JavaScript objects with a type
property and optional data (payload
).
Reducers
Functions that calculate the new state based on an action.
They are pure functions, meaning they have no side effects.
Dispatch
A method used to send actions to the store.
Selectors
Functions that extract specific values from the state.
Simplifies state management in large applications.
Prevents prop drilling in React components.
Makes state predictable by enforcing structured updates.
Enables debugging with tools like Redux DevTools.
If Redux feels too complex, here are some alternatives:
React Context API – suitable for smaller apps
Zustand – a lightweight state management library
Recoil – developed by Facebook, flexible for React
Salesforce Apex is an object-oriented programming language specifically designed for the Salesforce platform. It is similar to Java and is primarily used to implement custom business logic, automation, and integrations within Salesforce.
Cloud-based: Runs exclusively on Salesforce servers.
Java-like Syntax: If you know Java, you can learn Apex quickly.
Tightly Integrated with Salesforce Database (SOQL & SOSL): Enables direct data queries and manipulations.
Event-driven: Often executed through Salesforce triggers (e.g., record changes).
Governor Limits: Salesforce imposes limits (e.g., maximum SOQL queries per transaction) to maintain platform performance.
Triggers: Automate actions when records change.
Batch Processing: Handle large data sets in background jobs.
Web Services & API Integrations: Communicate with external systems.
Custom Controllers for Visualforce & Lightning: Control user interfaces.
The Whoops PHP library is a powerful and user-friendly error handling tool for PHP applications. It provides clear and well-structured error pages, making it easier to debug and fix issues.
✅ Beautiful, interactive error pages
✅ Detailed stack traces with code previews
✅ Easy integration into existing PHP projects
✅ Support for various frameworks (Laravel, Symfony, Slim, etc.)
✅ Customizable with custom handlers and loggers
You can install Whoops using Composer:
composer require filp/whoops
Here's a simple example of how to enable Whoops in your PHP project:
require 'vendor/autoload.php';
use Whoops\Run;
use Whoops\Handler\PrettyPageHandler;
$whoops = new Run();
$whoops->pushHandler(new PrettyPageHandler());
$whoops->register();
// Trigger an error (e.g., calling an undefined variable)
echo $undefinedVariable;
If an error occurs, Whoops will display a clear and visually appealing debug page.
You can extend Whoops by adding custom error handling, for example:
use Whoops\Handler\CallbackHandler;
$whoops->pushHandler(new CallbackHandler(function ($exception, $inspector, $run) {
error_log($exception->getMessage());
}));
This version logs errors to a file instead of displaying them.
Whoops is mainly used in development environments to quickly detect and fix errors. However, in production environments, it should be disabled or replaced with a custom error page.
Swift is a powerful and user-friendly programming language developed by Apple for building apps on iOS, macOS, watchOS, and tvOS. It was introduced in 2014 as a modern alternative to Objective-C, designed for speed, safety, and simplicity.
Swift is primarily used for Apple platforms but can also be utilized for server-side applications and even Android or Windows apps in some cases.
The Fetch API is a modern JavaScript interface for retrieving resources over the network, such as making HTTP requests to an API or loading data from a server. It largely replaces the older XMLHttpRequest
method and provides a simpler, more flexible, and more powerful way to handle network requests.
fetch('https://jsonplaceholder.typicode.com/posts/1')
.then(response => response.json()) // Convert response to JSON
.then(data => console.log(data)) // Log the data
.catch(error => console.error('Error:', error)); // Handle errors
Making a POST Request
fetch('https://jsonplaceholder.typicode.com/posts', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ title: 'New Post', body: 'Post content', userId: 1 })
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
✅ Simpler syntax compared to XMLHttpRequest
✅ Supports async/await
for better readability
✅ Flexible request and response handling
✅ Better error management using Promises
The Fetch API is now supported in all modern browsers and is an essential technique for web development.
Backbone.js is a lightweight JavaScript framework that helps developers build structured and scalable web applications. It follows the Model-View-Presenter (MVP) design pattern and provides a minimalist architecture to separate data (models), user interface (views), and business logic.
✔ Simple and flexible
✔ Good integration with RESTful APIs
✔ Modular and lightweight
✔ Reduces spaghetti code by separating data and UI
Although Backbone.js was very popular in the past, newer frameworks like React, Vue.js, or Angular have taken over many of its use cases. However, it still remains relevant for existing projects and minimalist applications. 🚀
Jest is a JavaScript testing framework developed by Meta (Facebook). It is mainly used for testing JavaScript and TypeScript applications, especially React applications, but it also works well for Node.js backends.
// sum.js
function sum(a, b) {
return a + b;
}
module.exports = sum;
// sum.test.js
const sum = require('./sum');
test('addiert 1 + 2 und ergibt 3', () => {
expect(sum(1, 2)).toBe(3);
});
o run the test, use:
jest
Or, if installed locally in a project:
npx jest
GoJS is a JavaScript library for creating interactive diagrams and graphs in web applications. It is commonly used for flowcharts, network topologies, UML diagrams, BPMN models, and other visual representations of data.
GoJS is widely used in business applications to visualize complex processes or relationships. It is a paid library but offers a free evaluation version.
The official website is: https://gojs.net
The Pyramid Web Framework is a lightweight, flexible, and scalable web framework for Python. It is part of the Pylons Project family and is ideal for developers looking for a minimalist yet powerful solution for web applications.
Minimalistic but Extensible
Flexible
Traversal and URL Mapping
Powerful and Efficient
First-Class Testing Support
Comprehensive Documentation & Community Support
Feature | Pyramid | Flask | Django |
---|---|---|---|
Architecture | Minimalistic & modular | Minimalistic & lightweight | Monolithic & feature-rich |
Routing | URL Mapping & Traversal | URL Mapping | URL Mapping |
Scalability | High | Medium | High |
Built-in Features | Few, but extensible | Very few | Many (ORM, Admin, Auth, etc.) |
Learning Curve | Medium | Easy | Higher |
Pyramid is an excellent choice for developers looking for a balance between minimalism and power. It is particularly well-suited for medium to large web projects where scalability, flexibility, and good testability are essential.
Twig is a powerful and flexible templating engine for PHP, commonly used in Symfony but also in other PHP projects. It helps separate logic from presentation and offers many useful features for frontend development.
{{ }}
)Twig uses double curly braces to output variables:
<p>Hello, {{ name }}!</p>
→ If name = "Max"
, the output will be:
"Hello, Max!"
{% %}
)Twig supports if-else statements, loops, and other control structures.
{% if user.isAdmin %}
<p>Welcome, Admin!</p>
{% else %}
<p>Welcome, User!</p>
{% endif %}
Loops (for
)
<ul>
{% for user in users %}
<li>{{ user.name }}</li>
{% endfor %}
</ul>
Twig supports "Base Layouts", similar to Laravel's Blade.
base.html.twig
)<!DOCTYPE html>
<html>
<head>
<title>{% block title %}My Page{% endblock %}</title>
</head>
<body>
<header>{% block header %}Default Header{% endblock %}</header>
<main>{% block content %}{% endblock %}</main>
</body>
</html>
Child Template (page.html.twig
)
{% extends 'base.html.twig' %}
{% block title %}Homepage{% endblock %}
{% block content %}
<p>Welcome to my website!</p>
{% endblock %}
→ The blocks override the default content from the base template.
You can include reusable components like a navbar or footer:
{% include 'partials/navbar.html.twig' %}
Twig provides many filters to format content:
Filter | Beispiel | Ausgabe |
---|---|---|
upper |
`{{ "text" | upper }}` |
lower |
`{{ "TEXT" | lower }}` |
length |
`{{ "Hallo" | length }}` |
date |
`{{ "now" | date("d.m.Y") }}` |
Twig automatically escapes HTML to prevent XSS attacks:
{{ "<script>alert('XSS');</script>" }}
→ Outputs: <script>alert('XSS');</script>
To output raw HTML, use |raw
:
{{ "<strong>Bold</strong>"|raw }}