Heading(見出し)

---
/*
  HeadingLv2 コンポーネント

  使用例:
  <HeadingLv2 class="p-custom-block-margins__heading-lv2" position="center">ラベル</HeadingLv2>
 */

interface Props {
  class?: string;
  position?: 'center' | 'right';
}

const { class: className = '', position } = Astro.props as Props;

const classes = [className, 'c-heading-border-bottom'].filter(Boolean).join(' ');
---

<h2 class={classes} data-position={position}><slot /></h2>

Grid2Column(2カラム)

---
/*
  Grid2Column コンポーネント

  使用例:
	<Grid2Column class="p-custom-block__grid-2column" desktopRatio="left" mobileOrder="reverse">
		<Fragment slot="left">
			<p>左カラム</p>
		</Fragment>
		<Fragment slot="right">
			<p>右カラム</p>
		</Fragment>
	</Grid2Column>
 */

interface Props {
  class?: string;
  desktopRatio?: 'left' | 'right'; // lg以上:どちらを大きくするか
  mobileOrder?: 'reverse'; // lg未満:上下を入れ替えるか
}

const { class: className = '', desktopRatio, mobileOrder } = Astro.props as Props;

const classes = [

Table(表)

---
/*
  Table コンポーネント

  使用例:
  <Table class="p-custom-block-margins__table" responsive="scroll" caption="テーブルタイトル">
		<tbody>
			<tr>
				<th scope="row">項目名</th>
				<td>データ</td>
			</tr>
		</tbody>
	</Table>
 */

interface Props {
  caption: string;
  class?: string;
  responsive?: 'vertical' | 'scroll';
}

const { class: className = '', responsive, caption } = Astro.props as Props;

const classes = [className, responsive === 'scroll' ? 'c-table js-scroll-hint' : 'c-table']
  .filter(Boolean

LinkButton(リンクボタン)

---
/*
  LinkButton コンポーネント

  使用例:
  <LinkButton
    class="p-custom-block-margins__link-button"
    href="https://www.google.com/"
    isBlank
    position="right"
  >
    ラベル
  </LinkButton>
 */

interface Props {
  class?:string,
  href?: string,
  isBlank?: boolean,
  position?: 'center' | 'right',
}

const {
  class: className = '',
  href = '#',
  isBlank = false,
  position,
  } = Astro.props as Props;

  const classes = [className, 'c-link-button'].filter(Boolean).join(' ');
---

<a
  c

Breadcrumbs(パンくずリスト)

---
/*
  Breadcrumbs コンポーネント

  使用例:
  <Breadcrumbs
		items={[
			{name: 'ホーム', href: '/'},
			{name: '2階層目', href: '/company/'},
			{name: '3階層目(現在地)'},
		]}
	/>
 */

type BreadcrumbsItem = {
  name: string,
  href?: string,
};

interface Props {
  items: BreadcrumbsItem[];
  class?: string;
}

const { class: className = '', items } = Astro.props as Props;

const classes = [className, 'p-breadcrumbs'].filter(Boolean).join(' ');

const labelId = crypto.randomUUID();
---

<nav class={classes} ari

unique neo4j keys on a label

```cypher
MATCH (p:Product)
UNWIND keys(p) AS propertyKey
RETURN DISTINCT propertyKey
ORDER BY propertyKey
```

C1 C13

kitchen appliences
moist = feucht
limeskale - limescale
chlorine
wee hours

popoverAPIでツールチップ(hoverがトリガー)

<button interestfor="popover1" style="anchor-name: --anchor-el-1">ツールチップ1</button>
<div id="popover1" class="popover-target" style="position-anchor: --anchor-el-1" popover>
  <p>ツールチップ1です(他のツールチップが開くと自動で閉じられる)</p>
</div>

<button interestfor="popover2" style="anchor-name: --anchor-el-2">ツールチップ2</button>
<div id="popover2" class="popover-target" style="position-anchor: --anchor-el-2" popover="hint">
  <p>ツールチップ2です(他のツールチップが開いても自動で閉じられない)</p>
</div>

<button interestfor="popover3" style="anchor-na

Legit Skrill Transfer PayPal Transfer WU Transfer Bug CC Fullz ATM Cards cPanel host Leads Visa Debit Ship Shop Administrative


_______ JEANSON ANCHETA_______

💻💸 Fresh Logs Pricing 💸💻
🔐 UK Logs / Clean Bank Drops (GBP)
💰 10K GBP = $250
💰 12K GBP = $300
💰 16K GBP = $350
💰 20K GBP = $500
💰 30K GBP = $800

🛡️ Verified • HQ Access • Fast Delivery
💬 DM for escrow or direct 🔥
WESTERN UNION / MONEY GRAM/BANKS LOGINS/BANK TRANFERS/PAYPAL TRANSFERS WORLDWIDE/CASHAPP/ZELLLE/APPLE PAY/SKRILL/VENMO TRANSFER
Telegram:@JeansonCarder     
Group: https://t.me/+2__ynBAtFP00M2Fk                 
Group: https://t.me/+CsF2t7HvV_ljMmU8


Y

1895. Largest Magic Square

A k x k magic square is a k x k grid filled with integers such that every row sum, every column sum, and both diagonal sums are all equal. The integers in the magic square do not have to be distinct. Every 1 x 1 grid is trivially a magic square. Given an m x n integer grid, return the size (i.e., the side length k) of the largest magic square that can be found within this grid.
/**
 * @param {number[][]} grid
 * @return {number}
 */
var largestMagicSquare = function(grid) {
    const m = grid.length;
    const n = grid[0].length;

    // Helper: check if the k×k square starting at (r, c) is magic
    function isMagic(r, c, k) {
        // Compute the target sum using the first row
        let target = 0;
        for (let j = 0; j < k; j++) {
            target += grid[r][c + j];
        }

        // Check all row sums
        for (let i = 0; i < k; i++) {
            

3047. Find the Largest Area of Square Inside Two Rectangles

There exist n rectangles in a 2D plane with edges parallel to the x and y axis. You are given two 2D integer arrays bottomLeft and topRight where bottomLeft[i] = [a_i, b_i] and topRight[i] = [c_i, d_i] represent the bottom-left and top-right coordinates of the ith rectangle, respectively. You need to find the maximum area of a square that can fit inside the intersecting region of at least two rectangles. Return 0 if such a square does not exist.
/**
 * @param {number[][]} bottomLeft
 * @param {number[][]} topRight
 * @return {number}
 */
var largestSquareArea = function(bottomLeft, topRight) {
    let n = bottomLeft.length;
    let maxArea = 0;

    // Compare every pair of rectangles (i, j)
    for (let i = 0; i < n; i++) {
        const [a1, b1] = bottomLeft[i];
        const [c1, d1] = topRight[i];

        for (let j = i + 1; j < n; j++) {
            const [a2, b2] = bottomLeft[j];
            const [c2, d2] = topRight[j];

       

demo

<!doctype html> <html lang="zh-cmn-Hans"> <head> <meta charset="UTF-8" /> <link rel="icon" href="/favicon.svg" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="color-scheme" content="light dark" /> <title>%VITE_APP_TITLE%</title> </head> <body> <div id="app"></div> <script type="module" src="/src/main.ts"></script> </body> </html>
<!doctype html>
<html lang="zh-cmn-Hans">
  <head>
    <meta charset="UTF-8" />
    <link rel="icon" href="/favicon.svg" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="color-scheme" content="light dark" />
    <title>%VITE_APP_TITLE%</title>
  </head>
  <body>
    <div id="app"></div>
    <script type="module" src="/src/main.ts"></script>
  </body>
</html>

mongodb ai api key

`MONGODB_AI_API_KEY=al-LQFqwMs7pKGP0CzKOGqkmIciwCtqXvJAcBOXc5dxpYq`

2975. Maximum Square Area by Removing Fences From a Field

There is a large (m - 1) x (n - 1) rectangular field with corners at (1, 1) and (m, n) containing some horizontal and vertical fences given in arrays hFences and vFences respectively. Horizontal fences are from the coordinates (hFences[i], 1) to (hFences[i], n) and vertical fences are from the coordinates (1, vFences[i]) to (m, vFences[i]). Return the maximum area of a square field that can be formed by removing some fences (possibly none) or -1 if it is impossible to make a square field. Since the answer may be large, return it modulo 109 + 7. Note: The field is surrounded by two horizontal fences from the coordinates (1, 1) to (1, n) and (m, 1) to (m, n) and two vertical fences from the coordinates (1, 1) to (m, 1) and (1, n) to (m, n). These fences cannot be removed.
/**
 * @param {number} m
 * @param {number} n
 * @param {number[]} hFences
 * @param {number[]} vFences
 * @return {number}
 */
var maximizeSquareArea = function(m, n, hFences, vFences) {
    const MOD = 1_000_000_007;

    /**
     * Build a sorted list of all fence positions including the fixed boundaries,
     * then compute ALL possible distances between any two fences.
     *
     * Example:
     *   boundaries: minBoundary = 1, maxBoundary = 10
     *   fences = [3, 7]
     *   positions =

Matlab

bbbb

What's that awful directory name under Windows\WinSxS?

This article was originally written as an MSDN blog entry on December 28, 2005 by [Jon Wiswall](https://blogs.msdn.com/jonwis/).

___

As the [Visual C++ Runtimes version 8.0](https://www.microsoft.com/downloads/details.aspx?FamilyID=25ae0cd6-783b-4968-a841-38a2743307d9&DisplayLang=en) is now a side-by-side component, you may have seen what looks like an unreasonably complexly named path from which parts of the CRT are loaded. "Golly, what can they possibly be thinking - creating a directory who