Bitcoin Forum
June 19, 2024, 01:41:36 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
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 35 36 37 38 39 40 41 »
  Print  
Author Topic: [OSC]OpenSourcecoin Mandatory Update 7/1/14  (Read 153270 times)
crackfoo
Legendary
*
Offline Offline

Activity: 3500
Merit: 1126



View Profile WWW
June 16, 2014, 04:38:12 PM
 #461

Hey ya'll, I've added OSC to my new Multipool. Would love to have some miners stop by and mine!

xpool - BTC Multipool

 
PROP reward system
BTC Payouts
Scrypt & SHA256 Algo's
DDoS Protected
High Performance Backend
Simple setup and usage
0% Fees while in BETA
To mine:
Cheers and Happy Hashing!

ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
r3wt (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
June 16, 2014, 07:47:23 PM
 #462



  I need help understanding something
This coin says it will go to half at 400,000 block number so if I'm understanding correctly it go from 25 coins to 12.5 coins per block.  is that correct???
 
     
 
      SPECIFICATIONS

    Algorithm: Sha256 POW/POS**
    TX Message Feature
    PPCoin Checkpointing System
    Total Coins: 21 million
    19.8 million coins by Year 8
    Subsidy: .0777 - 25 coins
    Halving: 400,000 blocks
    Minimum Subsidy: .0777
    Block Times: 1 minute
    Symmetrically Scaling Difficulty Retarget Algorithm(SSDRA) without Rollback
    UPNP


main.cpp line 946-982 https://github.com/bryceweiner/OSC/blob/master/src/main.cpp

Code:
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{

static const int64 nMinimumCoin = 0.0777 * COIN;

int64 nSubsidy = 0.0777 * COIN;                                                                         //genesis

if (nHeight > 0 && nHeight < 7) {nSubsidy = 0 * COIN;}                                                // zero
else if (nHeight == 7) {nSubsidy = 177777 * COIN;}                                                   // Premine
else if (nHeight > 7 && nHeight < 1000) {nSubsidy = 2.5 * COIN;}                                   // IRC Launch
else if (nHeight > 1000 && nHeight < 1337) {nSubsidy = 0.0777 * COIN;}                            // low instamine official launch
else if (nHeight == 1337) {nSubsidy = 1337 * COIN;}                                               //L33T
else if (nHeight > 1337 && nHeight < 4000) {nSubsidy = 1 * COIN;}                                //final launch period
else if (nHeight > 4000 && nHeight < 8000) {nSubsidy = 22.5 * COIN;}                         // 22.5 coin
else if (nHeight > 8000 && nHeight < 16000) {nSubsidy = 15 * COIN;}                            // 15 coins per block
else if (nHeight > 16000 && nHeight < 32000) {nSubsidy = 7.5 * COIN;}                         // 7.5 coins per block
else if (nHeight > 32000 && nHeight < 64000) {nSubsidy = 6 * COIN;}                          // 6 coins per block
else if (nHeight > 64000 && nHeight < 77777) {nSubsidy = 4 * COIN;}                         // 4 coins
else if (nHeight == 77777) {nSubsidy = 10000 * COIN;}                                      // bonus reward
else if (nHeight > 77777 && nHeight < 128000) {nSubsidy = 4 * COIN;}                      // 4 coins
else if (nHeight > 128000 && nHeight < 256000) {nSubsidy = 20 * COIN;}                    // 20 coins
else if (nHeight > 256000) {nSubsidy = 25 * COIN;}                 // 25 coins
else if (nHeight > 2400000) {nSubsidy = 5 * COIN;}
else {nSubsidy = 1 * COIN;}             

    // Subsidy is cut in half every 400 thousand blocks
    nSubsidy >>= (nHeight / 400000);

// Minimum subsidy
    if (nSubsidy < nMinimumCoin)
    {
        nSubsidy = nMinimumCoin;
    }

    return nSubsidy + nFees;
}

So to answer your question, yes unless i made some error in this code it will drop to 12.5 @ 400k blocks and will continue to half until block 2,400,000 where the reward will bump back up to 5 and continue halfing until it reaches the minimum subsidy. any block that doesn't fall into the rules above will fall back to a reward of 1 coin.

My negative trust rating is reflective of a personal vendetta by someone on default trust.
kprell40
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


View Profile
June 17, 2014, 01:55:35 AM
 #463



   Then the at  block 400,000.  The coin values will eventually go up in price right  if I'm understanding correctly  because harder to mine them from 25 to 12.5 per block .
   
       Kevin

r3wt (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
June 17, 2014, 04:15:33 AM
 #464



   Then the at  block 400,000.  The coin values will eventually go up in price right  if I'm understanding correctly  because harder to mine them from 25 to 12.5 per block .
   
       Kevin

I won't speculate on the price, but it certainly could slow the rate of dumping on exchanges.

My negative trust rating is reflective of a personal vendetta by someone on default trust.
BitcoinNational
Legendary
*
Offline Offline

Activity: 1470
Merit: 1010


Join The Blockchain Revolution In Logistics


View Profile
June 17, 2014, 06:14:55 PM
Last edit: August 23, 2014, 07:53:35 AM by BitcoinNational
 #465


   {0000000}xxx if (nHeight > 0 && nHeight < 7) {nSubsidy = 0 * COIN;}                                                   // zero
   {0177777}else if (nHeight == 7) {nSubsidy = 177777 * COIN;}                                                             // Premine BLoCK=177777
   {0002483}else if (nHeight > 7 && nHeight < 1000) {nSubsidy = 2.5 * COIN;}                                        // IRC Launch
   {0000026}else if (nHeight > 1000 && nHeight < 1337) {nSubsidy = 0.0777 * COIN;}                            // low instamine official launch
   {0001337}else if (nHeight == 1337) {nSubsidy = 1337 * COIN;}                                                        // bonus BLOCK= 1337 coins
   {0002663}else if (nHeight > 1337 && nHeight < 4000) {nSubsidy = 1 * COIN;}                                  //01 coins final launch period

TOTAL =00.18 million (approx.)

   {0090000}else if (nHeight > 4000 && nHeight < 8000) {nSubsidy = 22.5 * COIN;}                                // 22.5 coin per block
   {0120000}else if (nHeight > 8000 && nHeight < 16000) {nSubsidy = 15 * COIN;}                               // 15 coins per block
   {0120000}else if (nHeight > 16000 && nHeight < 32000) {nSubsidy = 7.5 * COIN;}                            // 7.5 coins per block
   {0192000}else if (nHeight > 32000 && nHeight < 64000) {nSubsidy = 6 * COIN;}                               // 6 coins per block
   {0055108}else if (nHeight > 64000 && nHeight < 77777) {nSubsidy = 4 * COIN;}                               // 4 coins per block
   {0010000}else if (nHeight == 77777) {nSubsidy = 10000 * COIN;}                                                    // bonus BLOCK= 10000
   {0200892}else if (nHeight > 77777 && nHeight < 128000) {nSubsidy = 4 * COIN;}                             // 4 coins per block

TOTAL =05.25 million (approx.)

{2560000}else if (nHeight > 128000 && nHeight < 256000) {nSubsidy = 20 * COIN;}                            R// 20 coins per block
{3600000}else if (nHeight > 0256000&& nHeight < 0400000) {nSubsidy = 25.0 * COIN;}                       R// 25.00    coins per block <<now
{5000000}else if (nHeight > 0400001&& nHeight < 0800000) {nSubsidy = 12.5 * COIN;}                       R// 12.5      coins per block << soon
{2500000}else if (nHeight > 0800001&& nHeight < 1200000) {nSubsidy = 06.25 * COIN;}                     R// 06.25    coins per block
{6000000}else if (nHeight > 1200001&& nHeight < 2400000) {nSubsidy = 5 * COIN;}                            R// 05.00    coins per block

TOTAL =20.5 million (approx.)

   {0000000}else {nSubsidy = 1 * COIN;}                             R// 01 coins per block == 175200/yr



commentary NOT actual code

this is probably way wrong, if so, please comment



can you guess the coin?
usde ... deposit (cache) on demand
wow such reward inflation

                ▄██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
           ▄████▄▄▄▄▄██████████████▄
         ▄████████████████▄▄▄███████
       ▄█████████████████████████████
     ▄████████▀▀▀▀▀▀▀███████████████▄
   ▄████████▀█▀███▀        ███████████
 ▄████████▀███             ███████████
▄███████▀████                ██████████▄
███████████▀                  ██████████
 ██████▄████                   ██████▄███
  ██████▄████                 ▄█████████
   ██████▄████              ▄██████████
    ██████▄█████▄▄▄▄▄     ▄████████▀
     ██████▄████████████▄████████▀█▀██▀
      ██████████▄▄▄▄▄▄▄████████▀█▀██▀
       ██████████████████████▀█▀█▀
         ▀▀▀▀▀▀███████████▀▀▀▀
                      ▀██▀▀
─────────────────
Revolutionized.  ──


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





█████████████████████████
██ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ██
██ ████████████▀▀▀████ ██
██ ████████▀▀     ████ ██
██ █████▀    ▄▀  ▐████ ██
██ ██▀     ▄▀    ▐████ ██
██ ████▄▄ █▀     █████ ██
██ ██████ ▄▄█   ▐█████ ██
██ ████████████ ██████ ██
██ ███████████████████ ██
██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄██
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.WHITEPAPER.
ANN Thread
Reddit

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

  ─────────────  Join
SMARC token ICO

█████
   ██
 █ ██
 █ ██
 █ ██
 █
r3wt (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
June 18, 2014, 06:46:02 AM
 #466

Sounds about right to me.

My negative trust rating is reflective of a personal vendetta by someone on default trust.
BitcoinNational
Legendary
*
Offline Offline

Activity: 1470
Merit: 1010


Join The Blockchain Revolution In Logistics


View Profile
June 24, 2014, 09:34:27 AM
Last edit: September 10, 2014, 05:30:02 PM by BitcoinNational
 #467

open source Wallet Security http://www.bitcointrezor.com/

example of what OSC could help fund


open source banking
http://www.agescota.com/linux/


open source GLD
https://www.coaex.com/custom-gold-bars/

open source LEGAL

open source ROBOT

open source ENGINEERED SYSTEMS

open source WEB

                ▄██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
           ▄████▄▄▄▄▄██████████████▄
         ▄████████████████▄▄▄███████
       ▄█████████████████████████████
     ▄████████▀▀▀▀▀▀▀███████████████▄
   ▄████████▀█▀███▀        ███████████
 ▄████████▀███             ███████████
▄███████▀████                ██████████▄
███████████▀                  ██████████
 ██████▄████                   ██████▄███
  ██████▄████                 ▄█████████
   ██████▄████              ▄██████████
    ██████▄█████▄▄▄▄▄     ▄████████▀
     ██████▄████████████▄████████▀█▀██▀
      ██████████▄▄▄▄▄▄▄████████▀█▀██▀
       ██████████████████████▀█▀█▀
         ▀▀▀▀▀▀███████████▀▀▀▀
                      ▀██▀▀
─────────────────
Revolutionized.  ──


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





█████████████████████████
██ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ██
██ ████████████▀▀▀████ ██
██ ████████▀▀     ████ ██
██ █████▀    ▄▀  ▐████ ██
██ ██▀     ▄▀    ▐████ ██
██ ████▄▄ █▀     █████ ██
██ ██████ ▄▄█   ▐█████ ██
██ ████████████ ██████ ██
██ ███████████████████ ██
██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄██
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.WHITEPAPER.
ANN Thread
Reddit

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

  ─────────────  Join
SMARC token ICO

█████
   ██
 █ ██
 █ ██
 █ ██
 █
r3wt (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
June 25, 2014, 05:19:09 PM
 #468

Anyone know of a working block explorer?

My negative trust rating is reflective of a personal vendetta by someone on default trust.
r3wt (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
June 26, 2014, 05:05:44 AM
 #469

6/25/2014 Ocoin-2.0.1-clean windows release
**This isn't mandatory, but fixes the problems with the gui. New Icon Set and Logo are included.
https://drive.google.com/file/d/0B5V5vln-sS3EWEFseFhPVVR1elE/edit?usp=sharing


Changes will be pushed to github in the morning, with the linux release to follow shortly thereafter.

i'm working on a revamp and relaunch of the opensourcecoin website with a block explorer and realtime transaction view.

My negative trust rating is reflective of a personal vendetta by someone on default trust.
xenxex
Hero Member
*****
Offline Offline

Activity: 798
Merit: 1000



View Profile
June 26, 2014, 02:18:45 PM
Last edit: June 26, 2014, 02:57:52 PM by xenxex
 #470

Nice guy.

Website is necessary. A blockexplorer would be nice. How about a richlist?
I think the direction is the right one!!!!

New logo is very clean, congratulations. Wallet is good.

Waiting for your innovations.

Hey Community, lets talk bout new ideas and projects for ocoin!!!

r3wt (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
July 01, 2014, 07:33:25 AM
 #471

Mandatory upgrade to latest source. some light internal changes, just to be safe you should upgrade. see OP

My negative trust rating is reflective of a personal vendetta by someone on default trust.
BitcoinNational
Legendary
*
Offline Offline

Activity: 1470
Merit: 1010


Join The Blockchain Revolution In Logistics


View Profile
July 01, 2014, 09:12:51 AM
Last edit: July 02, 2014, 01:37:50 AM by BitcoinNational
 #472

New logo is very clean, congratulations. Wallet is good.

Waiting for your innovations.

Hey Community, lets talk bout new ideas and projects for ocoin!!!

semiorganized talk about new ideas and projects for ocoin
https://bitcointalk.org/index.php?topic=268705.msg6611668#msg6611668

links to subthreads OR just post in here in the main thread if you need

PROJECT :: research/ideas/brainstorm area 
>> https://bitcointalk.org/index.php?topic=621963.msg6891176

                ▄██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
           ▄████▄▄▄▄▄██████████████▄
         ▄████████████████▄▄▄███████
       ▄█████████████████████████████
     ▄████████▀▀▀▀▀▀▀███████████████▄
   ▄████████▀█▀███▀        ███████████
 ▄████████▀███             ███████████
▄███████▀████                ██████████▄
███████████▀                  ██████████
 ██████▄████                   ██████▄███
  ██████▄████                 ▄█████████
   ██████▄████              ▄██████████
    ██████▄█████▄▄▄▄▄     ▄████████▀
     ██████▄████████████▄████████▀█▀██▀
      ██████████▄▄▄▄▄▄▄████████▀█▀██▀
       ██████████████████████▀█▀█▀
         ▀▀▀▀▀▀███████████▀▀▀▀
                      ▀██▀▀
─────────────────
Revolutionized.  ──


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





█████████████████████████
██ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ██
██ ████████████▀▀▀████ ██
██ ████████▀▀     ████ ██
██ █████▀    ▄▀  ▐████ ██
██ ██▀     ▄▀    ▐████ ██
██ ████▄▄ █▀     █████ ██
██ ██████ ▄▄█   ▐█████ ██
██ ████████████ ██████ ██
██ ███████████████████ ██
██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄██
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.WHITEPAPER.
ANN Thread
Reddit

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

  ─────────────  Join
SMARC token ICO

█████
   ██
 █ ██
 █ ██
 █ ██
 █
toto2000
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
July 03, 2014, 03:15:47 PM
 #473

Hello

Since today my net hash rate on my pool for OSC is same as my pool hash rate.
I have updated the Ocoin daemon.

All my blocks found are not validated.

Does someone have changed on the OSC ?
r3wt (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
July 06, 2014, 02:19:51 AM
 #474

incoming source fix:

openssl1.0.1h
qrencode
kgw
i2p

My negative trust rating is reflective of a personal vendetta by someone on default trust.
somatic
Newbie
*
Offline Offline

Activity: 53
Merit: 0


View Profile WWW
July 08, 2014, 07:48:48 PM
 #475

How do I mine OSC solo with cgminer? BFGminer works fine, but cgminer says:

Quote
No BTC address specified, unable to mine solo on http://myserver.net:38532

I added my wallet address with --btc-address, and it seems to work, but since it'll be a while before I find a block, it'll be a while before I know. (And for all I know it might just fail silently.)

How would I go about mining solo with cgminer? I prefer BFG, but cgminer works better with my new Rockminer so I'm using that.
BitcoinNational
Legendary
*
Offline Offline

Activity: 1470
Merit: 1010


Join The Blockchain Revolution In Logistics


View Profile
July 16, 2014, 08:01:24 PM
Last edit: September 11, 2014, 03:26:35 PM by BitcoinNational
 #476

RE: OSC trade bot
http://json.karasoft.com/ (fund this?) kslavik Sr. Member
Cryptsy Bender 0.2btc https://bitcointalk.org/index.php?topic=700160.0
Quatloo-Trader by MarKusRomanus https://bitcointalk.org/index.php?topic=711966.0;all http://quatloos.org/trader.html


RE: solomining

The main pools are north of 3TH, going solo is near impossible.
OSC  Mining   Pools    >> https://bitcointalk.org/index.php?topic=602225

RE: Open Source in wallet exchange



EZ in wallet exchange.

1. IRC #openmarket
2. bot that keeps price and trust scores
3. ability to cross chat with other wallets

the OTC had a working version of IRC based market

established trusted nodes/users can act as escrow

http://opentransactions.org/wiki/index.php?title=OTX

glyph is not doing this / and the IRC troll box is just a graphic mockup / this is no endorsement for above coin


RE: Open Source

Why not be the msft+sun+oracle+ibm of tomorrow?  
OS open source

How?  
If you can C++, C#, .js, or other.
Then take share in OSC, and code for OSC.
Then you will be part of the OS union.

This is the same as if m$ft coders owned a majority the m$ft shares and only worked for m$ft shares.

This idea scales to all things OS.  Do you know how to code?  Then join. How? Get some coin.  Offer to code for more coin.

RE: Got POD?

Yes 2 of the best.  Plus a company.

 

how about a POD squad?  
They will review code for OSC

source of gif http://cryptoasian.com/xrc-rhinocoin/
=================

Decentralized Data Storage ; Cloud Storage ; Storage Encryption ; (Password Protected Downloads)
Video & Music Library ; Video & Audio Public File Streaming
Cloudsend ; Anonymous email ; Secure video chat
Decentralized P2P trade ; Anonymous Market ; Api trader
Gambling Cloud App ; Anonymous Browser

--
Current Features
Current Development
Future Development
Under Research
Suggested Development


RE: other projects // Order of Root //

tipbot >> coin-agnostic crypto Tipbot for Slack
MulticurrencyPaymentSystem >> pop tips / open pay
ATM >> skyhook OS
market squares >> openbazaar / devMART

RE: https://github.com/DOACC

RE: http://www.sandboxie.com/

RE: release the XP code m$ft, simple OS for everyone

RE:
http://minkiz.co/coin/
http://www.rugatu.com/

RE: spokes person
http://www.linkedin.com/pub/robert-david-steele-vivas/0/26b/710 ?why not?
http://privacy-pc.com/interviews/open-everything-interview-with-robert-david-steele-vivas.html

RE: designer
http://www.cryptodesign.net/

RE: peer funding
http://peer4commit.com/projects

-------------
http://www.xcoinfactory.com/
Whaler's Choice - Our Premier Package Includes the Kitchen Sink    Xtra - Premium Coin Package    Noob Graduate - Basic Coin Package

    Clone the Satoshi blockchain based coin of your choice
    Customize parameters to your specification
    Wallets and Windows Installer
    Source code
    Basic coin website
    Block Explorer
    Paper Wallet website
    Launch Pool included (2% fee)
    2 Seed nodes, automated checkpointing node for PoS coins

   

    Clone the Satoshi blockchain based coin of your choice
    Customize parameters to your specification
    Wallets and Windows Installer
    Source code
    Basic coin website
    Launch Pool included (2% fee)
    1 seed node

   

    Clone the Satoshi blockchain based coin of your choice
    Customize parameters to your specification
    Windows Wallets and Installer
    Source code

100,000 XCASH    50,000 XCASH    25,000 XCASH

* Prices subject to change based on XCASH nominal exchange rates.
* Prices NOT subject to change based on OSC nominal exchange rates.


---
The work of the Coin economy designer is to think how the economy gets towards the Dynamic optimum state from the unoptimal Initial state. -- Rpie

                ▄██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
           ▄████▄▄▄▄▄██████████████▄
         ▄████████████████▄▄▄███████
       ▄█████████████████████████████
     ▄████████▀▀▀▀▀▀▀███████████████▄
   ▄████████▀█▀███▀        ███████████
 ▄████████▀███             ███████████
▄███████▀████                ██████████▄
███████████▀                  ██████████
 ██████▄████                   ██████▄███
  ██████▄████                 ▄█████████
   ██████▄████              ▄██████████
    ██████▄█████▄▄▄▄▄     ▄████████▀
     ██████▄████████████▄████████▀█▀██▀
      ██████████▄▄▄▄▄▄▄████████▀█▀██▀
       ██████████████████████▀█▀█▀
         ▀▀▀▀▀▀███████████▀▀▀▀
                      ▀██▀▀
─────────────────
Revolutionized.  ──


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





█████████████████████████
██ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ██
██ ████████████▀▀▀████ ██
██ ████████▀▀     ████ ██
██ █████▀    ▄▀  ▐████ ██
██ ██▀     ▄▀    ▐████ ██
██ ████▄▄ █▀     █████ ██
██ ██████ ▄▄█   ▐█████ ██
██ ████████████ ██████ ██
██ ███████████████████ ██
██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄██
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.WHITEPAPER.
ANN Thread
Reddit

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

  ─────────────  Join
SMARC token ICO

█████
   ██
 █ ██
 █ ██
 █ ██
 █
martinw79
Member
**
Offline Offline

Activity: 94
Merit: 10


View Profile
July 31, 2014, 01:33:32 AM
 #477

Is there a website being built for OSC?  If not, I would like to volunteer to build one in HTML5 and offer the hosting as well.  I reached out to Bryce about building a site for OSC, he said sure but I don't have a way to DM him.  Please PM me.

___________________
MW79
BitcoinNational
Legendary
*
Offline Offline

Activity: 1470
Merit: 1010


Join The Blockchain Revolution In Logistics


View Profile
August 09, 2014, 03:43:56 PM
Last edit: August 31, 2014, 02:44:30 PM by BitcoinNational
 #478

websites wanted THEREFORE web devvies wanted
OSC union no.2 the webbies

---

Is there anyone willing to teach me how to make an alt coin? Cheesy

http://coincreator.net/

Probably the easiest way. If you are looking to make a "real" altcoin, with unique features, then you need to learn programming.

Try http://www.codecademy.com/

^ OSC union no.1 the coders

V OSC union no.3 the builders
robots, atms, and other cool toys

V OSC union no.4 the researchers
human intel, info gathers

V OSC union no.5 the architects
smart OS systems designers

Quote
What is Open Source?

Open source is a model.
Where access is open [not limited,without permits].
Where redistribution of time, work and information is through voluntary collaboration.
Where leaders give good direction, yet authorize no direct orders.

E Pluribus Unum

protoDAC ... seed stock generating new crypto ventures

                ▄██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
           ▄████▄▄▄▄▄██████████████▄
         ▄████████████████▄▄▄███████
       ▄█████████████████████████████
     ▄████████▀▀▀▀▀▀▀███████████████▄
   ▄████████▀█▀███▀        ███████████
 ▄████████▀███             ███████████
▄███████▀████                ██████████▄
███████████▀                  ██████████
 ██████▄████                   ██████▄███
  ██████▄████                 ▄█████████
   ██████▄████              ▄██████████
    ██████▄█████▄▄▄▄▄     ▄████████▀
     ██████▄████████████▄████████▀█▀██▀
      ██████████▄▄▄▄▄▄▄████████▀█▀██▀
       ██████████████████████▀█▀█▀
         ▀▀▀▀▀▀███████████▀▀▀▀
                      ▀██▀▀
─────────────────
Revolutionized.  ──


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





█████████████████████████
██ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ██
██ ████████████▀▀▀████ ██
██ ████████▀▀     ████ ██
██ █████▀    ▄▀  ▐████ ██
██ ██▀     ▄▀    ▐████ ██
██ ████▄▄ █▀     █████ ██
██ ██████ ▄▄█   ▐█████ ██
██ ████████████ ██████ ██
██ ███████████████████ ██
██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄██
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.WHITEPAPER.
ANN Thread
Reddit

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

  ─────────────  Join
SMARC token ICO

█████
   ██
 █ ██
 █ ██
 █ ██
 █
BitcoinNational
Legendary
*
Offline Offline

Activity: 1470
Merit: 1010


Join The Blockchain Revolution In Logistics


View Profile
September 10, 2014, 05:37:29 PM
Last edit: September 11, 2014, 08:16:00 AM by BitcoinNational
 #479

BW
open plea here

You're a very busy guy.  And that's awesome.

So it's understandable that your time is very limited for FUD'n with the BCT h8ters.

But

You could assemble an army of 'open source' code monkeys with a single tweet.  
and (we) pay them OSC
That would be pretty cool.  And (most of) the whiners could then just shut up.  

Cuz' you'll have your own 24/7 coder factory doing nothing more than scrubbing and polishing the github.

plus

If the market is buying up Xcash then wouldn't the market perhaps like a taste of an honest and long market tested 'coders-for-hire' coin.

How's that for an asset backed network - army of elite commando 'open source' code monkeys!

                ▄██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
           ▄████▄▄▄▄▄██████████████▄
         ▄████████████████▄▄▄███████
       ▄█████████████████████████████
     ▄████████▀▀▀▀▀▀▀███████████████▄
   ▄████████▀█▀███▀        ███████████
 ▄████████▀███             ███████████
▄███████▀████                ██████████▄
███████████▀                  ██████████
 ██████▄████                   ██████▄███
  ██████▄████                 ▄█████████
   ██████▄████              ▄██████████
    ██████▄█████▄▄▄▄▄     ▄████████▀
     ██████▄████████████▄████████▀█▀██▀
      ██████████▄▄▄▄▄▄▄████████▀█▀██▀
       ██████████████████████▀█▀█▀
         ▀▀▀▀▀▀███████████▀▀▀▀
                      ▀██▀▀
─────────────────
Revolutionized.  ──


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





█████████████████████████
██ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ██
██ ████████████▀▀▀████ ██
██ ████████▀▀     ████ ██
██ █████▀    ▄▀  ▐████ ██
██ ██▀     ▄▀    ▐████ ██
██ ████▄▄ █▀     █████ ██
██ ██████ ▄▄█   ▐█████ ██
██ ████████████ ██████ ██
██ ███████████████████ ██
██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄██
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.WHITEPAPER.
ANN Thread
Reddit

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

  ─────────────  Join
SMARC token ICO

█████
   ██
 █ ██
 █ ██
 █ ██
 █
BitcoinNational
Legendary
*
Offline Offline

Activity: 1470
Merit: 1010


Join The Blockchain Revolution In Logistics


View Profile
September 16, 2014, 12:08:16 PM
 #480

OSC (seed) ... open source original source educational papers/lessons block chain

                ▄██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
           ▄████▄▄▄▄▄██████████████▄
         ▄████████████████▄▄▄███████
       ▄█████████████████████████████
     ▄████████▀▀▀▀▀▀▀███████████████▄
   ▄████████▀█▀███▀        ███████████
 ▄████████▀███             ███████████
▄███████▀████                ██████████▄
███████████▀                  ██████████
 ██████▄████                   ██████▄███
  ██████▄████                 ▄█████████
   ██████▄████              ▄██████████
    ██████▄█████▄▄▄▄▄     ▄████████▀
     ██████▄████████████▄████████▀█▀██▀
      ██████████▄▄▄▄▄▄▄████████▀█▀██▀
       ██████████████████████▀█▀█▀
         ▀▀▀▀▀▀███████████▀▀▀▀
                      ▀██▀▀
─────────────────
Revolutionized.  ──


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





█████████████████████████
██ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ██
██ ████████████▀▀▀████ ██
██ ████████▀▀     ████ ██
██ █████▀    ▄▀  ▐████ ██
██ ██▀     ▄▀    ▐████ ██
██ ████▄▄ █▀     █████ ██
██ ██████ ▄▄█   ▐█████ ██
██ ████████████ ██████ ██
██ ███████████████████ ██
██▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄██
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.WHITEPAPER.
ANN Thread
Reddit

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

  ─────────────  Join
SMARC token ICO

█████
   ██
 █ ██
 █ ██
 █ ██
 █
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 35 36 37 38 39 40 41 »
  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!