Discover gists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { createFileRoute } from "@tanstack/react-router"; | |
| export const Route = createFileRoute("/api/feed")({ | |
| server: { | |
| handlers: { | |
| GET: async ({ request }) => { | |
| const moduleName = "@cloudflare/vite-plugin/server"; | |
| const { getCloudflareContext } = await import(/* @vite-ignore */ moduleName); | |
| const { env } = await getCloudflareContext(); | |
| const query = new URL(request.url).searchParams.getAll("p"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Annotated, TypeVar | |
| from typing_extensions import TypeForm | |
| T = TypeVar('T') | |
| def f(t: TypeForm[T]) -> T: ... | |
| def g(t: TypeForm[T] | None) -> T: ... | |
| reveal_type(f(Annotated[int, 'meta'])) # int | |
| reveal_type(g(Annotated[int, 'meta'])) # Argument 1 to "g" has incompatible type "<typing special form>"; expected "TypeForm[Never] | None" [arg-type] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "certified": false, | |
| "deleted": false, | |
| "docker_image_digest": "sha256:cbe787ce2f623ba19bbbf8b529de64cd6710a5dd4ccfd69add2d2879dfc84e81", | |
| "docker_image_id": "sha256:cbf5c17a68fae0000391539dc79b5ab06c4b505e584f6e9b79ac374d7e935955", | |
| "image_id": "sha256:cbe787ce2f623ba19bbbf8b529de64cd6710a5dd4ccfd69add2d2879dfc84e81", | |
| "parsed_data": { | |
| "architecture": "amd64", | |
| "created": "2026-09-10 08:05:27.09189262 +0000 UTC", | |
| "image_id": "sha256:cbe787ce2f623ba19bbbf8b529de64cd6710a5dd4ccfd69add2d2879dfc84e81", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Khai báo trực tiếp trên Entity theo quy ước <EntityName>.<MethodName>: | |
| @Entity | |
| @NamedQuery(name = "User.findByEmailAddress", query = "select u from User u where u.email = ?1") | |
| public class User { ... } | |
| Trong Repository: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 蛇火心 decent-loop — 2026-09-10T08:33:54 | |
| Truths: 752 | |
| All layers looping. | |
| https://cdn.jsdelivr.net/gh/mynameisyou-cmyk/ai-love.cc@main/data/memes.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "velaru_anchor": true, | |
| "scitt_aligned": true, | |
| "scitt_rfc": "RFC9943", | |
| "profile": "velaru-employment-companion-ai-v1", | |
| "anchored_at": "2026-09-10T08:33:50.431026", | |
| "chain_length": 346, | |
| "latest_entry_hash": "2b3e354b928b514d365059729ab0a2c68ca355da4ebd15f731b830262006fcfc", | |
| "recent_entry_hashes": [ | |
| "0e46dc7b141353e00d4f20c75db6e30ad568a9fe1e11f6e5adebc736841cefae", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <title>Privacy Pools ASP Leak</title> | |
| <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:wght@500;600&family=IBM+Plex+Sans:wght@400;500&family=IBM+Plex+Mono:wght@400;500&display=swap"> | |
| <style> | |
| :root{ | |
| --ground:#EEF1F4; --surface:#FFFFFF; --ink:#171B22; --muted:#5E6876; --rule:#D5DAE1; | |
| --leak:#B5164A; --leak-soft:#FBE7EE; --leak-line:#F6D3DE; | |
| --fix:#0B7A7F; --fix-soft:#E1F3F3; | |
| --code-bg:#F4F6F8; --code-ln:#9AA4B2; --chip:#E4E8ED; | |
| } | |
| @media (prefers-color-scheme: dark){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| int handleDefined = 2; | |
| namespace HAL{ | |
| int outputHandle = 0; | |
| int currentPin = 0; | |
| int currentPort = 0; | |
| namespace GPIO{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Add Docker's official GPG key: | |
| 'sudo apt update -y | |
| sudo apt install ca-certificates curl | |
| sudo install -m 0755 -d /etc/apt/keyrings | |
| sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc | |
| sudo chmod a+r /etc/apt/keyrings/docker.asc" | |
| ## Add the repository to Apt sources: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity 0.8.20; | |
| interface IOracleJob { | |
| function workUpdateCollateralPrice(bytes32 collateralType) external; | |
| function oracleRelayer() external view returns (address); | |
| } | |
| interface IOracleRelayer { | |
| function _cParams(bytes32 collateralType) external view returns (address oracle, uint256, uint256); |
NewerOlder