chore: consistent file naming and respect alphabetical order

This commit is contained in:
MURANGWA Pacifique 2024-01-20 12:01:50 +02:00
parent da846c6407
commit 6e4291f19a
43 changed files with 46 additions and 43 deletions

View File

@ -1414,19 +1414,22 @@ _Libraries for programming devices of the IoT._
_Implementations Of Algorithms & utility programs in Go._ _Implementations Of Algorithms & utility programs in Go._
- [Implementations](https://github.com/avelino/awesome-go/tree/main/impl/algorithms) - [Implementations](https://github.com/avelino/awesome-go/tree/main/impl)
- [Algorithms](https://github.com/avelino/awesome-go/tree/main/impl/algorithms) - [Algorithms](https://github.com/avelino/awesome-go/tree/main/impl/algorithms)
- [Data Structures](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/Data%20Structures) - [Data Structures](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/data_structures)
- [Graphs](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Data%20Structures/graphs.go) - [Graphs](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/data_structures/graphs.go)
- [Linked List](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Data%20Structures/linkedlist.go) - [Linked List](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/data_structures/linkedlist.go)
- [Queue](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Data%20Structures/queue.go) - [Queue](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/data_structures/queue.go)
- [Stack](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Data%20Structures/stack.go) - [Stack](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/data_structures/stack.go)
- [Tree](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Data%20Structures/tree.go) - [Tree](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/data_structures/tree.go)
- [Dynamic Programming](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/Dynamic%20Programming) - [Dynamic Programming](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/dynamic_programming)
- [Greedy Algorithms](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/Greedy%20Algorithms) - [Fibonacci Sequence](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/dynamic_programming/FibonacciSequence.go)
- [Fibonacci Sequence](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Dynamic%20Programming/Fibonacci%20Sequence.go) - [Knapsack Problem](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/dynamic_programming/KnapsackProblem.go)
- [Longest Common](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Dynamic%20Programming/Longest%20Common%20Subsequence.go) - [Longest Common](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/dynamic_programming/LongestCommonSubsequence.go)
- [Knapsack Problem](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Dynamic%20Programming/Knapsack%20Problem.go) - [Greedy Algorithms](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/greedy_algorithms)
-[Dijkstra](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/greedy_algorithms/dijkstra.go)
-[Kruskal](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/greedy_algorithms/kruskal.go)
-[Prim](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/greedy_algorithms/prim.go)
- [Searching](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/searching) - [Searching](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/searching)
- [Binary Search](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/searching/binary.go) - [Binary Search](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/searching/binary.go)
- [Jump Search](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/searching/jump.go) - [Jump Search](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/searching/jump.go)
@ -1438,37 +1441,37 @@ _Implementations Of Algorithms & utility programs in Go._
- [Merge Sort](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/sorting/merge.go) - [Merge Sort](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/sorting/merge.go)
- [Quick Sort](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/sorting/quick.go) - [Quick Sort](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/sorting/quick.go)
- [Selection Sort](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/sorting/selection.go) - [Selection Sort](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/sorting/selection.go)
- [File samples](https://github.com/avelino/awesome-go/tree/main/impl/files-manipulation) - [File samples](https://github.com/avelino/awesome-go/tree/main/impl/files_manipulation)
- [Creating Empty File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/01-CreateEmptyFile.go) - [archive files](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ArchiveFiles.go)
- [Truncate File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/02-TruncateFile.go) - [change file permissions](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ChangeFilePermissions.go)
- [Get File Info](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/03-GetFileInfo.go) - [check file exist](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/CheckFileExist.go)
- [Rename a File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/04-RenameFile.go) - [check file permission](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/CheckFilePermissions.go)
- [Remove a File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/05-RemoveFile.go) - [compress files](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/CompressFile.go)
- [Open ~ Close a File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/06-OpenCloseFile.go) - [copy a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/CopyFile.go)
- [Check File Exist](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/07-CheckFileExist.go) - [create empty file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/CreateEmptyFile.go)
- [Check File Permission](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/08-CheckFilePermissions.go) - [decompress files](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/DecompressFile.go)
- [Change File Permissions](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/09-ChangeFilePermissions.go) - [download file over http](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/DownloadFileOverHTTP.go)
- [Hardlink Symlink](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/10-HardlinkSymlink.go) - [extract files](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ExtractFiles.go)
- [Copy a File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/11-CopyFile.go) - [get file info](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/GetFileInfo.go)
- [Seek Position in a File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/12-SeekPositionInFile.go) - [hardlink symlink](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/HardlinkSymlink.go)
- [Write Bytes to a file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/13-WriteBytesToFile.go) - [hash and checksum](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/HashAndChecksum.go)
- [Quick write to a file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/14-QuickWriteToFile.go) - [hash and checksum2](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/HasAndChecksum2.go)
- [Open file to write](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/15-OpenFileToWrite.go) - [open file to read](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/OpenFileToRead.go)
- [Read from a file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/16-ReadFromFile.go) - [open file to write](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/OpenFileToWrite.go)
- [Open file to read](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/17-OpenFileToRead.go) - [open or close a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/OpenCloseFile.go)
- [Read N bytes from a file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/18-ReadNBytesFromFile.go) - [quick read whole file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/QuickReadWholeFile.go)
- [Read all bytes from a file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/19-ReadAllBytesFromFile.go) - [quick write to a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/QuickWriteToFile.go)
- [Quick readle file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/20-QuickReadWholeFile.go) - [read all bytes from a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ReadAllBytesFromFile.go)
- [Use buffered reader](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/21-UseBufferedReader.go) - [read from a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ReadFromFile.go)
- [Read with scanner](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/22-ReadWithScanner.go) - [read n bytes from a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ReadNBytesFromFile.go)
- [Archieve files](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/23-ArchiveFiles.go) - [read with scanner](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ReadWithScanner.go)
- [Extract Files](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/24-ExtractFiles.go) - [remove a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/RemoveFile.go)
- [Compress files](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/25-CompressFile.go) - [rename a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/RenameFile.go)
- [Decompress files](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/26-DecompressFile.go) - [seek position in a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/SeekPositionInFile.go)
- [Temp files and dirs](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/27-TempFilesAndDirs.go) - [temp files and dirs](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/TempFilesAndDirs.go)
- [Download file over http](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/28-DownloadFileOverHTTP.go) - [truncate file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/TruncateFile.go)
- [Hash and checksum](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/29-HashAndChecksum.go) - [use buffered reader](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/UseBufferedReader.go)
- [Has and checksum2](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/30-HasAndChecksum2.go) - [write bytes to a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/WriteBytesToFile.go)
**[⬆ back to top](#contents)** **[⬆ back to top](#contents)**