Immediately get started developing smart contracts
Posted on Sat 28 January 2023 in tech • Tagged with solidity, docker, ethereum, foundry, collective
Immediately get started developing smart contracts using the Collective.
Full tutorial on YouTube:
Posted on Sat 28 January 2023 in tech • Tagged with solidity, docker, ethereum, foundry, collective
Immediately get started developing smart contracts using the Collective.
Full tutorial on YouTube:
Posted on Fri 27 January 2023 in tech • Tagged with c++, std::generate, lambda, tutorial
Many examples of std::generate in C++ involve a static. However using a static introduces issues around thread safety and usability in modern code. Here is a simple example using std::generate with a c++14 style lambda that defines and captures a local variable.
Full tutorial on …
Posted on Fri 20 January 2023 in tech • Tagged with docker, rust, c++, go, build, apple
Should you enable your efficiency cores for use by Docker on Apple Silicon?
If you enable the efficiency cores there are 2 additional cores for the system scheduler to allocate to your workload. However, if you leave them disabled, these 2 cores will remain in reserve for use by supportive …
Posted on Fri 16 December 2022 in tech • Tagged with programming, fibonacci, prime, go

F(200M) in 2 minutes! Apple arm64 is no joke. You can do it yourself with Go Fib
Posted on Tue 13 December 2022 in tech • Tagged with TypeScript, npmjs, web3, Ethereum, governance
@collectivexyz just published @collectivexyz/governance
Install from command line:
$ npm install @collectivexyz/governance
Install using yarn:
$ yarn add @collectivexyz/governance
Simple example to connect to a governance contract.
import { EthWallet, Governance, GovernanceBuilder, CollectiveGovernance } from '@collectivexyz/governance';
import Web3 from 'web3';
export async function connect(): Promise<Governance> {
try {
const rpcUrl …Posted on Sat 10 December 2022 in tech • Tagged with ethereum, solidity, typescript, ethers
Here is a trivial example that finds an event from a Transaction Receipt in ethers js.