This guide provides a summary of the commands to install necessary tools and utilities on a CentOS server after a fresh installation.
Keep the system updated to ensure you have the latest patches and features:
sudo yum update -y| { | |
| "jsonrpc": "2.0", | |
| "id": 1, | |
| "result": [ | |
| 0, | |
| { | |
| "code": 0, | |
| "stdout": "{\"columns\":[\"family\",\"proto\",\"port\",\"mac\",\"ip\",\"conns\",\"rx_bytes\",\"rx_pkts\",\"tx_bytes\",\"tx_pkts\",\"layer7\"],\"data\":[[4,\"UDP\",443,\"4c:5e:0c:f8:be:9f\",\"192.168.2.254\",12652,11141337050,9172011,800831996,4141133,\"QUIC\"],[4,\"UDP\",443,\"b4:e2:65:c5:8f:06\",\"192.168.2.167\",4728,6914754356,5549622,263701657,2337605,\"QUIC\"],[6,\"TCP\",443,\"7a:06:42:dc:fa:8e\",\"2405:8180:803:d677:5469:77e7:254f:2296\",2130,5653553529,4467079,340263851,3654371,\"HTTPS\"],[4,\"TCP\",443,\"4c:5e:0c:f8:be:9f\",\"192.168.2.254\",19816,3803328481,2872284,225952923,1953239,\"HTTPS\"],[4,\"UDP\",443,\"b4:e2:65:c4:85:8f\",\"192.168.2.160\",1365,2914061758,2322067,98141898,953289,\"QUIC\"],[6,\"UDP\",443,\"7a:06:42:dc:fa:8e\",\"2405:8180:803:d677:5469:77e7:254f:2296\",1686,1691385131,1428411,73145668,436700,\"QUIC\"],[6,\"TCP\",443,\"3e:2e:5f:e5:c2:90\",\"2405:8180:803:d677:1986:4eec:34 |
| install: | |
| pull project https://github.com/israpps/udpbd-server | |
| cd udpbd-server/ | |
| make | |
| install .NET 8.0 for arm: | |
| sudo apt update | |
| sudo apt install -y curl libssl-dev libicu-dev libkrb5-dev zlib1g |
| #!/bin/sh | |
| # ============================================================================= | |
| # | |
| # OpenWrt LTE/Cellular Connection Watchdog | |
| # Created by: Indra L.N. | |
| # | |
| # ============================================================================= | |
| # | |
| # PURPOSE: |
| You're correct in identifying the issue: on Pop!\_OS (and Ubuntu-based systems), the `Ctrl+Shift+E` shortcut is often intercepted by the **IBus input method framework**, which uses this combination to trigger its **emoji annotation** feature. This interception prevents applications like VS Code from receiving the shortcut, rendering it ineffective for functions like opening the Explorer view.([Ask Ubuntu][1]) | |
| --- | |
| ### ✅ Solution: Disable or Reassign the Emoji Shortcut in IBus | |
| To resolve this conflict, you can either **disable** the emoji shortcut or **reassign** it to a different key combination. Here's how: | |
| #### **Option 1: Disable the Emoji Shortcut** |
| { | |
| "configurations": [ | |
| { | |
| "name": "Wrangler", | |
| "type": "node", | |
| "request": "attach", | |
| "port": 9229, | |
| "cwd": "/", | |
| "resolveSourceMapLocations": null, | |
| "attachExistingChildren": false, |
| # 📌 Cetakfoto Development Plan (Cloudflare-Based) | |
| ## ✅ Tech Stack & Infrastructure | |
| - [x] **Frontend:** Next.js (Admin Panel & User Interface) → Deployed on **Cloudflare Pages** | |
| - [x] **Backend:** Hono (API & Business Logic) → Runs on **Cloudflare Workers** | |
| - [x] **Database:** Cloudflare D1 (SQLite-based) → Managed via **Prisma ORM** | |
| - [x] **Authentication:** Clerk (Email, Social, Phone OTP) | |
| - [x] **Payment Gateway:** Direct Transfer Validation or Midtrans | |
| --- |
| # Place a copy of this config to ~/.aerospace.toml | |
| # After that, you can edit ~/.aerospace.toml to your liking | |
| # You can use it to add commands that run after login to macOS user session. | |
| # 'start-at-login' needs to be 'true' for 'after-login-command' to work | |
| # Available commands: https://nikitabobko.github.io/AeroSpace/commands | |
| after-login-command = [] | |
| # You can use it to add commands that run after AeroSpace startup. | |
| # 'after-startup-command' is run after 'after-login-command' |
| <?php | |
| namespace App\Models; | |
| // use Illuminate\Contracts\Auth\MustVerifyEmail; | |
| use Illuminate\Database\Eloquent\Factories\HasFactory; | |
| use Illuminate\Foundation\Auth\User as Authenticatable; | |
| use Illuminate\Notifications\Notifiable; | |
| use Laravel\Sanctum\HasApiTokens; | |
| use Filament\Models\Contracts\FilamentUser; |