Skip to content

Instantly share code, notes, and snippets.

View pjanusc85's full-sized avatar

Paul Janus N. Calinawan pjanusc85

View GitHub Profile
@pjanusc85
pjanusc85 / Comparison-between-USDaf-v2-and-Bold-Main-Repo.md
Last active October 29, 2025 00:11
Comparison-between-USDaf-v2-and-Bold-Main-Repo.md

USDaf-v2 Fork vs Original Bold - Comparison Report

Overview

This document provides a comprehensive comparison between the USDaf-v2 fork and the original Liquity V2 (Bold) repository, highlighting all changes made to support USDAF and multiple collateral tokens.

Directories Compared:

  • Original: /Users/Paulcalinawa/Documents/bold-projects/bold
  • Fork: /Users/Paulcalinawa/Documents/bold-projects/USDaf-v2
@pjanusc85
pjanusc85 / bitbucket-pipelines.yml
Created July 23, 2019 22:06 — forked from bettysteger/bitbucket-pipelines.yml
Bitbucket Pipeline config to deploy Angular app to Amazon AWS S3 Bucket
image: node:8.7.0
pipelines:
default:
- step:
caches:
- node
script:
- npm install
- npm install yarn grunt -g
@pjanusc85
pjanusc85 / test.html
Last active August 11, 2016 00:47
Test Flatten an array
<html>
<body>
<script>
var test1 = [0, 1, 1, 2, 6, 8, 0, 2, 3, 4, 5];
var flat1 = flat(test1);