Skip to content

Instantly share code, notes, and snippets.

View gokulnath's full-sized avatar
🎯
Focusing

Gokulnath gokulnath

🎯
Focusing
View GitHub Profile
@gokulnath
gokulnath / foo.md
Created February 11, 2021 09:26
My Files

#foo


Summary: 1/1 todos completed
Pending

Completed

  • some description.
@gokulnath
gokulnath / foo.md
Created February 11, 2021 09:26
My Files

#foo


Summary: 1/1 todos completed
Pending

Completed

  • some description.
@gokulnath
gokulnath / foo.md
Created February 11, 2021 09:26
My Files

#foo


Summary: 0/1 todos completed
Pending

  • some description.

Completed

@gokulnath
gokulnath / foo.md
Created February 11, 2021 08:44
My Files

#foo


Summary: 0/1 todos completed
Pending

  • some description.

Completed

@gokulnath
gokulnath / foo.md
Created February 11, 2021 08:44
My Files

#foo


Summary: 0/1 todos completed
Pending

  • some description.

Completed

version: "2"
services:
redis:
image: redis
ports:
- "6379:6379"
restart: always
postgres:
image: postgres:9.6
ports:
@gokulnath
gokulnath / ERC20Interface.sol
Created January 22, 2019 04:37
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.18+commit.9cf6e910.js&optimize=false&gist=
pragma solidity ^0.4.11;
/**
* Contract that exposes the needed erc20 token functions
*/
contract ERC20Interface {
// Send _value amount of tokens to address _to
function transfer(address _to, uint256 _value) public returns (bool success);
// Get the account balance of another account with address _owner
function balanceOf(address _owner) public constant returns (uint256 balance);
data Mood = Blah | Woot deriving Show
changeMood :: Mood -> Mood
-- changeMood Mood = Woot
-- changeMood _ = Blah
changeMood val
| val == Blah = Woot
| val == Woot = Blah

A Next-Generation Smart Contract and Decentralized Application Platform

Documentation chat

An introductory paper to Ethereum, introduced before launch, which is maintained.

Satoshi Nakamoto's development of Bitcoin in 2009 has often been hailed as a radical development in money and currency, being the first example of a digital asset which simultaneously has no backing or intrinsic value and no centralized issuer or controller. However, another - arguably more important - part of the Bitcoin experiment is the underlying blockchain technology as a tool of distributed consensus, and attention is rapidly starting to shift to this other aspect of Bitcoin. Commonly cited alternative applications of blockchain technology include using on-blockchain digital assets to re

@gokulnath
gokulnath / docker-compose.yml
Created February 1, 2017 11:07
Docker compose file
version: "2"
services:
redis:
image: redis
ports:
- "6379:6379"
memcached:
image: memcached
ports:
- "11211:11211"