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](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)
- [Data Structures](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/Data%20Structures)
- [Graphs](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Data%20Structures/graphs.go)
- [Linked List](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Data%20Structures/linkedlist.go)
- [Queue](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Data%20Structures/queue.go)
- [Stack](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Data%20Structures/stack.go)
- [Tree](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Data%20Structures/tree.go)
- [Dynamic Programming](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/Dynamic%20Programming)
- [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%20Programming/Fibonacci%20Sequence.go)
- [Longest Common](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Dynamic%20Programming/Longest%20Common%20Subsequence.go)
- [Knapsack Problem](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/Dynamic%20Programming/Knapsack%20Problem.go)
- [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_structures/graphs.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_structures/queue.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_structures/tree.go)
- [Dynamic Programming](https://github.com/avelino/awesome-go/tree/main/impl/algorithms/dynamic_programming)
- [Fibonacci Sequence](https://github.com/avelino/awesome-go/blob/main/impl/algorithms/dynamic_programming/FibonacciSequence.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_programming/LongestCommonSubsequence.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)
- [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)
@ -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)
- [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)
- [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)
- [Truncate File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/02-TruncateFile.go)
- [Get File Info](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/03-GetFileInfo.go)
- [Rename a File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/04-RenameFile.go)
- [Remove a File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/05-RemoveFile.go)
- [Open ~ Close a File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/06-OpenCloseFile.go)
- [Check File Exist](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/07-CheckFileExist.go)
- [Check File Permission](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/08-CheckFilePermissions.go)
- [Change File Permissions](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/09-ChangeFilePermissions.go)
- [Hardlink Symlink](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/10-HardlinkSymlink.go)
- [Copy a File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/11-CopyFile.go)
- [Seek Position in a File](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/12-SeekPositionInFile.go)
- [Write Bytes to a file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/13-WriteBytesToFile.go)
- [Quick write to a file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/14-QuickWriteToFile.go)
- [Open file to write](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/15-OpenFileToWrite.go)
- [Read from a file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/16-ReadFromFile.go)
- [Open file to read](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/17-OpenFileToRead.go)
- [Read N bytes from a file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/18-ReadNBytesFromFile.go)
- [Read all bytes from a file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/19-ReadAllBytesFromFile.go)
- [Quick readle file](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/20-QuickReadWholeFile.go)
- [Use buffered reader](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/21-UseBufferedReader.go)
- [Read with scanner](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/22-ReadWithScanner.go)
- [Archieve files](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/23-ArchiveFiles.go)
- [Extract Files](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/24-ExtractFiles.go)
- [Compress files](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/25-CompressFile.go)
- [Decompress files](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/26-DecompressFile.go)
- [Temp files and dirs](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/27-TempFilesAndDirs.go)
- [Download file over http](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/28-DownloadFileOverHTTP.go)
- [Hash and checksum](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/29-HashAndChecksum.go)
- [Has and checksum2](https://github.com/avelino/awesome-go/blob/main/impl/files-manipulation/30-HasAndChecksum2.go)
- [File samples](https://github.com/avelino/awesome-go/tree/main/impl/files_manipulation)
- [archive files](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ArchiveFiles.go)
- [change file permissions](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ChangeFilePermissions.go)
- [check file exist](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/CheckFileExist.go)
- [check file permission](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/CheckFilePermissions.go)
- [compress files](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/CompressFile.go)
- [copy a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/CopyFile.go)
- [create empty file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/CreateEmptyFile.go)
- [decompress files](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/DecompressFile.go)
- [download file over http](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/DownloadFileOverHTTP.go)
- [extract files](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ExtractFiles.go)
- [get file info](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/GetFileInfo.go)
- [hardlink symlink](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/HardlinkSymlink.go)
- [hash and checksum](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/HashAndChecksum.go)
- [hash and checksum2](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/HasAndChecksum2.go)
- [open file to read](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/OpenFileToRead.go)
- [open file to write](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/OpenFileToWrite.go)
- [open or close a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/OpenCloseFile.go)
- [quick read whole file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/QuickReadWholeFile.go)
- [quick write to a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/QuickWriteToFile.go)
- [read all bytes from a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ReadAllBytesFromFile.go)
- [read from a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ReadFromFile.go)
- [read n bytes from a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ReadNBytesFromFile.go)
- [read with scanner](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/ReadWithScanner.go)
- [remove a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/RemoveFile.go)
- [rename a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/RenameFile.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/TempFilesAndDirs.go)
- [truncate file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/TruncateFile.go)
- [use buffered reader](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/UseBufferedReader.go)
- [write bytes to a file](https://github.com/avelino/awesome-go/blob/main/impl/files_manipulation/WriteBytesToFile.go)
**[⬆ back to top](#contents)**