Skip to content

Instantly share code, notes, and snippets.

@movitto
movitto / mock.js
Last active April 28, 2021 22:56
Jest mockable modules w/ original invocation
// Mock specific module pre-inclusion, overwriting methods
// w/ stub that behave the same way.
//
// Module should be absolute path as it will be 'required'
// relative to this 'mock' module
function mock_module(module){
jest.doMock(module, () => {
const actual = jest.requireActual(module)
// Stub original behaviour w/ a jest mock
@movitto
movitto / keybase.md
Created November 24, 2020 17:50
keybase.md

mmorsi Mo Morsi Entrepreneur, software engineer, righteous guy New York

Keybase proof

I hereby claim:

@movitto
movitto / txs_by_result.rb.diff
Created May 8, 2020 21:51
xrp1ntel - TXs By Result: Critical Results Patch
diff --git a/lib/wipple/metrics/txs_by_result.rb b/lib/wipple/metrics/txs_by_result.rb
index 10c5f7c..5badc0d 100644
--- a/lib/wipple/metrics/txs_by_result.rb
+++ b/lib/wipple/metrics/txs_by_result.rb
@@ -3,6 +3,8 @@ module Wipple
class TxsByResult
include BaseMetric
+ CRITICAL_RESULTS = ['tecINVARIANT_FAILED']
+
@movitto
movitto / bench.rb
Created October 21, 2019 19:24
Simple Ruby Benchmark Class
require 'xrbp'
class Benchmark
def initialize(max=1000)
@max = max
@snapshots = []
end
def capture!(n=1)
@snapshots << [n, Time.now]
@movitto
movitto / xrpl-dash1.html
Created October 9, 2019 21:13
Prototype XRPL Node Dashboard Concept - Utilitzing consensus subscription patch
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.js"></script>
<script type="application/javascript" src="ripple-1.3.3-min.js"></script>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="https://d3js.org/d3.v4.js"></script>
<!-- -->
@movitto
movitto / lvd.sh
Created August 28, 2019 20:49
Remove all LVM Snapshots with a certain prefix
#!/bin/bash
# Remove all LVM Snapshots
# Set executable: chmod +x lvmbak.sh
VG="dnp00" # LVM volume group we are snapshoting
BACKUP_PREFIX="dnv1-snap-" # Prefix of snapshot volume name.
/sbin/lvs -o lv_name --noheadings | sed -n "s@$BACKUP_PREFIX@@p" | while read DATE; do
if [ "$DATE" ]; then
@movitto
movitto / lvmbak.sh
Last active August 23, 2019 14:53
Take LVM snapshot / cycle old ones out at specified interval
#!/bin/bash
# Take LVM snapshot / cycle old ones out at specified interval
# Set executable: chmod +x lvmbak.sh
# Make sure to setup sudo correctly:
# # visudo
# <USER> ALL= NOPASSWD: /sbin/lvcreate
# <USER> ALL= NOPASSWD: /sbin/lvremove
# <USER> ALL= NOPASSWD: /sbin/lvs
@movitto
movitto / xrptipbot.vue
Last active July 25, 2019 04:30
Embedding xrptipbot in a vuejs application
// VueJS does not permit <script> tags to be embedded in component templates
// Inorder to embed the xrptipbot widget (as described here: https://www.xrptipbot.com/account/embed):
// Add the following to your vuejs component template (make sure to change the tip receipient!):
<div id="xrptipbot">
<a amount="5.00" size="175" to="DevNullProd" network="twitter" href="https://www.xrptipbot.com" target="_blank"></a>
</div>
// Then add / extend the component 'mounted' hook to add the script:
mounted : function(){
@movitto
movitto / rippled.rpm.sh
Last active May 19, 2019 17:39
Commands needed to build the rippled RPM on a fresh CentOS 7 install
# Setup rippled RPM build environemnt on CentOS
# From a fresh CentOS install
# Update system, reboot
sudo yum update
sudo reboot
# Install deps
sudo yum install protobuf-static openssl-static zlib-static
@movitto
movitto / xag.rb
Created April 30, 2019 23:53
XRP Account Generator
#!/usr/bin/ruby
#
# Written by Dev Null Productions <devnullproductions@gmail.com>
#
# Small script to generate new XRPL account as described in the following document:
# https://developers.ripple.com/accounts.html
#
# Simply run it with:
# ruby xag.rb
#