Author

Topic: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] - page 834. (Read 2375972 times)

legendary
Activity: 1568
Merit: 1000
Twitter @Acimirov
LoL Smiley Vary good. I'm joining for sure!!
legendary
Activity: 1750
Merit: 1005

Magi (XMG)  Proof of Interest II will start on 01-08-2015
Magi will post the rules for this new awesome campaign soon.
There will be more time to register for this Proof of Interest campaign.  Wink

sr. member
Activity: 312
Merit: 250
Thanks for the respons!!
And Congrats amigo!!


Thanks a lot!  Wink
You are so thoughtful.  Smiley
legendary
Activity: 1750
Merit: 1005
http://www.presstab.pw/phpexplorer/NOBL/index.php

Does our Magi community like to have this for Magi?


I kinda like it.  Cool

Does the idea is to set this kind of block explorer just for the POS part of the chain or it will include both, POW and POS blocks?

If that is the case I definitely vote with two hands up!  Wink

Thanks for the respons!!
And Congrats amigo!!

legendary
Activity: 1750
Merit: 1005
Lahlor, check your signature here on bitcointalk.
Seems like "link removed"
You might like to adjust that. Wink
Yeah I tried but I am a newby so cannot create links and so on. Need to post more replys and threads for bettet status... Cry
Ah understand what you mean! Think you need activity 20 to become a junior member.

good to know.. we will see! +1 Smiley
Do you need any help in the Magi Community so I can support you as far as possible?

Yes its always good to have activity in our Magical community.
Share you ideas and skills with me here or pm.
legendary
Activity: 1568
Merit: 1000
Twitter @Acimirov
Follow us on Twitter @103tango @CoinMagi @acimirov for start.

Join #Magi IRC here: https://kiwiirc.com/client/irc.freenode.net/#Magi


 Wink

member
Activity: 98
Merit: 10
Lahlor, check your signature here on bitcointalk.
Seems like "link removed"
You might like to adjust that. Wink
Yeah I tried but I am a newby so cannot create links and so on. Need to post more replys and threads for bettet status... Cry
Ah understand what you mean! Think you need activity 20 to become a junior member.

good to know.. we will see! +1 Smiley
Do you need any help in the Magi Community so I can support you as far as possible?
legendary
Activity: 1750
Merit: 1005
Lahlor, check your signature here on bitcointalk.
Seems like "link removed"
You might like to adjust that. Wink
Yeah I tried but I am a newby so cannot create links and so on. Need to post more replys and threads for bettet status... Cry
Ah understand what you mean! Think you need activity 20 to become a junior member.
member
Activity: 98
Merit: 10
Lahlor, check your signature here on bitcointalk.
Seems like "link removed"
You might like to adjust that. Wink
Yeah I tried but I am a newby so cannot create links and so on. Need to post more replys and threads for bettet status... Cry
legendary
Activity: 1750
Merit: 1005
Lahlor, check your signature here on bitcointalk.
Seems like "link removed"
You might like to adjust that. Wink
member
Activity: 98
Merit: 10
where can I find an api current block reward value on the web ?

I don't have a local XMG wallet on each linux box.


Sent you PM with tech specs Wink

Can I have it too? Smiley

I recall that NeedIfFindIt post somewhere his URL to get JSON from wallet, but it seems that I can't find it.

Hi all,

you can try something like
Code:
#!/bin/bash
value=2
content=$(curl -L http://chainz.cryptoid.info/xmg/api.dws?q=getdifficulty)
if [ $(perl -e "($content >= $value) ? print 1 : print 0") -eq 1 ]
then
echo "Is greater 2"
echo $content
else
echo "Is smaller 2"
echo $content
fi
Where the if else function will trigger script 1 or script 2 (here echo).
sr. member
Activity: 350
Merit: 250
Mining Co-operative
sr. member
Activity: 312
Merit: 250
http://www.presstab.pw/phpexplorer/NOBL/index.php

Does our Magi community like to have this for Magi?


I kinda like it.  Cool

Does the idea is to set this kind of block explorer just for the POS part of the chain or it will include both, POW and POS blocks?

If that is the case I definitely vote with two hands up!  Wink
sr. member
Activity: 312
Merit: 250
where can I find an api current block reward value on the web ?

I don't have a local XMG wallet on each linux box.


Sent you PM with tech specs Wink

Can I have it too? Smiley

I recall that NeedIfFindIt post somewhere his URL to get JSON from wallet, but it seems that I can't find it.
sr. member
Activity: 350
Merit: 250
Mining Co-operative
where can I find an api current block reward value on the web ?

I don't have a local XMG wallet on each linux box.


Sent you PM with tech specs Wink
newbie
Activity: 23
Merit: 0
 where can I find an api current block reward value on the web ?

I don't have a local XMG wallet on each linux box.
sr. member
Activity: 350
Merit: 250
Mining Co-operative
Hello

Does anybody managed to create a linux script similar to Sweet Spot Magi Miner ?
I'm thinking a basic bash if - then script cron'ed every 10-15 minutes.


if difficulty is between 0,3 and 1,9 then run script1

if difficulty is below 0,1 (POS difficulty) keep the running script (do nothing)

if difficulty is above 2 run script2

script1 is for using lots of CPU cores and script2 for saving energy


at this link one can get the POS and POW difficulty
http://chainz.cryptoid.info/xmg/api.dws?q=getdifficulty


anybody with programing skills ? Smiley

Thank you!

If you want a version of Sweet Spot for Linux, the source code is available and you can compile it yourself.

http://xmg.makejar.com/

If you want to knock up some bash scripts using the difficulty information, the info can also be obtained from a XMG wallet running locally via the built-in api. Imho the most valuable info is the current block reward value rather than the block difficulty or nethashrate etc. This info is also available via the api and can be viewed in the wallet application via the Help - Debug window - Console and then type getminininfo and press the return key.
member
Activity: 98
Merit: 10
Hello

Does anybody managed to create a linux script similar to Sweet Spot Magi Miner ?
I'm thinking a basic bash if - then script cron'ed every 10-15 minutes.


if difficulty is between 0,3 and 1,9 then run script1

if difficulty is below 0,1 (POS difficulty) keep the running script (do nothing)

if difficulty is above 2 run script2

script1 is for using lots of CPU cores and script2 for saving energy


at this link one can get the POS and POW difficulty
http://chainz.cryptoid.info/xmg/api.dws?q=getdifficulty


anybody with programing skills ? Smiley

Thank you!





Will have a look at it after work. Will post it here if I have such a script. But should be easy I think.
newbie
Activity: 23
Merit: 0
Hello

Does anybody managed to create a linux script similar to Sweet Spot Magi Miner ?
I'm thinking a basic bash if - then script cron'ed every 10-15 minutes.


if difficulty is between 0,3 and 1,9 then run script1

if difficulty is below 0,1 (POS difficulty) keep the running script (do nothing)

if difficulty is above 2 run script2

script1 is for using lots of CPU cores and script2 for saving energy


at this link one can get the POS and POW difficulty
http://chainz.cryptoid.info/xmg/api.dws?q=getdifficulty


anybody with programing skills ? Smiley

Thank you!



legendary
Activity: 1750
Merit: 1005

I was going to ask why the PoM pool ( https://pom.m-hash.com ) is not present on that nice page?

It's gonna be added today, I'll keep you updated on this when it's added.

PoM Pool has been added to http://poolinfo.coinmagi.org/
Thanks ex33s. Thats really nice!

If somebody has some free minutes, take a look at this question. https://bitcointalksearch.org/topic/m.11636202
I would like to have little more respons on this one before investing in this development.
Thanks in advance!
Jump to: