asdf
const MY_DOMAIN = "support.indinerocorp.com" | |
const START_PAGE = "https://www.notion.so/inDinero-Help-Center-465343520bbe4af19f3b0144b70a1192" | |
addEventListener('fetch', event => { | |
event.respondWith(fetchAndApply(event.request)) | |
}) | |
const corsHeaders = { | |
"Access-Control-Allow-Origin": "*", | |
"Access-Control-Allow-Methods": "GET, HEAD, POST,PUT, OPTIONS", |
const MY_DOMAIN = "support.indinerocorp.com" | |
const START_PAGE = "https://www.notion.so/inDinero-Help-Center-465343520bbe4af19f3b0144b70a1192" | |
addEventListener('fetch', event => { | |
event.respondWith(fetchAndApply(event.request)) | |
}) | |
const corsHeaders = { | |
"Access-Control-Allow-Origin": "*", | |
"Access-Control-Allow-Methods": "GET, HEAD, POST,PUT, OPTIONS", |
asdf
This post talks about Ethereum, a new "Blockchain 2.0" platform for decentralized apps. It builds on a previous post, which discussed how Bitcoin and the blockchain work at a high level.
When you send a message or check your news feed on your Facebook app, almost everything is routed through centralized servers. Your Instagram photos. Your email. Even your Snapchat messages (they say they're deleted... but are you really sure?) While most of us don't understand how all of this works, it's hard to miss the fact that centralized systems have major flaws, despite (or even because of) their growing complexity. The NSA can intercept your private user data from Google by tapping into their centralized network. Hackers can reveal millions of people's identities and online choices by hacking in through Ashley Madison's VPN. Apple iMessage goes down when Apple's servers go down. And 56 million credit cards ca
{ | |
"nonce": "0x0000000000000042", | |
"difficulty": "0x40000", | |
"alloc": { | |
"YOUR_COINBASE_ADDRESS": { | |
"balance": "10015200000000000000000" | |
} | |
}, | |
"mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000", | |
"coinbase": "0x0000000000000000000000000000000000000000", |
# what's up | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | |
--- | |
# another title | |
```javascript | |
var x = 4; | |
y = x; | |
console.log(y); |