Add project links
This commit is contained in:
parent
8c1c5f10cc
commit
9d0e73622c
3 changed files with 18 additions and 6 deletions
|
@ -10,4 +10,10 @@ Obviously there are many different ways, and probably far better ways of doing t
|
||||||
|
|
||||||
Below you can find a download link to the application, as well as a link to the source code. I am hoping to upgrade the project in the future to allow for automated triggering, a much faster UI, with options, as well as a simple one-click setup and BSOD.
|
Below you can find a download link to the application, as well as a link to the source code. I am hoping to upgrade the project in the future to allow for automated triggering, a much faster UI, with options, as well as a simple one-click setup and BSOD.
|
||||||
|
|
||||||
### Links coming soon!
|
|
||||||
|
<div class="btn-group btn-group-justified">
|
||||||
|
<p class="center-text">
|
||||||
|
<a class="btn btn-primary btn-lg" href="" download="BSOD_Enabler.exe">Download BSOD Enabler Here</a>
|
||||||
|
<a class="btn btn-default btn-lg" href="javascript:alert('Coming in next version.');">View on Github <i class="icon ion-social-github"></i></a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
|
@ -10,4 +10,8 @@ Fortunately after many hours of testing, and changing the code, I finally got ev
|
||||||
|
|
||||||
Currently the application is in very beta stages right now, only having tested partial support for github, but the code is all available on GitHub, if people have their own suggestions of improvements.
|
Currently the application is in very beta stages right now, only having tested partial support for github, but the code is all available on GitHub, if people have their own suggestions of improvements.
|
||||||
|
|
||||||
#### Links coming soon
|
<div class="btn-group btn-group-justified">
|
||||||
|
<p class="center-text">
|
||||||
|
<a class="btn btn-default btn-lg" href="https://github.com/RealOrangeOne/hipchat-emoticons-for-all">View on Github <i class="icon ion-social-github"></i></a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
|
@ -1,13 +1,15 @@
|
||||||
# Morse Code Decoder
|
# Morse Code Decoder
|
||||||
|
|
||||||
It's not often someone will need to decode text into morse code (and visa-versa), but if I had something like this when I needed it, it would have saved me hours of time! I originally wrote this code for the Student Robotics 2015 Entry, to convert a string message into a morse code message that would be transmitted using LEDs, for aestetics and debugging. Unfortunately due to a fixed time frame, this idea was scraped before it could be fully implemented. Fortunately the decoder worked perfectly!
|
It's not often someone will need to decode text into morse code (and visa-versa), but if I had something like this when I needed it, it would have saved me hours of time!
|
||||||
|
|
||||||
|
I originally wrote this code for the [Student Robotics 2015]({% url 'robotics:2015-index' %}) Entry, to convert a string message into a morse code message that would be transmitted using LEDs, for aestetics and debugging. Unfortunately due to a fixed time frame, this idea was scraped before it could be fully implemented. Fortunately the decoder worked perfectly!
|
||||||
|
|
||||||
Originally I had written the code in python, but to make it much more useful for people, I've removed the decoding part of the code, and converted the information into JSON, so it can be used in a variety of different languages easily.
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Because the format is JSON, the library can be used in a wide variety of different languages. Just make sure to look up how to read JSON files in your chosen language, and it should work perfectly!
|
In order to make it accessable for as many people in as many different languages as possible, the data is in JSON format. Just find a JSON library for your desired language, and it'll work perfectly!
|
||||||
|
|
||||||
The source of the library is on github as a gist. I recommend downloading the file to use yourself, however for testing you can use githubs raw view as a hotlink.
|
The source of the library is on github as a gist. I recommend downloading the file to use yourself, however for testing you can use githubs raw view as a hotlink.
|
||||||
|
|
||||||
### Links coming soon!
|
|
||||||
|
<script src="https://gist.github.com/RealOrangeOne/6dc94875c93b787e5834.js"></script>
|
||||||
|
|
Reference in a new issue