Generated: 2026-05-11 · Skill version: 0.0.9 (matches upstream monid.ai/skill.md)
Discovery sweep: 80 distinct queries across 40+ categories
Workspace: /workspace/monid/research/
Primary Source: Services: The New Software by Julien Bek, Sequoia Capital — Published March 5, 2026 Reading Time: 7 minutes (original article ~1,400 words) Research Compiled: April 2026
I hereby claim:
- I am ravidsrk on github.
- I am ravidsrk (https://keybase.io/ravidsrk) on keybase.
- I have a public key ASAV6LcXbZuWsvh6h_S6dSNoAVSavsR9fzS2bcfduWsquwo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const _ = require("lodash"); | |
| const BnbApiClient = require("@binance-chain/javascript-sdk"); | |
| const kava = require("@kava-labs/javascript-sdk"); | |
| const bnbCrypto = BnbApiClient.crypto; | |
| const KavaClient = kava.KavaClient; | |
| const kavaUtils = kava.utils; | |
| const BINANCE_CHAIN_API_TESTNET = "https://testnet-dex.binance.org"; | |
| const BINANCE_CHAIN_DEPUTY = "tbnb1et8vmd0dgvswjnyaf73ez8ye0jehc8a7t7fljv"; | |
| const bnbAddress = "your binance chain testnet address"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Quickly fix one file | |
| npx prettier --write your-file.html | |
| # Quickly fix all files of one type | |
| npx prettier --write src/**/*.{js,jsx} |
Migrations are a way to make database changes or updates, like creating or dropping tables, as well as updating a table with new columns with constraints via generated scripts. We can build these scripts via the command line using knex command line tool.
To learn more about migrations, check out this article on the different types of database migrations!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| "sort" | |
| "time" | |
| ) | |
| // a struct to hold the result from each request including an index |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const contracts = { | |
| "0x1d462414fe14cf489c7a21cac78509f4bf8cd7c0": { | |
| id: "canyacoin" | |
| }, | |
| "0x5f3789907b35dce5605b00c0be0a7ecdbfa8a841": { | |
| id: "content-and-ad-network", | |
| }, | |
| "0xdd974d5c2e2928dea5f71b9825b8b646686bd200": { | |
| id: "kyber-network" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get install openssl libssl-dev libudev-dev | |
| sudo apt-get install software-properties-common -y | |
| sudo add-apt-repository -y ppa:ethereum/ethereum -y | |
| sudo apt-get update | |
| sudo apt-get install ethereum | |
| bash <(curl https://get.parity.io -L) | |
| parity — cache-size 62000 — warp — jsonrpc-interface "206.189.140.131" — jsonrpc-apis "all" — ipc-apis "web3,eth,personal,pubsub,net,parity,parity_pubsub,parity_accounts,traces,rpc,secretstore" — jsonrpc-port "8545" — mode "active" — chain "mainnet" — min-peers 50 — max-peers 200 |
NewerOlder