Skip to content

Instantly share code, notes, and snippets.

View TheoryOfNekomata's full-sized avatar
🎹
Practicing

Allan Crisostomo TheoryOfNekomata

🎹
Practicing
View GitHub Profile
@TheoryOfNekomata
TheoryOfNekomata / check-these-out.md
Last active March 8, 2024 14:56
My Opinionated Notes on React Development

Check out these other projects!

React - The library for web and native user interfaces

Package manager

  • pnpm - Fast, disk space efficient package manager

Version manager

  • nvm - Node version manager, for *NIX/macOS
  • nvm-windows - Node version manager, for Windows
@TheoryOfNekomata
TheoryOfNekomata / index.js
Last active February 17, 2020 13:59
Tagalog Baybayin converter
const scripts = {
tagalog: {
start: 0x1700,
consonantMappingOffsets: {
b: 0x0a,
k: 0x03,
d: 0x07,
g: 0x04,
h: 0x11,
l: 0x0e,

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@TheoryOfNekomata
TheoryOfNekomata / convertToSassValue.js
Last active June 11, 2016 14:08
Converts a POJO to a value accepted by node-sass
#!/usr/bin node
(function () {
var SassTypes = require('node-sass').types;
module.exports = function convertToSassValue(obj) {
var parseValue, parseString, parseNumber, parseRgbColor, parseList, parseMap;
parseValue = function parseValue(obj) {
if (!obj) {