Skip to content

Instantly share code, notes, and snippets.

View heri16's full-sized avatar

heri16 heri16

View GitHub Profile
@heri16
heri16 / README.md
Last active October 19, 2021 10:56
Binary encoding of OUCH messages in Elixir

Reuse logic in Elixir

Here are commons ways to reuse logic in Elixir:

1a. Move Function to other module (guards, pattern-matching) 1b. Protocol - Polymorphism

  1. Behaviour Dynamic-func - with def method_name(implemetation, args)
@heri16
heri16 / flatten_array.ex
Created August 26, 2021 16:19
Elixir Flatten array (with tail recursion)
defmodule FlattenArray do
@doc """
Accept a list and return the list flattened without nil values.
## Examples
iex> FlattenArray.flatten([1, [2], 3, nil])
[1,2,3]
iex> FlattenArray.flatten([nil, nil])
@heri16
heri16 / .README.md
Last active October 2, 2021 17:24
Install Elixir on macOs

Instructions

brew update
brew install asdf [email protected]
EDITOR=nano brew edit wxmac # Edit the file according to wxmac.patch
brew install wxmac --build-from-source

asdf plugin add erlang
asdf plugin add elixir
@heri16
heri16 / playground.go
Last active September 9, 2021 08:51
Nasdaq OUCH_4.2 golang
package main
import (
"bytes"
"encoding"
"encoding/binary"
"io"
"fmt"
"stockbit.com/proto/ouch42"
@heri16
heri16 / .README.md
Last active August 30, 2021 07:49
Build & Install eixx C++ library

macOS / darwin

Install Dependencies

# Build-time Deps
brew install cmake
# brew install gcc@10
pip3 install gil
@heri16
heri16 / slice.go
Created July 26, 2021 10:50
Golang - convert slice such as []string to []interface{}
module slice
func InterfaceSlice(slice interface{}) []interface{} {
switch slice := slice.(type) {
case []string:
new := make([]interface{}, len(slice))
for i, v := range slice {
new[i] = v
}
return new
@heri16
heri16 / yup.ts
Last active June 29, 2021 05:39
Yup validate input for too many decimals to prevent ethers.js BigNumber / BigInt underflow
let decimals = 4;
const regexpDecimals = new RegExp(`^\\d*\\.{0,1}\\d{0,${decimals}}$`);
const SignupSchema = Yup.object().shape({
decimal: Yup.number().test(
'is-decimal',
'too many decimals',
value => (value + "").match(regexpDecimals),
),
});
@heri16
heri16 / ethersjs-token-bridge.ts
Last active June 29, 2021 05:39
Trigger Polygon / MATIC Token Bridge via ethers.js
// See: https://github.com/maticnetwork/matic.js/blob/master/examples/POS-client/config.js
const posRootChainManager = '0xBbD7cBFA79faee899Eaf900F13C9065bF03B1A74';
const posERC20Predicate = '0xdD6596F2029e6233DEFfaCa316e6A95217d4Dc34';
const accounts = useAccounts();
const userAddress = accounts?.[0]
const rootDaiContract = useContractContext(DAIDummyContext, 0);
const { send: approve } = useContractFunc(rootDaiContract, "approve");
@heri16
heri16 / button.tsx
Created June 29, 2021 05:30
Add network or switch network button for Metamask
interface AddEthereumChainParameter {
chainId: string; // A 0x-prefixed hexadecimal string
chainName: string;
nativeCurrency: {
name: string;
symbol: string; // 2-6 characters long
decimals: 18;
};
rpcUrls: string[];
blockExplorerUrls?: string[];
@heri16
heri16 / Structs.md
Created June 21, 2021 05:21
WIP: Solidity Object Structures for Insured Finance

Enums

  enum CoverType { SMART_PROTOCOL_FAILURE, STABLECOIN_DEVALUATION, CUSTODIAN_FAILURE, RUGPULL_LIQUIDITY_SCAM }
  enum CurrencyType { USDT, DAI, USDC }
  enum InsuredSumRule { PARTIAL, FULL }
  // enum ChainType { NON_EVM , EVM }

CoinId Decimals & CurrencyDecimals