Skip to content

Instantly share code, notes, and snippets.

View Aldhanekaa's full-sized avatar
🎏
Make Indonesia great again!

Al∂haneka、アルダネカ Aldhanekaa

🎏
Make Indonesia great again!
View GitHub Profile
@Aldhanekaa
Aldhanekaa / .block
Created December 26, 2022 13:30 — forked from mbostock/.block
Brush & Zoom
license: gpl-3.0
redirect: https://observablehq.com/@d3/focus-context
@Aldhanekaa
Aldhanekaa / aapl.csv
Created December 26, 2022 13:30 — forked from LemoNode/aapl.csv
Line chart with zoom
Date Open High Low Close Volume Adj Close
2008-10-14 116.26 116.40 103.14 104.08 70749800 104.08
2008-10-13 104.55 110.53 101.02 110.26 54967000 110.26
2008-10-10 85.70 100.00 85.00 96.80 79260700 96.80
2008-10-09 93.35 95.80 86.60 88.74 57763700 88.74
2008-10-08 85.91 96.33 85.68 89.79 78847900 89.79
2008-10-07 100.48 101.50 88.95 89.16 67099000 89.16
2008-10-06 91.96 98.78 87.54 98.14 75264900 98.14
2008-10-03 104.00 106.50 94.65 97.07 81942800 97.07
2008-10-02 108.01 108.79 100.00 100.10 57477300 100.10
@Aldhanekaa
Aldhanekaa / aes-256-cbc-test.js
Created August 11, 2022 11:39 — forked from sansob/aes-256-cbc-test.js
AES 256 CBC encryption between Golang and Node JS
// Node v6.9.0
//
// TEST FILE (cut down for simplicity)
// To ensure Golang encrypted string can be decrypted in NodeJS.
//
let crypto;
try {
crypto = require('crypto');