Skip to content

Commit e61913f

Browse files
committed
adding script for the rest of the projects
1 parent 517b52c commit e61913f

24 files changed

+789
-220
lines changed

.github/category-template/algorithm-template/readme.md

Lines changed: 0 additions & 109 deletions
This file was deleted.

.github/contributing.md

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,3 @@
11
## Contributing
22

3-
> Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms.
4-
5-
**General Rules**
6-
7-
[GET STARTED HERE](https://github.com/AllAlgorithms/algorithms/blob/master/.github/category-template/algorithm-template/readme.md) with a template.
8-
9-
<p id="general-rules"></p>
10-
11-
- As much as possible, try to follow the existing format of markdown and code.
12-
13-
**All ▲lgorithms Structure**
14-
15-
<p id="structure"></p>
16-
17-
> We follow this structure
18-
19-
- Directories and files are all in lower case letter.
20-
- Directories are separated by a minus or hyphen (`-`). In libraries this may change to follow the standards of the programming language
21-
- Files are separated by an underscore (`_`) following the `snake_case` style. This could change to follow style standards on some languages like Java where we are using `CamelCase` style.
22-
23-
```
24-
├── category
25-
│ ├── first_algorithm.js
26-
│ └── second_algorithm.js
27-
└── other-category
28-
├── third-algorithm
29-
│ ├── third_algorithm.js
30-
│ └── third_algorithm_test.js
31-
└── fourth_algorithm.js
32-
```
33-
34-
**Contributing New Algorithms**
35-
36-
<p id="new"></p>
37-
38-
- Make your pull requests to be **specific** and **focused**. Instead of contributing "several algorithms" all at once contribute them all one by one separately (i.e. one pull request for "Binary Search", another one
39-
for "Bubble Sort" and so on).
40-
- Describe what you do in code using **comments**.
3+
> Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms.

.github/issue-template.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
I am creating an issue because...

.github/issue_template.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/pull-request-template.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
I am creating a pull request for...
2+
3+
- [ ] New algorithm
4+
- [ ] Update to an algorithm
5+
- [ ] Fix an error
6+
- [ ] Other - *Describe below*

.github/pull_request_template.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
.DS_Store
22

3+
projects
34
node_modules
45

56
lib/core/metadata.js
67
lib/core/MetadataBlog.js
78

89
website/translated_docs
910
website/build/
10-
website/yarn.lock
11-
website/package-lock.json
1211
website/node_modules
1312
website/i18n/*
13+
14+
*lock

package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"dependencies": {
3+
"axios": "^0.20.0"
4+
},
5+
"devDependencies": {
6+
"chalk": "^4.1.0",
7+
"command-exists": "^1.2.9",
8+
"dtfe": "^2.0.0",
9+
"shelljs": "^0.8.4"
10+
}
11+
}

readme.md

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -400,37 +400,15 @@ just a paper and pencil.
400400
- [Tokenizer](others/)
401401
- [Unique number](others/)
402402

403-
## Maintainers
404-
405-
| [![2][2] <br><sub>Carlos Abraham</sub>][3] |
406-
| :-: |
407-
| |
408-
409-
<!----------------------------------------------------------------------
410-
Five columns table template
411-
412-
| [![abranhe][avatar-abranhe] <br> <sub>Carlos Abraham</sub>]() | | | | |
413-
| :-: | :-: | :-: | :-: |
414-
---------------------------------------------------------------------->
415-
416403
## License
417404

418-
This work is released under [MIT License](https://github.com/abranhe/algorithms/blob/master/license)
405+
This work is released under MIT License.
419406

420-
[![MIT IMG][1]](https://github.com/abranhe/algorithms/blob/master/license)
421-
422-
To the extent possible under law, [Carlos Abraham](https://go.abranhe.com/github) has waived all copyright and related or neighboring rights to this work.
407+
To the extent possible under law, [Abraham Hernandez (@abranhe)](https://go.abranhe.com/github) has waived all copyright and related or neighboring rights to this work.
423408

424409
<div align="center">
425410
<a href="https://github.com/abranhe/algorithms">
426411
<img src="https://cdn.abranhe.com/projects/algorithms/logo.svg" width="50px">
427412
</a>
428413
<br>
429-
</div>
430-
431-
<!-------------------Markdown Images Links ---------------------------------->
432-
[1]: https://cdn.abranhe.com/projects/algorithms/mit-license.png
433-
434-
<!-- Maintainers -->
435-
[2]: https://avatars2.githubusercontent.com/u/21347264?s=70
436-
[3]: https://github.com/abranhe
414+
</div>

repos.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
"java",
3+
"c",
4+
"r",
5+
"cpp",
6+
"go",
7+
"javascript",
8+
"shell",
9+
"php",
10+
"python",
11+
"ruby",
12+
"swift",
13+
"scala",
14+
"csharp",
15+
"lua",
16+
"assembly",
17+
"brainfuck",
18+
"perl",
19+
"haskell",
20+
"erlang",
21+
"objective-j",
22+
"fortran",
23+
"lisp",
24+
"lol",
25+
"maxima",
26+
"matlab",
27+
"clojure",
28+
"apple-script",
29+
"kotlin",
30+
"rust",
31+
"racket"
32+
]

0 commit comments

Comments
 (0)