systemd‑journald: limits and configuration

# systemd‑journal: useful command

- How to check disk usage \
`journalctl --disk-usage`

## How to clean journal
`sudo journalctl --vacuum-time=7d` (7d - delete files older 7days)

##

~js snippets

var urls = document.getElementsByTagName('a'); 
for (var i = 0; i < urls.length; i++) { 
    console.log(urls[i].href); 
}

1009. Complement of Base 10 Integer

The complement of an integer is the integer you get when you flip all the 0's to 1's and all the 1's to 0's in its binary representation. For example, The integer 5 is "101" in binary and its complement is "010" which is the integer 2. Given an integer n, return its complement.
/**
 * @param {number} n
 * @return {number}
 */
/**
 * @param {number} n
 * @return {number}
 */
var bitwiseComplement = function(n) {
    // Edge case:
    // LeetCode defines the complement of 0 as 1.
    // Binary: "0" → flip → "1"
    if (n === 0) return 1;

    // We want to build a mask of all 1s that covers
    // exactly the bit-length of n.
    //
    // Example: n = 10 (1010)
    // mask should become 1111 (binary) = 15
    //
    // Start mask at 1 (binary: 1)
    let mask = 1;

    

Telegram:@lazarustoolz Bank To Bank Drop Wire Logs PayPal Zelle Venmo Apple Pay Skrill WU Transfer Bug MoneyGram Transfer


(transferring all over the world except banned/blacklisted countries)
Paypal Transfer Rates :
Code:
(Payment Only BTC or PM)
$3000 Transfer = $250 Charges
 
$3500 Transfer = $230
 
$4500 Transfer = $400
 
$6000 Transfer = $500
 
$8000 Transfer = $550
 
 
I  have some balance like as and I can still remit more  high balance into PayPal acct.
 
BUY BLANK/CLONED ATM/Credit CARD WITH OVER $100,000 READY FOR CASH OUT
We are a professional carding team with a large ring around the globe. With over 2 

SSMS AutoRecover Module

#region AutoRecover Module
function Get-AutoRecoverDatInfo {
    $LatestSSMSVersionDirectory = Get-ChildItem -Path "${env:APPDATA}\Microsoft\SSMS" -Directory | Sort-Object | Select-Object -Last 1 -ExpandProperty FullName
    Get-ChildItem -Path "${LatestSSMSVersionDirectory}\AutoRecoverDat" -Filter *.dat | ForEach-Object {
        $File = $_
        $Content = Get-Content -Path $File.FullName -Raw -Encoding Unicode
        $Lines = [regex]::Split($Content, "(?<={00000000-0000-0000-0000-000

防锁屏保活.vbs

Set ws = CreateObject("WScript.Shell")
' 无限循环
Do
    ' 模拟按下 F15 键 (无实际功能的键,但能刷新系统的活跃倒计时)
    ws.SendKeys "{F15}"
    ' 暂停 4 分钟 (240000 毫秒) 换取 CPU 不占用
    WScript.Sleep(240000)
Loop

断开远程桌面并转移会话session

@echo off
:: 获取当前活动的 RDP 会话 ID
for /f "skip=1 tokens=3" %%s in ('query user %USERNAME%') do (
  %windir%\System32\tscon.exe %%s /dest:console
)

A Practical Guide to Managing Multiple Git Accounts with SSH

https://dev.to/m_s_360/a-practical-guide-to-managing-multiple-git-accounts-with-ssh-3134

dictionary

<form
  action="https://dictionary.cambridge.org/search/english/direct/"
  method="get"
  target="_blank"
>
  <input type="hidden" name="utm_source" value="widget_searchbox_source" />
  <input type="hidden" name="utm_medium" value="widget_searchbox" />
  <input type="hidden" name="utm_campaign" value="widget_tracking" />
  <table
    style="font-family:Arial,Helvetica,sans-serif;font-size:10px;background:#1D2A57;border-collapse:collapse;border-spacing:0;width:150px;background-image:linear-gradie

Affected platforms and minimum BIOS versions list

[
  {
    "Type": "Business Notebook PCs",
    "Platform Name": "HP Dragonfly 13.5 inch G4",
    "BIOS Family": "V90",
    "Minimum BIOS Version": "01.10.00",
    "SoftPaq #": "sp163105"
  },
  {
    "Type": "Business Notebook PCs",
    "Platform Name": "HP Dragonfly Folio 13.5 inch G3",
    "BIOS Family": "U93",
    "Minimum BIOS Version": "01.16.00",
    "SoftPaq #": "sp163116"
  },
  {
    "Type": "Business Notebook PCs",
    "Platform Name": "HP Elite Dragonfly",
    "BIOS Family": "R93",
  

settings_trae

{
  "explorer.confirmDelete": false,
  "git.autofetch": true,
  "trae.tab.enableSummaryAutoDisplay": true,
  "AI.toolcall.v2.ide.mcp.autoRun": "alwaysRun",
  "AI.toolcall.v2.ide.command.mode": "whitelist",
  "cSpell.language": "en,es",
  "files.exclude": {
    "**/*.g.dart": true,
    "**/*.freezed.dart": true
  },
  "window.zoomLevel": 1.2,
  "[dart]": {
    "editor.formatOnSave": true,
    "editor.formatOnType": true,
    "editor.fontSize": 14,
    "editor.lineHeight": 1.2,
    "editor.inlayHi

Ultrasonic HC-R04_setup

// in setup()
  pinMode(TRIG, OUTPUT);
  pinMode(ECHO, INPUT);

  digitalWrite(TRIG, LOW);
  delay(1000);

// in loop()
  digitalWrite(TRIG, LOW);
  delayMicroseconds(2);

  digitalWrite(TRIG, HIGH);
  delayMicroseconds(10);
  digitalWrite(TRIG, LOW);

  duration = pulseIn(ECHO, HIGH);
  distance = duration / 58.0;
  meter = distance / 100.0;

3130. Find All Possible Stable Binary Arrays II

You are given 3 positive integers zero, one, and limit. A binary array arr is called stable if: The number of occurrences of 0 in arr is exactly zero. The number of occurrences of 1 in arr is exactly one. Each subarray of arr with a size greater than limit must contain both 0 and 1. Return the total number of stable binary arrays. Since the answer may be very large, return it modulo 109 + 7.
/**
 * @param {number} zero
 * @param {number} one
 * @param {number} limit
 * @return {number}
 */
var numberOfStableArrays = function(zero, one, limit) {
    const MOD = 1_000_000_007;

    // dp0[x][y] = ways using x zeros, y ones, ending with 0
    // dp1[x][y] = ways using x zeros, y ones, ending with 1
    const dp0 = Array.from({ length: zero + 1 }, () =>
        Array(one + 1).fill(0)
    );
    const dp1 = Array.from({ length: zero + 1 }, () =>
        Array(one + 1).fill(0)
    );

   

agency-os v3

TechnicalSpecifications
DigitalAgency

1. INTRODUCTION
   1.1 EXECUTIVE SUMMAR Y
   1.1.1 Project Overview
   AgencyOS r epresents a compr ehensive digital transfor mation initiative
   designed to addr ess the critical operational challenges facing moder n
   digital design and development agencies. The platfor m serves as a hybrid
   CRM and pr oject management solution purpose-built for agencies,
   consultancies, and service-driven businesses that manage high-touch
   client r elationships. 

page topへ戻るボタン //202603ver

参考URL http://serinaishii.hatenablog.com/entry/2015/11/06/%E8%B6%85%E7%B0%A1%E5%8D%98%26%E3%82%B3%E3%83%94%E3%83%9A%E3%81%A7OK%EF%BC%81%E3%83%9A%E3%83%BC%E3%82%B8%E3%83%88%E3%83%83%E3%83%97%E3%81%B8%E6%88%BB%E3%82%8B%E3%83%9C%E3%82%BF%E3%83%B3%E3%81%AE (使用前提) scroll-behavior: smooth;
<p class="js_page_top"><a href="#"><img src="./images/common/page_top_icon.png"
      srcset="./images/common/page_top_ico@2x.png 2x" alt="" width="48" height="48"></a></p>
(footer手前に記述)

Obtener el primer producto por marcar.

SELECT 
	marcaProducto,
	cveProducto,
	cveProductoProveedor,
	stock
FROM (
	SELECT 
		MP.marcaProducto,
		UP.cveProducto,
		ALT.cveProductoProveedor,
		SS.stock,
		ROW_NUMBER() OVER (
			PARTITION BY MP.marcaProducto 
			ORDER BY ALT.cveProductoProveedor DESC
		) AS rn
	FROM MARCA_PRODUCTO MP
		INNER JOIN U_PRODUCTO UP
			ON MP.cveMarcaProducto = UP.cveMarcaProducto
		LEFT JOIN (
			SELECT * 
			FROM (
				SELECT 
					* 
				FROM ALTERNA 
				WHERE LEN(cveProductoProveedor) = 12 
					OR LEN(cv