Bitcoin Forum
July 02, 2024, 12:35:09 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 [147] 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 ... 284 »
2921  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 24, 2015, 03:51:04 PM
Anyone has some update about the PoM?
Did the rewards started to kick in?
Bulldozers out for lunch. Blockreward will go up in a few hours, let's hope to mine some coins, the hashrate has been freaking high these days
I like the idea of the limited pools, all together we have some interesting hash power, if we drop from a pool they surely will notice it, hashpower-boycott!


Not yet ElMacho20000.
I need some more info about the calculations and will contact Historical.
I will work on this! Smiley
2922  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 24, 2015, 01:56:23 PM
I did speed limits a few times already..

If you want i can open a pool with a speed Limit.. Every hash above that Limit would automatically be thrown away.

The question is just: what happens to the regular pool?

I am really glad that you are looking into this.

I don't have all the answers mate. It is your pool and your income is derived from it, so all the decisions are yours to make. Hopefully I have provided the incentive.

Goodonya for everything you have done so far. You have been with XMG from the start.

OCMINER, that would be awesome if you can do that!
And indeed as Spexx already said.
Respect for you amigo. You are with us from the launch of Magi and i'am very happy with that.
2923  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][2nd Proof of Mining Campaign] Coin Magi |PoS-II| PoM|MQW 2nd Pool on: June 24, 2015, 11:28:48 AM
Hello,
I want to join 2nd POM Campaign. Please add me with following information:
pool: xmg.cloud2b.de
username: jamijn
email: jamijn.hd@gmail.com
Thank you so much!

Welcome in the Proof of Mining campaign!
Also welcome in our Magical Magi community!
2924  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 24, 2015, 10:50:07 AM
I have heard from him. He will be back don't worry!
2925  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 24, 2015, 08:51:32 AM
Interesting.
I will follow this project, just keep update sir
Thanks. Welcome in our Magical Magi community!
Any questions just ask here!
2926  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 24, 2015, 07:34:15 AM
It's real amigo. After your post I checked it myself and have no problem with the login!
2927  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 23, 2015, 09:45:12 PM
I just got a notification from DropBox that my download links have been temporarily suspended.

This was almost certainly due to somebody attempting to download the XMG blockchain snapshot file(s) repeatedly today.

I have cleared the download suspension, which I was able to do only because it was a "first offence", but obviously I cannot trust people not to over-use the facility so I have removed the snapshot files and the published links will no longer work.

That is a real shame. DropBox provides a daily limit of 20 GB which ought to be enough seeing as the snapshot files are only 300 MB each. There is always somebody to mess things up though Sad

There will be a snapshot download facility available in the new software I have coming up, but I will not be making the links public again.

Why does somebody need to download it repeatedly?
2928  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 23, 2015, 04:22:59 PM
I've made a Linux script to implement Sweet Spot block targetting,
since the buldozers come, f**k up the block reward and go.

In the last few days there was spikes of the Network hashrate as high of 120 Mh/s,
so there is no point of mining at full speed, when the Network is so far away from ideal speed for ~50 XMG per block.

Here is the code of xmg-sweet.sh that I've been testing for a week now on two of my Ubuntu miners:
Code:
#!/bin/bash
#
#   Sweet Spot block targeting script v0.1
#
### USER DEFINED BLOCK VALUES
# Text file to store max cpu threads
threadsfile=/home/urban/sweet-spot/cpuid.txt
# XMG block value to triger full speed mining
trgtfull=8
# XMG block value to triger mining at 50%
trgthalf=6
###
echo -e "\nPress [CTRL+C] to stop Sweet Spot block targetting...\n"
# INFINITE LOOP #
while :
do

if [ -f $threadsfile ]; then
   cpus=$(<$threadsfile)
else
   grep -c processor /proc/cpuinfo > "$threadsfile"
   cpus=$(<$threadsfile)
fi

maxuse=$((cpus*100))
avrguse=$((maxuse/2))
minuse=$((maxuse/5))

minerpid=$(pidof minerd)

netblock=$(curl -s -k --retry 3 --retry-delay 30 --retry-max-time 15 http://multipools.info/xmg-block-net-info.txt)
net=$(echo $netblock | cut -d "|" -f 1)
bvalue=$(echo $netblock | cut -d "|" -f 2)

echo " ---------------------------------------------------------"
echo -e " | Current Block reward: \e[1;32m$bvalue\e[39;0m XMG. Network speed: \e[1;32m$net\e[39;0m Mh/s."

if [ $(perl -e "($bvalue >= $trgtfull) ? print 1 : print 0") -eq 1 ]; then
echo " |   Switching to Full Speed mining at 100%!"
echo " ---------------------------------------------------------"
# kill cpulimit => full speed
killall -9 cpulimit
elif [ $(perl -e "($bvalue >= $trgthalf) ? print 1 : print 0") -eq 1 ]; then
echo " |   Switching to Power Efficient mining at 50%!"
echo " ---------------------------------------------------------"
# cpulimit @ 50% cpu
killall -9 cpulimit
cpulimit -p $minerpid -b -z -l $avrguse
else
echo " |   Switching to Power Efficient mining at 20%!"
echo " ---------------------------------------------------------"
# cpulimit @ 20% cpu
killall -9 cpulimit
cpulimit -p $minerpid -b -z -l $minuse
fi

sleep 1m
done

The values defining at which block value the miner will go full speed is trgtfull=8 and trgthalf=6 for 50% restricted mining.

In order to work the script needs cpulimit.
You can install it in Ubuntu:
Code:
sudo apt-get update && sudo apt-get install -y cpulimit

I've made an folder, inside of my home dir called sweet-spot and created there the xmg-sweet.sh
by pasting the contents in a newly created file
Code:
nano xmg-sweet.sh

Then I've made the script executable
Code:
chmod +x xmg-sweet.sh

To run it continuously, I've started the script in separate screen so now I can monitor miner's screen and sweet-spot screen when I needed.
Code:
screen -dmS sweet ~/sweet-spot/xmg-sweet.sh

To restore the sweet-spot screen use
Code:
screen -x sweet

Any comments and ideas are welcomed.
Thank you th3.r00t. Nice to see so much activity for Magi. I'am very proud of our Magical Magi community! Working together on the future will make  Magi very strong!
2929  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 23, 2015, 05:48:43 AM

normally you would have to grind(search) those items in the game, but to make it the players easier they'll soon be able to purchase them with xmg

This is will be only possible with XMG, this is a survival game so normally you got nothing and only for XMG we make it possible to get a head start.

To go back to the Counterstrike Source server, also here you can buy stuff for in the game, like skins, light trails, reserved server slot (if the server is full and you want to play someone els who didnt buy a slot will be kicked) ect.

The server will be 24/7 online.

Goldlabel and TF_Outlaw let me know if I can help you guys with something. You know i'am a master in gaming! Grin Grin
2930  Local / Alt Coins (Nederlands) / Re: [XMG] Magi | 1st PoS-II | 1st PoM | Fair Distr | Tor | M7M CPU only on: June 23, 2015, 05:38:57 AM
Ik zal je over anderhalve week hier wel een berichtje met het adres van mijn wallet sturen  Grin
Is goed amigo. Je bent van harte welkom!
2931  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][2nd Proof of Mining Campaign] Coin Magi | PoS-II | PoM|Unique BLK reward on: June 23, 2015, 05:38:03 AM
A couple questions regarding the PoM campaign. I applied today and saw the previous posts, did I miss the boat? Also is having an average of 26-28 khash/second an acceptable amount? I saw that it said to have 100khash but was wondering if it is still ok for people with a lower hash rate to join, also I wasn't sure what to ask for a reward like it asked so I put that I wanted something reasonable to the rate I could mine with for a reward request.
You did not miss this campaign because it is still running. Think whatever hashrate you have its always nice to receive some free XMG
Awesome! Glad I didn't miss it. Another question though, when will I find out if I got accepted into the campaign? Will I get emailed?
Amigo please read the first post here or here:

https://bitcointalk.org/index.php?topic=1095475.0

That info must be there! Wink
2932  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][2nd Proof of Mining Campaign] Coin Magi |PoS-II| PoM|MQW 2nd Pool on: June 23, 2015, 05:36:18 AM
Share informations and the Earned XMG doesnt seem to update
Was just asking tough,might be caused by my Incredibly slow connection that i got worried
But if there's no problem for you then im calmed down again

 Kiss

 Wink Thanks for sharing that information!
2933  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][2nd Proof of Mining Campaign] Coin Magi |PoS-II| PoM|MQW 2nd Pool on: June 22, 2015, 09:27:33 PM
Is the Cloud2b pool okay atm  Huh  Seems it is stuck somehow or is it just my With Glasses powered view wich fails  Roll Eyes
Strange looks fine by me!
2934  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 22, 2015, 09:01:43 PM


Right now is a great time for anyone new to grab a bag. 6000 to 9000 sat is a great price. You can also mine this coin. Overall it's a really good coin. No wonder the community is so strong. I just keep buying more and more of this coin. I'm kind of happy the price hasn't gone up yet. It gives me time to earn a pay check and buy more XMG every 2 weeks.



Nice Fartbags.
Think you are right about the value!
 Smiley
2935  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 22, 2015, 08:53:30 PM

Octoplay join MagiCoin Community

Play on https://www.octoplay.net Blackjack and Slots with your MagiCoins
 

 
Since we think that XMG is one of the Coin’s with a great Future we will from now on Support MagiCoin in our Online Casino www.octoplay.net.
Feel free to join us and deposit some of your MagiCoins and play our brand new Slot’s and Blackjack Game.
 
Looking forward to see you at www.octoplay.net





PS: Our main thread: https://bitcointalk.org/index.php?topic=1086648.0

Check it out and claim our 50% deposit bonus!



Very nice! Thanks for adding Magi.
Welcome in our Magical Magi community!
2936  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 22, 2015, 08:44:39 PM



XMG is the best coin ever!





Thanks for the nice words!
Welcome in our Magical Magi community!




I've been here silently for a long time. I gave XMG praise and supported it since the beginning.
First page: https://bitcointalk.org/index.php?topic=735170.msg8308873#msg8308873


I would want to help out but not really sure what to do. Everything is going well so far. This is going to be one of the best coins around in 5 years when everyone in the world is using cryptocoins.


This might help. Promote XMG on these thread:

https://bitcointalk.org/index.php?topic=1093243.msg11686786#msg11686786

https://bitcointalk.org/index.php?topic=1096629.msg11686817#msg11686817



Thats awesome amigo!
Magi could use always help with promotions!!
Happy you are here!
Thanks for that and feel always welcome!!
2937  Local / Alt Coins (Nederlands) / Re: [XMG] Magi | 1st PoS-II | 1st PoM | Fair Distr | Tor | M7M CPU only on: June 22, 2015, 07:40:59 PM
https://bitcointalk.org/index.php?topic=1096217.0

Informatie over de komende Proof of Interest!!
2938  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][2nd Proof of Mining Campaign] Coin Magi |PoS-II| PoM|MQW 2nd Pool on: June 22, 2015, 07:37:07 PM
Just registered on the Cloud2b pool too  (username:Sajador) and filled the Form for PoM
Also want to spread some of my Hashrate Cheesy and ofcourse Donating even if its just dust with my kinda Weak cpu (Compared to all the others xD)
Datsaja thats really cool amigo!
This is an example why our community is awesome!
Thanks and well done!
2939  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][2nd Proof of Mining Campaign] Coin Magi |PoS-II| PoM|MQW 2nd Pool on: June 22, 2015, 07:36:11 PM
The proceeds are being distributed between 2 months to end of POM right? I understand I'm wrong?

Yes amigo thats right!
2940  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XMG] Coin Magi | CPU mining | PoS-II | PoM | Unique BLK reward | [MagiPay] on: June 22, 2015, 07:04:46 PM



XMG is the best coin ever!





Thanks for the nice words!
Welcome in our Magical Magi community!
Pages: « 1 ... 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 [147] 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 ... 284 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!