I hereby claim:
- I am petejkim on github.
- I am petejkim (https://keybase.io/petejkim) on keybase.
- I have a public key ASDGaLk8Q2VEX3AdCG65-mbhACdLf6uE2fwva3_iaTRQNQo
To claim this, I am signing this object:
import WalletLink from "walletlink" | |
import Web3 from "web3" | |
export const WalletLink = new WalletLink({ | |
appName: "My Awesome DApp", | |
appLogoUrl: "https://example.com/logo.png" | |
}) | |
export const ethereum = walletLink.makeWeb3Provider( | |
"https://mainnet.infura.io/v3/INFURA_API_KEY", 1 |
// solidityPack | |
// Extracted from https://github.com/ethereumjs/ethereumjs-util with TypeScript typings | |
// Original Copyright (c) 2015 Martin Becze | |
// LICENSE: MPL 2.0 - https://raw.githubusercontent.com/ethereumjs/ethereumjs-util/master/LICENSE | |
import { | |
hexToBuffer, | |
hexToEvenLengthHex, | |
isHex, | |
keccak256, |
// solidityPack module in Cipher Browser | |
// HardFork Inc. - MPL 2.0 | |
import { | |
hexToBuffer, | |
hexToEvenLengthHex, | |
isHex, | |
keccak256, | |
numberToHex, | |
setLengthLeft, |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Latency Comparison Numbers | |
-------------------------- | |
L1 cache reference 0.5 ns | |
Branch mispredict 5 ns | |
L2 cache reference 7 ns 14x L1 cache | |
Mutex lock/unlock 25 ns | |
Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
Compress 1K bytes with Zippy 3,000 ns 3 us | |
Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
$1.2 million is almost equal to an entire month's revenue.
With two small tweaks to our website could help drive this kind of money.
No extra sales guy or new pricing model required.
Information architecture (IA) is the art and science of organizing and labelling websites, intranets, online communities and software to support usability. --Wikipedia
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Server Not Accessible · Nitrous</title> | |
<style type="text/css"> | |
body { | |
margin: 0; | |
padding: 0; | |
background: #2a3239; |
/* | |
* Yawl - Yet Another Watcher Library | |
* Copyright (c) 2013 Peter Jihoon Kim. This software is licensed under the MIT License. | |
*/ | |
(function() { | |
"use strict"; | |
var fs = require('fs'); | |
var Path = require('path'); |
// | |
// NSObject+ProcObservation.h | |
// Version 1.0 | |
// | |
// Andy Matuschak | |
// [email protected] | |
// Public domain because I love you. Let me know how you use it. | |
// | |
// NTW 2009-Oct-21: Added selectors with an options argument. | |
// NTW 2009-Oct-30: Transplanted new observation key from MYUtilities's KVUtils. |