-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
bytecode77
committed
Dec 9, 2023
1 parent
1040086
commit 5fc522e
Showing
30 changed files
with
330 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# BytecodeApi.CommandLineParser | ||
|
||
Library for commandline parsing and handling. | ||
Library for commandline parsing and handling. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.CommandLineParser/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,4 +96,10 @@ new OptionSet("-", "--") | |
); | ||
``` | ||
|
||
</details> | ||
</details> | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# BytecodeApi.ConsoleUI | ||
|
||
Console input & output library. | ||
Console input & output library. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.ConsoleUI/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# BytecodeApi.Cryptography | ||
|
||
Library for encryption & hashing and other cryptographic operations. | ||
Library for encryption & hashing and other cryptographic operations. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.Cryptography/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# BytecodeApi.CsvParser | ||
|
||
Library for CSV parsing and writing. | ||
Library for CSV parsing and writing. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.CsvParser/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# BytecodeApi.IniParser | ||
|
||
Library for INI file reading and writing. | ||
Library for INI file reading and writing. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.IniParser/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# BytecodeApi.LanguageGenerator | ||
|
||
Library for arbitrary generation of words, sentences, names, and other language elements. | ||
Library for arbitrary generation of words, sentences, names, and other language elements. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.LanguageGenerator/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
# BytecodeApi.Lexer | ||
|
||
General purpose tokenizer for parsing of any syntax. | ||
General purpose tokenizer for parsing of any syntax. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.Lexer/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release | ||
|
||
### 3.0.1 (27.09.2023) | ||
|
||
* **new:** `Lexer` method overloads with `RegexOptions` parameter | ||
* **change:** Replaced `Func<string, string>?` parameters with `Func<Match, string>?` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# BytecodeApi.PEParser | ||
|
||
Library for PE file parsing. | ||
Library for PE file parsing. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.PEParser/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# BytecodeApi.PEResources | ||
|
||
Library for reading of native resources of executables & DLL files. | ||
Library for reading of native resources of executables & DLL files. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.PEResources/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# BytecodeApi.Penetration | ||
|
||
Basic implementations of certain penetration testing routines, such as code injection. | ||
Basic implementations of certain penetration testing routines, such as code injection. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.Penetration/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# BytecodeApi.Rest | ||
|
||
Fluent REST client. | ||
Fluent REST client. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.Rest/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,4 +65,10 @@ catch (RestException ex) | |
} | ||
``` | ||
|
||
</details> | ||
</details> | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
# BytecodeApi.Win32 | ||
|
||
Library for querying Windows specific operating system data. | ||
Library for querying Windows specific operating system data. | ||
|
||
## Examples | ||
|
||
See: [Examples](https://github.com/bytecode77/bytecode-api/blob/master/BytecodeApi.Win32/README.md) | ||
|
||
## Changelog | ||
|
||
### 3.0.0 (08.09.2023) | ||
|
||
* Initial release | ||
|
||
### 3.0.1 (27.09.2023) | ||
|
||
* **new:** `HardwareInfo.TotalMemory` and `AvailableMemory` | ||
* **removed:** `HardwareInfo.Memory` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.