ContentPosts from @dawnalvarez494..
Link
@faun shared a link, 3 years ago
FAUN.dev()

The adapter pattern in Go

In software development, testability problems are often caused by underlying design problems. If code is not testable, it is not well-designed. External dependencies like databases can present both design and testing problems, which can be solved by using the adapter pattern to encapsulate all know.. read more  

The adapter pattern in Go
Link
@faun shared a link, 3 years ago
FAUN.dev()

Synchronization Patterns in Go

Go language makes it easy to write concurrent and parallel programs, but there are potential issues related to shared memory and synchronization. Mutexandsemaphorescan be used to address these issues. Channels are recommended for communication and synchronization between goroutines. A sample prog.. read more  

Synchronization Patterns in Go
Link
@faun shared a link, 3 years ago
FAUN.dev()

Guide to setting withdrawal address for your Ethereum validator using deposit-cli

This article is a step-by-step guide forsetting up a withdrawal address for an Ethereum validatorusing thedeposit-cli tool. It walks through the process of booting a machine with a bootable Ubuntu USB, downloading and running deposit CLI, creating text files, entering mnemonic and validator data, a.. read more  

Guide to setting withdrawal address for your Ethereum validator using deposit-cli
Link
@faun shared a link, 3 years ago
FAUN.dev()

Public preview: AKS support for Kubernetes 1.26 release

AKS support for Kubernetes release 1.26 is now in public preview. Kubernetes 1.26 delivers 37 enhancements. This release includes new improvements in general Kubernetes metrics as well as in pod scheduling... read more  

Link
@faun shared a link, 3 years ago
FAUN.dev()

Amazon GuardDuty now monitors runtime activity from containers running on Amazon EKS

Amazon GuardDuty is expanding threat detection coverage by continuously monitoring container runtime activity on Amazon EKS to identify malicious or suspicious behavior. The new fully-managed security agent monitors on-host operating system-level behavior, file access, process execution and network.. read more  

Amazon GuardDuty now monitors runtime activity from containers running on Amazon EKS
Link
@faun shared a link, 3 years ago
FAUN.dev()

Ledger Raises Another $108M In Series C Extension Round at $1.4B Valuation

The company says it secures more than 20%of the world’scryptocurrenciesandmore than 30%ofNFTs. The France-based crypto hardware makerraised its initial Series C of $380 million in June 2021. The extension was done at the same valuation — about $1.4 billion — when taking into account currency conver.. read more  

Ledger Raises Another $108M In Series C Extension Round at $1.4B Valuation
Link
@faun shared a link, 3 years ago
FAUN.dev()

US Government Could Have Saved $5 Billion If It Hodled Seized Bitcoin Instead Of Selling It

Casa's CTO and co-founder Jameson Lopp shared the latest version of his US seized Bitcoin sales tracker: - US government has sold 195,091.75 BTC it seized over the years for $366,493,104. - Current USD value of all sold BTC amounts to $5,543,532,076. - Potential USD gains missed so far: $5,177,038,9.. read more  

US Government Could Have Saved $5 Billion If It Hodled Seized Bitcoin Instead Of Selling It
Link
@faun shared a link, 3 years ago
FAUN.dev()

RetroPGF Round 2 Results

Retroactive Public Goods Funding (RetroPGF) is a mechanism used toallocate funding to builders who have positively impacted theOptimism ecosystem. In RetroPGF Round 2, 69 badgeholders voted to allocate 10M OP to 195 projects and people who have contributed to the development of the OP Stack. Fundi.. read more  

Link
@faun shared a link, 3 years ago
FAUN.dev()

Introducing Dinero, an overcollateralized stablecoin backed by Ethereum blockspace.

Dinerois an experimental protocol introducing an overcollateralized stablecoin ($DINERO) backed by Ethereum blockspace. It aims to democratize access to Ethereum's blockspace by providing a public and permissionless RPC for users, a decentralized stablecoin, and an ETH liquid staking token. By com.. read more  

Introducing Dinero, an overcollateralized stablecoin backed by Ethereum blockspace.
Link
@faun shared a link, 3 years ago
FAUN.dev()

Solidity event high-speed multithread reading

An example code forreading Solidity eventsinPythonfrom ahigh-speed EVM blockchain. It uses the Web3.py Contract class and its Event subclass, and optimizes performance by using a thread pool reader with 16 parallel reading threads and the ujson library for decoding JSON. The code manually decodes .. read more