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

Search results for Patsnation
Patsnation community
One keyword maps to one global community path.
Create community
People
Not Found
Tweets including Patsnation
Them boys work hard!!!! LETS GO PATSNATION❤️🤍💙 we stepping in the name of the Lord!!
0
352
10.2K
848
Forward to community
THEY DIDN’T BELIEVE IN US !!! I LIKE US!!!!! WE ALL WE GOT!!!!! WE ALL WE NEED !!!! #Patsnation#
Wait for the NFL Live crew to realize they all picked Houston 😭
0
1.2K
26.9K
3.1K
Forward to community
Upcoming /status pagination change on the Bridge API On August 12 2:00 PM UTC, GET /status/{address} will begin returning paginated results, with up to 50 transactions by default (newest first) Responses will include nextCursor. To retrieve all transactions, pass it back as ?cursor= until it returns null. The supported limit range will be 1–100
Show more
INVALID_CLIENT?! Two devs are stuck on OAuth2 errors and broken pagination. The other uses Snowflake CoCo. One prompt to get the integration built, auth handled, and schema mapped. Catch episode 3 of Ready, Set Code! 👇
Show more
When my man score a touchdown… PAT NATION!!! #PattyNation# #PatekNation# #PattiLabellePiesNation#
0
994
33K
1.9K
Forward to community
# Weaviate Features and Practical Usage 🚀 Need to pull every object, vectors included, for a migration or audit export? Stop fighting deep pagination. Weaviate's Cursor API walks the entire collection in order with no offset limit. 📌 Title and Feature URL Title: Read all objects URL: 📝 Overview Weaviate's iterator() method traverses an entire collection efficiently while avoiding the performance penalties of traditional offset-based pagination. Internally it uses a cursor based on the after operator, sidestepping the deep pagination problem. For any full-collection processing, using the cursor is the rule. 🔧 How It Works - limit/offset deep pagination slows down dramatically as the number of skipped records grows, which becomes critical at scale. - The cursor uses an after parameter to continue from where it left off, avoiding that slowdown. - The Python client wraps this as an Iterator, so a simple for loop walks all objects. - By default it returns all properties and UUIDs, excluding blob and reference properties. - Result ordering is not guaranteed; this is a mechanism for systematic full-collection access. 🛠 Practical Usage - Basic form: collection = client.collections.use("WineReview"), then for item in collection.iterator(): to walk every object, reading item.uuid and - To include vectors: for item in collection.iterator(include_vector=True): and read item.vector. - For named vectors, pass include_vector=['title', 'body'] or True for all vectors. - For multi-tenant collections, iterate per tenant with with_tenant(tenant_name).iterator(); get the tenant list via tenants.get(). 🎯 Use Cases - Migrate to another cluster by pulling vectors and properties together, then writing them back. - Export an entire collection for audit and compliance. - Access all objects sequentially for reindexing or batch processing. - In multi-tenant setups, walk each tenant's full set for inventory/reconciliation. ⚠️ Caveats - Result ordering is not guaranteed; do not build order-dependent logic on it. - The cursor is built for systematic full-collection access, not random queries. - include_vector=True increases data transfer for the vectors; enable it only when needed. - You cannot iterate all tenants at once; run the iterator per tenant in multi-tenant collections. #Weaviate# #VectorDatabase#
Show more
🚀 Codex CLI 0.125.0 is out! 🔌 App-server Unix socket transport and resume/fork pagination 🔐 Permission profiles round-trip across TUI, MCP, and app-server 📦 Remote plugin install and marketplace upgrades Changelog:
Show more
Friday Update - Week of August 10th, 2026: - Rate limits: volume-based tiers now live in production, already curbing spam traffic. ( - TWAP: 5m crypto markets moved from a 30s to a 60s Chainlink TWAP lookback. Live on 5m markets deployed since Aug 14 - Passkeys: passkey for login live for Magic wallet users (email and social logins) - Perps: ADL fills flagged in trade history with both sides notified, new mark-price history endpoint, mobile web trading and margin control improvements, share cards to be released early next week. - Combos: odds visible while logged out, finished games hidden, geopolitics combo markets in preparation for next week - Data API: new /v1/approvals endpoint, faster native serving for positions and PnL, fixes for resolved markets showing open and a PnL price bug; price-history now on its new serving layer after last week's slowdown - Gamma: clearer 503s, graceful search degradation, keyset pagination on comments - Bridge API: pagination live, docs updated
Show more
Friday Update - Week of July 27th, 2026: - CLOB rate limits: volume-based tiers take effect August 6 ( - TWAP: Chainlink TWAP feed support in the TS and Python SDKs plus an integration guide. Production release next week - Unified DeFi API: order submission, open orders, account trades, balances, notifications, order scoring, earnings and builder API key management now served through the gateway - SDKs: fixes for pagination truncation, GTC expiration parsing, 503 retry timing and missing activity types; Retry-After now exposed on rate-limit errors - Combos: Collateral Return live, unlocking capital efficiency for combo market makers ( Builder gateway support in the SDKs next - Perps: TPSL and liquidation lines on charts, deposits and withdrawals now in portfolio history, new ref program UX, and new assets listed - Trading stability: The async DB release affected order placement, and a spike in automated market deployments slowed price-history, affecting charts. Both mitigated. The async DB retry will run in shadow mode on sampled traffic before any cutover
Show more