Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
riccio333 committed Jul 11, 2022
1 parent 8a88240 commit c0ca4a2
Show file tree
Hide file tree
Showing 11 changed files with 40 additions and 3 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/0x Converter/v17/.suo
Binary file not shown.
41 changes: 39 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,39 @@
# 0x-Converter
A simple converter to convert string values to others.
# 0x Converter
This converter can convert string values like:
- Text
- Binary
- Hex
- Ascii
- Base64
- Octal
//screen dello start del programma
## The program
I made some checkboxes in the converter to make things easier. So if someone wants the binary string with spaces he can select the "with spaces" checkbox and copy the value.

For long strings obviously the program can't display all the text on the label, so you can copy the values and paste them somewhere. I also made a "copy all" button that copy all values so when you paste the values will be displayed like this:

//screen del programma con scritte

Text: Hello World!
Binary: 010010000110010101101100011011000110111100100000010101110110111101110010011011000110010000100001
Hex: 48656C6C6F20576F726C6421
ASCII: 72101108108111328711111410810033
Base64: SGVsbG8gV29ybGQh
Octal: 1101451541541574012715716215414441

//screen del programma con scritte2

Text: Hello World!
Binary: 01001000 01100101 01101100 01101100 01101111 00100000 01010111 01101111 01110010 01101100 01100100 00100001
Hex: 48-65-6C-6C-6F-20-57-6F-72-6C-64-21
ASCII: 72 101 108 108 111 32 87 111 114 108 100 33
Base64: SGVsbG8gV29ybGQh
Octal: 110 145 154 154 157 40 127 157 162 154 144 41

## Bugs
I worked a lot on this project *(and sometimes I closed the project for some days because it was too boring to code and full of bugs)* and I'm an uman, so I can also do some mistakes. If you found any bugs contact me please and tell me about the bug that you found and also send some screenshots or video. (https://riccio333.space/contacts)

*p.s.: I'm not <u>100% sure</u> that conversion from <u>ASCII or base64</u> to others values **are right.** For example I converted If you have any suggestions to fix the code to convert from this values to others they are welcome.*

## Using my code
If you need some parts of my code to put in your project **you can do it**, but if you need then to **publish** your program/project to GitHub or any other site **remember to put a comment with my repository link** ( //https://github.com/riccio333/0x-converter ) for respect of who made the code and who is watching your code, so in case they can't understand something they can also watch my repository (this also applies to any other people on GitHub). **Thank you.**
Binary file modified bin/Debug/0x Converter.exe
Binary file not shown.
Binary file modified bin/Debug/0x Converter.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion converter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@ private void guna2ControlBox1_Click(object sender, EventArgs e)

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/riccio333/0x-converter");
System.Diagnostics.Process.Start("https://github.com/riccio333/0x-Converter");
}
}
}
Binary file modified obj/Debug/0x Converter.exe
Binary file not shown.
Binary file modified obj/Debug/0x Converter.pdb
Binary file not shown.

0 comments on commit c0ca4a2

Please sign in to comment.