| Age | Commit message (Collapse) | Author |
|
With help of spdxconv tool [1], we able to bulk update all files license
and copyright format to comply with SPDX formats.
[1] https://kilabit.info/project/spdxconv/
|
|
|
|
There are several reasons that why we move from github.com.
First, related to the name of package.
We accidentally name the package with "share" a common word in English
that does not reflect the content of repository.
By moving to other repository, we can rename it to better and unique
name, in this "pakakeh.go".
Pakakeh is Minang word for tools, and ".go" suffix indicate that the
repository related to Go programming language.
Second, supporting open source.
The new repository is hosted under sourcehut.org, the founder is known
to support open source, and all their services are licensed under AGPL,
unlike GitHub that are closed sources.
Third, regarding GitHub CoPilot.
The GitHub Terms of Service [1], allow any public content that are hosted
there granted them to parse the content.
On one side, GitHub helps and flourish the open source, but on another
side have an issues regarding scraping the copyleft license [2].
[1]: https://docs.github.com/en/site-policy/github-terms/github-terms-of-service#4-license-grant-to-us
[2]: https://githubcopilotinvestigation.com
|
|
|
|
A character-string is expressed in one or two ways: as a contiguous set of
characters without interior spaces, or as a string beginning with a " and
ending with a ".
For contiguous string without double quotes, the following encoding are
recognized,
- \X where X is any character other than a digit (0-9), is used to quote
that character so that its special meaning does not apply.
For example, "\." can be used to place a dot character in a label.
- \DDD where each D is a digit is the octet corresponding to the decimal
number described by DDD.
The resulting octet is assumed to be text and is not checked for
special meaning.
For quoted string, inside a " delimited string any character can occur,
except for a " itself, which must be quoted using \ (back slash).
[character-string]: https://datatracker.ietf.org/doc/html/rfc1035#section-5.1
|