Configuration Manager Log Backup

Use as a Scheduled Task during times backups are needed.
$LogPath = "$($PSScriptRoot)\CM_LogBackup.log"

#region Rotate log file every 30 days
if (Test-Path -Path $LogPath) {
    if ((Get-Item -Path $LogPath -ErrorAction SilentlyContinue).CreationTime -le (Get-Date).AddDays(-30)) {
        $LogsDirectory = [System.IO.Path]::GetDirectoryName($LogPath)
        $FileNameWithoutExtension = [System.IO.Path]::GetFileNameWithoutExtension($LogPath)
        $FileExtension = [System.IO.Path]::GetExtension($LogPath)
        $BackupFilePath = Join-Path $L

2874. Maximum Value of an Ordered Triplet II

You are given a 0-indexed integer array nums. Return the maximum value over all triplets of indices (i, j, k) such that i < j < k. If all such triplets have a negative value, return 0. The value of a triplet of indices (i, j, k) is equal to (nums[i] - nums[j]) * nums[k].
/**
 * @param {number[]} nums
 * @return {number}
 */
var maximumTripletValue = function(nums) {
     const n = nums.length;
    if (n < 3) return 0; // Edge case: no valid triplet possible

    // Arrays to store the maximum values
    const leftMax = new Array(n).fill(Number.MIN_SAFE_INTEGER);
    const rightMax = new Array(n).fill(Number.MIN_SAFE_INTEGER);

    // Precompute leftMax
    for (let i = 1; i < n; i++) {
        leftMax[i] = Math.max(leftMax[i - 1], nums[i - 1]);
    }

    // Pre

Postgres Cheat-Sheet

https://postgresapp.com/de/downloads.html
First download and anstall [Postgres.app](https://postgresapp.com/de/downloads.html).

Before Import/Export check postgres version, then navigate to the correct version-binary:

```sh
cd /Applications/Postgres.app/Contents/Versions/{{version}}/bin
```

Connect with DB:

```sh
./psql -U {{user}} -h {{host}} -p {{port}} -d {{database}}
```

Export DB:

```sh
./pg_dump --no-owner -U {{user}} -h {{host}} -p {{port}} -d {{database}} > dump.sql
```

Import DB:

```sh
./psql -U {{user}} -h {{host}} -p 

Ajax events on forms (Vue)

<template>
  <form
    class="mt-8"
    method="post"
    :id="frmId"
    v-ajax-on-before="() => $emit('onPreloader', true)"
    v-ajax-on-success="() => $emit('onPreloader', false)"
    v-ajax-on-error="() => $emit('onPreloader', false)"
    v-nette-form
    data-ajax-use-router
  >

Clean Gitlab Sevanova

`sudo du -sh /*   # Liste des tailles des répertoires à la racine`

`sudo du -sh /var/*  # Vérifiez particulièrement le répertoire /var`

`$ docker system prune -a  # Supprime les containers, images et volumes non utilisés`

`$ docker volume prune     # Supprime les volumes non utilisés`

`$ docker image prune -a   # Supprime les images inutilisées`

`sudo apt clean   # Supprime les fichiers du cache d'APT`

`sudo apt autoremove   # Supprime les paquets inutiles`

`sudo journalctl 

Laravel自作便利パッケージについて

# リポジトリ

https://github.com/akkey247/laravel-dev-tool

# インストール

## 1. ダウンロード

Laravelの環境内にパッケージディレクトリを作成し、リポジトリをクローンする。  

```
$ mkdir -p packages/akkey247
$ cd packages/akkey247
$ gh repo clone akkey247/laravel-dev-tool
```

## 2. 設定ファイル修正

Laravel本体のcomposer.jsonに下記を追加する。  

```
    },
    "repositories": [{
        "type": "path",
        "url": "./packages/akkey247/laravel-dev-tool",
        "options": {
            "symlink": true
        }
    }],
    "autoloa

给某个用户读取文件夹权限

使用 setfacl(适用于特定用户)
如果不想让所有用户都能访问,而只想让某个用户有读取权限,使用 setfacl 更灵活:
 
setfacl -m u:username:rX /path/to/folder
含义:

u:username:指定用户

rX:

r(可读)

X(可执行,仅当原本有执行权限时才赋予执行权限,防止普通文件被执行)

例如,给用户 bob 赋予 /home/myuser/share 文件夹的读取权限:

 
setfacl -m u:bob:rX /home/myuser/share
如果还想让 bob 读取子文件:

 
setfacl -R -m u:bob:rX /home/myuser/share
查看 ACL 权限:

 
getfacl /home/myuser/share

2873. Maximum Value of an Ordered Triplet I

You are given a 0-indexed integer array nums. Return the maximum value over all triplets of indices (i, j, k) such that i < j < k. If all such triplets have a negative value, return 0. The value of a triplet of indices (i, j, k) is equal to (nums[i] - nums[j]) * nums[k].
/**
 * @param {number[]} nums
 * @return {number}
 */
var maximumTripletValue = function(nums) {
    // Initialize the maximum value to 0 (default if all values are negative)
    let maxValue = 0;

    // Outer loop: Fix the first index i
    for (let i = 0; i < nums.length - 2; i++) {
        // Middle loop: Fix the second index j (must be greater than i)
        for (let j = i + 1; j < nums.length - 1; j++) {
            // Inner loop: Fix the third index k (must be greater than j)
           

Exhaustive Type Checking in Switch Statements using `never`

This ensures that if a new kind is added to the Animals type and isn't handled in the switch, TypeScript will catch it as a type error at compile time. 🚀
// type `never` is great for exhaustive checking, great for exhaustive switch statements
type Bird = {
  kind: 'bird'
  legs: number
  wings: 2
}
type Dog = {
  kind: 'dog'
  legs: number
}
type Fish = {
  kind: 'fish'
  fins: number
}
type Animals = Bird | Dog | Fish

function AnimalAppendages(animal: Animals) {
  switch (animal.kind) {
    case 'bird':
      return animal.legs + animal.wings
    case 'dog':
      return animal.legs
    case 'fish':
      return animal.fi

Run Pentaho Data Integration (PDI) as an Ubuntu Docker container in Linux

This repository provides Docker configurations to run **Pentaho Data Integration (PDI)** as a graphical application on a host machine using X11 forwarding. It also includes a **PostgreSQL container** to persist the Pentaho repository data.
## Option 1: Run Pentaho Manually Using Docker

This approach manually creates a container from an Ubuntu image, installs the necessary dependencies, and launches Pentaho's Spoon UI.

### Prerequisites

- Ensure X11 server is running on your host machine (for example, `Xorg` on Linux).
- Run the following to allow Docker containers to access your X server:

```bash
xhost +local:docker
```

### Create and Start the Container

```bash
docker run -it --rm \
  -e DISPLAY=$DISPLAY \
  -v /tmp/.X11-un

Creating a Branch from a Tag

git checkout -b [new-branch-name] [tag-from-which-to-create-the-branch]
# For example
git checkout -b hotfix-v1.0.1 v1.0

How to push a tag on git


git push origin [tag-name]
# For example
git push origin v1.0

How to create tags

# Create a tag from HEAD
git tag v1.0

# Create a tag from a specific commit
git tag v1.0 <commit-hash>
# for example
git tag v1.0 1a2b3c4d5e

How to Install Multiple Versions of Xcode

Source: https://chatgpt.com/share/67ec3d1a-af94-8006-b218-af5a02c59418

Yes, you can have multiple versions of Xcode installed on your Mac and choose which one to use.

### **How to Install Multiple Versions of Xcode**
1. **Download the Xcode Versions**  
   - You can download older versions from Apple's [Developer Downloads](https://developer.apple.com/download/all/).
   - The latest versions are available in the App Store.

2. **Install and Rename**  
   - After downloading, move the older ver

flexbox 2/3 - 1/3

<div class="flex1">
  <div>foo</div>
  <div>bar</div>
</div>

<div class="flex2">
  <div>foo</div>
  <div>bar</div>
</div>