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>

Bookmarklet - Toggle WordPress Admin Bar on click

Add this as a bookmark to your Browser and replace the URL with this Javascript.
javascript:(function(){var id='hide-wp-bar-style';var existing=document.getElementById(id);if(existing){existing.remove();}else{var style=document.createElement('style');style.id=id;style.innerHTML='#wpadminbar{display:none!important;}html,body{margin-top:0!important;}';document.head.appendChild(style);}})();

alien_invasion

《python编程从入门到实践》第二部分中的“外星人大战”项目的一些笔记。
class Game:
    def __init__(self):
        self.settings = Settings()
        '''
        self.ship_class = Ship
        更加灵活的一种写法,只是将类名作为参数传递,而不是实例化对象
        通过Game类的属性来创建Ship实例优点如下:
        可以实现更换Ship类的时候不用修改Game类中run_game方法,只需修改Game类的__init__方法即可
        '''
        self.ship_class = Ship

    def run_game(self):
        screen = gf.config_screen(self.settings)
        ship = self.ship_class(screen) # 在此处才真正的实例化Ship对象
        running = True
        # 游戏主循环
        while running:
           

A very simple chat client to a local model

import asyncio
from agents import Agent, Runner, RunConfig, set_tracing_disabled
from termcolor import colored

from openai import AsyncOpenAI
from agents import Model, ModelProvider, OpenAIChatCompletionsModel

# Load your OpenAI key stored in your .env file so the client can pick it up...
# from dotenv import load_dotenv
# load_dotenv()

# USE A LOCAL OLLAMA SERVER
BASE_URL = "http://localhost:11434/v1"
API_KEY = "ALL_YOUR_BASE"
MODEL_NAME = "llama3.1:8b"
client = AsyncOpenAI(ba

Search for a substring in all files within a folder

* -r or --recursive: Search recursively through subdirectories. * -n: Show line numbers of matches. * -w: Match whole words (omit this if partial matches are desired). * -e 'substring': The pattern you're searching for.
grep -rnw '/path/to/folder' -e 'substring'