Bitcoin Forum
May 02, 2024, 08:19:35 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 [68] 69 70 71 »
  Print  
Author Topic: [ANN][SIM] Simcoin - A Simple Coin  (Read 157669 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
NxtChg (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000


Simcoin Developer


View Profile WWW
December 13, 2014, 10:11:57 AM
 #1341

Yay  Wink Wink Wink Wink


Simcoin: https://simtalk.org:444/ | The Simplest Bitcoin Wallet: https://tsbw.io/ | Coinmix: https://coinmix.to | Tippr stats: https://tsbw.io/tippr/
--
About smaragda and his lies: https://medium.com/@nxtchg/about-smaragda-and-his-lies-c376e4694de9
1714637975
Hero Member
*
Offline Offline

Posts: 1714637975

View Profile Personal Message (Offline)

Ignore
1714637975
Reply with quote  #2

1714637975
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714637975
Hero Member
*
Offline Offline

Posts: 1714637975

View Profile Personal Message (Offline)

Ignore
1714637975
Reply with quote  #2

1714637975
Report to moderator
1714637975
Hero Member
*
Offline Offline

Posts: 1714637975

View Profile Personal Message (Offline)

Ignore
1714637975
Reply with quote  #2

1714637975
Report to moderator
1714637975
Hero Member
*
Offline Offline

Posts: 1714637975

View Profile Personal Message (Offline)

Ignore
1714637975
Reply with quote  #2

1714637975
Report to moderator
marek3ball-orig
Member
**
Offline Offline

Activity: 80
Merit: 10


View Profile
December 13, 2014, 06:38:56 PM
 #1342

Good to hear it is solved.

Yesterday evening I wanted to send some coins from Counterwallet and have spent hours waiting for the transaction. There was 40min long btc block and I had to wait for 7 confirmation. I was glad that I wasn't waiting whole night.

I'm looking forward to your fast Simcoin! Do you have some vision how could Simcoin speed up many different crypto tasks. Not only send fast Simcoin to Simcoin?
NxtChg (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000


Simcoin Developer


View Profile WWW
December 13, 2014, 07:09:38 PM
 #1343

Do you have some vision how could Simcoin speed up many different crypto tasks. Not only send fast Simcoin to Simcoin?

You will also be able to send messages as fast as IM.

But in general I don't think much about it. My job is to make it work. Once it's working, people will come up with all sorts of ways to use it Smiley

Simcoin: https://simtalk.org:444/ | The Simplest Bitcoin Wallet: https://tsbw.io/ | Coinmix: https://coinmix.to | Tippr stats: https://tsbw.io/tippr/
--
About smaragda and his lies: https://medium.com/@nxtchg/about-smaragda-and-his-lies-c376e4694de9
myyuxuan
Sr. Member
****
Offline Offline

Activity: 338
Merit: 250


View Profile
December 14, 2014, 10:00:07 AM
 #1344

https://simxchg.com/ can't open now?

We are the first!--DACRS (Distributed Autonomous Corporations RuntimeSystem)+dsKYEj7rMxGw151ab4YGhfhiBAXq1aSna6

Get Free VpnCoin, Join BitNet ! Vy8GzHu8x95cwHBrtsB2bRbrWQW4ApjZ2y
BitNet(VPNCOIN)第二论赠币:Vy8GzHu8x95cwHBrtsB2bRbrWQW4ApjZ2y
wizzardTim
Legendary
*
Offline Offline

Activity: 1708
Merit: 1000


Reality is stranger than fiction


View Profile
December 14, 2014, 10:27:04 AM
 #1345

https://simxchg.com/ can't open now?

It will open in a few days.

Behold the Tangle Mysteries! Dare to know It's truth.

- Excerpt from the IOTA Sacred Texts Vol. I
NxtChg (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000


Simcoin Developer


View Profile WWW
December 14, 2014, 07:12:04 PM
 #1346

Progress report

This week the blockchain.info incident took almost 2 full days off my work schedule Sad

And it was scary: a single missed assignment operator and in just three hours hundreds of thousands of dollars were stolen!

So instead of cutting more corners I've decided to start a major refactoring. Cleaned up a lot of junk and temporary scaffolding...

One thing that should have been done a long time ago is separation of client internals from the interface.

Now there will be just one library - simcoin.dll, which can act as both a client and a server, depending solely on the tasks loaded at startup.

So to implement a Simcoin client you just link to this library and call sim_start("client") and that's it, you can now use API calls to interact with it.

This separation will require a bit more work, but it's the right thing to do:

  • all the critical functionality should be unified and combined inside one library for the core developers to focus on;
  • it will be much easier to create clients;
  • it will also be easier to port this library because there is no GUI, and then people can write native clients for each platform. I believe, this is the right way to do it, instead of using some monstrosity, like QT.

--

I also wrote a very simple (literally, under 100 lines of code), yet very fast key-value storage system, with a nice side effect of extremely fast insertion sort, and "sort on insert" is a common scenario in Simcoin internals.

For sequential keys the overhead is just 4 bytes and for random keys – about 21 bytes.

The average insertion time for 1 M items is only 480 ticks (!) and the average lookup time is 420 ticks. And you get a sorted set for free!

So I'm happy Smiley

Simcoin: https://simtalk.org:444/ | The Simplest Bitcoin Wallet: https://tsbw.io/ | Coinmix: https://coinmix.to | Tippr stats: https://tsbw.io/tippr/
--
About smaragda and his lies: https://medium.com/@nxtchg/about-smaragda-and-his-lies-c376e4694de9
NxtChg (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000


Simcoin Developer


View Profile WWW
December 19, 2014, 11:30:05 AM
 #1347

The exchange is back online.

WARNING! Don't use the old deposit address - generate a new one!

Simcoin: https://simtalk.org:444/ | The Simplest Bitcoin Wallet: https://tsbw.io/ | Coinmix: https://coinmix.to | Tippr stats: https://tsbw.io/tippr/
--
About smaragda and his lies: https://medium.com/@nxtchg/about-smaragda-and-his-lies-c376e4694de9
NxtChg (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000


Simcoin Developer


View Profile WWW
December 21, 2014, 05:01:04 PM
 #1348

Progress report

This week I continued refactoring, organizing all code into a single library, developing and documenting the Core API interface.

The interface is shaping quite nicely – all interactions are done via commands, which also serve as events if broadcast to all tasks. The host can subscribe to receive these events.

This design is extremely simple, yet very flexible, and it supports transparent API versioning for backwards compatibility. Similar to DirectX, only better Smiley

In sim_start(), you tell which version of API your app is using and then the glue code converts all commands and events transparently between the host and the core.

This is important, because it allows applications to use the latest version of Simcoin core without the need to recompile.

Such interface also facilitates loose coupling and I like how it works now. Doing this was a good idea.


Simcoin: https://simtalk.org:444/ | The Simplest Bitcoin Wallet: https://tsbw.io/ | Coinmix: https://coinmix.to | Tippr stats: https://tsbw.io/tippr/
--
About smaragda and his lies: https://medium.com/@nxtchg/about-smaragda-and-his-lies-c376e4694de9
popolite11
Sr. Member
****
Offline Offline

Activity: 882
Merit: 250



View Profile
December 21, 2014, 05:02:57 PM
 #1349

The exchange is back online.

WARNING! Don't use the old deposit address - generate a new one!

Ok understood , thanks for letting us know.
illiki23
Sr. Member
****
Offline Offline

Activity: 602
Merit: 295


Hail Eris!


View Profile
December 22, 2014, 01:39:43 PM
 #1350

Sorry to say (and I hope I am wrong) but the opening of an exchange that only allows bitcoin deposits to trade for some fictional Simcoin assets really stinks of a scam.

It makes me nervous as I am an investor.

I hope you are a benevolent tentacled overlord and such.  

             ▄▄██████▄
         ▄▄████████████
   ▄▄█████████▀▀   ▀████
 ▄███████████▄      ████
████▀   ▀▀██████▄▄▄████
████      ▄███████████▄
▀████▄▄▄████████▀▀▀████▄
 ▀███████████▀      ████
 ████▀▀▀██████▄▄   ▄███▀
████      ▀███████████▀
████▄   ▄▄█████████▀▀
 ████████████▀▀
  ▀██████▀▀
█████████████████

     ███

██████████

     ██████

███████████

     ███████████████

███████████████████
█████████████████

███    

██████████

██████    

███████████

███████████████    

███████████████████
▄█████████████████████████▄
███████████████████████████
███████████████████████████
██████▀███████▀   ▀▀▀▄█████
█████▌  ▀▀███▌       ▄█████

████▀               █████
█████▄              ███████
██████▄            ████████
███████▄▄        ▄█████████
█████▄▄       ▄████████████
███████████████████████████
███████████████████████████
▀█████████████████████████▀
▄█████████████████████████▄
███████████████████████████
███████████████████████████
██████████████████▀▀███████
█████████████▀▀▀    ███████

███████▀▀▀   ▄▀   ███████
█████▄     ▄█▀     ████████
████████▄ █▀      █████████
█████████▌▐       █████████
██████████ ▄██▄  ██████████
████████████████▄██████████
███████████████████████████
▀█████████████████████████▀
▄█████████████████████████▄
███████████████████████████
███████████████████████████
███████▀           ▀███████
██████  ▄██▀▀▀▀▀█▀▄  ██████

█████  █▀  ▄▄▄  ▀█  █████
██████  █  █████  █  ██████
██████  █▄  ▀▀▀  ▄█  ██████
██████  ▀██▄▄▄▄▄██▀  ██████
███████▄           ▄███████
███████████████████████████
███████████████████████████
▀█████████████████████████▀
▄█████████████████████████▄
███████████████████████████
███████████████████████████
██████████▀█████▀██████████
███████▀  ▀     ▀  ▀███████

█████▌             ▐█████
██████    ██   ██    ██████
█████▌    ▀▀   ▀▀    ▐█████
██████▄  ▄▄▄   ▄▄▄  ▄██████
████████▄▄███████▄▄████████
███████████████████████████
███████████████████████████
▀█████████████████████████▀


na]][/font][/font][/size][/font][/td][td][/td][/tr][/table][/tr
KLONE::Vader
Member
**
Offline Offline

Activity: 89
Merit: 10


View Profile
December 22, 2014, 02:05:57 PM
 #1351

Sorry to say (and I hope I am wrong) but the opening of an exchange that only allows bitcoin deposits to trade for some fictional Simcoin assets really stinks of a scam.

It makes me nervous as I am an investor.

I hope you are a benevolent tentacled overlord and such.  
exchange was a wish from the investors so no need to suspect anything bad...

rlh
Hero Member
*****
Offline Offline

Activity: 804
Merit: 1004


View Profile
December 22, 2014, 02:39:07 PM
 #1352

FYI, Bter has worked with some coin IPOs in the past.  You could see if they are willing to let you transfer this over to their site.  You'll probably have to pay them a couple BTC, but since you raised IPO money, and some in the community might be willing to donate, thrm that could be a reasonable alternative.

Anyway, I don't consider this a scam, but the lone-exchange setup is a bit to much of a security tosk for me.  I want to buy in, but I've chosen to wait until this shows up on a bigger exchange, or there is a way to "withdraw" my stake.

A Personal Quote on BTT from 2011:
"I'd be willing to make a moderate "investment" if the value of the BTC went below $2.00.  Otherwise I'll just have to live with my 5 BTC and be happy. :/"  ...sigh.  If only I knew.
NxtChg (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000


Simcoin Developer


View Profile WWW
December 22, 2014, 04:06:39 PM
 #1353

Sorry to say (and I hope I am wrong) but the opening of an exchange that only allows bitcoin deposits to trade for some fictional Simcoin assets really stinks of a scam.

It makes me nervous as I am an investor.

As an "investor" you should have done your due diligence. The exchange was opened 6 months ago and much more money went through it than remains. I also operated another exchange and returned all the money when I had to close it.

So before you start throwing scam accusations, do your homework.

Simcoin: https://simtalk.org:444/ | The Simplest Bitcoin Wallet: https://tsbw.io/ | Coinmix: https://coinmix.to | Tippr stats: https://tsbw.io/tippr/
--
About smaragda and his lies: https://medium.com/@nxtchg/about-smaragda-and-his-lies-c376e4694de9
NxtChg (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000


Simcoin Developer


View Profile WWW
December 25, 2014, 10:54:46 AM
 #1354

Today is almost exactly 9 months since Simcoin started (jeez, time really flies!).

To celebrate, all Simcoin stakeholders will get a small present today – everybody’s stake will be increased by 1%! Smiley

Happy Holidays!



Simcoin: https://simtalk.org:444/ | The Simplest Bitcoin Wallet: https://tsbw.io/ | Coinmix: https://coinmix.to | Tippr stats: https://tsbw.io/tippr/
--
About smaragda and his lies: https://medium.com/@nxtchg/about-smaragda-and-his-lies-c376e4694de9
wizzardTim
Legendary
*
Offline Offline

Activity: 1708
Merit: 1000


Reality is stranger than fiction


View Profile
December 25, 2014, 11:21:05 AM
 #1355

Thank you so much!!!!  Smiley

Behold the Tangle Mysteries! Dare to know It's truth.

- Excerpt from the IOTA Sacred Texts Vol. I
cryptodevil
Legendary
*
Offline Offline

Activity: 2170
Merit: 1240


Thread-puller extraordinaire


View Profile
December 25, 2014, 01:16:02 PM
 #1356

Sweet! Cheers for that, Seasons Greetings to you and yours.

WARNING!!! Check your forum URLs carefully and avoid links to phishing sites like 'thebitcointalk' 'bitcointalk.to' and 'BitcointaLLk'
Nxtblg
Legendary
*
Offline Offline

Activity: 924
Merit: 1000



View Profile WWW
December 25, 2014, 04:32:50 PM
 #1357

Thanks a lot, and Merry Christmas to you. Smiley






██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





...INTRODUCING WAVES........
...ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM...






marek3ball-orig
Member
**
Offline Offline

Activity: 80
Merit: 10


View Profile
December 25, 2014, 04:37:07 PM
 #1358

Thank you too!
twistelaar
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
December 25, 2014, 05:34:00 PM
 #1359

Thanks Smiley
pandher
Legendary
*
Offline Offline

Activity: 952
Merit: 1000


Stagnation is Death


View Profile WWW
December 26, 2014, 05:49:29 PM
 #1360

Thanks for the present Chg Smiley
Pages: « 1 ... 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 [68] 69 70 71 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!