Author

Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency - page 3627. (Read 9723733 times)

legendary
Activity: 966
Merit: 1000
From the crouton-is-still-half-asleep-and-full-of-batshit-notions department: https://darkcointalk.org/threads/internet-catastrophe-masternodes-to-the-rescue.2913/

The major disadvantage of all cryptocurrencies versus cash is that without connectivity, they are all completely fucking useless, and therefore worthless.

Can we solve that with Masternode mesh blockchain technology?

I think this should be made to exist. Anyone here know much about crowdfunding?  

Darkcoin. Private. Instant transactions. Works on MarsGrin




*space/underwater/middle of the ocean/up Everest, if you have a wireless router running a MN onboard your spaceship/submarine/ocean liner/sherpa.



This would be like a perfect dream.

There have been some talks on the subject elsewhere (Can bitcoin survive without the Internet?, Nick Szabo: "Reliable & secure P2P broadcast crucial to block chain protocols. Radio more secure than simulated broadcast on Internet.", and [BitPool] Mesh networks to bypass ISPs, for example) and although this seems to be a very important subject no final solutions have yet been brought up.

The point is that in case of a major Internet failure (caused by wars, natural disasters, corrupt governments, etc) the blockchain would become "hostage". The idea is to have a "backup network"  in wich Darkcoin could function: An indepentent mesh network to coexist running in parallel with the Internet, but with its own infrastructure.

Maybe the Masternode technology will finally make it possible.


Thanks for the links.

DrCrypto on DCT brought up a good problem: in the case that someone else on the 'main' network also has access to the funds in a wallet, they could be double spent on the 'main' and 'offline' networks. Kind of a fringe case but no answer to it has yet occurred to me.
sr. member
Activity: 308
Merit: 250
From the crouton-is-still-half-asleep-and-full-of-batshit-notions department: https://darkcointalk.org/threads/internet-catastrophe-masternodes-to-the-rescue.2913/

The major disadvantage of all cryptocurrencies versus cash is that without connectivity, they are all completely fucking useless, and therefore worthless.

Can we solve that with Masternode mesh blockchain technology?

I think this should be made to exist. Anyone here know much about crowdfunding?  

Darkcoin. Private. Instant transactions. Works on MarsGrin




*space/underwater/middle of the ocean/up Everest, if you have a wireless router running a MN onboard your spaceship/submarine/ocean liner/sherpa.



This would be like a perfect dream.

There have been some talks on the subject elsewhere (Can bitcoin survive without the Internet?, Nick Szabo: "Reliable & secure P2P broadcast crucial to block chain protocols. Radio more secure than simulated broadcast on Internet.", and [BitPool] Mesh networks to bypass ISPs, for example) and although this seems to be a very important subject no final solutions have yet been brought up.

The point is that in case of a major Internet failure (caused by wars, natural disasters, corrupt governments, etc) the blockchain would become "hostage". The idea is to have a "backup network"  in wich Darkcoin could function: An indepentent mesh network to coexist running in parallel with the Internet, but with its own infrastructure.

Maybe the Masternode technology will finally make it possible.
legendary
Activity: 966
Merit: 1000
From the crouton-is-still-half-asleep-and-full-of-batshit-notions department: https://darkcointalk.org/threads/internet-catastrophe-masternodes-to-the-rescue.2913/

The major disadvantage of all cryptocurrencies versus cash is that without connectivity, they are all completely fucking useless, and therefore worthless.

Can we solve that with Masternode mesh blockchain technology?

I think this should be made to exist. Anyone here know much about crowdfunding?  

Darkcoin. Private. Instant transactions. Works on MarsGrin




*space/underwater/middle of the ocean/up Everest, if you have a wireless router running a MN onboard your spaceship/submarine/ocean liner/sherpa.

legendary
Activity: 1372
Merit: 1005
DASH is the future of crypto payments!
what is your hash speed in r9 280x?
4.25MHs

Could you please post your OS, Driver version, Mining Software & Settings you use.

Thanks!
sure
in 3h30min... Let me finish my work

Sooo.....

sgminer 4.2.2
amd drivers 14.6

config:

sgminer.exe -k darkcoin-mod "pools and backups of the pools" --failover-switch-delay 60 --no-submit-stale --gpu-dyninterval 7 --gpu-platform 0 --api-mcast-port 4028 --api-port 4028 --expiry 1 --log 5 --no-pool-disable --tcp-keepalive 30 --temp-hysteresis 3 --shares 0 --vectors 1 --expiry 1 --queue 0 --scan-time 1 --gpu-engine 1080 --gpu-memclock 1450 -g 2 -w 128 --lookup-gap 2 -I 18 --thread-concurrency 8192 --shaders 2048

You are a legend! thanks

Is this on Linux or Windows?
WIN, I had before 1120@1550 clock/mem but wanted lower temp as the gpu is in case. Wink
full member
Activity: 166
Merit: 100
I am glad to say that i'm now confident enough to help people who are having difficulties with setting up a masternode.

people that have questions can PM me, or you can of course still go with the people who have been providing this service for months and are super solid as well. of course I'm talking about ghostplayer and mangled blue

legendary
Activity: 966
Merit: 1000
Does anybody know the exact dates/block heights at which the masternode payments percentage increases?

I'm sure I saw it on here before but I can't find it now.

Code:
int64 GetMasternodePayment(int nHeight, int64 blockValue)
{
    int64 ret = blockValue/5; // start at 20%
...
    if(nHeight > 158000)              ret += blockValue / 20;  //25.0%  - 2014-10-23
    if(nHeight > 158000+((576*30)*1)) ret += blockValue / 20;  //30.0%  - 2014-11-23
    if(nHeight > 158000+((576*30)*2)) ret += blockValue / 20;  //35.0%  - 2014-12-23
    if(nHeight > 158000+((576*30)*3)) ret += blockValue / 40;  //37.5%  - 2015-01-23
    if(nHeight > 158000+((576*30)*4)) ret += blockValue / 40;  //40.0%  - 2015-02-23
    if(nHeight > 158000+((576*30)*5)) ret += blockValue / 40;  //42.5%  - 2015-03-23
    if(nHeight > 158000+((576*30)*6)) ret += blockValue / 40;  //45.0%  - 2015-04-23
    if(nHeight > 158000+((576*30)*7)) ret += blockValue / 40;  //47.5%  - 2015-05-23
    if(nHeight > 158000+((576*30)*9)) ret += blockValue / 40;  //50.0%  - 2015-07-23
    if(nHeight > 158000+((576*30)*11)) ret += blockValue / 40; //52.5%  - 2015-09-23
    if(nHeight > 158000+((576*30)*13)) ret += blockValue / 40; //55.0%  - 2015-11-23
    if(nHeight > 158000+((576*30)*15)) ret += blockValue / 40; //57.5%  - 2016-01-23
    if(nHeight > 158000+((576*30)*17)) ret += blockValue / 40; //60.0%  - 2016-03-23

    return ret;
}
sr. member
Activity: 460
Merit: 250
Does anybody know the exact dates/block heights at which the masternode payments percentage increases?

I'm sure I saw it on here before but I can't find it now.
sr. member
Activity: 350
Merit: 250
Waterfall pattern on low-volume about to continue... Perfect fractal from 10/13-23 equates to 10/29-today...

Basically what happened from 10/24-28 is about to happen over the next 2 days. Even volume is nearly identical.
Target .0047 in the short-term.
Break above .0054 could negate it though.

Edit: and fyi XCP is about to breakout. High volume large green volume bars, low volume red bars. Accumulation here at a snails pace, similar to DRK pre-May.

JL

Bro, your last calls seem pretty good but have to disagree with these.

Regarding DRK, instantTX code is 100% complete and should hit testnet in the next few weeks. On top of that we have huge publicity from the recent wired article and related twitter storm. I've seen lots of newbs on twitter asking if it's too late to buy darkcoin (hint - no!). Two extremely positive fundamental developments that I believe outweigh your TA observation. Anyways how many other traders use fractals, especially in thinly traded crypto.

Regarding XCP, and I don't want to go too far off-topic here, but the time to buy XCP was a week ago after the SEC scare when it was 40% below today's price. If you think there will be a break out on XCP I would consider VIA/XCH. A crypto 2.0 rising tide will lift all boats. Note: I currently have a stake in VIA & XCH.

Anyways I continue to enjoy your analysis even if I disagree with it sometimes!
legendary
Activity: 1442
Merit: 1018
what is your hash speed in r9 280x?
4.25MHs

Could you please post your OS, Driver version, Mining Software & Settings you use.

Thanks!
sure
in 3h30min... Let me finish my work

Sooo.....

sgminer 4.2.2
amd drivers 14.6

config:

sgminer.exe -k darkcoin-mod "pools and backups of the pools" --failover-switch-delay 60 --no-submit-stale --gpu-dyninterval 7 --gpu-platform 0 --api-mcast-port 4028 --api-port 4028 --expiry 1 --log 5 --no-pool-disable --tcp-keepalive 30 --temp-hysteresis 3 --shares 0 --vectors 1 --expiry 1 --queue 0 --scan-time 1 --gpu-engine 1080 --gpu-memclock 1450 -g 2 -w 128 --lookup-gap 2 -I 18 --thread-concurrency 8192 --shaders 2048

You are a legend! thanks

Is this on Linux or Windows?

Windows as he is running an exe file with all the arguments.
legendary
Activity: 1036
Merit: 1000
what is your hash speed in r9 280x?
4.25MHs

Could you please post your OS, Driver version, Mining Software & Settings you use.

Thanks!
sure
in 3h30min... Let me finish my work

Sooo.....

sgminer 4.2.2
amd drivers 14.6

config:

sgminer.exe -k darkcoin-mod "pools and backups of the pools" --failover-switch-delay 60 --no-submit-stale --gpu-dyninterval 7 --gpu-platform 0 --api-mcast-port 4028 --api-port 4028 --expiry 1 --log 5 --no-pool-disable --tcp-keepalive 30 --temp-hysteresis 3 --shares 0 --vectors 1 --expiry 1 --queue 0 --scan-time 1 --gpu-engine 1080 --gpu-memclock 1450 -g 2 -w 128 --lookup-gap 2 -I 18 --thread-concurrency 8192 --shaders 2048

You are a legend! thanks

Is this on Linux or Windows?
legendary
Activity: 1372
Merit: 1005
DASH is the future of crypto payments!
what is your hash speed in r9 280x?
4.25MHs

Could you please post your OS, Driver version, Mining Software & Settings you use.

Thanks!
sure
in 3h30min... Let me finish my work

Sooo.....

sgminer 4.2.2
amd drivers 14.6

config:

sgminer.exe -k darkcoin-mod "pools and backups of the pools" --failover-switch-delay 60 --no-submit-stale --gpu-dyninterval 7 --gpu-platform 0 --api-mcast-port 4028 --api-port 4028 --expiry 1 --log 5 --no-pool-disable --tcp-keepalive 30 --temp-hysteresis 3 --shares 0 --vectors 1 --expiry 1 --queue 0 --scan-time 1 --gpu-engine 1080 --gpu-memclock 1450 -g 2 -w 128 --lookup-gap 2 -I 18 --thread-concurrency 8192 --shaders 2048
legendary
Activity: 1372
Merit: 1005
DASH is the future of crypto payments!
Lots of Polish folk in here, love it.  Jak się mamy?

Nieźle, ile jest nas tutaj?
sporo ! Tongue please write ENG
full member
Activity: 163
Merit: 100
Waterfall pattern on low-volume about to continue... Perfect fractal from 10/13-23 equates to 10/29-today...

Basically what happened from 10/24-28 is about to happen over the next 2 days. Even volume is nearly identical.
Target .0047 in the short-term.
Break above .0054 could negate it though.

Edit: and fyi XCP is about to breakout. High volume large green volume bars, low volume red bars. Accumulation here at a snails pace, similar to DRK pre-May.

JL

on 20k of volume lol, DRK was doing 200K minimum in pre-May.
sr. member
Activity: 462
Merit: 250
Waterfall pattern on low-volume about to continue... Perfect fractal from 10/13-23 equates to 10/29-today...

Basically what happened from 10/24-28 is about to happen over the next 2 days. Even volume is nearly identical.
Target .0047 in the short-term.
Break above .0054 could negate it though.

Edit: and fyi XCP is about to breakout. High volume large green volume bars, low volume red bars. Accumulation here at a snails pace, similar to DRK pre-May.

JL
full member
Activity: 163
Merit: 100
Lots of Polish folk in here, love it.  Jak się mamy?

Nieźle, ile jest nas tutaj?
legendary
Activity: 1068
Merit: 1020
Lots of Polish folk in here, love it.  Jak się mamy?
legendary
Activity: 1372
Merit: 1005
DASH is the future of crypto payments!
what is your hash speed in r9 280x?
4.25MHs

Could you please post your OS, Driver version, Mining Software & Settings you use.

Thanks!
sure
in 3h30min... Let me finish my work
sr. member
Activity: 462
Merit: 250
www.dashpay.io
So if I hold my drk til I die, does that mean I have to read shojays comments for the rest of my life? Think I might just KMS.

You just can't stand to hear anything that goes against your narrow view of the world and how things work can you?  Please either put me on ignore or KYS.  Problem solved.  

Shojayxt since the lobotomy you're substantially improved (actually more of a road-to-Damascus-conversion really) but people here have long memories and recall just what a complete tool you were back in your trolling days. I'm not saying that some of what you wrote in the past wasn't relevant or didn't have some truth (and the need to get everyone to undergo reality checks within fan-boy movements is important), but your MO was to put shit on just about everyone here in the DRK thread and boast about how much more successful you were jumping in and out of DRK continually while the "losers" just retained their DRK holdings in MNs. Many of us that have invested in MNs and refrained from being part of the mad trading scene have helped to maintain stability throughout this crypto winter, not that trading isn't essential to how assets like this work, but your continuous criticism and expression of disdain for the people here who've believed in DRK and stayed the course was pretty offensive and frankly you owe an apology.

I'm not buying it either, he's attempting to do a blend of Long Troll and Concern Troll for all the n00bs, because they won't have him on ignore, yet...
legendary
Activity: 1318
Merit: 1040
Used to hate on darkcoin to be honest. After reading a certain article today darkcoins got my vote. Beyond impressed with the work thats been done since this coin first launched. Keep up the good work
That reminds me kind of this reaction
http://www.youtube.com/watch?v=xUNGFZDO8mM#t=2500
Wink

btw, ^^^ that's the great speech by Andreas M. Antonopoulos, highly recommend everyone to watch at least once
Jump to: