Skip to content

Instantly share code, notes, and snippets.

View lunaleaps's full-sized avatar

Luna lunaleaps

  • Meta
  • Bay Area
  • 11:01 (UTC -07:00)
View GitHub Profile
@lunaleaps
lunaleaps / diff-node_modules
Created September 14, 2021 00:55
Diff between RN66RC2 (yarn) and NPM 662(npm)
Only in NPM662/node_modules/: .package-lock.json
Only in RN66RC2/node_modules/: .yarn-integrity
Only in RN66RC2/node_modules/: babel-eslint
Only in RN66RC2/node_modules/: eslint-config-prettier
Only in RN66RC2/node_modules/: eslint-plugin-eslint-comments
Only in RN66RC2/node_modules/: eslint-plugin-flowtype
Only in RN66RC2/node_modules/: eslint-plugin-jest
Only in RN66RC2/node_modules/: eslint-plugin-prettier
Only in RN66RC2/node_modules/: eslint-plugin-react
Only in RN66RC2/node_modules/: eslint-plugin-react-hooks
@lunaleaps
lunaleaps / gist:f954a4a163709efdc5df6b69f27ee73f
Created August 27, 2021 08:26
copy the dependencies over
https://app.circleci.#!/usr/bin/env node
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
@lunaleaps
lunaleaps / propagate.pseudo
Created June 11, 2013 21:38
Psuedo code for propagate on Kernel
def apply(literal, assignment):
if literal is a negation:
return !assignment
return assignment
def get_true_assignment(literal):
if literal is a negation:
return False
return True