Justin & Michaelnotyourcryptopodcast.com·Oct 4, 2024A Bridge too FarIn October of 2022 an attacker made off with 600M (!!!) by finding a bug in a bridge contract connecting two of Binance’s blockchains. How did it happen? It’s time to blow the dust off your third year Data Structures textbook. Listen to us stumble ou...DiscussWeb3 Security
Rushikesh Jadhav0xrushya.hashnode.dev·Oct 1, 2024Cross-chain token transfer made simple, no bridge needed.As the push for a more unified blockchain experience continues, the need for omni-chain tokens that can seamlessly transfer across multiple chains has become increasingly clear. Current trends in token and native currency bridging volumes highlight t...DiscussBlockchain
Nicolas de Souzanicolasdesouza.com·Sep 2, 2024Design Pattern - BridgeIntrodução Dando sequência aos estudos sobre design patterns, chegou a hora de falarmos sobre o padrão BRIDGE. Como seu nome sugere, sua implementação cria conexões entre interfaces e implementações nos auxiliando a criar classes cada vez mais especí...DiscussDesign Patternsdesign patterns
Navya Srivastavanavya01.hashnode.dev·Aug 27, 2024Understanding Blockchain Bridging Mechanisms: A Detailed GuideIntroduction As blockchain technology matures, the need for interoperability between different blockchain networks has become more prominent. Bridging funds between blockchains enables users to transfer assets seamlessly, expanding their usability ac...DiscussBlockchain
Hylcorehylcore-digital-world.hashnode.dev·Aug 24, 2024The Role of Bridges in Blockchain NetworksBlockchain bridges, also known as cross-chain bridges, are integral components in the world of blockchain and cryptocurrency. They serve as crucial connectors between different blockchain networks, enabling the transfer of assets, information, and fu...Discuss·5 likesBlockchain
Danny Crastoblog.danwald.me·Jan 30, 2024VSCode Bridge to (EKS) kubernetesGetting bridge to kubernetes to work with AWS's EKS needs some fussin'. If you are authorized via SSO, managed by aws-vault this should help. You need to have the aws-vault exec <profile> loaded before running k-creds. Relevant AWS environment variab...Discuss·56 readsk8s
Rakesh Kumar Jangidrakamodify.store·Dec 18, 2023Unlocking Your Private Web Server to the World for Free: No Cloud Service Fees from AWS, Azure, GCP, and More!If you're feeling frustrated with paying your cloud services bills or if you can't access cloud services because you've used up all your free resources, you're in the right place! We're here to help you out, so no need to worry. This free service ope...Discuss·26 readsLinux-Administration-Seriestunnel
John Vesterjohnjvester.hashnode.dev·Nov 2, 2023Bridging the Gap: Better Token Standards for Cross-chain AssetsTaking ERC20 tokens cross-chain is broken. Today, bridges are often slow and expensive, have security vulnerabilities (as evidenced most recently by the Multichain hack), and fragment liquidity when each bridge creates its own version of the bridged ...Discuss·1 likeWeb3
Paras kaushikparaskaushik.hashnode.dev·Sep 29, 2023Understanding the Bridge Design patternBuilding the problem Suppose you have an abstraction class Shape and a concrete class Circle We want to add rendering functionality to our shapes Also, this rendering can be of two types, a pixel rendering or a vector rendering, so corresponding ...Discuss·38 readsC++
Oskar Loeprechtcs-with-oskar.hashnode.dev·Mar 4, 2023Structural Design Patterns #02 - BridgeThis post is going to cover the bridge pattern. The adapter pattern in the previous post is more used to fix an occurring problem whereas the bride pattern is more used to avoid a problem. The problem Let's continue with the example from the first po...Discuss·29 readsdesign principles