Simon
Simon
When a title is too long (truncated with ...) dwylbot should add an error like: "the title of the issue/PR is too long, please try to have a concise title...
the LDMW team (@Danwhy and @shouston3) have kindly accepted to do some user testing of dwylbot on their [repositories](https://github.com/LDMW). Please let us know your feedback, suggestions and complains :tada: If...
# dwylbot on PRs - [ ] When a PR is assigned to someone then add "awaiting-review" label on the PR and on the issues listed in the description of...
Currently the Readme focus on explaining **why** CIDs are important and gives a few example (Google, Instagram, Youtube) but the **what** section is quiet short and doesn't explain in details...
The first step of the `cid decode` algorithm (https://github.com/multiformats/cid#decoding-algorithm) is: > If it is 46 characters long and starts with Qm..., it's a CIDv0. Decode it as base58btc and continue...
Given a CID the first step when decoding the CID is to determine which multibase is used see https://github.com/multiformats/multibase The CID(v1) encode this information on the first byte (ie the...
On the section " Check if the Idea/Story/Issue Already Exists Using GitHub Search " I would emphasise to search for closed issues, it's underlined on the screenshot but it might...
http://www.dwyl.io/team 42 requests and 4MB to load, it's still a bit too big I think, @shouston3 you're too heavy 
You can represent a string with either single quotes or double quotes without any difference. ```dart const hello1 = "hello"; const hello2 = 'hello'; hello1 == hello2; //true ``` To...
Add a `functions` section in the README to describe how to create functions. - simple function example: ```dart String hello() { return 'hello'; } ``` We can see that the...