gregofdoom.
Newbie
Offline
Activity: 75
Merit: 0
|
|
December 25, 2020, 09:32:48 PM |
|
Is there still anyone alive here..?
Did COVID kill EuropeCoin and FinanceCloud?
I too join these questions. Please provide at least some information at what stage the project is at.
|
|
|
|
vlvarbanov
Newbie
Offline
Activity: 26
Merit: 0
|
|
January 01, 2021, 12:22:07 PM Last edit: January 01, 2021, 02:51:32 PM by vlvarbanov |
|
Hello! Do you have any contact with Matthias? I think he is active on Twiter. At CREX24 I saw this message on the ERC trade page - "Trade with caution as the explorer of this coin is unavailable. We're trying to contact the coin developer to know more." Happy New Year!
|
|
|
|
RataXes
|
|
January 03, 2021, 11:33:50 AM |
|
Is there still anyone alive here..?
Did COVID kill EuropeCoin and FinanceCloud?
I too join these questions. Please provide at least some information at what stage the project is at. I don't think it's going anywhere anymore. I hope I'm wrong but it's looked bad for the whole year (2020). Momentum is gone, users are gone, miners are gone - is there anything good to say anymore? Telegrams? Something somewhere? I don't look even this thread too often anymore, but I guess I always hope there's some sudden major development. Can't say I believe it, but hey - maybe (and just maybe). Matthias doesn't quite strike to me as an individual who gives 4-5 years of his life to some project just so he can vanish without saying anything, so I think there has to be some kind of reason to this but what can it be? He's had his absences during this project, but this is on whole another level. - This has gone too long without going too far, so maybe shame? I think he can weather the storm so that sounds unlikely. - There's some major development but cannot be revealed yet? Matthias has always been keen to report progress so that doesn't sound right either. - Something else? I don't know what it could be. Hacked again (unless even the first one was just made up)? Lost access to internet again (unless..)? Lost access to his account again? Only thing I really hope is that this isn't related to Matthias' health.
|
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
January 09, 2021, 05:10:56 PM |
|
Back from hospital and regained access to Bitcointalkjust in short, because i'd like to take care about CREX24 first:Had a bad teeth inflammation, poisoning my body, but luckily i am back and healthy now (with some tooth missing). Also i am happy, to be able, to provide some news from my development.
I will start preparing a presentation of the first, working, voice controlled wallet assistant for FINANCECLOUD API tomorrow. Not sure i will be all done with the video tomorrow (did not test the camera equipment for quite some time), but for sure on Monday
a smile to everybody still with us, have fun Matthias
.
|
|
|
|
RataXes
|
|
January 10, 2021, 07:44:31 AM |
|
Well hot diggity.. welcome back once again. It was a long crappy year, let's hope this one will be better. Starting point feels to be a bit more challenging than it should be. To some extent old users may need some re-assuring that everything will be great at the end. Then again, constant updates may do just that. I don't know if this project can take another long absence from you again (or at least without knowing that there will be a long absence). WELL ANYWAY what do I know? Who gives a crap what I know? There's certainly some catching to do.
|
|
|
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
January 18, 2021, 10:13:39 PM |
|
Stuff, thats going on .....we (yes, guess what we have some helping hands joining in) are currently modernizing the wallets codebase, as already reported, the AES Patternsearch Algo now compiles with the newest secure openSSL and now we are modernizing the RPCserver and adding FINANCECLOUD datapoints.
also there is a new Blockexplorer and i did already ad it as a voicecommand:
CREX24 is save and with us.
We are sailing with a fresh developer community as a support. I just had a two hour video-chat with the team and we are organizing responsibilities into a new structure, to get more resilience into this project, than a one-man-show could provide.
have fun Matthias
.
|
|
|
|
|
minerja
|
|
January 25, 2021, 10:49:14 AM |
|
Hi, Any chance you can put up build instructions for clean install of LM20.1 I've had a go, but it fails on the DB4.8, and when i try to manually build using -- path to install BDB to, here we create a directory within the bitcoin directory BDB_PREFIX="${BITCOIN_ROOT}/db4" mkdir -p $BDB_PREFIX # Fetch the source and verify that it is not tampered with wget ' http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz' echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef db-4.8.30.NC.tar.gz' | sha256sum -c # -> db-4.8.30.NC.tar.gz: OK tar -xzvf db-4.8.30.NC.tar.gz # Build the library and install to our prefix cd db-4.8.30.NC/build_unix/ # Note: Do a static build so that it can be embedded into the executable, instead of having to find a .so at runtime ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX make install # Configure Bitcoin Core to use our own-built instance of BDB cd $BITCOIN_ROOT ./configure (other args...) LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" -- that fails to
|
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
January 25, 2021, 12:11:50 PM |
|
Hi, Any chance you can put up build instructions for clean install of LM20.1 I've had a go, but it fails on the DB4.8, and when i try to manually build using -- path to install BDB to, here we create a directory within the bitcoin directory BDB_PREFIX="${BITCOIN_ROOT}/db4" mkdir -p $BDB_PREFIX # Fetch the source and verify that it is not tampered with wget ' http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz' echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef db-4.8.30.NC.tar.gz' | sha256sum -c # -> db-4.8.30.NC.tar.gz: OK tar -xzvf db-4.8.30.NC.tar.gz # Build the library and install to our prefix cd db-4.8.30.NC/build_unix/ # Note: Do a static build so that it can be embedded into the executable, instead of having to find a .so at runtime ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX make install # Configure Bitcoin Core to use our own-built instance of BDB cd $BITCOIN_ROOT ./configure (other args...) LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" -- that fails to Hy
i assume LM20.1 refers to "LinuxMint" ?
if so a few things, if your packet-management is able to deal with launchpad repositories, using the Bitcoinrepo,mentioned in our Europecoin build-unix document still works best. I myself made an attempt to compile Bdb and ended up fighting with "path" environment variables.
second, we are currently rewriting rpcserver.cpp, with is totally outdated as well from the codebase as from the security architecture. We will need a few days to complete the task. I expect your compiler to fail, when it reaches this file.
Solution: wait a couple of days, until we finished the upgrade, or if you need a wallet quickly, you can use the windows version with wine (works like a charm).
feedback, commits, pullrequests are always welcome of course
have fun Matthias
.
.
|
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
January 27, 2021, 05:53:59 PM |
|
TEACH YOUR ROBOTS WELL"Homeschooling" for the Europecoin AI Voiceassistant for Financecloud API have fun Matthias
.
|
|
|
|
minerja
|
|
January 29, 2021, 04:34:54 PM |
|
Hi, Does any one have any addnodes?
My wallet been showing "No block source" for 3 days now.
debug.log 2021-01-29 16:29:30 connect() to 95.104.192.198:8881 failed after select(): Connection refused (111) 2021-01-29 16:29:40 connect() to 167.114.249.196:8881 failed after select(): Connection refused (111) 2021-01-29 16:29:55 ERROR: ContextualCheckBlockHeader: incorrect proof of work 2021-01-29 16:29:55 Misbehaving: 144.76.238.2:8881 (0 -> 100) BAN THRESHOLD EXCEEDED 2021-01-29 16:29:55 ERROR: invalid header received 2021-01-29 16:29:55 ProcessMessages(headers, 164208 bytes) FAILED peer=1 2021-01-29 16:29:58 connect() to 85.214.68.75:8881 failed after select(): Connection refused (111) 2021-01-29 16:30:39 connect() to 167.114.249.196:8881 failed after select(): Connection refused (111) 2021-01-29 16:31:44 connect() to 95.104.192.198:8881 failed after select(): Connection refused (111) 2021-01-29 16:32:49 connect() to 85.214.68.75:8881 failed after select(): Connection refused (111) 2021-01-29 16:32:53 connect() to 85.214.68.75:8881 failed after select(): Connection refused (111) 2021-01-29 16:33:49 connect() to 95.104.192.198:8881 failed after select(): Connection refused (111) 2021-01-29 16:34:16 connect() to 95.104.192.198:8881 failed after select(): Connection refused (111)
Thanks
|
|
|
|
kz3d8fc7
Member
Offline
Activity: 126
Merit: 10
|
|
January 29, 2021, 06:03:45 PM |
|
Hi, Does any one have any addnodes?
My wallet been showing "No block source" for 3 days now.
debug.log 2021-01-29 16:29:30 connect() to 95.104.192.198:8881 failed after select(): Connection refused (111) 2021-01-29 16:29:40 connect() to 167.114.249.196:8881 failed after select(): Connection refused (111) 2021-01-29 16:29:55 ERROR: ContextualCheckBlockHeader: incorrect proof of work 2021-01-29 16:29:55 Misbehaving: 144.76.238.2:8881 (0 -> 100) BAN THRESHOLD EXCEEDED 2021-01-29 16:29:55 ERROR: invalid header received 2021-01-29 16:29:55 ProcessMessages(headers, 164208 bytes) FAILED peer=1 2021-01-29 16:29:58 connect() to 85.214.68.75:8881 failed after select(): Connection refused (111) 2021-01-29 16:30:39 connect() to 167.114.249.196:8881 failed after select(): Connection refused (111) 2021-01-29 16:31:44 connect() to 95.104.192.198:8881 failed after select(): Connection refused (111) 2021-01-29 16:32:49 connect() to 85.214.68.75:8881 failed after select(): Connection refused (111) 2021-01-29 16:32:53 connect() to 85.214.68.75:8881 failed after select(): Connection refused (111) 2021-01-29 16:33:49 connect() to 95.104.192.198:8881 failed after select(): Connection refused (111) 2021-01-29 16:34:16 connect() to 95.104.192.198:8881 failed after select(): Connection refused (111)
Thanks
54.37.81.148:8881
|
|
|
|
HeitorMessias
Member
Offline
Activity: 217
Merit: 33
"Non est ad astra mollis e terris via" Seneca _
|
|
January 30, 2021, 11:00:58 AM |
|
hello everyone, please i would like some link to be able to see the ERC blockchain? https://chainz.cryptoid.info/erc/ is currently not accessible. thanks for listening
|
|
|
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
February 01, 2021, 09:53:52 PM |
|
This week in Europecoin,i hope everybody have enjoyed my little Voice demo. Its a great step forward, that i have now an AI assistant, that i can understand enough to program extensions/functions for. If you are new to this development/project, here is the video once again, for your convenience:TEACH YOUR ROBOTS WELL"Homeschooling" for the Europecoin AI Voiceassistant for Financecloud API Also we are going forward with the communitycoins project, which starts really connecting more and more coins like us and helps to join forces (the blockexplorer is a first glimpse of helping each other out). This week we have had Auroracoin project joining, we agreed to build a collaborative platform to get our work done and did some organsational/administrative stuff.
also nice to welcome back the Suprnova mining pool and to see a decent amount of miners jumping invery cool indeed and its already freaking active, go and ride this thing! Their statistics are saying, they are kind of harvesting like hell ...
https://erc.suprnova.cc/index.php Crex24 Market has started normalizing and we are seeing some buyers carefully jumping in. All in all this is a nice base environment we are able to progess on, some more comment here on the Forum would be a great thing, but i am sure this will return also with time.
Thats it for the week have fun Matthias -
|
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
February 09, 2021, 04:08:11 AM |
|
New RPCServer function done just one bug left before next new wallet release
featuring: - up to date SSL support for AES-Patternsearch - improved boost-library compatibility - first data endpoints for Financecloud API
have fun Matthias
.
|
|
|
|
szenekonzept (OP)
Legendary
Offline
Activity: 2100
Merit: 1012
Europecoin Financecloud API
|
|
February 09, 2021, 11:59:04 AM |
|
This is what happened ....
Faster than i ecpected i successfull ran my testbuild of a Webapp Configuration Interface with Skill-Builder for EUROPECOIN Financecloud AI Assistatant
Also currtently compiling: Android app with Europecoin & Financecloud Configuration Interface and remote Voice Control have fun Mattthias .
|
|
|
|
|