Bitcoin Forum
May 27, 2024, 01:26:48 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 »
241  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] IXCoin [IXC] The Original Bitcoin Sidechain on: January 13, 2021, 07:09:43 PM

CataCata, I’ve been able to find a coder to help out.  The negative is that he’s still learning so it may take time (soon), the positive is that it’s my son so it’s free slave labor.  Character building stuff.  Doing everything I can with what I got.  Smiley




Send me one with the 2014 logo below Wink - iXcoin - copying bitcoin means copying bitcoin (at least until v 0.9.0 when Bitcoin Core began restricting the protocol, however merge mining retains data on all chains and all these early Bitcoin 2.0/layer 2/smart protocols already on chain from early 2014 and beforehand. Color me crazy? All the smart money is headed to Ixcoin per "vitalik.eth" Smiley remember?



Some reading to spark interest...
https://github.com/devcoin/core/commits/devcoin0.9.2 (reaction to bitcoin v0.9.0 protocol 70002 restrictions on CP/OP_RETURN)
https://www.coindesk.com/developers-battle-bitcoin-block-chain (story on Counterparty.co and bitcoin "core developers" battle)
https://www.coindesk.com/bitcoin-core-dev-update-5-transaction-fees-embedded-data Originally 2013 announced plans for 0.9 sparked CP idea
https://en.bitcoin.it/wiki/Smart_Property (via prev announced OP_RETURN 80 bytes allowing CP protocol to work as originally written)
https://www.devtome.com/ixcoin_-_the_surviving_odd_coin (devtome info on iXcoin from 2014, v 0.8.6 test and old 0.3.24 version for windows)
https://github.com/knotwork/old-devcoin-qt/commit/95a21c762cbc603126caefdd82d2492443fa7c8c markm (Mark Metson "knotwork") old-devcoin-qt "to add merge mining to it"/commit for new seeds w/ unannounced changes to png/svg files from original Bitcoin "qt"/GUI May 12, 2013

"IXCoin, same spelling from Devcoin co-founder, creator as 2014 logo contest accepted here and pink logo"


If Counterparty type protocols work on bitcoin presumably they should be able to work on IXCoin.

Looks like we have some work left "TODO" here.



Think (OTC) Pink - everything done manually, on other platforms (tokens of the GM include IXC on Horizon, DOTS - Open Txs, Stellar) "over the counter" no automagically on chain, but maybe partially written to chain and different DLT (Horizon blockchain, Stellar DEX/Ledger, kept track of in parallel chainz via merge mining but Bitcoin Core nodes rejecting them as valid on their "BTC value end", doesn't mean its not there.

https://bitcoin-otc.com/

Bitcoin OTC marketplace - off-chain trades for BTC, from these early days for other currencies - through IRC Smiley
Quote
"#bitcoin-otc marketplace
#bitcoin-otc is an over-the-counter marketplace for trading with bitcoin. The marketplace is located in #bitcoin-otc channel on the freenode IRC network. If you don't have an IRC client, click here to visit the channel with your web browser.

Quote
To complement the OTC marketplace, we offer a web of trust service. Due to the p2p nature of OTC transactions, you are exposed to counterparty risk. To mitigate this risk, you need to have access to your counterparty's reputation and trade history. This is precisely the kind of information that the OTC web of trust provides.

Are we using a combination of alt chain, original testnets, other nodes and merge mined projects, to abstract true value from the main Bitcoin network? You bet.



OTC doesn't mean just value in currency for crypto, it means what is OTC hashed onto different chains from transactions made directly out of one chain and into another, just manually inserted by the parties involved. Automagical relay requires time and interoperable relay / consensus.

Also a protocol change away from making all nodes whether IXC, DVC, I0C, CLC, GRP, NMC, XGG, and this current Bitcoin Core dominated Bitcoin Network from relaying interoperable data. Old data already written there - colored satoshis, bitcoins, you name it. Merge mining means at least this all relays back to Dec 29, 2011 from the knotwork repository I linked. Probably why that very initial commit has the patch here (https://github.com/knotwork/old-devcoin-qt/commit/14c8f0e47894790d4eb3e683fe0440d56fd1f694#diff-c67444ecf75e00c9c2e229b32ad6db8361bd999741dbc02d169f70cc42e8f7dfR933) and mentions Ixcoin Miner, I0coin Miner, to implement merge mining in that tweaked old-devcoin-qt GUI  Smiley

Code:
 CBlock* CreateNewBlock(CReserveKey& reservekey)
 {
     CBlockIndex* pindexPrev = pindexBest;
@@ -2925,11 +3001,35 @@ bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
     uint256 hash = pblock->GetHash();
     uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();

-    if (hash > hashTarget)
-        return false;
+    CAuxPow *auxpow = pblock->auxpow.get();
+
+    if (auxpow != NULL)
+    {
+        if (!auxpow->Check(hash, pblock->GetChainID()))
+            return error("AUX POW is not valid");
+
+        if (auxpow->GetParentBlockHash() > hashTarget)
+            return error("AUX POW parent hash %s is not under target %s", auxpow->GetParentBlockHash().GetHex().c_str(), hashTarget.GetHex().c_str());
+
+        //// debug print
+        printf("I0coinMiner:\n");
+        printf("AUX proof-of-work found  \n     our hash: %s   \n  parent hash: %s  \n       target: %s\n",
+                hash.GetHex().c_str(),
+                auxpow->GetParentBlockHash().GetHex().c_str(),
+                hashTarget.GetHex().c_str());
+    }
+    else
+    {
+        if (hash > hashTarget)
+            return false;

+        //// debug print
+        printf("I0coinMiner:\n");
+        printf("proof-of-work found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
+    }
+
     //// debug print
-    printf("BitcoinMiner:\n");
+    printf("IxcoinMiner:\n");
     printf("proof-of-work found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
     pblock->print();
     printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
@@ -3152,3 +3252,22 @@ void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
         }
     }
 }

But you know this already. I just am providing a reason to stay optimistic. Many manual and OTC like direct transactions of value and relay of different code on different chains done without being relayed, yet very much accounted for by the oldest and longest continuously running/surviving projects.

"BitcoinX" (Colored Coins, EPOBC, colored satoshis) and the detail in the citations. What DNS did original token protocols reference on Bitcoin as layer 2 began on the base bitcoin block chain layer. Parallel to where the early altcoin protocols began under Bitcoin Project Development attached to the post 2011 new "official" Bitcoin Project home domain, formerly host of the official community forums that early alt/mm with Bitcoin projects were born of, along with one of satoshi's last protocol discussions "bitDNS" Smiley. Whats in a name?  Grin

Would I be upset if on this end that a one satoshi value of DVC was in fact colored in a way that the code is there all over say, non standard Bitcoin coinbase txs, but accepted in DVC merge mined blocks? Hell no. Smart Property and planned chaos are great security. EPOBC dates back to a earlier 2011 implemented colored satoshis by genesis and colored satoshi transfer in Bitcoin transactions on the bitcoin block chain, the year before the original colored coins paper was written by a bitcointalk member "killerstorm" (released as "BitcoinX.pdf) who takes part in discussion throughout man Devcoin, Groupcoin, Tenebrix etc threads (GM coins) in early bitcointalk pre-0.9.0 and concurrent 2014 layer 2 protocols (Counterparty) Bitcoin 2.0 discussions on Bitcoin Forum.

Maybe that's why a day before publishing/releasing "BitcoinX.pdf" aka the "Colored Coins Paper" (#1) on December 3, 2012 he was in the original Devcoin development thread discussing http://the purpose of Devcoin (which wasn't truly the original considering Devcoin development began unnanounced yet somewhat publicly in the original Groupcoin thread (even having its genesis block creation mentioned by markm before Devcoin's noted July 20-22, 2011 Block 0 http://created July 8, 2011 in the Groupcoin Bounty Thread - original development on bitcoin.org's hosted forums) -- telling. Once the community seemingly moved over to the unofficial bitcointalk.org forum satoshi wasn't even communicating by mailing list after May 2011 with the bitcoin developers. So maybe this is the point where satoshi himself started stealth operation with a new name, after transfer to new DNS was completed forward (Bitcoin's Project site moved from Sourceforge to bitcoin.org, Bitcoin's community forums moved from bitcoin.org to bitcointalk.org). New names, old data, similar software for the forums but who knows what type of data may not have made the leap to the new host/domain name. Smiley

From the first 2011/12 discussions on Colored "satoshis" and their implementations via EPOBC, eventually they were grouped in a paper proposing colored "bitcoins" released December 4, 2012 with some simple references to just 4 sources, one such source being the original bitcoin website slogan, then at https://web.archive.org/web/20110705111938/http://bitcoin.sourceforge.net/?page_id=5 from its v 0.3.21-0.3.24 releases (May 2011 to August 2011, right when the first merge mined coins with Bitcoin IXC, DVC, I0C and even name coin were being developed <-DVC not even being announced at genesis but also continuing on as a chain developed within the Bitcoin Project/Development part of the Bitcoin section of the then bitcoin.org hosted Bitcoin Forum). However the original Bitcoin domain/site with the title Bitcoin P2P virtual currency (at sourceforge where its original project development took place, with source code also additionally on github by then) is cited in the Colored Coins 2012 white paper draft (1) at http://bitcoin.org - which by 2012, was the sole home domain for the Bitcoin Project, but no longer the forums.  This is why I mention the forums in 2011 being attached to the bitcoin.org domain, if you are on the official project site in 2011 from sourceforge that's where the "Forums" only link to the bitcoin.org domain exist https://web.archive.org/web/20110705111938/http://bitcoin.sourceforge.net/?page_id=5 and you end up here in 2011 > https://web.archive.org/web/20110705111938/http://bitcointalk.org. But this was also by the time Satoshi Nakamoto was not in the picture. 

What I'm trying to say these protocols all use eachother to get around Bitcoin Core dev restrictions for a later date where their nodes non-dominance or a merge/flip of the switch on the actual value and power of these linked protocols and blockchains/tokens all converge into the same network with their own truths and have value back from BTC to reflect their two way value to the success of Bitcoin Core chain and back to the very beginning when protocol was open to develop freely upon (Open Source principals) and "Merge" mining is recognized in retrospect as initial distribution of coins that migrated to being tokens with value written directly to the Bitcoin blockchain and directly responsible for all BTC's success. That's called kickback.

And being tokens isn't a bad thing. Coins are tx outputs generated by difficult POW in these merge mined coins. If they end up being tokenized they can freely travel to other base layer chains and capture the migration value of say, Ethereum (which, could very well be vaporware for anything merge mined of value that may have had their tokens/initial pow merge mined coins repurposed and renamed as the post-2014 Ethereum chain launched with pre-allocated tokens in Block 0 accounts that came from "where exactly?" (but funded by a BTC presale, of course Smiley )

Devcoin funding open source developers would make sense here. And IXC and I0C being done with 99-100+% of their generation by POW/distribution make things seem closer than ever for a day where these OG merge mined coins end up finishing their distribution and migration to Bitcoin 2.0. Maybe even nodes naturally having more power to upend protocol of post 0.9.0 Bitcoin Core rebranded software and how the nodes prevent the network "Non-Standard" txs from being properly validated because a mechanism/smart mechanism can unleash it on the dumb/ignorant BTC chain "self fulfilling prophecy" Smiley
242  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DVC]DevCoin - Official Thread - Moderated on: January 13, 2021, 04:41:28 PM
Good. I should sync my old Linux wallet again and kick live in this baby again.

Now is a great time to rejoin the network Wekkel Smiley
243  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [POS/MN] [XCZ] XChainZ - an educational platform based on AI on: January 04, 2021, 10:04:37 PM
Thanks for choosing the Devcoin discord server for your promotion. As a result I have decided to run your software for Windows and it is syncing right now. My Chrome browser likes to popup a message to redirect me to xchain.io (xchain.io/about: "XChain is a free Counterparty blockchain explorer which allows users to explore and better understand the Counterparty platform.")

The logos at XchainZ, Inc. (wallet.xchainz.io) and XChain (xchain.io/about) are quite similar. And I don't think this is coincidence? But time will tell. I was already thinking about XCP (Counterparty native token) when I saw the "XCZ" and the Chrome popup to click the Yes button and forward to xchain.io is no accident to me. Even if I'm missing something pretty interesting.

Also noticed xcoinz-qt.exe opens a client which uses zerocoin amongst otherthings. OpenSSL 1.0.1k is also the same version of OpenSSL used in my latest Windows I0coin Core (GUI node) software (v 0.12.0.1). Interesting overlap there. But at the same time not. There's a lot going on here. The weirder the better.

Thanks for finding Devcoin for your promotion. If develCuy likes it enough to promote I approve as well.

Good luck.

-saotshi0x#4106 (discord)

same thing happens anywhere on xchainz.io domain... also the explorer is leaking its IPv4 to google and on the wallet.xchainz.io "XchainZ, Inc." page

244  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DVC]DevCoin - Official Thread - Moderated on: December 26, 2020, 07:31:34 AM
Good. I should sync my old Linux wallet again and kick live in this baby again.

Kickstart? Tongue

Thanks to develCuy we have a great new look on the website and an official and modern org logo Smiley

https://devcoin.org

Thanks develCuy.

When all the security scams like ripple and stellar get delisted, maybe its room for the OG alts to come back to life and relevance in 2021?  Cool

No scam. Ripple has some alpha gateway debt locked in v1 Smiley and Stellar has our galactic milieu and official Devcoin website tokens Smiley k.devcoin.org $kDVC

*BUMP*

1/3/2021 7:56 PM CST: Hey guys, just figured I'd share the Facebook community page, checkout (and like us! at): https://www.facebook.com/devcoin <<
245  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] IPO of MaidSafe:  Entering the Future of the Decentralized Internet on: December 25, 2020, 05:44:08 AM
The problem with price lies within the protocol and all of its spawned children. Maybe a "bug" is the best way to put it from the earliest of all these clones from Bitcoin Block 0/1 or the misunderstood unit of account BTC and its (purposely) miscalculated divisible:non-divisible spawn. The key is INJECTION in the end. What's locked to some may be what is freely tradeable within a single wallet to another (a company maybe). Either way it's not MAID to me just because most exchanges see it that way. As the original protocol MasterCoin was renamed later to Omni Protocol or "OmniLayer" whatever, a ticker is just a ticker. And a pre-sale on one network doesn't mean that the eventual swap coin and its test network makes the token from the pre-sale part of that test network either. In fact if it was done on the Bitcoin blockchain mainnet then yes, its part of that - but no guarantees that the MasterCoin protocol, tweaked, renamed since can even recognize the total amount of Property 31 if its tokens have become unreadable on the blocks they've traveled to since/the addresses they've become a part of/the block explorers presenting conflicting information against one another/extensions and further protocols interfering with the Bitcoin network/original MasterCoin protocol/and so on and so on. For me I keep it simple. Read the MasterCoin protocol from its first draft to its comprehensive spec before the sale on the "Exodus Address" and realize there were no physical "tokens" here called MasterCoins - but that there would be protcol nodes/software that could scan the Bitcoin blocks and realize what accounts were credited as buying from the Exodus Address and then they could use the software on their client side to see their balance and other Smart Properties. Perhaps its BTC units that are dumb tokens and they mess everything up. Omniwallet.org shows BTC on production net as Property ID 0, whereas omniexplorer.info doesn't show it on Production. We need to think of the abstraction here as planned as well as not universally readable or re-writable. What's written is written. Exodus began this protocol and its changed its name since whoopie - that's not what I am talking about. Namecoin could be at the heart of fixing this for the block chain just like changing a DNS domain address with hot links still up breaks things on web documents/API - if you change the name back you can keep those links the same and the document may be correctly cited or make sense to a human who is reading it later on. But when it comes to automated processes and nodes and CONSENSUS then the issue comes with a root/core bug type problem to allow "Chaos" (controlled chaos btw) and further extensions or "layers" that interfere and conflict with the base protocol by exploiting what devs already know.

In the end focus on learning about why MasterCoin became "The Second Bitcoin Whitepaper" as its bitcointalk.org forum member has in his signature (you can search for it) - but here is a site he later made to help rewind your memory.

https://sites.google.com/site/2ndbtcwpaper/home?authuser=0

And also remember - its not MAID or even "Coinmarketcap" information that matters. It's whatever backup system is logging all these values whether they be satoshi/bits/BTC/tokens - the name doesn't matter so long as there is a universal unit of account in the ledger accounting for every gap and purposeful f-up in code that makes what we see as price still just another incorrect valuation for the entire network envisioned in the end. You could say we are still in the pre-launch phase for the true network, or we are just somewhere in the middle. But stick with the raw data and forget about the current price - what matters in the end is the data you don't see but you realize where the gaps are because you can view things from the MasterCoin/OmniLayer/Omni(protocol) side or the Bitcoin transaction/BTC transaction unit side (Blockchain.com etc). It's all there.

If anyone real is here and this isn't just all MMRPG type dev talk then I hope I can make it blunt and help you figure it out.

Create your wallet at omniwallet.org > backup yadda yadda. Buy "MAID" on altilly.com (its easy and it once had DVC/LTC DVC/ETH DVC/USDT DVC/BTC and I think one more trading pair but it was bought since then and delisted my projects units of account for devcoins "DVC"). It seems steep to buy "MAID" (which altilly classifies on its /asset/ directory with all MaidSafeCoin specs they want to share as an Omni Token asset) after paying fees in BTC to get an account funded there (or USDT or ETH both the Ethereum tokens so network fees steep as well) and then pay 15.00000000 "MAID" when withdrawing to your omniwallet.org created Bitcoin address. But do it. You may double your withdrawal if you're lucky when you view it on the omniwallet.org side - and then you may realize why the normal swap sites are limiting your USD to $1000 to trade for "MAID" like simpleswap dot io or have delisted like Changelly, or have raised trading fees on your normal "reliable" exchange where you get MAID like Bittrex has.

You're best off doing the route I just explained and hodling. Sure it takes more conviction and more care to handle all the keys and registrations but if you wanna do it right think about the entire Bitcoin network being in pre-launch/beta testing and an asset swap as a 1:1 or 2:1 deal relative to a price in an asset that is ever appreciating rather than fiat via BTC units. You'll see. We all will see. Good luck.

Front end/Back door/Back end/Front door/Base layer/Top Level/Block height/Forward blocks. It doesn't matter, they all have to reach consensus at some time. You still have opportunity but units of this property are clearly limited. Java is incredible. Also if you look at the start of Coinmarketcap on bitcointalk.org (your "n00bs" forum) you would know that the site was formed by community requests but relied on third party block explorers for critical accounting info and would pull the coin/asset off its live site immediately if the block explorer went offline. They also didn't allow "Ripple" (assuming v1) to have a listed presence on their marketcapitalizations because community people were pissed about the figuring of $ and total circulating ripples vs Bitcoin (100% premined/generated Ripples vs. Bitcoins being slowly mined). You do the math.

You should all just run a node and play with the software. It'll help you learn. then make your own investment.
246  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] IXCoin [IXC] The Original Bitcoin Sidechain on: December 21, 2020, 07:34:03 PM
so lets buy some IXC - I think nows a great opportunity to re-enter the buy side =P/meet some of the cheap asks out there Smiley - don't forget I0C too!

Hi there
Interesting
Do you have the knowledge or means to update ixcoin adding at least what i mentioned above or more?
What about the dev updating devcoin. could the guy help?

What is it you want updated. So far problems for Ixcoin are lesser/worse than the current ones for Bitcoin which I highlighted in a tweet:

https://twitter.com/MasterGrimaldi/status/1340732471718129669

Layer 2 protocols kinda conflict and some don't handle reorgs but parse from the startup of the software/when people run the code - or some don't handle reorgs at all and perhaps block some functionality that already exists.

Merge mined coins inherit these problems even if they existed before the "Bitcoin 2.0 or higher level/layered protocols and tokens" (at least in public).

But a las Ixcoin did HARD FORK if you believe the devs as of May 2018. So it not sharing a genesis block (or genesis block copy - see Abe's view on Devcoin 0 lol) with "Bitcoin" (or BTC whatever the units are called) - is a plus IMO. Perhaps updating the Ixcoin software is not necessary yet. Maybe its doing what it has to at this time. Dogecoin source code not updated since the original or at least months after and you don't see excuses for that being why its price suffers or what not - its a transfer currency basically with much use on the internet (forget the Reddit community, but again don't because that matters too even if its a planned community of insider devs and not exactly grass roots to outside people like me - I don't care because it matters). Now consider IXC is trapped on an old wallet running in maintenance on Yobit which has 3 different TLD names and one if for a different domain name Yobitex.... Something that matters for API I'm sure somewhere and value is part of that result as much as an old wallet being in maintenance so long that doesn't allow withdrawal of your IXC. Sounds like Namecoin could help with that error but it already may be set up in the current iXcoin Core wallet as credits for its opening title when you fire it up as a GUI on Windows shows (C) 2009-2017 Bitcoin **Core** (see if you can find that logo on one of the iXcoin Core - Wallet menus Wink ) Namecoin and iXcoin developers.

Sometimes updates aren't needed. Sometimes software extensibility is just that - extendable. Or so I think.

Either way no bots on FreiExchange, so I buy the f*ck out of "iXcoin" there.
247  Alternate cryptocurrencies / Altcoin Discussion / Re: [TENEBRIX ANNOUNCE] ATTENTION INTEL USERS on: December 20, 2020, 06:41:39 PM
Your help is needed for testing windoze builds

It works on my Intel corei3 7th generation and Windows 10. Wink

248  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [I0C] I0coin - The Best Choice In Digital Currency on: December 19, 2020, 02:50:38 AM

I0Coin and IXCoin are both excellent coins, unlike DeVCoin they have very little minting, which really helps build the prices.

It has over and over again been just a matter of time to build them up to $1 per coin, it is mostly fly by night exchanges claiming to be hakced that keep crushing the price again. Already we are months in toward building buy-sides back up again though maybe this time we will get them up higher than $1 each before the exchanges again run with all the funds claiming to have been hacked.

Also though we now can trade them on the HORIZON and STELLAR platforms so yay no matter what the other exchanges do hopefully this time we can just keep on keeping on onward and upward.

-MarkM-



That’s all fine and great for hacker coding extraordinaires, such as yourself and I.   Grin

But there’s a huge problem with using the stellar and horizon network as you suggest.  Firstly, how secure is it.  Not much left of these old coins to lose.  Secondly and most importantly, I’ve talked to very computer literate guys who had a hard time trading on these platforms.  Making it user friendly where an average person can trade on both platforms and making it Unhackable should be job 1.  Until then I doing you’ll get 1% adoption - people will continue using exchanges and cold wallets.  Adding a user friendly iOS app would be a game changer. 

I believe in ya, MarkM.  You can DO IT! 


What's so hard about going to lfm.knotwork.com:7776 if you don't wanna set up your own server and access your UI from localhost? Smiley

You don't TRUST markm? For shame Tongue

I trust markM and I like him but something like this by now should be as easy as An app and secure.  My paranoia has gone up a bit after so many lies by fake people and so much theft.  I avoid complexities in crypto when possible. 


well - I still hold and I'm still here. Nothing REAL-er than that.
249  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] IXCoin [IXC] The Original Bitcoin Sidechain on: December 19, 2020, 02:48:45 AM
so lets buy some IXC - I think nows a great opportunity to re-enter the buy side =P/meet some of the cheap asks out there Smiley - don't forget I0C too!
250  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DVC]DevCoin - Official Thread - Moderated on: December 16, 2020, 11:24:54 PM
Thanks @drmutz! I'd love to see your feedback about the official Dockerfile: https://github.com/devcoin/core/blob/master/examples/Dockerfile

- develCuy


Ha! I didn't know there was one.  Learn something new everyday :-)

Looks like whoever wrote the official Dockerfile knows more about Docker and Devcoin than I do, but it might be a bit overwhelming for a n00b.

Perhaps a n00b would have an easier time starting with my edition all the while having a handy upgrade path with the official edition.

My 0.02

They are actually 0.02 Bitcoins!

I'll be happy to add your code into the examples/ folder as Dockerfile_starter. If you don't mind, can you start a pull request with your addition?

- develCuy

Whaaaa? 0.02 Bitcoins Smiley
251  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Devcoin 0.8.7.0 (beta) build for Windows on: December 06, 2020, 09:53:56 PM
Last but not least, let me acknowledge Cpol for partnering with me on this Windows build venture.


You're welcome! It was quite a ride! Smiley

I tested it myself. Thanks.

Also:

https://www.facebook.com/devcoin/posts/1740420599448717
252  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qortal Genesis - Future Internet Starts here - BTC active on cross-chain portal! on: December 04, 2020, 09:52:27 AM
So I put BTC in my wallet. Noticed a bug in the UI Trade Portal when I couldn't edit my offer with the cursor and text so I overpaid for a total of 6 Qortal like 8 offers higher than the current to test if I could buy with my BTC from within the Trade Portal. It's stuck on "TRADING" status and has yet to give me my 6 overpriced QORT Smiley
253  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Devcoin 0.8.7.0 (beta) build for Windows on: December 03, 2020, 02:33:34 AM
Dear everyone,

I'm pleased to announce that we have what seems to be a working build of Devcoin wallet for Windows. We are performing tests with the help of satoshi0x and iroking. Please report your own tests here: https://github.com/devcoin/core/issues/85

If tests are successful and we don't get any major bug report during the next 30 days, I'll call it an stable release with version number 0.8.8.0!

Last but not least, let me acknowledge Cpol for partnering with me on this Windows build venture.

Download Devcoin wallet 0.8.7.0 for Windows: https://devcoin.org/wallet/Devcoin-0.8.7.0-x86_64.zip

Go go Devcoin!

- develCuy

As requested, a detailed report of "doing magic":

https://github.com/devcoin/core/issues/85#issuecomment-737622459

A first for this project. Happy to oblige.
254  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qortal Genesis - Future Internet Starts here - BTC active on cross-chain portal! on: December 02, 2020, 09:02:35 PM
Qortal's biggest failure is that people with level 5 accounts with sponsorship ability almost don't have the ability to promote qortal. Or do not actively promote the growth of the qortal community.
A person with a level 5 account mints 18 times more coins than a level 1 and 2 account.
I think these reasons will make qortal very unhealthy.

I'm doing my best jeez
255  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qortal Genesis - Future Internet Starts here - BTC active on cross-chain portal! on: November 28, 2020, 08:58:47 PM
Just reporting to Bitcointalk community all is going well and I am now Level 1 with my own key thanks to crowetic's help Smiley
256  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XLM] Stellar - Decentralized trading platform on: November 25, 2020, 04:02:01 AM
Here:

https://stellar.expert/explorer/public/asset?order=asc&search=GBHAQ252S4Z4AQOM4BWIRC3UHAOJIKCZQBUJGD336YH2O7W2NKRXMHA5&sort=created
257  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qortal Genesis - Future Internet Starts here - BTC active on cross-chain portal! on: November 14, 2020, 10:49:26 PM
1.37 was a breeze updated both my windows and mac nodes and everythings working fine. Thanks crow.

Very glad to hear it. Smiley

Been stuck at 40% for the last hour Sad

1.3.6 was at 84% after 2 days. I deleted all the files, rebooted my PC, and it was moving along all day til now. What do I gotta do? My time says its exact

Followed instructions for the bootstrap off of github release page. I will report back. All this for a coin I can't afford buying and probably won't be competitive enough to mint lol. Blockchain looks worth it tho!

There is no 'competition' to mint... did you read the distribution? Every minter shares every block's reward, if they're online and sync'd with a minting key assigned. The level of the minter denotes their share of the reward...

You don't 'compete'... you simply stay online and mint.

I'm on Level 0 I'm dumb as rocks when I try to create a minting key it won't let me. I was donated 11 QORT and I thank you who did that Smiley
258  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qortal Genesis - Future Internet Starts here - BTC active on cross-chain portal! on: November 13, 2020, 04:55:34 AM
1.37 was a breeze updated both my windows and mac nodes and everythings working fine. Thanks crow.

Very glad to hear it. Smiley

Been stuck at 40% for the last hour Sad

1.3.6 was at 84% after 2 days. I deleted all the files, rebooted my PC, and it was moving along all day til now. What do I gotta do? My time says its exact

Followed instructions for the bootstrap off of github release page. I will report back. All this for a coin I can't afford buying and probably won't be competitive enough to mint lol. Blockchain looks worth it tho!
259  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qortal Genesis - Future Internet Starts here - BTC active on cross-chain portal! on: November 12, 2020, 08:38:03 PM
Giving this another shot on my poor Intel core i3 lol. But after reading about leap seconds and the slowing of the Earth's rotation on its access, I would like to keep my clocks in sync on my humble, but efficient machine. Smiley

Definitely install the new version - https://github.com/Qortal/qortal/releases/download/v1.3.7/Qortal-1.3.7.exe

If you are coming from an older version chain db... you will have a 're-shape' that takes place upon initial start. This may take some time to complete.

After that it will start and many issues are resolved. Including less CPU usage for your i3. Wink

I think I'm going to cry. I saw the last link was for 1.3.6 and I've been syncing for two days and still am only at 84%... what do I do now?

EDIT - Alright I deleted my old 1.3.6 AppData. And the wizard for 1.3.7 is running. I'll be back in December when I finally get this running.
260  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Qortal Genesis - Future Internet Starts here - BTC active on cross-chain portal! on: November 11, 2020, 01:31:12 PM
Giving this another shot on my poor Intel core i3 lol. But after reading about leap seconds and the slowing of the Earth's rotation on its access, I would like to keep my clocks in sync on my humble, but efficient machine. Smiley
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!