home.social

Search

138 results for “cloudbit_global”

  1. 📣 Breaking News: Bitcoin Pizza Day 2025 & What It Means 15 Years Later!

    What Happened on Bitcoin Pizza Day? Richard Teng’s Reflection on the 15-Year Journey. From Pizza to Global Finance: The Evolution of Bitcoin. How the Community Celebrates Today. Upskill and Celebrate Bitcoin Pizza Day With Blockchain Council.

    Source: blockchain-council.org/cryptoc

    🔔 Turn on post notifications

  2. 📣 Breaking News: Cloudbit and FasterCapital today announced a strategic partnership trough FasterCapital's EquityPilot program!

    FasterCapital prepared docs: Business Viability, Market Study, Press Release

    Source: cloudbitex.com/#docs

    🔔 Turn on post notifications

       

  3. 📢 Breaking News: Cloudbit Classic $CDBC is now acessible trough a API interface! Now you can track circulating and total supply of $CDBC!

    Source: cloudbitex.com/apis

    🔝 Turn on post notifications

  4. 📢 Breaking News: Cloudbit Classic $CDBC is now acessible trough crosschain/multichain bridge contracts!

    Source: cloudbitex.com/#tokenomics

    🔝 Turn on post notifications

  5. Breaking News: Re-Design for website is now finished! Also you can check their all documents like Whitepaper, One-Pager, Pitch-Deck and Terms of Coin Sale.

    Source: cloudbitex.com

    🔝 Turn on post notifications

  6. Breaking News: Re-Design for documents like Whitepaper, Onepager and Pitchdeck is now finished!

    Source: cloudbitex.com

    🔝 Turn on post notifications

  7. Breaking News: Re-Design is now under construction!

    Source: cloudbitex.com

    🔝 Turn on post notifications

  8. 📣 Breaking News: Banks must upgrade their blockchain infrastructure!

    The shift from control to connectivity. Isolation is now a liability. The case for public, permissioned L2s. Lessons from the market.

    Source: cointelegraph.com/news/banks-b

    🔔 Turn on post notifications

  9. 📣 Breaking News: Strive allocates $50M of treasury to Strategy’s STRC preferred stock!

    Inside Strategy’s ‘digital credit’ model and the STRC preferred stock.

    Source: cointelegraph.com/news/strive-

    🔔 Turn on post notifications

  10. 📣 Breaking News: Europe’s banks are going all in on crypto!

    The first era of bank-distributed digital assets was ring-fenced. MiCA is the catalyst. The pattern is already visible. Why this changes market structure. The real question is not technological but distributional.

    Source: cryptonews.net/32764479

    🔔 Turn on post notifications

  11. Vita Inu is soaring as a better breed of Dogecoin and Shiba Inu!

    Source: vitainu.org

    🔝 Turn on post notifications

  12. 📣 Breaking News: Jack Ma’s Ant International eyes stablecoin licenses in Singapore, Hong Kong!

    Ant International to leverage stablecoins for cross-border payments, treasury management. $1 trillion stablecoin supply next big crypto market catalyst for 2025?

    Source: cointelegraph.com/news/jack-ma

    🔔 Turn on post notifications

  13. 📢 Breaking News: Terra ecosystem will made you a millionaire by HODLN - LUNC, LUNA, USTC!

    Source: terra.money

    🔝 Turn on post notifications

     

  14. 📣 Breaking News: Strategy to repurchase $1.5B of 2029 convertible notes!

    “Strategy expects to fund the repurchases with available cash reserves, proceeds from sales of securities under its at-the-market offering program, and/or proceeds from the sale of bitcoin.”

    Source: cointelegraph.com/news/strateg

    🔔 Turn on post notifications

  15. 📣 Breaking News: CLARITY Act: What approval would actually change for crypto!

    The restaurant with two inspectors. What the bill actually does: three boxes, two regulators. What approval would mean, by who you are. The three fights that will shape the final bill. The road from here. What it means, in the end.

    Source: cryptonews.net/32891675/

    🔔 Turn on post notifications

  16. 📣 Breaking News: Bitcoin outperformed gold and silver over the last 10 years: Analyst!

    The US dollar is ending 2025 on a bad note, and Fed easing policy will drive scarce assets higher.

    Source: cointelegraph.com/news/bitcoin

    🔔 Turn on post notifications

  17. #iosdev #buildInPublic #coredata #cloudKit

    Enough for tonight. Tomorrow I'll start prototyping the migration from explicitly ordered many:many to implicitly ordered via intermediate attributed relationship objects.

    13/n

  18. #iosdev #buildInPublic #coredata #cloudKit I also have make sure I'm selecting the Private database and the com.apple.coredata.cloudkit'recordName' is not marked queryable

    lyons.app/2021/07/05/how-to-fi

    gave me the answer: I have to modify the schema by adding a queryable index called recordName to the recordName metadata field for each record type so I can view the records. I also have make sure I'm selecting the Private database and the com.apple.coredata.cloudkit zone.
    12/n
    Edit: to fix link

  19. #iosdev #buildInPublic #coredata #cloudKit

    Got the demo working after some annoying debug sessions. Seems like it has not been revisited since 2022, and iOS 18 changed the behaviour of collectionView.dequeueReusableCell - as of iOS 18 it asserts if you call it outside of cellForItemAt indexpath. it was being called in awakeFromNib to set a font.

    You would think that a company with the resources of Apple would at a minimum task interns to COMPILE AND RUN demos called out in the docs 11/n

  20. #iosdev #buildInPublic #coredata #cloudKit

    There is some Apple demo code from WWDC 2022 that gives an example of deduplication on CloudKit sync. It's a simplified demo but it does give an example of a many:many (unordered) relationship. Let's see if we can get it running.
    developer.apple.com/documentat

    10/n

  21. #indiedev #irishmusic #iosdev #buildInPublic #coredata #cloudKit

    Apple has improved their migration support since I last looked - migrating to the data model outlined above would work as a staged migration:
    - add the new entities and any attributes needed to define ordering or deduplication
    - populate the intermediate attributed relationships
    - delete the old entities

    developer.apple.com/documentat

    Now we can safely move from NSPersistentContainer to a NSPersistentCloudKitContainer

    8/n

  22. #indiedev #irishmusic #iosdev #buildInPublic #coredata #cloudKit

    Now we've sketched out a workable data model that works in both coreData and CloudKit, we need to work out:
    - how to migrate from the existing model to the new one without losing data.
    - how to handle merging databases from different devices given that the user might have duplicate entries or collections with different members or different ordering

    7/n

  23. #indiedev #irishmusic #iosdev #buildInPublic #coredata #cloudKit

    The second case is a little more complex. Collections can contain Tunes and TuneSets. By default, they are time-ordered when users add to their contents. Users can also reorder them, and I've had requests (not yet implemented) for alphabetical and most-recent first ordering.
    A superclass (Searchable) inherited by both TuneSet and Tune allows for containment of both in a Collection.

    5/n

  24. #indiedev #irishmusic #iosdev #buildInPublic #coredata #cloudKit

    Tune to TuneSet is a many:many relationship ordered by the tunes’ play order. Functionally, the user can add Tunes to TuneSets and re-order or remove them. We must convert the many:many relationship to an intermediate object with an ordering attribute that we can use when we retrieve a TuneSet. We will have to be able to manipulate the ordering attribute to let the user drag Tunes to re-order them in the UI.
    4/n

  25. #indiedev #irishmusic #iosdev #buildInPublic #coredata

    To zoom in a bit on the problem at hand: #cloudKit is the obvious choice for sync between devices. Apple's documentation would have you believe that all you need to do is change your NSPersistentContainer to a NSPersistentCloudKitContainer and all will be well!
    Not so fast.
    First of all, the coredata and cloudkit data models have to be compatible. In this case, we find the dreaded OrderedRelationship in two places.
    3/n

  26. I am still checking, butI think that I have encountered this:

    developer.apple.com/forums/thr

    #CoreData presumably created a new CloudKit CKAsset field for an `externalStorage` property at runtime when it encountered an asset that is too large for the database. This causes automatic #SwiftData CloudKit sync to fail because that record doesn't exist in the server.

    If so, this is broken, it should create all fields it'll eventually need so that they can be properly added to the production CloudKit schema.