Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initialise base58 encode function #3

Merged
merged 17 commits into from
Jan 30, 2019
Merged

initialise base58 encode function #3

merged 17 commits into from
Jan 30, 2019

Conversation

SimonLab
Copy link
Member

@SimonLab SimonLab commented Jan 29, 2019

ref: #1

Encode string to base58

You should be able to call the function similar to

> Base58Encode.encode("foo")
> "bQbp"

@SimonLab SimonLab self-assigned this Jan 29, 2019
README.md Outdated
@@ -1,2 +1,42 @@
# elixir-base58-encode
https://hex.pm/packages/b58


This module provide the `encode/1` function which takes a binary and returns
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's worth expanding on what a "binary" is.
A complete beginner could think that it is a series of 0's and 1's
image
equally it could be an executable binary

and the further down we present the usage example of Base58Encode.encode("foo")
"foo" is clearly a String not a "binary" (at least if you approach this from a beginner's perspective...)

README.md Outdated

and run `mix deps.get`

2. Call the `encode` fundtion with a binary as parameter:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"fundtion" > "function" ?

README.md Outdated
2. Call the `encode` fundtion with a binary as parameter:

```
> Base58Encode.encode("foo")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

README.md Outdated
if the parameter is not a binary the function will return `:error`

```
> Base58Encode.encode(42)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Surely 42 is an Integer? (it's "confusing" because 42 in binary is 0b101010...) 🤔

README.md Outdated
> "bQbp"
```

The alphabet used for base58 is:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"alphabet" > "character set"

README.md Outdated
[How to encode a string to base58](https://github.com/dwyl/base58encode/issues/1)

Read the following for more information about binary in Elixir:
https://elixir-lang.org/getting-started/binaries-strings-and-char-lists.html
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

consider explaining further up why both "foo" and 42 are "binaries".

iex> Base58Encode.encode("hello")
"Cn8eVZg"

iex> Base58Encode.encode(42)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

README.md says that encode(42) is "bQbp" https://github.com/dwyl/base58encode/pull/3/files#r251960830

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Readme was wrong! I've update the Readme to try to explain the difference between Elixir binary and binary numbers.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice. 👍

1 % 58 = 1

So 65 is represented by 1 7 codes
```
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This section isn't too clear to me. Why do we use modulo? Where does 1 % 58 come from?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't want had too much details on how to convert number from one base to another but I can try to describe the steps a bit more 👍

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh I liked this section actually.

Maybe add an example with rem/2 function (I know it does the same thing as modulo but maybe it will help to make it more clear to some people)? Just a thought

@nelsonic nelsonic removed their assignment Jan 30, 2019
@SimonLab
Copy link
Member Author

@nelsonic @Danwhy @RobStallion thanks for the review and all your comments, they are very useful!

I think I've updated most of the part you have commented on and when you have some time it would be great to have your opinion again.
Thanks

assert "Z" == Base58Encode.encode(" ")
end

property "Compare result with basefiftyeight package" do
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahhhh that's really clever. I was wondering what a good way to add property tests to this would be. Good thinking @SimonLab 👍 😎

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A good "stopgap" until we can implement #4 and test against the "reference" C version
(and avoid comparing to the unmaintained one ... unless we want to run a perf benchmark?)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see #4 for the next step on this (use the C library of base58 instead of the elixir package)

@nelsonic
Copy link
Member

@SimonLab uh uh ... Travis is confused/unhappy. 😕
image
(code is looking good though ... please re-assign when passing. thanks!)

@nelsonic nelsonic removed their assignment Jan 30, 2019
Copy link
Member

@RobStallion RobStallion left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This readme is sooo good.

Everything is super clear. Can run and use locally with ease.

README.md Outdated
https://hex.pm/packages/b58
[![Hex pm](http://img.shields.io/hexpm/v/b58.svg?style=flat)](https://hex.pm/packages/b58)
[![Build Status](https://travis-ci.org/dwyl/base58encode.svg?branch=master)](https://travis-ci.org/dwyl/base58encode)
[![Coverage Status](https://coveralls.io/repos/dwyl/base58Encode/badge.svg?branch=master)](https://coveralls.io/r/dwyl/base58Encode?branch=master)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that this link it meant to be to codecov

]
end

defp description() do
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NICE 👍

@codecov
Copy link

codecov bot commented Jan 30, 2019

Codecov Report

❗ No coverage uploaded for pull request base (master@9dba302). Click here to learn what that means.
The diff coverage is 100%.

Impacted file tree graph

@@           Coverage Diff           @@
##             master     #3   +/-   ##
=======================================
  Coverage          ?   100%           
=======================================
  Files             ?      1           
  Lines             ?     14           
  Branches          ?      0           
=======================================
  Hits              ?     14           
  Misses            ?      0           
  Partials          ?      0
Impacted Files Coverage Δ
lib/base58encode.ex 100% <100%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 9dba302...25c0362. Read the comment docs.

@SimonLab
Copy link
Member Author

@nelsonic Travis should be happy now. The failing test was due to a bug when the leading zeros were addded on top of the base58 value for 0. See #5

codes = get_codes(decimal, [])
leading_zeros(binary, "") <> codes_to_string(codes)
if decimal == 0 do
# see https://github.com/dwyl/base58encode/issues/5#issuecomment-459088540
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🥇 for comment link to issue 🎉

@nelsonic
Copy link
Member

@SimonLab thanks for fixing and adding docs. Hooray for property-based-testing. 🎉

Copy link
Member

@nelsonic nelsonic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SimonLab amaze! 😍
Docs, Tests and Code look great! 🎉
You have gone the extra mile on this and set a new standard for the rest of us to follow. 😮
Thank you! ✨

P.S. please integrate this into https://github.com/dwyl/cid tomorrow morning.
@Danwhy your feedback is still very much welcome/encouraged please comment on the PR and/or create issues! The only reason I merged the PR is because I feel it's "ready" and I don't want to be the "bottleneck" in Simon/Rob using this code in CID tomorrow. 👍

@nelsonic nelsonic merged commit 4ec1e76 into master Jan 30, 2019
@nelsonic nelsonic deleted the initialise branch January 30, 2019 22:16
This was referenced Jan 31, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants