`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
# リポジトリ
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
/**
* @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)
// 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
## 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
git checkout -b [new-branch-name] [tag-from-which-to-create-the-branch]
# For example
git checkout -b hotfix-v1.0.1 v1.0
git push origin [tag-name]
# For example
git push origin v1.0
# 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
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
<div class="flex1">
<div>foo</div>
<div>bar</div>
</div>
<div class="flex2">
<div>foo</div>
<div>bar</div>
</div>
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);}})();
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:
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
grep -rnw '/path/to/folder' -e 'substring'