Bitcoin Forum
April 24, 2024, 01:21:48 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 157665 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
June 04, 2017, 07:49:33 AM
 #1401

Simex (chrome browser extension) v1.0 released:



Download:

https://simcoin.info/simex.zip

About

This extension periodically fetches simxchg orders and displays the price either in satoshis or in USD per 1 million SIM.

In case of satoshis it displays top sell and buy orders.

In case of USD it displays the average price = (sell + buy) / 2.

It also fetches the latest posts from simtalk and displays red notification mark if there are new posts since you last clicked 'Visit forum'.

How to install

* Download zip file and unpack it somewhere on your computer.
* Open Extensions page in the Chrome browser.
* Click on "Developer mode" checkbox.
* Click "Load unpacked extension..." and select the "simex" folder.
* Enjoy Smiley

This is a beta version, so please report any bugs or issues.

Suggestions are also welcomed.

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
Every time a block is mined, a certain amount of BTC (called the subsidy) is created out of thin air and given to the miner. The subsidy halves every four years and will reach 0 in about 130 years.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713921708
Hero Member
*
Offline Offline

Posts: 1713921708

View Profile Personal Message (Offline)

Ignore
1713921708
Reply with quote  #2

1713921708
Report to moderator
1713921708
Hero Member
*
Offline Offline

Posts: 1713921708

View Profile Personal Message (Offline)

Ignore
1713921708
Reply with quote  #2

1713921708
Report to moderator
NxtChg (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000


Simcoin Developer


View Profile WWW
June 05, 2017, 06:34:36 AM
 #1402

The Simex source code is now online:

https://github.com/NxtChg/simcoin/tree/master/tools/simex/chrome

Feel free to contribute if you want to improve something.

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
June 07, 2017, 08:51:17 AM
 #1403

Simex browser extension is on Google now:

https://chrome.google.com/webstore/detail/simex/ickalofnnogbekgmemmdbhakcibkohmb

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
June 08, 2017, 06:12:59 PM
 #1404

This bounty is still open:

Port a piece of C++ code to JS: https://www.xbtfreelancer.com/prj/3762/port-a-short-piece-of-c-code-to-javascript

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
June 24, 2017, 08:36:50 AM
 #1405

Progress report
(Jun 24, 2017)



The last few weeks I switched my attention from the server to the client. I hoped some other developers would join Simcoin and build it, but this hasn't happen so far. So it seems I will have to do it myself.

The idea was to embed a browser into a native app and then use simcoin.dll from Javascript. The original client was written in pure JS/HTML and it proved quite difficult to make, because modern wallets are pretty complicated.

Recently I discovered Vue.js - a simple yet very powerful framework - it should make building the client much easier.

Vue allows splitting work into small, independent components, and there's already a ton of them. I also started building/outsourcing my own components, you can see some of them here: https://github.com/NxtChg/pieces

I also created Vuepack: a simple tool that allows you to select any components you need and then save them as a single, minified JS file.

Another breakthrough was realization that there is not much sense in embedding the browser into a native app: JS is very fast and flexible nowadays, so why don't just use the browser already installed in user's OS?

This has several major advantages:
  • the client instantly and automatically becomes cross-platform, there is no need to port it anymore
  • no need to write a separate web-wallet
  • no need for the user to download and install anything
  • automatic bug-fixes and auto-update
  • automatic cloud backup for user's private keys (encrypted)
  • coding in JS instead of C++ is easier

I need to think more about how to handle vaults now, but it's probably solvable. The app should allow the user to save the vault locally at any time as base64 string and prompt him to do so when new private keys are added.

As for the local data - browsers nowadays provide localStorage and IndexDB, which should be enough since our client is not supposed to download the whole transchain.

The key piece of the puzzle, though, is porting all the cryptographic functions to JS. Some were ported before as bounties, some I found on the Internet, and we're currently working to port the most important part - Ed25519 signatures - to JS, and it's about halfway done!

There are also other things going on behind the scenes, which will be announced later. If you don't see me hanging out on the forum or Slack too much, it doesn't mean the work has stopped Smiley

----

Another thing: you probably already know about Simex: a Google Chrome browser extension that makes it easier to follow our exchange and forum.

----

There is a lot of noise and frenzied activity in cryptoland these days: people rush barely working prototypes to the market, hype them, raise huge amounts of money, then either disappear or fail miserably.

If you are a developer who values simplicity and wants to do some real work, which will last and has the potential to change the world - you are welcome to join!

There's plenty of bounties available or you can start your own Simcoin-related project. There's also lots of opportunities to learn and grow as a programmer.

It sure as hell will take me too long if I have to do everything by myself...

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
June 24, 2017, 08:37:37 AM
 #1406

We have our own forum now: https://simtalk.org:444

Join us there!

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
August 04, 2017, 01:04:51 PM
 #1407

Ed25519 port to Javascript is basically finished.

Doing some serious optimizations now: the next version is 100 Kb smaller (x4 reduction in size) and 20 times faster!

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
August 17, 2017, 09:06:53 AM
 #1408

About smaragda and his lies:

https://medium.com/@nxtchg/about-smaragda-and-his-lies-c376e4694de9


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
Pages: « 1 ... 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!