Register and share your invite link to earn from video plays and referrals.

Search results for lookup
lookup community
One keyword maps to one global community path.
Create community
People
Not Found
Tweets including lookup
Attention is a lookup. Each token builds a query, compares it against every key in the sequence, and pulls value vectors weighted by the match. Stack that 96 layers deep and you get a frontier model. Video covers the full pipeline: Q/K/V, attention scores, encoder blocks.
Show more
🚀 Just shipped: a New World Screwworm tracker. 🔎 Beef-sourcing lookup (70+ chains & grocers) 🗺️ Live map of confirmed detections 📋 Cases, zones & official USDA links Facts, not fear.
Show more
16 OSINT tools for scraping, lookups, and breach data
# Neo4j Features and Practical Usage 🔒 Create one uniqueness constraint before importing—and you get duplicate-proof MERGE plus fast lookups at the same time. The official docs list it as a prerequisite step for imports. 🏷️ Title: Uniqueness / Property existence / Node key constraints 🔗 URL: 📘 Overview Constraints enforce rules that nodes and relationships must satisfy, at the database layer. They guarantee key uniqueness and required properties, keeping entities consistent even when multiple pipelines write to the graph. Uniqueness constraints also create a backing range index, so lookups get faster too. ⚙️ How It Works ・Property uniqueness: guarantees a property value (or combination) is unique per label/type. Available in Community Edition, with a backing range index that optimizes MERGE and imports. ・Property existence: guarantees a given property is always present (Enterprise only). ・Property type: guarantees a property has the required type, preventing schema drift (Enterprise only). ・Key constraints (Node key / Relationship key): combine uniqueness and existence—equivalent to a composite primary key (Enterprise only). 🛠️ Practical Usage The uniqueness constraint to always create before importing: ```cypher CREATE CONSTRAINT person_id IF NOT EXISTS FOR (p:Person) REQUIRE IS UNIQUE; ``` A node key (composite key) and an existence constraint: ```cypher CREATE CONSTRAINT order_key IF NOT EXISTS FOR (o:Order) REQUIRE (o.tenantId, o.orderId) IS NODE KEY; CREATE CONSTRAINT user_email_exists IF NOT EXISTS FOR (u:User) REQUIRE IS NOT NULL; ``` Inspect and drop them: ```cypher SHOW CONSTRAINTS; DROP CONSTRAINT person_id IF EXISTS; ``` 💡 Use Cases ・Create a uniqueness constraint before a bulk import to get duplicate prevention and speedup in one move. ・Enforce key integrity for master-data nodes at the DB layer, preventing doubling even with multiple writing pipelines. ⚠️ Caveats ・Everything except uniqueness (existence, type, key) is Enterprise Edition only; Community supports uniqueness alone. ・Creating a constraint on data that already violates it fails. Clean the data first. ・Bulk imports are validated against active constraints and can fail on violations. ・For more sophisticated or centralized schema management, defining a schema via a graph type is recommended. #Neo4j# #Cypher#
Show more
# Neo4j Features and Practical Usage ⚡ "Even in a graph DB, index design is 80% of performance." Put the right index on your MATCH anchor property and lookups go from O(n) to O(log n). 🏷️ Title: Range / Text / Point / Composite index 🔗 URL: 📘 Overview An index is a copy of nodes, relationships, or properties that provides a fast access path to the primary data. Once created, the DBMS keeps it updated automatically. It speeds up the anchor (starting point) of a MATCH, and the Cypher planner selects it automatically based on the predicate. ⚙️ How It Works ・Range (default): solves the most predicates—equality, range comparisons, `IN`, and `STARTS WITH`. This is the first index to reach for. ・Text: `STRING`-only, optimized for `CONTAINS` and `ENDS WITH`—ideal for substring search screens. ・Point: for spatial `POINT` values, optimized for distance queries and bounding-box searches. ・Composite: indexes several properties together, solving multi-condition filters in one go. ・Token lookup: a foundational index that speeds up label / relationship-type lookups. ・Beyond these, full-text indexes and vector indexes (similarity search / GenAI) are also available. 🛠️ Practical Usage Creating range / composite / text / point indexes on anchor properties: ```cypher CREATE INDEX user_email IF NOT EXISTS FOR (u:User) ON ( CREATE INDEX order_composite IF NOT EXISTS FOR (o:Order) ON (o.customerId, o.status); CREATE TEXT INDEX product_name_text IF NOT EXISTS FOR (p:Product) ON ( CREATE POINT INDEX store_loc IF NOT EXISTS FOR (s:Store) ON (s.location); ``` Inspect and drop them: ```cypher SHOW INDEXES; DROP INDEX user_email IF EXISTS; ``` 💡 Use Cases ・Apps that anchor MATCH on ` `Order.orderId`, or `Product.sku`, making lookups O(log n). ・Search screens that pick range for `STARTS WITH`, text for `CONTAINS`/`ENDS WITH`, and point for geo queries. ⚠️ Caveats ・Which index applies depends on the predicate. `CONTAINS` is not served by a range index—it needs a text index. ・Indexes add write cost and storage. Confirm they are actually used with `PROFILE` before relying on them. ・Composite indexes apply from the leading property onward, so column order affects performance. #Neo4j# #Cypher#
Show more
// Season 1 Complete ✅ The first airdrop season has officially wrapped. Thank every builders on X Layer. → Points lookup: → Building continues The truth layer is just getting started. #Xrtuth# #OptimisticOracle# #XLayer#
Show more
New on the TRM Tech Blog, Staff Software Engineer Andrew Fisher writes about migrating 500 billion rows of blockchain data and why time partitioning failed. With extreme address-level skew, queries were scanning ~25,000 Iceberg files per lookup. But bucket partitioning by address brought that down to ~300, landing P95 under 2.5s. Read his post here 👉
Show more
NUNCHUK ON COLDCARD VULNERABILITY Some Nunchuk platform keys were generated with a Coldcard Mk4, but the company says those keys are never used directly. Instead, it derives separate keys through custom logic, making them less susceptible to lookup-table attacks based on compromised Coldcard seeds. Nunchuk adds that, given enough time, it assumes attackers could eventually include those derived keys as well.
Show more
Matrixdock has completed two years of independent reserve audits with @BureauVeritasCU. This is also the first audit cycle covering both gold $XAUm and silver $XAGm: 574 bars verified across three institutional vaults, with no discrepancies identified. Matrixdock’s Reserve Transparency Stack consists of recurring independent audits, monthly reserve asset statements, on-chain proof-of-reserves, and the gold allocation lookup tool. Together, these provide multiple layers of transparency through a verification process that operates consistently over time. This is the discipline of building the Reserve Layer. The full Bureau Veritas audit report is available here:
Show more