Search content
Sort by

Showing 20 of 2,082 results by jasemoney
Post
Topic
Board Announcements (Altcoins)
Re: CiviliXation Digital Economies powered by DTMI Token
by
jasemoney
on 06/07/2020, 02:44:09 UTC
My dtmi coins were on the exchange, they gone now or?
Post
Topic
Board Hardware
Merits 3 from 1 user
Re: GekkoScience NewPac / Terminus R606 (BM1387) Official Support Thread
by
jasemoney
on 14/06/2020, 14:59:29 UTC
⭐ Merited by frodocooper (3)
Just a heads up that for me, updating from 0.19.0.1 to 0.20.0 bitcoin core gave this error in cgminer 4.11.1, "JSON failed to decode GBT". Im just running the NewPac against local wallet so anyone else doing the same may have trouble if they update the local wallet.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Force Network (FOR) Wallet 3.7.1 available now, MN governance coming soon
by
jasemoney
on 12/02/2020, 01:28:09 UTC
Post
Topic
Board Announcements (Altcoins)
Re: Tau-Chain and Agoras Official Thread: Generalized P2P Network
by
jasemoney
on 17/01/2020, 03:56:40 UTC
The chaoex book was showing 75-100 agrs buys and sells around the median of the spread but yeah bcex didnt budge, and both coinmarketcap and coingecko show flags for chaoex. I want to trade but ive been burned on exchanges before so hodling out of this pump.
Post
Topic
Board Announcements (Altcoins)
Re: Tau-Chain and Agoras Official Thread: Generalized P2P Network
by
jasemoney
on 16/01/2020, 02:15:48 UTC
Chaoex with spread from 3k to 30k sats all other exchanges still at like 30 cents. What is going on there?
Post
Topic
Board Announcements (Altcoins)
Re: milestone
by
jasemoney
on 12/04/2019, 00:49:07 UTC
1. The mine source program has been released
2. Mining tools and source programs have been released
3. Licensed a private pool
4. The block is running
This is not "source has been released"  Undecided Undecided
Post
Topic
Board Tokens (Altcoins)
Re: (ANN) CDRcoin: A token with no ico
by
jasemoney
on 07/12/2018, 00:09:39 UTC
Waves Token
Ticker: CDR
Total supply:246,262,462 
https://twitter.com/MDcghd
sweet ann bro
Post
Topic
Board Announcements (Altcoins)
Re: ANN New profit coin!!!!!!!!!!!!!!!!!!!! C2F MN/PoS
by
jasemoney
on 01/12/2018, 15:41:01 UTC
This launch today but trade on escodex since 3 days?
Link to explorer doesnt load for me.
Is this a virus why arent there any specs on this page?
Post
Topic
Board Announcements (Altcoins)
Re: [PRE-ANN] ASTRAL (new x20r) RELEASE TODAY
by
jasemoney
on 29/11/2018, 02:29:00 UTC
publish that github!

*edit, its up!
Post
Topic
Board Announcements (Altcoins)
Re: {ANN}{BitcoinHekaton} ThanksGiving 2018
by
jasemoney
on 23/11/2018, 13:36:31 UTC
happy thanksgiving /s
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Ethercash Scrypt POW/POS Launch!
by
jasemoney
on 17/11/2018, 22:51:56 UTC
Today we will launch the Ethercash Scrypt POW/POS Version

Soon more Details!

Exchange Bounty too
I get it your excited to launch whatever this will become... Why bother putting up an Ann thread without being complete? Were not expecting you so who cares if you wait til its finished to publish rather than pollute the announcements forum with placeholder...
Post
Topic
Board Announcements (Altcoins)
Re: [PRE-ANN] MINATO (rework) | FIRST X18
by
jasemoney
on 15/11/2018, 03:05:55 UTC
missed 0 gmt by 3 hrs..
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][BOOT] Bitcoin-Rebooted
by
jasemoney
on 11/11/2018, 00:17:05 UTC
link to github? I dont see a source posted here or on the site.
the downloads page link gives to a 404 error... Though I wouldnt ever recommend anyone to blindly download from a random website either.

https://bitbucket.org/ccgllc/Bitcoin-Rebooted

Added to the announcement, thanks.

FYI:  Source link is also on the Download page on the coins website - but your point about random websites is 100% valid.

Download link fixed.  



cool thanks
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Sia - Decentralized Storage
by
jasemoney
on 01/11/2018, 23:13:39 UTC
Hi, I have an A3 and I've just let it mine on Antpool since I got the thing and let my coins accumulate there. Looks like Antpool is still up mining something. Do we know anything about that chain theyre on and anyone know if youc an claim both form them (I know prob a better question direct to antpool, but figured id ask here)
Post
Topic
Board Mining (Altcoins)
Re: DDos attack using Antminers (problem and solving from Bitmain)
by
jasemoney
on 25/10/2018, 01:28:57 UTC
Hi again, I've had the problem a few other times even while using the firmware above. The workaround below slipped my mind a couple weeks ago when I rebooted my miners. Within 24 hours I had an abuse report presented to me by the datacenter ops for an ip (miner) of mine participating in an NTP attack against some ip in some other datacenter.
Heres my solution:
Since the data in the antminer's /config/ directory is persistent through reboots, I ssh into the antminer and stored an .sh file there in the config directory.

vi /config/ntpconfig.sh  
Code:
echo "restrict -4 default kod notrap nomodify nopeer noquery" >> /etc/ntp.conf
echo "restrict -6 default kod notrap nomodify nopeer noquery" >> /etc/ntp.conf
/etc/init.d/ntpd restart
save/exit :wq

of course you may need to add execute privilege
Code:
chmod +x /config/ntpconfig.sh

So now I can just ssh into my miner after it reboots and run the /config/ntpconfig.sh program

Of course automating it even further would be ideal and I've attempted that below. Meanwhile I'm working through terminal on a Macbook (i know shhhh you all)

You could of course set up ssh keys and use the default terminal ssh program through mac and send the command over automatically.
BUT! as soon as you reboot those ssh keys will be overwritten and the Mac ssh program doesnt allow passing the password along as an argument. sshpass works on ubuntu also  Smiley
So I used https://gist.github.com/arunoda/7790979 to install "sshpass" which will do just that.

Now I've made a .sh file on the mac that calls the sshpass program, logs into the miner, tells it to run the little config program which mods the NTPconfig and restarts NTP.

nano restartNTP.sh
Code:
sshpass -p ssh -o StrictHostKeyChecking=no root@  "/config/ntpconfig.sh”
of course you may need to add execute privilege
Code:
chmod +x restartNTP.sh

My next task will be setting this to run as a cron job so it does this maybe 2x daily in case a miner randomly restarts!
That or I might get fancy and make a cron job that just reboot my miners daily (so they stop hogging bandwidth as they seem to do after running for a long time) and when they reboot it'll patch the NTP.

what a pain in the ass, hope this finds anyone who stumbles here well. Take care!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][NEW] Injex `Decentralized Network` | PoW | Neoscrypt | Masternode |
by
jasemoney
on 17/10/2018, 10:40:55 UTC
Didnt think to check here, silly me
 Small withdraw went through last night. Large withdraw didnt.
Post
Topic
Board Announcements (Altcoins)
Re: DIGITAL CREDIT (CR) ANNOUNCEMENT
by
jasemoney
on 26/09/2018, 01:43:45 UTC
Why would you bother posting this when nothings ready...
You'll miss out on everyone that sorts by new or uses bots to find new launches.
Your coin will look old and uninteresting by the time you do put up sources.
Its not like we were expcting you to show up, why not wait?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] "AERGO" the Future 4th Generation Enterprise-Ready Blockchain Protocol
by
jasemoney
on 16/09/2018, 19:39:10 UTC
DPOS, how to get coins in the first place, will be mineable or sale?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][PIRATE] A zk-SNARKS transactions only blockchain
by
jasemoney
on 30/08/2018, 23:45:54 UTC
If this is testnet.. will you relaunch at blockheight zero later or is this going to be the main chain assuming nothing implodes.
also..
YArrrrrr & AVAST!
Post
Topic
Board Mining (Altcoins)
Re: DDos attack using Antminers (problem and solving from Bitmain)
by
jasemoney
on 27/07/2018, 02:44:44 UTC
hey having same problem.
tried a few things from this thread.
firstly, I had the regular firmware from Bitmain site, last published 8/25/2017. I did test that writing the 2 lines for restrict -4,-6 were overwritten, and they were. I did also install the linked software from the Bitmain link for the 4/24/2018 firmware. I again tried and again the ntp.conf lines were overwritten.
Next I did try to set the ntp.conf to only read access by "chmod -w ntp.conf" but it was still overwritten on reboot. So I saw online that the dhcpd can overwrite ntp configs so i found the network.sh in init.d and edited that with a "-N" for what looked like the dhcp daemon (its another name than dhcpd, something mini or whatever). anyways on reboot that network.sh also got overwritten.
Finally I did see online also that you could set a renamed copy of ntp.conf and use the rc.local to copy that as the ntp.conf after whatever is doing the overwrite does its thing but before the system intiializes. meanwhile i couldnt find an rc.local and anyways even the myntp.conf I made to test in /etc/ got overwritten.  Roll Eyes

so my goal now is just go it the long way, i dont reset these often. ill just add the 2 lines for restrict and restart the ntp anytime i do a restart

unless you figure that bitmain did something else unrelated to ntp.conf in the 4/24/2018 firmware to fix the problem, because the ntp.conf in the linked firmware is identical to the 8/25/2017 firmware ntp.conf

side note, now that my miners are all on static ips, i am havign a hard time keeping them online. its been a week and one participated in an ntp ddoss while 5 others went offline :/