Bitcoin Forum
May 02, 2024, 07:43:34 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 »
241  Alternate cryptocurrencies / Altcoin Discussion / Re: CLONINING ETHEREUM IS EASIER THAN MAKING A CRYPTONOTE OR FORKNOTE (Here is How) on: January 22, 2018, 08:32:01 PM
https://github.com/ethereum/go-ethereum
242  Alternate cryptocurrencies / Altcoin Discussion / Re: CLONINING ETHEREUM IS EASIER THAN MAKING A CRYPTONOTE OR FORKNOTE (Here is How) on: January 22, 2018, 08:29:43 PM
And apparently, the way to get consensus is to have your Genesis.json file put into your Ethereum Wallet. And it will turn the old Wallet into a Wallet for your Blockchain.
243  Alternate cryptocurrencies / Altcoin Discussion / Re: CLONINING ETHEREUM IS EASIER THAN MAKING A CRYPTONOTE OR FORKNOTE (Here is How) on: January 22, 2018, 08:27:53 PM
geth --datadir path/to/custom/data/folder --networkid 15 --bootnodes <bootnode-enode-url-from-above>

$ geth <usual-flags> --mine --minerthreads=1 --etherbase=0x0000000000000000000000000000000000000000
244  Alternate cryptocurrencies / Altcoin Discussion / Re: CLONINING ETHEREUM IS EASIER THAN MAKING A CRYPTONOTE OR FORKNOTE (Here is How) on: January 22, 2018, 08:25:26 PM
bootnode --genkey=boot.key
bootnode --nodekey=boot.key

To get your Public URL for everyone
245  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Temple Coin is creating an Ethereum Clone called Akasha आकाश on: January 22, 2018, 08:23:36 PM
self=enode://51aead4deb91cf94a442a1aab7c0d3b3270e5019f4eb973745fe0aa5dc19ca45f518e9d5d6f500c33769dcb88a728227e9ac7c9764a1bcd92d462ff95bdc5aac@[::]:30301
246  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Temple Coin is creating an Ethereum Clone called Akasha आकाश on: January 22, 2018, 08:13:06 PM
Btw the ID is 4211 if you want to be a Peer on this one, it may end up just being a test though before we launch the official one.
247  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN] Temple Coin is creating an Ethereum Clone called Akasha आकाश on: January 22, 2018, 08:08:13 PM
So I have been trying to figure it out for a few days, and it was pretty easy once I figured it  out. So now our Team is going to get started on a version called Akasha आकाश, and we are looking for people who want to be involved (Peers, etc)




Method 1:

sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum

If you want to stay on the bleeding edge, install the ethereum-unstable package instead.

After installing, run geth account new to create an account on your node.

You should now be able to run

geth

and connect to the network.

Make sure to check the different options and commands with geth --help

Download this and put it in a folder
https://raw.githubusercontent.com/ethereum/genesis_block_generator/master/mk_genesis_block.py

python mk_genesis_block.py --extradata hash_for_#1028201_goes_here > genesis_block.json

https://forum.ethereum.org/discussion/2571/python-error-when-trying-to-create-genesis-block

python mk_genesis_block.py --extradata 0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa > genesis_block.json

If you can get through the errors there, then go here:
https://blog.ethereum.org/2015/07/27/final-steps/

Method 2: (Requires you to try method 1 at least 1 time through so you have everything installed, but you have to close that Window that Started Mining)

If not, now you have everything you need to do it this way

mkdir my-eth-chain
cd my-eth-chain

gedit myGenesis.json

put this in that file
Code:
{
   "config": {
      "chainId": 1994,
      "homesteadBlock": 0,
      "eip155Block": 0,
      "eip158Block": 0,
      "byzantiumBlock": 0
   },
   "difficulty": "400",
   "gasLimit": "2000000",
   "alloc": {
      "7b684d27167d208c66584ece7f09d8bc8f86ffff": {
          "balance": "100000000000000000000000"
      },
      "ae13d41d66af28380c7af6d825ab557eb271ffff": {
          "balance": "120000000000000000000000"
      }
   }
}

geth --datadir ./myDataDir init ./myGenesis.json

geth --datadir ./myDataDir --networkid 1114 console 2>> myEth.log

(CHANGE THE 1114 to something else)

    Open another terminal window

    cd to my-eth-chain

    Type tail -f myEth2.log

    In the geth JavaScript console of your 1st peer (back to the other terminal window), type:


> personal.newAccount("<YOUR_PASSPHRASE>")

> eth.coinbase

Check your balance with
> eth.getBalance(eth.coinbase)
Run
> miner.start()


Then go here:
https://blog.ethereum.org/2015/07/27/final-steps/
248  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] #Blessed Temple Coin [TMPC] PoS 8% & Shaligram [SGRAM] [SHG] PoW on: January 22, 2018, 07:49:23 PM



Method 1:

sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum

If you want to stay on the bleeding edge, install the ethereum-unstable package instead.

After installing, run geth account new to create an account on your node.

You should now be able to run

geth

and connect to the network.

Make sure to check the different options and commands with geth --help

Download this and put it in a folder
https://raw.githubusercontent.com/ethereum/genesis_block_generator/master/mk_genesis_block.py

python mk_genesis_block.py --extradata hash_for_#1028201_goes_here > genesis_block.json

https://forum.ethereum.org/discussion/2571/python-error-when-trying-to-create-genesis-block

python mk_genesis_block.py --extradata 0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa > genesis_block.json

If you can get through the errors there, then go here:
https://blog.ethereum.org/2015/07/27/final-steps/

Method 2: (Requires you to try method 1 at least 1 time through so you have everything installed, but you have to close that Window that Started Mining)

If not, now you have everything you need to do it this way

mkdir my-eth-chain
cd my-eth-chain

gedit myGenesis.json

put this in that file
Code:
{
   "config": {
      "chainId": 1994,
      "homesteadBlock": 0,
      "eip155Block": 0,
      "eip158Block": 0,
      "byzantiumBlock": 0
   },
   "difficulty": "400",
   "gasLimit": "2000000",
   "alloc": {
      "7b684d27167d208c66584ece7f09d8bc8f86ffff": {
          "balance": "100000000000000000000000"
      },
      "ae13d41d66af28380c7af6d825ab557eb271ffff": {
          "balance": "120000000000000000000000"
      }
   }
}

geth --datadir ./myDataDir init ./myGenesis.json

geth --datadir ./myDataDir --networkid 1114 console 2>> myEth.log

(CHANGE THE 1114 to something else)

    Open another terminal window

    cd to my-eth-chain

    Type tail -f myEth2.log

    In the geth JavaScript console of your 1st peer (back to the other terminal window), type:


> personal.newAccount("<YOUR_PASSPHRASE>")

> eth.coinbase

Check your balance with
> eth.getBalance(eth.coinbase)
Run
> miner.start()


Then go here:
https://blog.ethereum.org/2015/07/27/final-steps/
249  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] The Temple Coin Team on: January 22, 2018, 07:48:44 PM



Method 1:

sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum

If you want to stay on the bleeding edge, install the ethereum-unstable package instead.

After installing, run geth account new to create an account on your node.

You should now be able to run geth and connect to the network.

Make sure to check the different options and commands with geth --help

Download this and put it in a folder
https://raw.githubusercontent.com/ethereum/genesis_block_generator/master/mk_genesis_block.py

python mk_genesis_block.py --extradata hash_for_#1028201_goes_here > genesis_block.json

https://forum.ethereum.org/discussion/2571/python-error-when-trying-to-create-genesis-block

python mk_genesis_block.py --extradata 0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa > genesis_block.json

If you can get through the errors there, then go here:
https://blog.ethereum.org/2015/07/27/final-steps/

Method 2: (Requires you to try method 1 at least 1 time through so you have everything installed, but you have to close that Window that Started Mining)

If not, now you have everything you need to do it this way

mkdir my-eth-chain
cd my-eth-chain

gedit myGenesis.json

put this in that file
Code:
{
   "config": {
      "chainId": 1994,
      "homesteadBlock": 0,
      "eip155Block": 0,
      "eip158Block": 0,
      "byzantiumBlock": 0
   },
   "difficulty": "400",
   "gasLimit": "2000000",
   "alloc": {
      "7b684d27167d208c66584ece7f09d8bc8f86ffff": {
          "balance": "100000000000000000000000"
      },
      "ae13d41d66af28380c7af6d825ab557eb271ffff": {
          "balance": "120000000000000000000000"
      }
   }
}

geth --datadir ./myDataDir init ./myGenesis.json

geth --datadir ./myDataDir --networkid 1114 console 2>> myEth.log

(CHANGE THE 1114 to something else)

    Open another terminal window

    cd to my-eth-chain

    Type tail -f myEth2.log

    In the geth JavaScript console of your 1st peer (back to the other terminal window), type:


> personal.newAccount("<YOUR_PASSPHRASE>")

> eth.coinbase

Check your balance with
> eth.getBalance(eth.coinbase)
Run
> miner.start()


Then go here:
https://blog.ethereum.org/2015/07/27/final-steps/
250  Alternate cryptocurrencies / Altcoin Discussion / CLONINING ETHEREUM IS EASIER THAN MAKING A CRYPTONOTE OR FORKNOTE (Here is How) on: January 22, 2018, 07:45:29 PM



Method 1:

sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum

If you want to stay on the bleeding edge, install the ethereum-unstable package instead.

After installing, run geth account new to create an account on your node.

You should now be able to run

geth

and connect to the network.

Make sure to check the different options and commands with geth --help

Download this and put it in a folder
https://raw.githubusercontent.com/ethereum/genesis_block_generator/master/mk_genesis_block.py

python mk_genesis_block.py --extradata hash_for_#1028201_goes_here > genesis_block.json

https://forum.ethereum.org/discussion/2571/python-error-when-trying-to-create-genesis-block

python mk_genesis_block.py --extradata 0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa > genesis_block.json

If you can get through the errors there, then go here:
https://blog.ethereum.org/2015/07/27/final-steps/

Method 2: (Requires you to try method 1 at least 1 time through so you have everything installed, but you have to close that Window that Started Mining)

If not, now you have everything you need to do it this way

mkdir my-eth-chain
cd my-eth-chain

gedit myGenesis.json

put this in that file
Code:
{
   "config": {
      "chainId": 1994,
      "homesteadBlock": 0,
      "eip155Block": 0,
      "eip158Block": 0,
      "byzantiumBlock": 0
   },
   "difficulty": "400",
   "gasLimit": "2000000",
   "alloc": {
      "7b684d27167d208c66584ece7f09d8bc8f86ffff": {
          "balance": "100000000000000000000000"
      },
      "ae13d41d66af28380c7af6d825ab557eb271ffff": {
          "balance": "120000000000000000000000"
      }
   }
}

geth --datadir ./myDataDir init ./myGenesis.json

geth --datadir ./myDataDir --networkid 1114 console 2>> myEth.log

(CHANGE THE 1114 to something else)

    Open another terminal window

    cd to my-eth-chain

    Type tail -f myEth2.log

    In the geth JavaScript console of your 1st peer (back to the other terminal window), type:


> personal.newAccount("<YOUR_PASSPHRASE>")

> eth.coinbase

Check your balance with
> eth.getBalance(eth.coinbase)
Run
> miner.start()


Then go here:
https://blog.ethereum.org/2015/07/27/final-steps/
251  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] The Temple Coin Team on: January 22, 2018, 07:35:08 PM
Once you have that stuff set up, you can create your own Private Ethereum Blockchain using these Steps. I will create  a separate thread that has all of this in one place for everyone.

https://medium.com/mercuryprotocol/how-to-create-your-own-private-ethereum-blockchain-dad6af82fc9f
252  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] The Temple Coin Team on: January 22, 2018, 06:53:31 PM
https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum

https://raw.githubusercontent.com/ethereum/genesis_block_generator/master/mk_genesis_block.py

python mk_genesis_block.py --extradata hash_for_#1028201_goes_here > genesis_block.json

https://forum.ethereum.org/discussion/2571/python-error-when-trying-to-create-genesis-block

python mk_genesis_block.py --extradata 0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa > genesis_block.json

https://blog.ethereum.org/2015/07/27/final-steps/
253  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] #Blessed Temple Coin [TMPC] PoS 8% & Shaligram [SGRAM] [SHG] PoW on: January 22, 2018, 06:22:54 PM
https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum

https://raw.githubusercontent.com/ethereum/genesis_block_generator/master/mk_genesis_block.py

python mk_genesis_block.py --extradata hash_for_#1028201_goes_here > genesis_block.json

https://forum.ethereum.org/discussion/2571/python-error-when-trying-to-create-genesis-block

python mk_genesis_block.py --extradata 0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa > genesis_block.json

https://blog.ethereum.org/2015/07/27/final-steps/
254  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] #Blessed Temple Coin [TMPC] PoS 8% & Shaligram [SGRAM] [SHG] PoW on: January 22, 2018, 05:56:26 PM
Interesting Coins

Bitmark
https://bitcointalk.org/index.php?topic=660544.0

Football Coin
https://bitcointalk.org/index.php?topic=622366.0

Carbon Neutral Coin
https://bitcointalk.org/index.php?topic=526031.0

Canada Coin
https://bitcointalk.org/index.php?topic=599784.0

California Coin
https://bitcointalk.org/index.php?topic=589672.0

Iceland Coin
https://bitcointalk.org/index.php?topic=446062.0

Australia Coin
https://bitcointalk.org/index.php?topic=538580.0

World Coin
https://bitcointalk.org/index.php?topic=513619.0

University Coin
https://bitcointalk.org/index.php?topic=590681.0

Belarus Coin
https://bitcointalk.org/index.php?topic=676992

Independence Coin
https://bitcointalk.org/index.php?topic=527061.0
255  Alternate cryptocurrencies / Altcoin Discussion / Re: ॐ Temple Coin Syllabus ॐ on: January 22, 2018, 05:44:26 PM
Kodak is launching a Coin
https://www.kodak.com/kodakone/default.htm



Supposedly Telegram is launching an ICO, but there is no Website yet, and any website should be considered a scam for now, this one has a video and says to consider them rumors; not official
https://icodrops.com/telegram-ico-ton/

This is the future of Currency, when Google has a Coin, then your neighbor will start a Coin for his T-Shirt shop, and your Mayor will want a Coin for your Town, and McDonalds will be giving you mining instructions instead of Monopoly pieces, and then we move into the Future.

All of you people making random Coins, like PotCoin or NextCoin or Hyper or any of these Pointless Coins that have no purpose. One day maybe a person with a purpose will use your Blockchains and Fork it or Clone it, but you are nothing but a Programmer. For example, Temple Coin.

The Future of Coins is not surrounded by Programmers, it is simply supplied by them.

Santa Clara County v. Southern Pacific Railroad Company, 118 US 394 (1886)
Before argument, Mr. Chief Justice Waite said: "The court does not wish to hear argument on the question whether the provision in the Fourteenth Amendment to the Constitution, which forbids a State to deny to any person within its jurisdiction the equal protection of the laws, applies to these corporations. We are all of the opinion that it does."

Citizens United v. Federal Election Comm'n 558 U.S. _ (2010)
Corporations and unions may establish a political action committee (PAC) for express advocacy or electioneering communications purposes. 2 U. S. C. §441b(b)(2). In McConnell v. Federal Election Comm’n, 540 U. S. 93, 203–209, this Court upheld limits on electioneering communications in a facial challenge, relying on the holding in Austin v. Michigan Chamber of Commerce, 494 U. S. 652, that political speech may be banned based on the speaker’s corporate identity.

Burwell v. Hobby Lobby Stores, Inc. 573 U.S. _ (2014)
"The Religious Freedom Restoration Act of 1993 (RFRA) prohibits the “Government [from] substantially burden[ing] a person’s exercise of religion even if the burden results from a rule of general applicability” unless the Government “demonstrates that application of the burden to the person—(1) is in furtherance of a compelling governmental interest; and (2) is the least restrictive means of furthering that compelling governmental interest.” 42 U. S. C. §§2000bb–1(a), (b). As amended by the Religious Land Use and Institutionalized Persons Act of 2000 (RLUIPA), RFRA covers “any exercise of religion, whether or not compelled by, or central to, a system of religious belief.” §2000cc–5(7)(A)."
256  Alternate cryptocurrencies / Altcoin Discussion / Re: I am Looking for People Who Want To Create a Currency for Their Home Town on: January 22, 2018, 05:40:50 PM
Kodak is launching a Coin
https://www.kodak.com/kodakone/default.htm



Supposedly Telegram is launching an ICO, but there is no Website yet, and any website should be considered a scam for now, this one has a video and says to consider them rumors; not official
https://icodrops.com/telegram-ico-ton/

This is the future of Currency, when Google has a Coin, then your neighbor will start a Coin for his T-Shirt shop, and your Mayor will want a Coin for your Town, and McDonalds will be giving you mining instructions instead of Monopoly pieces, and then we move into the Future.

All of you people making random Coins, like PotCoin or NextCoin or Hyper or any of these Pointless Coins that have no purpose. One day maybe a person with a purpose will use your Blockchains and Fork it or Clone it, but you are nothing but a Programmer. For example, Temple Coin.

The Future of Coins is not surrounded by Programmers, it is simply supplied by them.

Santa Clara County v. Southern Pacific Railroad Company, 118 US 394 (1886)
Before argument, Mr. Chief Justice Waite said: "The court does not wish to hear argument on the question whether the provision in the Fourteenth Amendment to the Constitution, which forbids a State to deny to any person within its jurisdiction the equal protection of the laws, applies to these corporations. We are all of the opinion that it does."

Citizens United v. Federal Election Comm'n 558 U.S. _ (2010)
Corporations and unions may establish a political action committee (PAC) for express advocacy or electioneering communications purposes. 2 U. S. C. §441b(b)(2). In McConnell v. Federal Election Comm’n, 540 U. S. 93, 203–209, this Court upheld limits on electioneering communications in a facial challenge, relying on the holding in Austin v. Michigan Chamber of Commerce, 494 U. S. 652, that political speech may be banned based on the speaker’s corporate identity.

Burwell v. Hobby Lobby Stores, Inc. 573 U.S. _ (2014)
"The Religious Freedom Restoration Act of 1993 (RFRA) prohibits the “Government [from] substantially burden[ing] a person’s exercise of religion even if the burden results from a rule of general applicability” unless the Government “demonstrates that application of the burden to the person—(1) is in furtherance of a compelling governmental interest; and (2) is the least restrictive means of furthering that compelling governmental interest.” 42 U. S. C. §§2000bb–1(a), (b). As amended by the Religious Land Use and Institutionalized Persons Act of 2000 (RLUIPA), RFRA covers “any exercise of religion, whether or not compelled by, or central to, a system of religious belief.” §2000cc–5(7)(A)."
257  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] #Blessed Temple Coin [TMPC] PoS 8% & Shaligram [SGRAM] [SHG] PoW on: January 22, 2018, 05:39:53 PM
Kodak is launching a Coin
https://www.kodak.com/kodakone/default.htm



Supposedly Telegram is launching an ICO, but there is no Website yet, and any website should be considered a scam for now, this one has a video and says to consider them rumors; not official
https://icodrops.com/telegram-ico-ton/

This is the future of Currency, when Google has a Coin, then your neighbor will start a Coin for his T-Shirt shop, and your Mayor will want a Coin for your Town, and McDonalds will be giving you mining instructions instead of Monopoly pieces, and then we move into the Future.

All of you people making random Coins, like PotCoin or NextCoin or Hyper or any of these Pointless Coins that have no purpose. One day maybe a person with a purpose will use your Blockchains and Fork it or Clone it, but you are nothing but a Programmer. For example, Temple Coin.

The Future of Coins is not surrounded by Programmers, it is simply supplied by them.

Santa Clara County v. Southern Pacific Railroad Company, 118 US 394 (1886)
Before argument, Mr. Chief Justice Waite said: "The court does not wish to hear argument on the question whether the provision in the Fourteenth Amendment to the Constitution, which forbids a State to deny to any person within its jurisdiction the equal protection of the laws, applies to these corporations. We are all of the opinion that it does."

Citizens United v. Federal Election Comm'n 558 U.S. _ (2010)
Corporations and unions may establish a political action committee (PAC) for express advocacy or electioneering communications purposes. 2 U. S. C. §441b(b)(2). In McConnell v. Federal Election Comm’n, 540 U. S. 93, 203–209, this Court upheld limits on electioneering communications in a facial challenge, relying on the holding in Austin v. Michigan Chamber of Commerce, 494 U. S. 652, that political speech may be banned based on the speaker’s corporate identity.

Burwell v. Hobby Lobby Stores, Inc. 573 U.S. _ (2014)
"The Religious Freedom Restoration Act of 1993 (RFRA) prohibits the “Government [from] substantially burden[ing] a person’s exercise of religion even if the burden results from a rule of general applicability” unless the Government “demonstrates that application of the burden to the person—(1) is in furtherance of a compelling governmental interest; and (2) is the least restrictive means of furthering that compelling governmental interest.” 42 U. S. C. §§2000bb–1(a), (b). As amended by the Religious Land Use and Institutionalized Persons Act of 2000 (RLUIPA), RFRA covers “any exercise of religion, whether or not compelled by, or central to, a system of religious belief.” §2000cc–5(7)(A)."
258  Alternate cryptocurrencies / Altcoin Discussion / Re: This fourm knows nothing on: January 22, 2018, 05:39:00 PM
Kodak is launching a Coin
https://www.kodak.com/kodakone/default.htm



Supposedly Telegram is launching an ICO, but there is no Website yet, and any website should be considered a scam for now, this one has a video and says to consider them rumors; not official
https://icodrops.com/telegram-ico-ton/

This is the future of Currency, when Google has a Coin, then your neighbor will start a Coin for his T-Shirt shop, and your Mayor will want a Coin for your Town, and McDonalds will be giving you mining instructions instead of Monopoly pieces, and then we move into the Future.

All of you people making random Coins, like PotCoin or NextCoin or Hyper or any of these Pointless Coins that have no purpose. One day maybe a person with a purpose will use your Blockchains and Fork it or Clone it, but you are nothing but a Programmer. For example, Temple Coin.

The Future of Coins is not surrounded by Programmers, it is simply supplied by them.

Santa Clara County v. Southern Pacific Railroad Company, 118 US 394 (1886)
Before argument, Mr. Chief Justice Waite said: "The court does not wish to hear argument on the question whether the provision in the Fourteenth Amendment to the Constitution, which forbids a State to deny to any person within its jurisdiction the equal protection of the laws, applies to these corporations. We are all of the opinion that it does."

Citizens United v. Federal Election Comm'n 558 U.S. _ (2010)
Corporations and unions may establish a political action committee (PAC) for express advocacy or electioneering communications purposes. 2 U. S. C. §441b(b)(2). In McConnell v. Federal Election Comm’n, 540 U. S. 93, 203–209, this Court upheld limits on electioneering communications in a facial challenge, relying on the holding in Austin v. Michigan Chamber of Commerce, 494 U. S. 652, that political speech may be banned based on the speaker’s corporate identity.

Burwell v. Hobby Lobby Stores, Inc. 573 U.S. _ (2014)
"The Religious Freedom Restoration Act of 1993 (RFRA) prohibits the “Government [from] substantially burden[ing] a person’s exercise of religion even if the burden results from a rule of general applicability” unless the Government “demonstrates that application of the burden to the person—(1) is in furtherance of a compelling governmental interest; and (2) is the least restrictive means of furthering that compelling governmental interest.” 42 U. S. C. §§2000bb–1(a), (b). As amended by the Religious Land Use and Institutionalized Persons Act of 2000 (RLUIPA), RFRA covers “any exercise of religion, whether or not compelled by, or central to, a system of religious belief.” §2000cc–5(7)(A)."
259  Economy / Trading Discussion / Re: Economics 101 on: January 22, 2018, 05:31:48 PM
Kodak is launching a Coin
https://www.kodak.com/kodakone/default.htm



Supposedly Telegram is launching an ICO, but there is no Website yet, and any website should be considered a scam for now, this one has a video and says to consider them rumors; not official
https://icodrops.com/telegram-ico-ton/

This is the future of Currency, when Google has a Coin, then your neighbor will start a Coin for his T-Shirt shop, and your Mayor will want a Coin for your Town, and McDonalds will be giving you mining instructions instead of Monopoly pieces, and then we move into the Future.

All of you people making random Coins, like PotCoin or NextCoin or Hyper or any of these Pointless Coins that have no purpose. One day maybe a person with a purpose will use your Blockchains and Fork it or Clone it, but you are nothing but a Programmer.

The Future of Coins is not surrounded by Programmers, it is simply supplied by them.

Santa Clara County v. Southern Pacific Railroad Company, 118 US 394 (1886)
Before argument, Mr. Chief Justice Waite said: "The court does not wish to hear argument on the question whether the provision in the Fourteenth Amendment to the Constitution, which forbids a State to deny to any person within its jurisdiction the equal protection of the laws, applies to these corporations. We are all of the opinion that it does."

Citizens United v. Federal Election Comm'n 558 U.S. _ (2010)
Corporations and unions may establish a political action committee (PAC) for express advocacy or electioneering communications purposes. 2 U. S. C. §441b(b)(2). In McConnell v. Federal Election Comm’n, 540 U. S. 93, 203–209, this Court upheld limits on electioneering communications in a facial challenge, relying on the holding in Austin v. Michigan Chamber of Commerce, 494 U. S. 652, that political speech may be banned based on the speaker’s corporate identity.

Burwell v. Hobby Lobby Stores, Inc. 573 U.S. _ (2014)
"The Religious Freedom Restoration Act of 1993 (RFRA) prohibits the “Government [from] substantially burden[ing] a person’s exercise of religion even if the burden results from a rule of general applicability” unless the Government “demonstrates that application of the burden to the person—(1) is in furtherance of a compelling governmental interest; and (2) is the least restrictive means of furthering that compelling governmental interest.” 42 U. S. C. §§2000bb–1(a), (b). As amended by the Religious Land Use and Institutionalized Persons Act of 2000 (RLUIPA), RFRA covers “any exercise of religion, whether or not compelled by, or central to, a system of religious belief.” §2000cc–5(7)(A)."
260  Alternate cryptocurrencies / Altcoin Discussion / The Future of Currency is in Corporate Coins (Kodak Coin & Telegram ICO) on: January 22, 2018, 05:30:09 PM
Kodak is launching a Coin
https://www.kodak.com/kodakone/default.htm



Supposedly Telegram is launching an ICO, but there is no Website yet, and any website should be considered a scam for now, this one has a video and says to consider them rumors; not official
https://icodrops.com/telegram-ico-ton/

This is the future of Currency, when Google has a Coin, then your neighbor will start a Coin for his T-Shirt shop, and your Mayor will want a Coin for your Town, and McDonalds will be giving you mining instructions instead of Monopoly pieces, and then we move into the Future.

All of you people making random Coins, like PotCoin or NextCoin or Hyper or any of these Pointless Coins that have no purpose. One day maybe a person with a purpose will use your Blockchains and Fork it or Clone it, but you are nothing but a Programmer. For example, Temple Coin.

The Future of Coins is not surrounded by Programmers, it is simply supplied by them.

Santa Clara County v. Southern Pacific Railroad Company, 118 US 394 (1886)
Before argument, Mr. Chief Justice Waite said: "The court does not wish to hear argument on the question whether the provision in the Fourteenth Amendment to the Constitution, which forbids a State to deny to any person within its jurisdiction the equal protection of the laws, applies to these corporations. We are all of the opinion that it does."

Citizens United v. Federal Election Comm'n 558 U.S. _ (2010)
Corporations and unions may establish a political action committee (PAC) for express advocacy or electioneering communications purposes. 2 U. S. C. §441b(b)(2). In McConnell v. Federal Election Comm’n, 540 U. S. 93, 203–209, this Court upheld limits on electioneering communications in a facial challenge, relying on the holding in Austin v. Michigan Chamber of Commerce, 494 U. S. 652, that political speech may be banned based on the speaker’s corporate identity.

Burwell v. Hobby Lobby Stores, Inc. 573 U.S. _ (2014)
"The Religious Freedom Restoration Act of 1993 (RFRA) prohibits the “Government [from] substantially burden[ing] a person’s exercise of religion even if the burden results from a rule of general applicability” unless the Government “demonstrates that application of the burden to the person—(1) is in furtherance of a compelling governmental interest; and (2) is the least restrictive means of furthering that compelling governmental interest.” 42 U. S. C. §§2000bb–1(a), (b). As amended by the Religious Land Use and Institutionalized Persons Act of 2000 (RLUIPA), RFRA covers “any exercise of religion, whether or not compelled by, or central to, a system of religious belief.” §2000cc–5(7)(A)."
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 42 43 44 45 46 47 48 49 50 51 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!