Today I’d like to share with you my little knowledge and trick which I use for work with bounties. I hope this trick will be useful to somebody and will save your time, so you can spend time to send merit on my post (hah).
As we all know there is a huge amount of ICO right now and more coming. And we spend just crazy amount of time for writing Articles, making videos and ect.
Completing the forms for the reports takes time as well. Just copying and pasting, copying and pasting, copying and pasting. Egrr..
In this case Macros come to help us.
I use AutoHotkey software, that gives me speed. All I need to do is to press a combination of buttons, and all essential information sending to the form.
Example:
I press Alt+1 – Macros sends my Bitcointalk profile name.
I press Alt+2 – Macros sends my Myetherwallet address.
And ect.
How to use it:
Basically you create the file with your macroses.
So the macros should be with a AHK format. You need to write a combination of signs that means some buttons. Better to read software FAQ. But to save your time, I will give my code example. Feel free to use it.
1) Create a txt file on your Desktop: New Text Document.txt
2) Open that file, copy my script to the blank file and change to your data.
3) Save it like - mymacros.
ahk4) Run it after installing the software from the website.
https://autohotkey.com/ No wories about the viruses, it's safe i use it for a while. Wikipedia Link -
https://en.wikipedia.org/wiki/AutoHotkeyAttention! Do not put there your private keys or passwords! You can do it, but it on your responsibility.!1::
Send, YourBitcoinTalkName
Return
!2::
Send, YourEmail
Return
!3::
Send, YourBitcointalkUserLink
Return
!4::
Send, YourMyetherWalletAdress
Return
!5::
Send, YourMyetherWalletAdressSecond
Return
So as you can see, for one entry you need only one code:
!5::
Send, YourMyetherWalletAdressSecond
Return
!5:: - Means to press Alt+5
Send, - means to send the information after the comma.
Return - means just to put it once.
You can create as many macroses as you need.
Example:
!1::
Send, YourBitcoinTalkName
Return
!2::
Send, YourEmail
Return
!3::
Send, YourBitcointalkUserLink
Return
!4::
Send, YourMyetherWalletAdress
Return
!5::
Send, YourMyetherWalletAdressSecond
Return
!6::
Send, YourMyetherWalletAdressThird
Return
!7::
Send, YourMyetherWalletAdressFourth
Return
!8::
Send, YourMyetherWalletAdressEight
Return
!9::
Send, YourMyetherWalletAdressNine
Return
!0::
Send, YourMyetherWalletAdressTen
Return
!a::
Send, SomeLink
Return