Author

Topic: Creating Your Own CryptoCurrency (An actual guide, not an Easter Egg Hunt) (Read 1880 times)

jr. member
Activity: 252
Merit: 1
I want Everyone to know that this CryptoNote Method is the First way that the Van Kush Family is going to Create a Coin, we are actually going to do a CryptoNote Pool First so we can Mine all Kind of CryptoNote Coins, then we are going to Launch Our Own, and then of Course we will tell Others that we can List them in Our Mining Pool, and we will List Coins that we want Our Pool to Hold.
jr. member
Activity: 252
Merit: 1
The Mystery of Easter
Last Easter I put something together for Everyone, so I will do it again here.

In the Ancient World many People used to Worship the Sun, and Today many believe that God does not exist because they can not see him. So, like the Equinox and the Solstices that are Celebrated related to the Sun, most People could Worship the Sun Today, because:

1. They can see it

2. It is the most Massive Object in Visibility

3. It is the Center of our Solar System and all Things

4. The Sun does Struggle and Deal with we could say, Things from Other Stars, the Rest of the Solar System, Gravitational Pulls, and then there are Rocks that Fly in from Other Solar Systems just as an example that You can see, the Sun takes on New Things all the Time, and we don't even have to ask. We don't have to Pray to it, we don't have to Beg it.

5. The Sun comes up Everyday waking up the Creatures it touches, and when it is gone the Great God "The Moon" comes into the Sky. So the Sun and the Moon are similarly situated.

And so,
The Sun might as well be God to most People. And that is also Part of Easter. with Jesus:

1. We can see Jesus

2. Jesus Established the Church which is quite Visible, and he did it while he was Dead mostly

etc,

The Son might as well be God to most People.

And so that is how God has Established the Universe. If You were looking at the Sun, and the Powers it Works with outside of itself, You might not even Recognize that God is Right there, in all of that Happening, none of that is Happening outside of God. But if You are using Your Eyes to make the Determination You might say that it is just the Sun, and that that is what the Sun does, that I am Attributing Things to an Invisible Entity and it is all just the Sun.

And the Son might as well be God to most People.
jr. member
Activity: 252
Merit: 1
I just wanted to Bump this as an Example of the Van Kush Family in the Blockchain Industry.
hero member
Activity: 577
Merit: 500
Wow, wonderful sources of information here.
You guys are genius Smiley

Amazing libraries of resources. Smiley
Thank you so much Cheesy
member
Activity: 98
Merit: 11
I just found this, it is how to run Graphene

Quote
Obtaining and Running Graphene

Graphene is Open Source software available on GitHub. The root repository may be found at the Cryptonomex site. There are three projects to be cloned: graphene, graphene-ui, and fc. OCI’s GitHub page includes forks of graphene and graphene-ui, which serve as our research base repository. You may clone OCI’s copy of graphene by visiting https://github.com/objectcomputing/graphene and https://github.com/objectcomputing/graphene-ui
Comprehensive build and deploy instructions for both kits are included in their respective Readme.md file.

Graphene ships with three executables: the witness_node, cli_wallet, and genesis_util. Once built, you can try running a witness node. Note this example shows how to run the witness node with command line options. 

Code:
dhcp19:graphene phil$ cd programs/witness_node
dhcp19:witness_node phil$ ./witness_node --rpc-endpoint 127.0.0.1:8090 --enable-stale-production -w '"1.6.0"'
2560491ms th_a       main.cpp:126                  main                 ] Writing new config file at /tao_builds/phil/projects/blockchain/phil/graphene/programs/witness_node/witness_node_data_dir/config.ini
2560511ms th_a       witness.cpp:89                plugin_initialize    ] witness plugin:  plugin_initialize() begin
2560511ms th_a       witness.cpp:99                plugin_initialize    ] key_id_to_wif_pair: ["GPH6MRyAjQq8ud7hVNYcfnVPJqcVpscN5So8BhtHuGYqET5GDW5CV","5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3"]
2560511ms th_a       witness.cpp:117               plugin_initialize    ] witness plugin:  plugin_initialize() end
2560512ms th_a       application.cpp:357           startup              ] Replaying blockchain due to version upgrade
2560512ms th_a       application.cpp:254           operator()           ] Initializing database...
2560518ms th_a       db_management.cpp:51          reindex              ] reindexing blockchain
2560518ms th_a       db_management.cpp:104         wipe                 ] Wiping database
2560549ms th_a       object_database.cpp:87        wipe                 ] Wiping object database...
2560549ms th_a       object_database.cpp:89        wipe                 ] Done wiping object databse.
2560549ms th_a       object_database.cpp:94        open                 ] Opening object database from /tao_builds/phil/projects/blockchain/phil/graphene/programs/witness_node/witness_node_data_dir/blockchain ...
2560549ms th_a       object_database.cpp:100       open                 ] Done opening object database.
2560560ms th_a       db_debug.cpp:85               debug_dump           ] total_balances[asset_id_type()].value: 0 core_asset_data.current_supply.value: 1000000000000000
2560560ms th_a       db_management.cpp:58          reindex              ] !no last block
2560560ms th_a       db_management.cpp:59          reindex              ] last_block: 
2560562ms th_a       thread.cpp:95                 thread               ] name:ntp tid:123145365336064
2560562ms th_a       thread.cpp:95                 thread               ] name:p2p tid:123145366409216
2560566ms th_a       application.cpp:143           reset_p2p_node       ] Configured p2p node to listen on 0.0.0.0:64207
2560568ms th_a       application.cpp:195           reset_websocket_serv ] Configured websocket rpc to listen on 127.0.0.1:8090
2560568ms th_a       witness.cpp:122               plugin_startup       ] witness plugin:  plugin_startup() begin
2560568ms th_a       witness.cpp:129               plugin_startup       ] Launching block production for 1 witnesses.
 
********************************
*                              *
*   ------- NEW CHAIN ------   *
*   - Welcome to Graphene! -   *
*   ------------------------   *
*                              *
********************************
 
Your genesis seems to have an old timestamp
Please consider using the --genesis-timestamp option to give your genesis a recent timestamp
 
2560568ms th_a       witness.cpp:140               plugin_startup       ] witness plugin:  plugin_startup() end
2560568ms th_a       main.cpp:179                  main                 ] Started witness node on a chain with 0 blocks.
2560568ms th_a       main.cpp:180                  main                 ] Chain ID is 0e435e3d20d8efa4e47fae56707a460e35c034aa2b0848e760e51beb13b3db04

After you get the node running, you can connect to the node using the cli_wallet. In a second terminal window, run the command line wallet application.

Code:
dhcp19:graphene phil$ cd program/cli_wallet
dhcp19:cli_wallet phil$ ./cli_wallet
Logging RPC to file: logs/rpc/rpc.log
2838642ms th_a       main.cpp:120                  main                 ] key_to_wif( committee_private_key ): 5KCBDTcyDqzsqehcb52tW5nU6pXife6V2rX9Yf7c3saYSzbDZ5W
2838649ms th_a       main.cpp:124                  main                 ] nathan_pub_key: GPH6MRyAjQq8ud7hVNYcfnVPJqcVpscN5So8BhtHuGYqET5GDW5CV
2838650ms th_a       main.cpp:125                  main                 ] key_to_wif( nathan_private_key ): 5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3
Starting a new wallet with chain ID 0e435e3d20d8efa4e47fae56707a460e35c034aa2b0848e760e51beb13b3db04 (from egenesis)
2838655ms th_a       main.cpp:172                  main                 ] wdata.ws_server: ws://localhost:8090
2838726ms th_a       main.cpp:177                  main                 ] wdata.ws_user:  wdata.ws_password: 
Please use the set_password method to initialize a new wallet before continuing
2838792ms th_a       thread.cpp:95                 thread               ] name:getline tid:123145506545664
new >>>

At this point, you can use the help command to explore how to use the wallet interface.
member
Activity: 98
Merit: 11
https://bitcointalksearch.org/topic/m.27558266

Social/Social Media Blockchains
https://bitcointalksearch.org/topic/anntokensale-allme-the-social-network-of-blockchain-era-2657895
https://bitcointalksearch.org/topic/annicosocialmediamarkettoken-sale-is-closed-thank-you-for-support-2291309
https://bitcointalksearch.org/topic/annexchange-ready-onz-rewarding-social-content-2677363
https://bitcointalksearch.org/topic/bounty-gilgamesh-books-knowledge-platform-2461878
https://bitcointalksearch.org/topic/ann-poet-digital-creative-assets-timestamped-onto-the-blockchain-2027214
https://bitcointalksearch.org/topic/annico-man-matrix-the-intelligent-blockchain-2648330
https://bitcointalksearch.org/topic/sether-arbitrating-advertising-2407336
https://bitcointalksearch.org/topic/ann-taklimakan-network-social-and-business-platform-for-crypto-community-2426759
https://bitcointalksearch.org/topic/anntoken-sale-zpay-network-token-blockchain-for-global-payment-solutions-2519264
https://bitcointalksearch.org/topic/icobounty-heartbout-a-social-network-with-a-decentralized-incentive-system-2567795
https://bitcointalksearch.org/topic/annico-sphere-decentralized-social-networking-200000-users-2437581
https://bitcointalksearch.org/topic/annpresale-active-nauio-disruptive-digital-coupons-platform-on-blockchain-2348476
https://bitcointalksearch.org/topic/annicokahnchat-mobile-payment-and-social-networking-crowdsale-live-now-2644550
https://bitcointalksearch.org/topic/annico-vanywhere-worlds-1-skill-sharing-platform-on-the-blockchain-2432816
https://bitcointalksearch.org/topic/annicocredits-new-blockchain-for-financial-industry-hardcap-reached-2401248
https://bitcointalksearch.org/topic/ann-ito-nov-15-publiq-network-blockchain-distributed-media-2398117
https://bitcointalksearch.org/topic/--2447583
https://bitcointalksearch.org/topic/project-interzone-blockchain-social-engine-2158960
https://bitcointalksearch.org/topic/annicokryptopycomplete-cryptocurrency-social-network-for-traders-2234738
https://bitcointalksearch.org/topic/travelflex-decentralized-social-network-payment-system-2570851
https://bitcointalksearch.org/topic/ann-ico-vzt-vezt-blockchain-secured-music-monetization-platform-2191554
https://bitcointalksearch.org/topic/bounty-pre-ico-geopin-blockchain-based-interface-to-the-physical-world-2372042
https://bitcointalksearch.org/topic/annsale-hdac-blockchain-based-iot-contracts-by-hyundai-27th-november-2402330
https://bitcointalksearch.org/topic/bounty-smschain-the-first-telecom-decentralized-blockchain-platform-2344257
https://bitcointalksearch.org/topic/pre-ico-stockus-fantasy-trading-blockchain-platform-2046801
https://bitcointalksearch.org/topic/annhstico-horizon-state-decision-token-voting-platform-sale-over-2187641
https://bitcointalksearch.org/topic/bounty-v10-closed-cryptoalias-get-your-blockchain-identity-2206682
https://bitcointalksearch.org/topic/closedico-zilliqa-high-throughput-blockchain-platform-2367256
https://bitcointalksearch.org/topic/ann-ico-florio-the-first-blockchain-based-health-platform-2313303
https://bitcointalksearch.org/topic/ann-ico-florio-the-first-blockchain-based-health-platform-2313303
https://bitcointalksearch.org/topic/annairdrop-xnn-xenon-massively-distributed-eos-alt-chain-2209559
https://bitcointalksearch.org/topic/annico-wanchain-connecting-blockchains-to-exchange-value-2110925
https://bitcointalksearch.org/topic/annicobpcrevolution-in-digital-advertising-powered-by-blockchain-2291332

https://bitcointalksearch.org/topic/m.27558266
member
Activity: 128
Merit: 11
Read your thread on bytecoin talk last year. I want to do the same for my own use but a mobile is what would make my project having a chance of being successful.
Do you know of any project that has a android wallet for cryptonote?
newbie
Activity: 154
Merit: 0
Wow, very interesting thread! But it seems to me that to create a real cryptocurrency we need much more.
I mean, I can create even paper money, but I'm very skeptic that someone will accept it :-)
Btw, I'll read with care, may be I discover something real cool. We'll see!
member
Activity: 98
Merit: 11
ॐ Temple Coin Syllabus ॐ

Here is the Syllabus for Temple Coin for anyone who wants to know what we are doing as a Community.

STEP 1-

Christmas- Launch Temple Coin, a Proof-of-Stake Litecoin Clone, and Spread it on Facebook, Google+ and Twitter, while keeping it away from people who already have a ton of different coins, so as to create a new Community, instead of getting existing Bitcoiners to come into our Community.

Week after Christmas- Create Chat Room, Create Currency Symbol, Recruit Temple Coin Emissaries

First Month- Launch a Cryptonote Mining Pool for when we start launching Cryptonotes, Launch the first Town Based Cryptonote, January 20th 2018 make the first Temple Coin sale for Malawi Strains, Give out as many Temple Coins as possible.

That first sale will create value for the Coin. The first Bitcoin sale was 10,000 Bitcoins for 2 Pizzas. That is now over $10,000,000 in Bitcoin. And I was there when Bitcoin was $5 and we personally had to go in large numbers beg companies like Paypal to accept Bitcoins. I was part of Bitcoin becoming what it is, it is guaranteed that I can get value for Currencies I make. I know what I am doing.


STEP 2-

Second Month- Announce Temple Coin, the first Temple Coin sales, and the Community and the Chat Room and the Cryptonote Mining Pool on Bitcointalk, Bitsharestalk, and all Cryptocurrency related forums.

Find an Exchange- At this point we will begin contacting Exchanges to let them know about the Community we have that they can collect fees from if they add our coin to their exchange.

And if there is anyone that has Temple Coins but no patience, you can go ahead and start contacting Exchanges and asking them to list Temple Coin. I will get it listed somewhere by some time in February, but if you really really just have no patience, go ahead and start asking websites like these to list us:

https://novaexchange.com/markets/

https://c-cex.com/


STEP 3- Creating Value

Once we are on an exchange, we will just start making money hand over fist.

(A) First, what I will do, is this: even if the coin is only $0.001 each or something, I will take a large portion of the Coins I have, and I will buy Silver with them. Then I will start offering Silver for sale in exchange for Temple Coins and our Town Currencies. This will create a flood of people who want to buy the Coin, because if they buy the Coin and hold it in their Wallet, it will gain 8% interest per year, and they could either wait for the Coin to go up in value a little, then use it to buy Silver, or use that 8% every year to buy Silver. And because you will be able to do that, the value will go up. I will also create Ethereum Tokens and Bitshares Assets, that we can use for Trading; and we will create a Steemit group where we all create accounts with tons of voting power.

(B) Then, once we have Silver being traded for Coins, then we will get land and start building a physical Temple. And once we have a Physical Temple, we will begin to fill it with these things:

https://bitcointalksearch.org/topic/temple-coin-syllabus-2663919
member
Activity: 98
Merit: 11
This is not an Announcement, just want everyone to know this: You will probably have to send something like this to anyone who is going to use your Coin on Windows, just replace all the "Temple Coin" info, with your coin.

Ok, so I just realized that this is hard for everyone to do, because their computers are not Recognizing the Software, because Coins are new Technology, but mainly because Companies like Microsoft and Google are ignoring Coins, so your computer doesn't know what they are.

When you download this, try multiple browsers if it won't let you.
https://drive.google.com/file/d/1t1IAhjXCxbEKIOkbz_oBjO-GhRlmMMaN/view?usp=sharing

Then, when you extract it and open it, you may have to look for arrows that look like expanded options, or anything that says "Read More", then choose to allow the Software.

It is a Wallet, and it just shows your Balance, and how many Coins you have Staking and everything. But your Computer is scared because it has no idea what Coins are. And it thinks it is a Botnet, because your Computer's Wallet Connects to the Blockchain through the Software.

Then, once you have a Wallet, send me Your Wallet Address and I will send you ॐ1,000 and I will give you ॐ50,000 if you can share it with people for Free, and various amounts from ॐ10,000 to ॐ100,000 if you can complete Bounties, like creating Logos and Websites for the Coin.
newbie
Activity: 13
Merit: 0
One day in future every person on earth will have their own personal cryptocurrency. For 15 minutes, if I may mis-quote Andy Warhol.
member
Activity: 98
Merit: 11
member
Activity: 98
Merit: 11
When someone tells you "This Cryptocurrency thing is a Bubble", just point and laugh at them. Cryptocurrency in general probably does not even have 1 or 2 Billion users yet. A Bubble can't happen until the Market finds Stasis, and it can't find Stasis until it finds its peak volume.

There will not be a Cryptocurrency Bubble until it is the only way to trade between Earth and Mars and rich space-faring families are hording them all.
full member
Activity: 1204
Merit: 220
(ノಠ益ಠ)ノ
wow there's a lot solid info here, thanks!
member
Activity: 98
Merit: 11
This is not an Announcement yet, just want to show everyone that Temple Coin does exist, and if you are friends with the right people on Social Media you can get it, and we have a group of people that is constantly on the network (usually about 10 constant, and this is day 6); then we have 30+ users total.

You can download the Wallet here, but I will not offer Bounties on Bitcoin talk until the Temple Coin Team makes the announcement.

Linux Wallet
https://drive.google.com/file/d/1nt7o5u4lnir367yilMSE17sXMKgrjS9k/view?usp=sharing

Windows Wallet
https://drive.google.com/file/d/1t1IAhjXCxbEKIOkbz_oBjO-GhRlmMMaN/view?usp=sharing

We will probably announce our first City based coin before we announce Temple Coin. But we will offer Temple Coin Bounties on our Town Based Coins.
member
Activity: 98
Merit: 11
We will need people that have read these.

http://160.216.223.99/vyuka/knihy/Windows%20Powershell%20in%20Action%202nd%20Edition.pdf

http://pdf.th7.cn/down/files/1312/PowerShell%20and%20WMI.pdf

http://www.reedbushey.com/86Windows%20Powershell%20Cookbook%203rd%20Edition.pdf

https://ptgmedia.pearsoncmg.com/images/9780735675117/samplepages/9780735675117.pdf

http://research.microsoft.com/pubs/204435/Learning%20to%20program%20in%20Visual%20Basic%20and%20Gadgeteer.pdf

http://computer-legacy.com/files/ebooks/Microsoft%20Books%20-%20Programming%20Microsoft%20Visual%20Basic%206.0%20-%20Book.pdf

http://www.chimica.unipd.it/luigino.feltre/pubblica/unix/vb5.pdf

https://jurisma1992.files.wordpress.com/2015/03/ms-microsoft-visual-basic-2013-step-by-step.pdf

https://docs.oracle.com/cd/E11882_01/server.112/e25494.pdf

https://docs.oracle.com/cd/E36784_01/pdf/E36822.pdf

http://cdn.oreillystatic.com/oreilly/booksamplers/packt/9781849688260_Sample.pdf

http://dl.it-college.org/download/ebook/wmware/Virtualization.pdf

http://www.eecg.toronto.edu/~tsa/theses/carlos_cavanna.pdf

https://www.sec.in.tum.de/assets/studentwork/finished/Kittel2010.pdf

http://www.reedbushey.com/81Version%20Control%20with%20git%202nd%20Edition.pdf

http://www.e-reading.club/bookreader.php/141481/Oppel_-_SQL_-_a_beginner's_guide.pdf

http://www.dis.uniroma1.it/derosa/didattica/2005/BasiDati/SQL_A_Practical_Introduction.pdf

https://jhayes73.files.wordpress.com/2011/07/php-for-the-web-visual-quickstart-guide-4th-edition2011bbs.pdf

http://personal.graceland.edu/~aallshou/classwork/csit2100/GFX-PHP.and.MySQL.for.Dynamic.Web.Sites.Visual.QuickPro.Guide.4th.Edition.pdf

http://www.computerpress.se/Chapters/1565926811.pdf

http://ahvaz.ist.unomaha.edu/azad/temp/softarch/05-welling-php-mysql-web.pdf

http://esoln.net/edownload/Download/php_mysql_javascript__html5_all-in-one_for_dummies.pdf

https://ptgmedia.pearsoncmg.com/images/9780735663763/samplepages/9780735663763.pdf

https://docs.oracle.com/cd/A64702_01/doc/server.805/a53717.pdf

http://dl.upforfree.com/ebooks/Head%20First%20SQL%20-ebooksfeed.com.pdf

http://ebooks.elportal.info/(ebook)%20O'Reilly%20-%20MySQL_Cookbook.PDF

http://www.sebizfinishingschool.com/ebook/php/Head%20First%20PHP%20and%20MySQL.pdf

http://dl.softgozar.com/Files/Ebook/PHP_Solutions_Softgozar.com.pdf

http://pdf.th7.cn/down/files/1508/Learning%20Python,%205th%20Edition.pdf

http://www0.cs.ucl.ac.uk/staff/M.Gryka/download/pcb3.pdf

http://www.unt.edu/rss/class/Jon/Benchmarks/ScrapingData_L_JDS_Nov2013.pdf

http://www.cin.ufpe.br/~embat/Python%20for%20Data%20Analysis.pdf

http://csclab.murraystate.edu/bob.pilgrim/560/readings/pi_stuff/Mark_Lutz_-_Python_Pocket_Reference_2014.pdf

http://www.foo.be/cours/dess-20122013/b/OReilly%20Version%20Control%20with%20GIT.pdf

http://www.doc-developpement-durable.org/file/Projets-informatiques/cours-&-manuels-informatiques/Linux/Linux_Pocket_Guide.pdf

https://udaygade.files.wordpress.com/2015/04/linux-bible-by-christopher-negus.pdf

http://www.e-reading.club/bookreader.php/138785/Phoenix_-_Learning_Perl,_5th_Edition.pdf

http://130.132.212.207/mediawiki/images/2/26/Intermediate_Perl.pdf

http://www.freeoa.net/attachments/2014/Programming.Perl.3th.edition.en.pdf

http://www.geos.ed.ac.uk/~bmg/software/Perl%20Books/OReilly.Perl.Cookbook.pdf

http://it.guldstadsgymnasiet.se/c%23/C%23%205.0%20in%20a%20Nutshell,%205th%20Edition.pdf

http://file.allitebooks.com/20150511/Concurrency%20in%20C-%20Cookbook.pdf

http://csclab.murraystate.edu/bob.pilgrim/560/readings/Raspberry%20Pi%20Cookbook.pdf

http://web.mit.edu/6.s096/www/lecture/lecture03/secure-C.pdf

http://wwwusers.di.uniroma1.it/~parisi/Risorse/ch11.pdf

https://mitseu.files.wordpress.com/2014/08/microsoft_visual_c-sharp__2013_step_by_step.pdf

http://pdf.th7.cn/down/files/1312/iOS%207%20Programming%20Cookbook.pdf

https://repo.zenk-security.com/Programmation/O%20Reilly%20-%20Practical%20C%20Programming,%203rd%20Edition.pdf

http://www.dsi.fceia.unr.edu.ar/downloads/informatica/info_II/c++.../Practical%20C++%20Programming%201995.pdf

http://ptgmedia.pearsoncmg.com/images/9780321776419/samplepages/9780321776419.pdf

http://mazonka.com/shared/Straustrup4th.pdf

http://ptgmedia.pearsoncmg.com/images/9780321928429/samplepages/0321928423.pdf

http://www.ime.usp.br/~pf/Kernighan-Ritchie/C-Programming-Ebook.pdf

http://sirpabs.ilahas.com/Computing/Java%20-%20A%20Beginner's%20Guide,%203rd%20Edition%20(2005).pdf

https://s3-ap-southeast-1.amazonaws.com/mylekha-ebook/IT+%26+Programming/Java/Java+8+in+Action.pdf

http://www.opus-college.net/devcorner/HeadFirstJava2ndEdition.pdf

http://staff.cs.psu.ac.th/iew/cs344-481/Java%20The%20Complete%20Reference%20Ninth%20Edition.pdf

http://ftp.sunet.se/pub/lang/qt/learning/developerguides/qtquickappdevintro/QtQuickAppDevIntro.pdf

http://www.bogotobogo.com/cplusplus/files/c-gui-programming-with-qt-4-2ndedition.pdf

http://nwcpp.org/talks/2013/Multi_platform_apps_with_Qt.pdf

http://www.aleax.it/oscon010_pydp.pdf

http://calcul.math.cnrs.fr/Documents/Ecoles/2010/cours_multiprocessing.pdf

http://docs.qgis.org/2.2/pdf/en/QGIS-2.2-PyQGISDeveloperCookbook-en.pdf

http://pdf.th7.cn/down/files/1411/PySide%20GUI%20Application%20Development.pdf

http://www.cs.washington.edu/research/projects/urbansim/books/pyqt-book.pdf

http://www.training.prace-ri.eu/uploads/tx_pracetmo/QtGuiIntro.pdf

http://www-cs.ccny.cuny.edu/~wolberg/cs221/qt/books/C++-GUI-Programming-with-Qt-4-1st-ed.pdf

http://www.howardsmith.net/manuals/Oracle_PL_SQL_Programming.pdf

http://www.pdfiles.com/pdf/files/English/Databases/Pro_Oracle_Database_12c_%20Administration.pdf

http://www.uow.edu.au/~jrg/317/EREADINGS/Oracle12cExpertConsolidation.pdf

http://www.ktipsntricks.com/data/ebooks/oracle/Mastering%20Oracle.pdf

https://docs.oracle.com/cd/E11882_01/server.112/e41084.pdf

https://docs.oracle.com/cd/E12151_01/doc.150/e12152.pdf

http://www.dba-oracle.com/Shell-Script-sec.pdf

https://anargodjaev.files.wordpress.com/2013/09/oracle-database-11g-the-complete-reference.pdf

Programming Graphics


http://todbot.com/ming/perl-graphics-ch09.pdf

http://perltraining.com.au/notes/perlcgi.pdf

http://faculty.washington.edu/tlumley/Rcourse/R-fundamentals.pdf

http://www.gilera-bi4.it/download/manuali/GRAFICA%20INGEGNERIA_ING.pdf

http://www.ub.edu/stat/docencia/EADB/Advanced_Graphics_with_R.pdf

https://cran.r-project.org/doc/contrib/Leisch-CreatingPackages.pdf

http://www.stt.msu.edu/~cui/Groupmeeting/R_package_tutorial.pdf

http://www.matthewckeller.com/R_Syntax_Examples_1.pdf

http://www.cmlab.csie.ntu.edu.tw/~cathyp/eBooks/WPF/Programming%20Windows%20Presentation%20Foundation%20-%20O'Reilly.pdf

http://cdn.oreilly.com/oreilly/pdfs/hfcsharp3e_WPF_download.pdf

http://sd.blackball.lv/library/Pro_WPF_4.5_in_CSharp_4th_edition.pdf

http://programmingcomputervision.com/downloads/ProgrammingComputerVision_CCdraft.pdf

http://xavier-fim.net/teaching/dair/material/kabacoff-R_in_action-2011.pdf

http://ptgmedia.pearsoncmg.com/images/0321160770/supplements/chand_colorfigs.pdf

Quote
To open an elevated PowerShell prompt, in the taskbar search, type: powershell.

Example from the first book on the list:
Quote
[void][reflection.assembly]::LoadWithPartialName(
“System.Windows.Forms”)
$form = New-Object Windows.Forms.Form
$form.Text = “My First Form”
$button= New-Object Windows.Forms.Button
$button.text=”Push Me!”
$button.Dock=”fill”
$button.add_click({$form.close()})
$form.controls.add($button)
$form.Add_Shown({$form.Activate()})
$form.ShowDialog()

Source Codes so that you do not always have to start from scratch:

PowerShell
https://github.com/clymb3r/PowerShell
https://github.com/SublimeText/PowerShell
https://github.com/RamblingCookieMonster/PowerShell
https://github.com/lazywinadmin/PowerShell
https://github.com/Azure/azure-powershell
https://github.com/Jackbennett/powershell
https://github.com/obscuresec/PowerShell
https://github.com/PyroTek3/PowerShell-AD-Recon
https://github.com/mattifestation/PowerShellArsenal
https://github.com/PowerShellMafia/PowerSploit
https://github.com/dahlbyk/posh-git
https://github.com/dfinke/powershell-for-developers
https://github.com/alexinslc/powershell
https://github.com/nullbind/Powershellery
https://github.com/PlagueHO/Powershell
https://github.com/dfinke/powershell
https://github.com/hsmalley/Powershell
https://github.com/stefanstranger/PowerShell
https://github.com/uxone/powershell
https://github.com/varonis/powershell
https://github.com/lgulliver/Powershell
https://github.com/vMotioned/PowerShell
https://github.com/zloeber/Powershell
https://github.com/OfficeDev/PnP-PowerShell
https://github.com/bpatra/powershell
https://github.com/pester/Pester
https://github.com/kmarquette/Powershell
https://github.com/PowerShell/PowerShell-Docs
https://github.com/BenjaminArmstrong/Hyper-V-PowerShell
https://github.com/splunk/splunk-reskit-powershell
https://github.com/MrPowerScripts/PowerScripts
https://github.com/petrsnd/Powershell
https://github.com/subTee/PoshRat
https://github.com/davehull/Kansa
https://github.com/CosmosKey/PSIS
https://github.com/besimorhino/powercat
https://github.com/janikvonrotz/PowerShell-PowerUp
https://github.com/SitecorePowerShell/Console
https://github.com/guitarrapc/PowerShellUtil
https://github.com/andrebocchini/sccm-powershell-automation-module
https://github.com/jenkinsci/powershell-plugin
https://github.com/cdhunt/WindowsAudioDevice-Powershell-Cmdlet
https://github.com/abswaxing/PowerShell
https://github.com/dotCipher/CoinBot
https://github.com/PProvost/vim-ps1

IPhone Bitcoin Wallets
https://github.com/blockchain/My-Wallet-iPhone
https://github.com/anderschen/WalletIPhone
https://github.com/ruslan93/My-Wallet
https://github.com/hafizh/iWallet
https://github.com/windvoice/IWallet
https://github.com/bsimic0001/AegisWalletIOS

Android Bitcoin Wallets
https://github.com/mycelium-com/wallet
https://github.com/schildbach/bitcoin-wallet
https://github.com/bither/bither-android
https://github.com/MatthewLM/peercoin-android-wallet
https://github.com/Coinprism/android-wallet
https://github.com/blockchain/Android-Wallet-2-App

Browser Wallets
https://github.com/andrewtoth/BitcoinWallet
https://github.com/enriquez/coinpocketapp.com
https://github.com/frozeman/bitcoin-browser-wallet
https://github.com/micheal-swiggs/brollet
https://github.com/gr33nh00d/Wallet_watcher
https://github.com/rippledj/auroracoin-browser-wallet
https://github.com/applsdev/MyWallet-RPC-Communicator

Paper Wallets
https://github.com/ValleZ/Paper-Wallet
https://github.com/dbasch/bitcoin-paper-wallet
https://github.com/spearson78/paperwallet
https://github.com/gehlm/paper-btc
https://github.com/openpaperwallet/openpaperwallet
https://github.com/makevoid/paperbank
https://github.com/bitfrore/bitfrore
https://github.com/cmrust/paperwalletgenerator

Bitcoin Miners
https://github.com/Diablo-D3/DiabloMiner
https://github.com/m0mchil/poclbm
https://github.com/jgarzik/cpuminer
https://github.com/progranism/Open-Source-FPGA-Bitcoin-Miner
https://github.com/lithander/Minimal-Bitcoin-Miner
https://github.com/jwhitehorn/jsMiner
https://github.com/phoenix2/phoenix
https://github.com/pooler/cpuminer
https://github.com/jgarzik/pyminer
https://github.com/TheSeven/Modular-Python-Bitcoin-Miner
https://github.com/progranism/Bitcoin-JavaScript-Miner
https://github.com/codler/Bitcoin-phpMiner
https://github.com/temujin9/tumen_miner

Faucets
https://github.com/Greedi/bitcoin-faucet
https://github.com/hippich/Faucet
https://github.com/kunwon1/faucet
https://github.com/plaprade/Mojocoin-Faucet
https://github.com/ExploreBTC/BitcoinGrind
https://github.com/Spenzert/CoinFaucet
https://github.com/haskoin/haskoin-faucet
https://github.com/Zen00/openfaucet
https://github.com/blockstrap/faucets
https://github.com/jprichardson/bitcoin-faucet

Bitcoin Charts
https://github.com/yuvalmit/BitCoin
https://github.com/Sourcewerks/BitcoinCharts-PHP
https://github.com/joelthelion/mtgox_chart
https://github.com/jn-pn/cbtc
https://github.com/CryptoMarketMonitor/MarketMonitor
https://github.com/ripper234/Bitcoin-Pie
https://github.com/bitcoinstability/bitcoinstability

Bitcoin Tickers
https://github.com/firebase/btcquote
https://github.com/mertdumenci/Ticker
https://github.com/pheuter/BitcoinTicker
https://github.com/neoranga55/bitcoin-price-ticker
https://github.com/goace/bitcoin-ticker
https://github.com/infincia/BitTicker
https://github.com/DuoSRX/BtcTickerOSX
https://github.com/xvacant/ticker
https://github.com/niedbalski/emacs-btc-ticker
https://github.com/rezin8/ticker
https://github.com/rezin8/ticker

Coin Source Codes
https://github.com/bitcoin/bitcoin
https://github.com/dogecoin/dogecoin
https://github.com/novacoin-project/novacoin
https://github.com/imak81/earthcoin
https://github.com/lottocoin/lottocoin
https://github.com/coinzen/devcoin
https://github.com/FeatherCoin/Feathercoin
https://github.com/coinkeeper/2015-06-22_18-30_anoncoin
https://github.com/LiveChains/asiccoin

List of 1000+ Altcoins
https://www.cryptocoincharts.info/coins/info

RaspberryPi
https://bitcointalksearch.org/topic/how-do-i-start-mining-on-a-raspberry-pi-2-1137157
https://bitcointalksearch.org/topic/raspberry-pi-vs-arduino-1104857
http://www.cs.unca.edu/~bruce/Fall14/360/RPiUsersGuide.pdf
http://director.downloads.raspberrypi.org/Raspberry_Pi_Education_Manual.pdf

ASIC design
http://www.ece.ncsu.edu/asic/tutorials/tutor1/tutor1.pdf

Server Design
http://www.redbooks.ibm.com/redbooks/pdfs/sg242580.pdf
http://courses.cs.vt.edu/cs4254/fall04/slides/ServerDesign_1.pdf
http://www.it.northwestern.edu/bin/docs/DesignBestPractices_127434.pdf

Open Source App code:

Wiki Creation
https://github.com/Wikia/app

App Creation
https://github.com/kikinteractive/app
https://github.com/kikinteractive/app
https://github.com/DanielCreagh/Creation
https://github.com/kkjdaniel/react-native-device-display
https://github.com/Microsoft/TouchDevelop

App Games
https://github.com/HabitRPG/habitrpg
https://github.com/shawn42/gamebox
https://github.com/codebright/gamesapp
https://github.com/desura/desura-app
https://github.com/jmechner/Prince-of-Persia-Apple-II
https://github.com/cisc474/board_game_app
https://github.com/GoogleCloudPlatform/appengine-endpoints-tictactoe-java

Slot Machines
https://github.com/odhyan/slot
https://github.com/josex2r/jQuery-SlotMachine
https://github.com/iamzcc/ZCSlotMachine
https://github.com/timburks/iPadSlotMachine
https://github.com/matthewlein/jQuery-jSlots
https://github.com/clintbellanger/Karma-Slots
https://github.com/auchenberg/slotCount.js
https://github.com/archan937/slot_machine
https://github.com/jorisbontje/sleth

Some Scrypt Coins:

Experience Coin     https://bitcointalksearch.org/topic/annepcscrypt-experiencecoin-the-coin-geared-towards-gamers-rerelease-1013632
URCCoin                https://bitcointalksearch.org/topic/ann-urccoin-urc-scrypt-no-preipo-c-cex-1000669
HazmatCoin           https://bitcointalksearch.org/topic/annhzt-hazmatcoin-powpos-now-on-exchange-scrypt-hardcoded-nodes-1019312
ErrorCoin               https://bitcointalksearch.org/topic/annerrorcoinscryptpowyobitnetunmoderated-1109341
GraphCoin             https://bitcointalksearch.org/topic/ninjascrypt-graphcoin-roadmapno-icopremine-1044780
HazeCoin               https://bitcointalksearch.org/topic/annhazecoin-hazeupdate-22-july-scrypt-wwwhazestoreclick-preview-1106765
Empyrean              https://bitcointalksearch.org/topic/epyempyrean2-to-the-highest-heavens-x14-e2-newdr-concept-1049129
GeniusCoin            https://bitcointalksearch.org/topic/ann-geniuscoin-geni-scrypt-version-1130-released-real-team-1065681
NovaCoin               https://bitcointalksearch.org/topic/ann-official-novacoin-thread-the-original-posscrypt-coin-pool-list-143221
StableCoin             https://bitcointalksearch.org/topic/annsbc-from-death-comes-life-the-rebirth-of-stablecoin-urgent-update-349198
DogeCoin               https://bitcointalksearch.org/topic/anndoge-dogecoin-very-currency-many-coin-v1100-361813
SpaceCoin              https://bitcointalksearch.org/topic/annspace-spacecoin-scrypt-powpos-12k-given-away-on-twitter-1166804
Florin                     https://bitcointalksearch.org/topic/annflo-a-worldwide-public-record-alexandria-etdb-medici-015-segwit-236742
42Coin                   https://bitcointalksearch.org/topic/ann-42-time-to-revive-42-coin-everyone-get-in-here-399658
MasterDoge            https://bitcointalksearch.org/topic/ann-masterdoge-mdoge-scrypt-powpos-100m-much-master-many-nodes-1102999
BananaBits             https://bitcointalksearch.org/topic/annnanas-bananabits-home-of-the-1-click-masternode-scrypt-ninja-1079616
ShadeCoin              https://bitcointalksearch.org/topic/ann-shadecoinscryptv12powpospodexchangesupdated-768941
ILoveYouCoins        https://bitcointalksearch.org/topic/ann-iloveyoucoins-scrypt-powposv-966345
SaintPatrickCoin      https://bitcointalksearch.org/topic/ann-saint-patrick-saint-patrick-coin-scrypt-200-million-coins-983935
Digigems                https://bitcointalksearch.org/topic/ann-dgms-digigems-no-preminescryptno-ipo-913237
OctoCoin                 https://bitcointalksearch.org/topic/ann-888-scrypt-octocoin-the-power-of-eight-dont-blink-504265
LiteCoin                  https://bitcointalksearch.org/topic/ann-litecoin-a-lite-version-of-bitcoin-launched-47417
YACCoin                  https://bitcointalksearch.org/topic/annyac-yacoin-ongoing-development-206577
UnitedScryptCoin     https://bitcointalksearch.org/topic/annusc-first-merged-minable-scryptcoin-unitedscryptcoin-exchange-available-353688
Tenebrix                 https://bitcointalksearch.org/topic/announce-tenebrix-a-cpu-friendly-gpu-hostile-cryptocurrency-45667
Sentaro                  https://bitcointalksearch.org/topic/ann-sentaro-sen-powpos-scrypt-ninja-launch-1089166
CoinCoin                 https://bitcointalksearch.org/topic/ann-coincoin-scrypt-pow-superblocks-empoex-1134464
BeezerCoin             https://bitcointalksearch.org/topic/ann-beezercoin-beez-scrypt-pos-earn-by-mining-pos-8-1141949
GenesisCoin            https://bitcointalksearch.org/topic/ann-genesiscoin-gene-scrypt-2-exchange-now-00000007-btc-1096804
SJWCoin                 https://bitcointalksearch.org/topic/ann-sjwcoin-scrypt-5k-60sec-blocks-for-social-justice-1094489
GuccioneCoin          https://bitcointalksearch.org/topic/official-ann-guccionecoin-gcc-scrypt-pow-39-million-coin-cap-adults-18-1099201
FutureCash             https://bitcointalksearch.org/topic/annfcashfuturecash-scryptpowpos-ninja-launch-anti-instamine-1150801
OsmiumCoin           https://bitcointalksearch.org/topic/annos76scrypt-osmiumcoin-exchange9733-1201395
EmptyCoin              https://bitcointalksearch.org/topic/annemp-emptycoin-powpos-scrypt-noico-ipo-instamine-1162327
ParanoiaCoin           https://bitcointalksearch.org/topic/annpacparaparanoia-coin-scrypt-earn-free-coins-twitter-campaigncexyobit-1152948
SoloCoin                 https://bitcointalksearch.org/topic/ann-solo-solocoin-pow-scrypt-only-solo-mining-yobitnet-1140233

Major companies that currently accept Bitcoin:
Dell, Dish Network, Expedia, Microsoft, Newegg, Paypal (for merchants) PrivateFly, Overstock.com, the Sacramento Kings, Atomic Mall, Clearly Canadian, Dynamite Entertainment, TigerDirect, Time Inc., Virgin Galactic, and Zynga

How to accept Bitcoins for payment on any website:
https://bitpay.com/

Currencies, both fiat and crypto, don't actually contain any value they simply represent value. They are called Trade Instruments, meaning, instruments that facilitate trade. Stocks are an example of trade instruments that aren't money, they have no actual value but they represent a share of a company and the company itself does the work that turns the profits that gives a share its theoretical value. All trade Instruments work along the same lines: Fiat is traded by banks and Foreign Exchange companies, Stock is traded on Stock Exchanges such as the New York Stock Exchange and Cryptocurrencies are traded on various Cryptocurrency Exchanges. All of their values are representations of real things, for example Stocks Represent created and distributed goods and services by a particular company, while fiat currency represents created and distributed goods and services of a nation. Both change based on industrial/technological/scientific/developmental/etc. advancements within those companies or nations, as well as various factors such as trade volume and inflation. It is best to trade your trade instruments at the highest value possible and use them to buy real items, such as: Precious metals, Livestock, Software, Machines, Produce/Seeds, Land, Realestate, etc and then use those to get more trade instruments.

Trade volume is how many people are buying and selling a particular currency or stock. The more people who are buying it, the higher the value will rise.

An example of Inflation is when the United States starts printing too much money. When this happens a dollar starts being worth less, which in turn means it will take more money to buy the same materials. For instance, if you go to the store and one day Milk is $3/Gallon but then you go a few months later and notice it is $5/Gallon, this is because of inflation. Inflation also drives things like the minimum wage and social security checks, which are usually based on the cost of living. Cryptocurrencies with no cap will eventually inflate into eternity and lose value, unless they have a high trade volume.

Supply and Demand is the comparison of how many people want something against how many their are of that thing. For example, when Apple creates a new IPhone the value is higher than it really should be and as the technology slightly or drastically ages, the value goes down.

A Whale is a person who has a large quantity of a certain trade instrument and uses that to effect the markets. For example, if someone has 51% of a particular stock they could either sell them all quickly which would bring the value of that stock down, or they could hold on to all of them which makes them more rare and makes them more valuable.

Bubbles are when something is artificially high in value, 2 examples of this are: IPhones as mentioned before, and Gasoline. Gasoline raises in value based simply on the speculation that "one day we might run out", this creates bubbles which raises prices. But Gasoline will probably be replaced by ethanol before it ever even gets close to being used up.

Look at different exchanges- Sometimes you can get more on one site than you can on another site, for the same coins. And sometimes you can even buy coins on one site and sell them on another site for more. This works better when you are trading Crypto to Crypto rather than Crypto to fiat.

Use coins to create goods and services- Don't just use coins to buy random things, buy software and other goods that you can use to produce things or spend them on things like textbooks. Create a product if you can.

Promote your favorite coins- If you have a favorite coin and buy some, don't forget to share it on social media.

Create a currency- Satoshi gave out the Bitcoin source code so that people could make their own currencies.

Create an exchange- Transaction fees can earn the owners a lot of coins and you can help fledgling altcoins by offering them on your exchange.

Don't buy above spot- If you are trading coins for precious metals, check the current global value of that metal and buy as close to that value as you can.

Invest in foreign countries- Don't think America is the be all end all.

Support underprivileged people- Someone might not have anything today, but the world has strange cycles and things change. Help new coin users as much as you can.

Argentina is probably the best example of how Bitcoin and Fiat are not different.
http://www.ft.com/cms/s/0/b2a8cca4-2c11-11e5-8613-e7aedbb7bdb7.html

The only real difference is the decentralized nature of Bitcoin, where no BitBank or anything like that will ever get bailed out by a central hub like a Government, and probably won't even ever be able to function since people can just keep everything in Paper Wallets.

Broadband
In telecommunications, broadband is a wide bandwidth data transmission with an ability to simultaneously transport multiple signals and traffic types. The medium can be coaxial cable, optical fiber, radio or twisted pair. In the context of Internet access broadband is used much more loosely; to mean any high-speed Internet access that is always on and faster than traditional dial-up access.
http://broadband.cti.gr/el/download/5238Chapter_MANs_v9.pdf
http://facta.junis.ni.ac.rs/macar/macar200303/macar200303-14.pdf
http://www.dhcd.virginia.gov/CommunityDevelopmentRevitalization/PDFs/RuralBroadband.pdf
http://www.wolfspeed.com/~/media/Files/Cree/RF/Papers%20and%20Articles/Design_of_Highly_Efficient_Broadband_ClassE_Power_Amplifier_Using_Synthesized_LowPass_Matching_Networks.pdf

Long Term Evolution (LTE)
LTE, an abbreviation for Long-Term Evolution, commonly marketed as 4G LTE, is a standard for wireless communication of high-speed data for mobile phones and data terminals. It is based on the GSM/EDGE and UMTS/HSPA network technologies, increasing the capacity and speed using a different radio interface together with core network improvements.[1][2] The standard is developed by the 3GPP (3rd Generation Partnership Project) and is specified in its Release 8 document series, with minor enhancements described in Release 9. LTE is the natural upgrade path for carriers with both GSM/UMTS networks and CDMA2000 networks. The different LTE frequencies and bands used in different countries will mean that only multi-band phones will be able to use LTE in all countries where it is supported.
http://www.ece.gatech.edu/research/labs/bwn/surveys/ltea.pdf
https://publik.tuwien.ac.at/files/PubDat_175708.pdf
http://www.cse.unt.edu/~rakl/class5540/EFK06.pdf
http://www.cse.wustl.edu/~jain/cse574-08/ftp/lte.pdf
http://highfreqelec.summittechmedia.com/Oct09/HFE1009_Becker.pdf
http://www.msr-waypoint.net/en-us/projects/sora/tan-demo-sdr-lte.pdf

WiMAX
WiMAX (Worldwide Interoperability for Microwave Access) is a family of wireless communications standards initially designed to provide 30 to 40 megabit-per-second data rates, with the 2011 update providing up to 1 Gbit/s for fixed stations. The name "WiMAX" was created by the WiMAX Forum, which was formed in June 2001 to promote conformity and interoperability of the standard.
http://www.lait.fe.uni-lj.si/Seminarji/s_omerovic.pdf
http://cwi.unik.no/images/9/90/WIMAX_overview.pdf
http://www.ku.ac.th/netday2008/topic/WiMAX_Piraporn_3_11_08.pdf
http://www.iaria.org/conferences2008/filesCTRQ08/CTRQ_2008_WiMAX_tutorial_EB-v1.3.pdf

Ultra Mobile Broadband
UMB (Ultra Mobile Broadband) was the brand name for a project within 3GPP2 to improve the CDMA2000 mobile phone standard for next generation applications and requirements. Like LTE, the UMB system was to be based upon Internet (TCP/IP) networking technologies running over a next generation radio system, with peak rates of up to 280 Mbit/s.
http://www.3gpp2.org/public_html/specs/C.S0084-000-0_v2.0_070904.pdf
http://www.3gpp2.org/public_html/specs/C.S0084-001-0_v2.0_070904.pdf

Telecommunications
Telecommunication occurs when the exchange of information between two or more entities (communication) includes the use of technology. Communication technology uses channels to transmit information (as electrical signals), either over a physical medium (such as signal cables), or in the form of electromagnetic waves.
http://www.ie.itcr.ac.cr/acotoc/Maestria_en_Computacion/Sistemas_de_Comunicacion_II/Material/Biblio5.pdf'http://ops.fhwa.dot.gov/publications/telecomm_handbook/telecomm_handbook.pdf
http://history.nasa.gov/afj/aoh/aoh-v1-2-08-telecoms.pdf
http://www.ece.ubc.ca/~brucew/ebook/The%20Telecommunications%20Handbook.pdf

Middleware
Middleware is computer software that provides services to software applications beyond those available from the operating system. It can be described as "software glue". Middleware makes it easier for software developers to perform communication and input/output, so they can focus on the specific purpose of their application. Middleware is the software that connects software components or enterprise applications. Middleware is the software layer that lies between the operating system and the applications on each side of a distributed computer network. Typically, it supports complex, distributed business software applications.
https://www.cl.cam.ac.uk/teaching/1011/CDSysII/12-middleware.pdf
http://www.cs.wustl.edu/~schmidt/PDF/middleware-chapter.pdf
http://www0.cs.ucl.ac.uk/staff/A.Finkelstein/fose/finalemmerich.pdf
http://www.ism-journal.com/ITToday/AU3833_C007.pdf
http://www.smartweb-project.de/Vortraege/phd.pdf

Service-oriented Architecture
A service-oriented architecture (SOA) is an architectural pattern in computer software design in which application components provide services to other components via a communications protocol, typically over a network. The principles of service-orientation are independent of any vendor, product or technology.[
http://www.redbooks.ibm.com/redbooks/pdfs/sg246303.pdf
http://www.comp.nus.edu.sg/~seer/book/2e/Ch10.%20Service%20Oriented%20Architecture.pdf
http://xml.coverpages.org/ErlThomas-SOA2-Ch16-BPEL.pdf
http://www.omg.org/news/meetings/workshops/MDA-SOA-WS_Manual/01-A1_Rosen.pdf

Backbone Network
A backbone network or network backbone is a part of computer network infrastructure that interconnects various pieces of network, providing a path for the exchange of information between different LANs or subnetworks.
https://www.infodev.org/infodev-files/resource/InfodevDocuments_526.pdf
http://www.ee.columbia.edu/~zussman/pub_files/mobihoc06.pdf

Core Router
A core router is a router designed to operate in the Internet backbone, or core. To fulfill this role, a router must be able to support multiple telecommunications interfaces of the highest speed in use in the core Internet and must be able to forward IP packets at full speed on all of them. It must also support the routing protocols being used in the core. A core router is distinct from an edge router: edge routers sit at the edge of a backbone network and connect to core routers.
http://www.cs.ccsu.edu/~stan/classes/cs490/slides/networks4-ch1-1.pdf
http://www.apricot.net/apricot2009/images/lecture_files/network%20core%20infrastructure%20best%20practices.pdf

Virtual Private Network
A virtual private network (VPN) extends a private network across a public network, such as the Internet. It enables users to send and receive data across shared or public networks as if their computing devices were directly connected to the private network, and thus are benefiting from the functionality, security and management policies of the private network.
http://www.cse.wustl.edu/~jain/cis788-99/ftp/h_7vpn.pdf
http://www.redbooks.ibm.com/redbooks/pdfs/sg245309.pdf
http://ebooks.elportal.info/O'Reilly%20-%20Virtual%20Private%20Networks,%202nd%20Edition.pdf
http://www.juniper.net/techpubs/software/screenos/screenos6.3.0/630_ce_VPN.pdf

How to build a Computer
http://m.wikihow.com/Build-a-Computer

Motherboards
http://www.scsd.k12.wa.us/wrms/info_tech/motherboard_sg.pdf
http://www.cengage.com/resource_uploads/downloads/1435487389_223131.pdf

Introduction to Database Concepts
http://www.cs.umb.edu/cs630/hd1.pdf

Memory
http://www.polyteknisk.dk/related_materials/9780789736970_Chapter_6.pdf

RAM
https://www.doc.ic.ac.uk/~wl/teachlocal/arch1/notes/notes2.pdf

ASIC design
http://www.ece.ncsu.edu/asic/tutorials/tutor1/tutor1.pdf

Transcranial Direct Current Stimulation
http://www.tmslab.org/tdcs%20articles/004.pdf

Transcranial magnetic stimulation
http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3241868/
http://www.researchgate.net/profile/Abraham_Zangen/publication/228560309_Transcranial_Magnetic_Stimulation_of_Deep_Brain_Regions_Principles_and_Methods/links/0912f513f59d204821000000.pdf?inViewer=true&pdfJsDownload=true&&origin=publication_detail&inViewer=true

Transcutaneous electrical nerve stimulation
http://187.45.210.15/$sitepreview/tanyx.net/Img/Propaganda/TENS%20Explained%20Chapter.pdf
http://ceaccp.oxfordjournals.org/content/9/4/130.full.pdf

Electroencephalography
http://www.uams.edu/m2006/EEG.pdf
http://ngp.usc.edu/files/2013/06/BenFiles_An_introduction_to_EEG.pdf
http://www.cfm.va.gov/til/dGuide/dgEEG.pdf
http://www.bioingenieria.edu.ar/academica/catedras/bioingenieria2/archivos/apuntes/principles%20of%20electroencephalography.pdf

Magnetic resonance imaging
http://eprints.drcmr.dk/37/1/MRI_English_a4.pdf
http://www.wbdg.org/ccb/VA/VADEGUID/mri.pdf

Nanonetworks
A nanonetwork or nanoscale network is a set of interconnected nanomachines (devices a few hundred nanometers or a few micrometers at most in size), which are able to perform only very simple tasks such as computing, data storing, sensing and actuation.
http://www.ece.gatech.edu/research/labs/bwn/surveys/nano_survey.pdf
http://www3.cs.stonybrook.edu/~bjchoi/teaching/cse534/resources/Nano.pdf

Wireless community network
Wireless community networks or wireless community projects are the organizations that take a grassroots approach to providing a viable alternative to municipal wireless networks for consumers.
http://www.lcwireless.net/docs/buildingwirelesscommunitynetworks.pdf
http://www.mm.aueb.gr/publications/2011-ieee-com-mag-wcn.pdf
http://oziris.nyme.hu/~farkas/publications/wicon07.pdf

Neighborhood Internet service provider
A neighborhood internet service provider (NISP) is a small scale broadband internet service provider targeted at a single subdivision or neighborhood. They are built in a neighborhood to provide internet access to residents in the community, often using rooftop antennas in a hub-and-spoke arrangement to bridge the last few hundred feet to the residences (or possibly businesses).Such a network requires a local network engineer (often a volunteer) to maintain network integrity and monitor the quality of service.
http://www.uvlsrpc.org/files/1213/8117/8249/AppendixB_UnderstandingBroadband.pdf
http://www.snhpc.org/pdf/BroadbandPlanSNHPC033114.pdf
http://www.nashuarpc.org/files/6814/0914/9818/Broadband_Plan_FINAL_082714.pdf
https://www.cityofpaloalto.org/civicax/filebank/documents/39244

Cellular network
A cellular network or mobile network is a communications network where the last link is wireless. The network is distributed over land areas called cells, each served by at least one fixed-location transceiver, known as a cell site or base station. This base station provides the cell with the network coverage which can be used for transmission of voice, data and others.
http://www.ccs.neu.edu/home/rraj/Courses/6710/S10/Lectures/CellularNetworks.pdf
http://www2.cs.uidaho.edu/~krings/CS420/Notes.S12/420-12-14.pdf
http://www.cse.unt.edu/~rakl/class3510/CHAP10.pdf

Metropolitan area network
A metropolitan area network (MAN) is a computer network larger than a local area network, covering an area of a few city blocks to the area of an entire city, possibly also including the surrounding areas.
http://spirit.cs.ucdavis.edu/pubs/journal/MEN.pdf
http://www.etsi.org/deliver/etsi_i_ets/300200_300299/300211/01_60/ets_300211e01p.pdf
http://www.cse.wustl.edu/~jain/cis677-96/ftp/e_blan2.pdf
http://cs.uccs.edu/~cs522/F99802.PDF

Wide area network
A wide area network (WAN) is a telecommunications network or computer network that extends over a large geographical distance. Wide area networks often are established with leased telecommunication circuits.
http://www.westnetinc.com/mkt/catalog/sampleunit/wans.pdf
http://www.hp.com/rnd/pdfs/WANDesignGuide.pdf
http://www.cisco.com/networkers/nw00/pres/2303.pdf
http://faculty.kfupm.edu.sa/coe/marwan/richfiles/Chapter%2003%20(Introduction%20to%20WAN%20Technologies).pdf
http://www.icta.ufl.edu/projects/publications/wanlan.pdf

Wireless WAN
A wireless wide area network (WWAN), is a form of wireless network. The larger size of a wide area network compared to a local area network requires differences in technology. Wireless networks of all sizes deliver data in the form of telephone calls, web pages, and streaming video.
http://www.afn.org/~afn48922/downs/wireless/wan
http://docstore.mik.ua/cisco/pdf/other/Cisco.Press.Deploying.License-Free.Wireless.Wide-Area.Networks.eBook-kB.pdf

Edge computing
Edge Computing is pushing the frontier of computing applications, data, and services away from centralized nodes to the logical extremes of a network. It enables analytics and knowledge generation to occur at the source of the data. This approach requires leveraging resources that may not be continuously connected to a network such as laptops, smartphones, tablets and sensors.
http://vis.pnnl.gov/pdf/fliers/EdgeComputing.pdf
https://portal.etsi.org/Portals/0/TBpages/MEC/Docs/Mobile-edge_Computing_-_Introductory_Technical_White_Paper_V1%2018-09-14.pdf
http://www.cs.mcgill.ca/~ylin30/paper/LinY-DB-Replication.pdf

Grid computing
Grid computing is the collection of computer resources from multiple locations to reach a common goal. The grid can be thought of as a distributed system with non-interactive workloads that involve a large number of files. Grid computing is distinguished from conventional high performance computing systems such as cluster computing in that grid computers have each node set to perform a different task/application. Grid computers also tend to be more heterogeneous and geographically dispersed (thus not physically coupled) than cluster computers. Although a single grid can be dedicated to a particular application, commonly a grid is used for a variety of purposes.
http://arxiv.org/ftp/arxiv/papers/0901/0901.0131.pdf
https://www.redbooks.ibm.com/redbooks/pdfs/sg246778.pdf
http://www.buyya.com/papers/GridIntro-CSI2005.pdf

Cloud Computing
Cloud computing is a model for enabling ubiquitous, convenient, on-demand access to a shared pool of configurable computing resources. Cloud computing and storage solutions provide users and enterprises with various capabilities to store and process their data in third-party data centers. It relies on sharing of resources to achieve coherence and economies of scale, similar to a utility (like the electricity grid) over a network.
http://www.cloud-council.org/PG2CC_v2.pdf
https://www.priv.gc.ca/resource/fs-fi/02_05_d_51_cc_e.pdf
https://www.us-cert.gov/sites/default/files/publications/CloudComputingHuthCebula.pdf
http://broadcast.rackspace.com/hosting_knowledge/whitepapers/Understanding-the-Cloud-Computing-Stack.pdf

Fog computing
Fog computing or fog networking, also known as Fogging, is an architecture that uses one or a collaborative multitude of end-user clients or near-user edge devices to carry out a substantial amount of storage (rather than stored primarily in cloud data centers), communication (rather than routed over the internet backbone), and control, configuration, measurement and management (rather than controlled primarily by network gateways such as those in the LTE (telecommunication) core).
http://2012.cloudconference.eu/media/filer_public/2012/11/14/2012-10-24_-_fog_computing_-_mario_nemirovsky.pdf
http://conferences.sigcomm.org/sigcomm/2012/paper/mcc/p13.pdf
http://www.ic.unicamp.br/~bit/mo809/seminarios/Marcio-Fog/suporte/Fog%20Computing-%20A%20Platform%20for%20Internet%20of%20Things%20and%20Analytics.pdf

Mobile cloud computing
Mobile Cloud Computing (MCC) is the combination of cloud computing, mobile computing and wireless networks to bring rich computational resources to mobile users, network operators, as well as cloud computing providers. The ultimate goal of MCC is to enable execution of rich mobile applications on a plethora of mobile devices, with a rich user experience.
https://www.eecis.udel.edu/~cshen/859/papers/survey_MCC.pdf
http://www.elsevier.com/__data/assets/pdf_file/0008/96947/Mobile-cloud-computing_a-survey.pdf
http://www.ijareeie.com/upload/september/4_Mobile%20Cloud%20Computing.pdf
http://www.cs.columbia.edu/~lierranli/coms6998-7Spring2014/papers/mcloud_mcs2012.pdf

Ubiquitous computing
Ubiquitous computing (ubicomp) is a concept in software engineering and computer science where computing is made to appear anytime and everywhere. In contrast to desktop computing, ubiquitous computing can occur using any device, in any location, and in any format. A user interacts with the computer, which can exist in many different forms, including laptop computers, tablets and terminals in everyday objects such as a fridge or a pair of glasses. The underlying technologies to support ubiquitous computing include Internet, advanced middleware, operating system, mobile code, sensors, microprocessors, new I/O and user interfaces, networks, mobile protocols, location and positioning and new materials.
http://www.cc.gatech.edu/fce/pubs/tochi-millenium.pdf
https://www.vs.inf.ethz.ch/publ/slides/MatternPorquerolles.pdf
http://www.mva.me/educational/hci/read/ubiquitous_computing.pdf
https://www.siop.org/tip/backissues/TIPApr02/pdf/394_044to052.pdf

Mobile Adhoc Networks
A mobile ad hoc network (MANET) is a continuously self-configuring, infrastructure-less network of mobile devices connected without wires. Each device in a MANET is free to move independently in any direction, and will therefore change its links to other devices frequently. Each must forward traffic unrelated to its own use, and therefore be a router. The primary challenge in building a MANET is equipping each device to continuously maintain the information required to properly route traffic. Such networks may operate by themselves or may be connected to the larger Internet.
http://www.cs.jhu.edu/~cs647/intro_adhoc.pdf
http://www.olsr.org/docs/wos3-olsr.pdf
http://eecs.ceas.uc.edu/~cordeicm/course/survey_ad_hoc.pdf
http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.5.4584&rep=rep1&type=pdf
http://user.it.uu.se/~erikn/files/DK2-adhoc.pdf

B.A.T.M.A.N.
The Better Approach To Mobile Adhoc Networking (B.A.T.M.A.N.) is a routing protocol for multi-hop ad hoc networks which is under development by the "Freifunk" community and intended to replace OLSR. It can be used for mesh networks but this is not the only potential use.
http://www2.ensc.sfu.ca/~ljilja/ENSC427/Spring11/Projects/team9/ENSC427_Group9_batman_pres.pdf
http://home.in.tum.de/~oehlmann/ba.pdf
http://www.cc.gatech.edu/~vempala/C4G/mymanet.pdf
http://downloads.hundeboll.net/batman-slides.pdf

Mesh Networking & Wireless Mesh Networking
A mesh network is a network topology in which each node relays data for the network. All mesh nodes cooperate in the distribution of data in the network. Mesh networks can relay messages using either a flooding technique or a routing technique. With routing, the message is propagated along a path by hopping from node to node until it reaches its destination.
A wireless mesh network (WMN) is a communications network made up of radio nodes organized in a mesh topology. It is also a form of wireless ad hoc network. Wireless mesh networks often consist of mesh clients, mesh routers and gateways. The mesh clients are often laptops, cell phones and other wireless devices while the mesh routers forward traffic to and from the gateways which may, but need not, connect to the Internet.
http://www.ieee.li/pdf/viewgraphs/wireless_mesh_networking.pdf
http://www.csg.ethz.ch/education/lectures/ATCN/ws06_07/doc/WMN-BasicsWS0607-print.pdf
http://www.dsn.jhu.edu/~yairamir/Raluca_thesis.pdf
http://www.arubanetworks.com/pdf/technology/whitepapers/WP_WirelessMesh.pdf
http://195.70.43.12/Vista/wirelessmeshnetworkconceptsandbestpracticesguide35023.pdf
http://www.iaria.org/conferences2009/filesICWMC09/EugenBorcociTutorial.pdf

Crystal Oscillator Design
A crystal oscillator is an electronic oscillator circuit that uses the mechanical resonance of a vibrating crystal of piezoelectric material to create an electrical signal with a precise frequency. This frequency is commonly used to keep track of time, as in quartz wristwatches, to provide a stable clock signal for digital integrated circuits, and to stabilize frequencies for radio transmitters and receivers. The most common type of piezoelectric resonator used is the quartz crystal, so oscillator circuits incorporating them became known as crystal oscillators, but other piezoelectric materials including polycrystalline ceramics are used in similar circuits.
http://www.eetkorea.com/ARTICLES/2001SEP/2001SEP06_AMD_AN.PDF
http://www.ece.ucsb.edu/Faculty/rodwell/Classes/ece218b/notes/Oscillators1.pdf
http://pdfserv.maximintegrated.com/en/an/TUT5265.pdf

Piezoelectricity
Piezoelectricity /piˌeɪzoʊˌilɛkˈtrɪsɪti/ is the electric charge that accumulates in certain solid materials (such as crystals, certain ceramics, and biological matter such as bone, DNA and various proteins)in response to applied mechanical stress. The word piezoelectricity means electricity resulting from pressure. It is derived from the Greek piezo or piezein (πιέζειν), which means to squeeze or press, and electric or electron (ήλεκτρoν), which means amber, an ancient source of electric charge. Piezoelectricity was discovered in 1880 by French physicists Jacques and Pierre Curie.
http://www.aurelienr.com/electronique/piezo/piezo.pdf
http://sstl.cee.illinois.edu/apss/files/21-Piezoelectric%20Sensors.pdf
http://sem.org/PDF/Change_Piezoelectric%20Technology%20Review.pdf

Antenna
An antenna (plural antennae or antennas), or aerial, is an electrical device which converts electric power into radio waves, and vice versa. It is usually used with a radio transmitter or radio receiver. In transmission, a radio transmitter supplies an electric current oscillating at radio frequency (i.e. a high frequency alternating current (AC)) to the antenna's terminals, and the antenna radiates the energy from the current as electromagnetic waves (radio waves). In reception, an antenna intercepts some of the power of an electromagnetic wave in order to produce a tiny voltage at its terminals, that is applied to a receiver to be amplified.
https://www.ncjrs.gov/pdffiles1/nij/185030b.pdf
http://wireless.ictp.it/handbook/C4.pdf
https://www.wpi.edu/Pubs/E-project/Available/E-project-042811-161838/unrestricted/ChuckFungFinalMQPpaper2.pdf
http://www.kathrein.pl/down/BasicAntenna.pdf

MIMO
In radio, multiple-input and multiple-output, or MIMO (pronounced as "my-moh" or "me-moh"), is a method for multiplying the capacity of a radio link using multiple transmit and receive antennas to exploit multipath propagation.
https://smartech.gatech.edu/bitstream/handle/1853/7480/bahceci_israfil_200512_phd.pdf
http://www.jhuapl.edu/techdigest/TD/td3002/Hampton.pdf

Antenna farm
Antenna farm or satellite dish farm or just dish farm are terms used to describe an area dedicated to television or radio telecommunications transmitting or receiving antenna equipment, such as C, Ku or Ka band satellite dish antennas, UHF/VHF/AM/FM transmitter towers or mobile cell towers.
http://k5rmg.com/wp-content/uploads/2015/08/Stealth-Antenna-Farm.pdf
http://www.zerobeat.net/r3403c.pdf
http://www.sadxa.org/w7yrv/Roy's_Antenna_Farm.pdf

Passive repeater
A passive repeater or passive radio link deflection, is a reflective or sometimes refractive panel or other object that assists in closing a radio or microwave link, in places where an obstacle in the signal path blocks any direct, line of sight communication.
http://az276019.vo.msecnd.net/valmontstaging/vsna-resources/microflect-passive-repeater-catalog.pdf?sfvrsn=6
http://www.calzavara.it/download/en/datasheet/152/SM_._General_overview_Ground_mounted_SM.pdf

Ground station
A ground station, earth station, or earth terminal is a terrestrial radio station designed for extraplanetary telecommunication with spacecraft, or reception of radio waves from an astronomical radio source. Ground stations are located either on the surface of the Earth or in its atmosphere. Earth stations communicate with spacecraft by transmitting and receiving radio waves in the super high frequency or extremely high frequency bands (e.g., microwaves). When
member
Activity: 98
Merit: 11
We are launching a Cryptocurrency for Texans next, so if you are a Texan and are interested in being one of the first people mining a Coin based in Texas, then contact me and let me know. Should be done by the end of the Weekend.
member
Activity: 98
Merit: 11
It turns out to be easy, but I'm sure it's not as easy as it looks. It may take some experiments for me, as I am not familiar with such coding languages.

I had never used Linux or opened a command line until about 3 weeks ago, and I put all the errors on Bitcointalk.

I posted all of this, because I am not a programmer, or wasn't, 3 weeks ago, and in 3 weeks I figured out how to make my own Coin. And now I can make Scrypt Coins and Cryptonotes, and will be figuring out how to Clone STEEM and Steemit soon.
full member
Activity: 476
Merit: 100
It turns out to be easy, but I'm sure it's not as easy as it looks. It may take some experiments for me, as I am not familiar with such coding languages.
member
Activity: 98
Merit: 11
Currencies, both fiat and crypto, don't actually contain any value they  simply represent value. They are called Trade Instruments, meaning,  instruments that facilitate trade. Stocks are an example of trade  instruments that aren't money, they have no actual value but they  represent a share of a company and the company itself does the work that  turns the profits that gives a share its theoretical value. All trade  Instruments work along the same lines: Fiat is traded by banks and  Foreign Exchange companies, Stock is traded on Stock Exchanges such as  the New York Stock Exchange and Cryptocurrencies are traded on various  Cryptocurrency Exchanges. All of their values are representations of  real things, for example Stocks Represent created and distributed goods  and services by a particular company, while fiat currency represents  created and distributed goods and services of a nation. Both change  based on industrial/technological/scientific/developmental/etc.  advancements within those companies or nations, as well as various  factors such as trade volume and inflation. It is best to trade your  trade instruments at the highest value possible and use them to buy real  items, such as: Precious metals, Livestock, Software, Machines,  Produce/Seeds, Land, Realestate, etc and then use those to get more  trade instruments.

Trade volume is how many people are buying  and selling a particular currency or stock. The more people who are  buying it, the higher the value will rise.

An example of  Inflation is when the United States starts printing too much money. When  this happens a dollar starts being worth less, which in turn means it  will take more money to buy the same materials. For instance, if you go  to the store and one day Milk is $3/Gallon but then you go a few months  later and notice it is $5/Gallon, this is because of inflation.  Inflation also drives things like the minimum wage and social security  checks, which are usually based on the cost of living. Cryptocurrencies  with no cap will eventually inflate into eternity and lose value, unless  they have a high trade volume.

Supply and Demand is the  comparison of how many people want something against how many their are  of that thing. For example, when Apple creates a new IPhone the value is  higher than it really should be and as the technology slightly or  drastically ages, the value goes down.

A Whale is a person who  has a large quantity of a certain trade instrument and uses that to  effect the markets. For example, if someone has 51% of a particular  stock they could either sell them all quickly which would bring the  value of that stock down, or they could hold on to all of them which  makes them more rare and makes them more valuable.

Bubbles are  when something is artificially high in value, 2 examples of this are:  IPhones as mentioned before, and Gasoline. Gasoline raises in value  based simply on the speculation that "one day we might run out", this  creates bubbles which raises prices. But Gasoline will probably be  replaced by ethanol before it ever even gets close to being used up.

 Look at different exchanges- Sometimes you can get more on one site  than you can on another site, for the same coins. And sometimes you can  even buy coins on one site and sell them on another site for more. This  works better when you are trading Crypto to Crypto rather than Crypto to  fiat.

Use coins to create goods and services- Don't just use  coins to buy random things, buy software and other goods that you can  use to produce things or spend them on things like textbooks. Create a  product if you can.

Promote your favorite coins- If you have a favorite coin and buy some, don't forget to share it on social media.

Create a currency- Satoshi gave out the Bitcoin source code so that people could make their own currencies.

Create  an exchange- Transaction fees can earn the owners a lot of coins and  you can help fledgling altcoins by offering them on your exchange.

Don't  buy above spot- If you are trading coins for precious metals, check the  current global value of that metal and buy as close to that value as  you can.

Invest in foreign countries- Don't think America is the be all end all.
member
Activity: 98
Merit: 11
Btw, Temple Coin has not been announced yet for Bitcoiners, only on Social Media.

We have a Website, Twitter, Social Media Pages, Windows and Linux Wallets, as well as an IRC chat, and we are starting a 2nd Coin (Cryptonote) and a Cryptonote Pool.

We will probably do some kind of Announcement around mid or late January so people on Bitcointalk can join us.
member
Activity: 98
Merit: 11
Btw, you have to use Trusty Tahr 14.4.5

I think I already mentioned that, but that is really the most important part.
member
Activity: 98
Merit: 11
member
Activity: 98
Merit: 11
Nikola Tesla and Swami Vivekananda wrote to each other and even met (before Planes, Cars, etc). Swami Vivekananda was a Hindu before Gandhi, who spread Hinduism around the world, started Temples in places like Chicago, and is seen as a Key Figure in many modern Hindu schools of thought.

"All perceptible matter comes from a primary substance, or tenuity beyond conception, filling all space, the Akasha (आकाश) or luminferous ether, which is acted upon by the life giving Prana (प्राण) or creative force, calling into existence, in never-ending cycles all things and phenomena."
-Nikola Tesla
member
Activity: 98
Merit: 11
Just to help everyone understand how this is going to work, here is how I got STEEM in the News, raising the price to about $5, solidifying its place in the Cryptocurrency World, which will allow it to go to $20 and $50 in the future.
https://steemit.com/steem/@marsresident/how-you-can-help-get-steem-in-the-news-simply-using-your-email

I just gave everyone this email list, and told them to tell these Media people about STEEM and their experience with it. If you wanted, you could go ahead and do that with Temple Coin now, but once we get on an exchange, we will do this for sure.

And I actually have a larger list, this is my abridged list.
member
Activity: 98
Merit: 11
Temple Coin already has over 30 users, and it has only existed for like 5 days and has not been announced on Bitcointalk. And I probably won't be the person to make the Announcement thread, I will probably wait until someone else does it from Facebook.
member
Activity: 98
Merit: 11
Federalism, a good Concept for a loose Confederation of Currencies to get a grasp of
https://bitcointalksearch.org/topic/federalism-2668481
member
Activity: 98
Merit: 11
Will the real Satoshi Nakamoto, please stand up?
member
Activity: 98
Merit: 11
And btw, anyone can make a Coin. Here is a guide with all the errors, for Windows and Linux.

For the Windows one you do have to install the software into the command line. I ended up using Linux, but it can be done on Windows with these instructions too.
https://bytecointalk.org/showthread.php?tid=1218

Read through the whole thing to figure out which way you want to do it, but it explains how to set up Swap Space, and different problems with VMs and OSs and everything.

I am changing things, so that Coins are not these things that are hard to make and have names that aren't related to an Existing Community.



In the Future, the very near Future. Coins will be made for a Reason, and for people who already want to use it, and not for the purpose of having a Coin because you know how to use Linux, but because you have a Community that needs a Coin.

Some people may argue that this is not "Decentralized" but if that is logical, then I would argue that Bitcoin has become Centralized around a small group of MIT grads and nerds.
member
Activity: 98
Merit: 11
Token, create your own Token (Not a real coin, but can gain value) with an Ethereum Contract here
https://www.ethereum.org/token

Asset, create your own Asset (Not a real coin, but can gain value  and can be traded on OpenLedger) with a Bitshares Contract here https://bitshares.openledger.info/account/ YOURUSERNAME /assets/
(You have to add your OpenLedger Username to the Link for it to work)
member
Activity: 98
Merit: 11
Also include links like this, so they understand a little better. They know about Bitcoin, but not Altcoins.
https://cryptocoincharts.info/coins/info/101-to-1000
member
Activity: 98
Merit: 11
Send info about your ICO to these emails

[email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
member
Activity: 182
Merit: 10
Create Your Decentralized Life
This information you provided is very helpful to the people who wants to start their own cryptocurrency,if you got the money and all the resources needed why not to give it a try?
member
Activity: 98
Merit: 11
Someone was asking which kind of Coin is best to make, and this came up, so I am going to explain it here for everyone.

I mentioned that Cryptonote is the easiest, and probably the most supported, with Scrypt coins (like Litecoin) being 2nd, and the person asked "Isn't Cryptonote based on their currency and it's not really its own thing", so let me explain that for everyone.

First there was Bitcoin, then Litecoin. Bitcoin is the SHA algorithm, and Litecoin is Scrypt. So they are 2 completely different kinds of Coins, but then there are Coins like Doge Coin, which is the exact same as Litecoin, but it has a different number of blocks and coins and a new Genesis Block. With a new Genesis Block, it is a new Blockchain; this is called "Cloning" but creates something that is entirely independent and new. If you use the same Genesis Block, that is when you are "Forking", Forking is using he same Blockchain but giving it a new name, and it's like a Fork in the road. Everyone that had the old coin, will have your coin, because your coin is using the old part of the Blockchain, but at that Fork in the road, everything becomes a new coin. But everyone that had a supply of the old Coin, can download a wallet and have just as many of your new Coin, but to get more they have to mine or stake your new coin. Examples of Forks are BitcoinCash and BitcoinGold.

So that is how new Coins are made. Most coins are Clones or Forks.
member
Activity: 98
Merit: 11
Just so everyone can have some info that most people don't have about Bitcoin, I was there when Bitcoin was $5 each, and the only place you could really spend them was on the Silk Road, and we had to go out and mass email companies to ask them to start accepting Bitcoins...

Bitcoin will run out, eventually when people mine them, they will no longer come out. So how does the Bitcoin network keep moving at that Point? At that Point, other Coins have to be mined, like Litecoin or Ethereum, or Coins that don't exist yet but will exist by the time Bitcoin runs out of Coins. And they will be mined in Pools with Bitcoin and they will be paid in the other Coins.

Then Forking, people were not sure how Forks would work, and when Ethereum was first forked because of a Giant Ethereum Hack, they didn't expect people to keep using the Old one. But that is how Ethereum Classic was made, and everyone who had Ethereum Classic (the old Ethereum) also has Ethereum on the new Fork Blockchain, meaning they pretty much doubled their money (but Ethereum Classic is not worth as much). Then there was SegWit and all that, which created Bitcoin Cash and Bitcoin Gold and all those, which did the same as Ethereum and gave everyone the same amount of each one that they had of Bitcoin.

And I will get into more stuff as this goes on, but I just want everyone to have some understanding of what we figured out as Bitcoin grew and we all discussed what the future (now and soon) were going to look like for Bitcoin.
member
Activity: 98
Merit: 11
The Temple Coin group is going to be launching a Cryptonote, which will also be our first Town based Coin, in the next few days. But first we are creating a Cryptonote Mining Pool.
member
Activity: 98
Merit: 11
Temple Coin now has no more Mine-able Blocks. Now, mining simply allows the Network to keep moving forward, and allows your 8% interest per year to appear in your wallet.

If you want Temple Coins now, you either have to have some already and get the 8% interest, or complete Bounties (which are really simple tasks, such as creating logos and things like that).

Here are the Specs of Temple Coin so that everyone can see that this Coin is going to go way up in value. It's not like Doge Coin.

Algorithm    Scrypt
Type    PoS
Abbreviation    TMPC
Total coin supply    138461538 coins
Premine percent    9%

The Premine exists so I can give out Coins for free, I have already handed out over 1,000,000 Coins. I will only keep about 1% of the premine for the Purpose of Building a Temple and filling it with everything we need to start a movement.

Post your wallet address and I will send you ॐ 1,000‬

Create a Cryptonote Mining Pool for the Temple coin Community, and I will send you  ॐ 30,000‬

If you are outside the United States, let me know and let me know that you want to share Temple Coins for Free with people in your Country to spread the, and I will send you ॐ 50,000‬

Because the total supply is 138461538, once the Premine has been mostly handed out, and the Coins are spread around the world, the Coins will be valuable because 138461538 is not a lot of Coins. Which is only about 6x the number of Bitcoins that will ever exist, meaning it could end up being 1/6 the price of Bitcoin (which is about $2000 each). But even if it is 10 cents each, or $1 each, or $5 each, none of us will ever have to work again.
member
Activity: 98
Merit: 11
This will be the Currency symbol for Temple Coin


One will be like change or Satoshi, and the other one will be like Dollars or full Bitcoins.


For example, if you wanted to say 10,000 Temple Coins, now you just say

ॐ 10,000
member
Activity: 98
Merit: 11
If you do not live in the United States or Canada, and you would like to be an Emissary for Temple Coin; contact me and if I think you will be a good Emissary, I will give you 50,000 Temple Coins so that you can give them out 500 or 1,000 at a time to anyone in your Country who wants them.

Contact me if you would like to be an Emissary for Temple Coin.
member
Activity: 98
Merit: 11
Books and Essays to Read:
Civil Disobedience -Henry David Thoreau
The Federalist Papers -Alexander Hamilton
The Anti-Federalist Papers -Anonymous
The Prince -Niccolo Machiavelli
Our Word is Our Weapon -Subcommandante Marcos
Philosophy and Opinions of Marcus Garvey
Steal This Book -Abbie Hoffman
Rules for Radicals -Saul Alinski
Psychological Operations in Guerilla Warfare -CIA
On Guerilla Warfare -Mao Tse Tung
The Art of War -Sun Tzu
Polybius
Josephus
Livy
The Republic -Plato
Politics -Aristotle
member
Activity: 98
Merit: 11
"You can't form this with no education. Let me give you an example. Jomo Kenyatta formed the [Kenyan] Revolution with no education, and in the end Jomo told those motherfuckers "I'm your brother I'll help you lead the Revolution but now I'm gonna oppress you". Another example Papa Doc in Haiti hated everything white, you couldn't put this white piece of paper in front of Papa Doc's face. But he moved all the white people out then he took over to be the oppressor, because of no education. If the people had been educated they would have said, we don't hate the white people we hate the oppressor, whether he be white, black, brown or yellow. So we need an educational program to find out what it's going to be in the finale. Jomo Kenyatta is called not a Revolutionary but an Ex-Revolutionary, so is Papa Doc, they brought on successful Revolutions. That thing in the Mau Maus and Bantu Freedom Fighters, all that kind of action. What we are talking about is the end, you don't judge Castro now, no one in this room can judge if Castro is going to be a Revolutionary. We're talking about things with China, the People's Republic, and even at the stage they're in now talking about going further into a Communistic State. Without education the people will take this local foundation and start stealing money because they won't understand how it is the people's thing anyway. You might get people caught up because they are poor and they want something, and if they aren't educated they'll want more, and before you know it they'll be capitalists and before you know it we'll have black imperialists"
-Fred Hampton
member
Activity: 98
Merit: 11
Temple Coin [TMPC] is looking for people to fulfill Bounties.

Temple Coin is a coin operated by a Group of Hindus, including my self, who are mainly from Texas (the Dallas area). We premined 9% of the Coin to use to hand out for free, and for Bounties, and to use for the Benefit of the Temple Coin Community and to start a real Physical Temple; and only 10,000 Blocks are mine-able, and are currently being mined by people on Facebook, Twitter and Google+. There will only ever be 112,000,000 Temple Coins, ever, and at an 8% interest (PoS), it will take something like 20 years for all of the Coins to come out, and it isn't a large amount even when they are all out.

This coin was only started 3 days ago, and has not yet been announced as a Coin here on Bitcointalk, and we already have 20+ users.

We are looking for people who can complete Temple Coin Bounties. If you are a Programmer, or Graphic Designer, or if you have any kind of skill that you think could help the Temple Coin Community, come to this chat room and let us know (it's only day 3, so not a lot of people in their 24/7 yet). But if you make a Temple Coin Wallet and post the Address here, you will get 1,000 Free Temple Coins, and if you can complete Bounties that we will give you everything you need to Complete; come join Temple Coin.

This is our Chat
https://innovanon-inc.github.io/LHP/TempleCoin/index.html

This is the first 3 Days of Temple Coin. This is your chance to get in. In 2 months, it will be too late.
member
Activity: 98
Merit: 11
Once Temple Coin is up and going, we will creating not only a Physical Temple, but we will be creating our own Wired and Wireless Networks. And we will provide Free Internet and Phone Service to Temple Members.
http://shaivitetemple.org/creating-cellular-wireless-wired-networks/

And as we begin creating these Networks we will start creating Temple Systems, which will be based on Expert Systems from the 70s (which was thought to be Artificial Intelligence, but is more like a Digital Interactive Encyclopedia about a single topic, that can guide you through processes)
http://shaivitetemple.org/temple-systems/

And eventually, we will start making Solar Powered Generators for Coin Mining (we will not aim the Solar Panels at a Battery, and mine with that Battery, we will point them at a Generator and then use the Generator to Mine. This is how Solar Panels should be used, not the way they are used not to point directly at Appliances). Then eventually we will get a Giant Alternator and start giving out Free Electricity.
http://shaivitetemple.org/electricity-and-photovoltaics/
member
Activity: 182
Merit: 10
I am not really into programming but this is very informative maybe someday i will create a good coin too.
member
Activity: 98
Merit: 11
I am not going to post too much information yet, but if anyone would like to download my First Coin's wallet, you can download it here.
https://drive.google.com/file/d/1t1IAhjXCxbEKIOkbz_oBjO-GhRlmMMaN/view?usp=sharing
member
Activity: 98
Merit: 11
Just to keep everyone updated. For the first month, I will not be trying to get Temple Coin on an Exchange.For the First Month I will just be telling people to create Wallets, and I will send them 1,000 Free Temple Coins if they send me their Wallet address, and people can Mine Coins for the first 7 days (1 day is already up, only 6 left); and those Coins will grow at an 8% rate per year. After the 7 Days, Temple Coin will become a Bounty Coin. So if you want more than 1,000 Coins, and you are not able to Mine, you will be able to get Temple Coins for doing various things. For example, we might need a Flyer written up, or another Logo, or a new Node Opened, or some other random thing, and we will begin to distribute Coins as Bounties for simple tasks.

Consider this the Temple Coin ICO, and it doesn't cost you any money. Then, after about a Month, we will go to the Exchanges and these Coins you have will be worth money.
member
Activity: 98
Merit: 11
This is what I mean when they say that they are making this an Easter egg hunt. Everyone is just like "Get 2 Ubuntu servers", and the word DNS seed is mentioned when they say to put your IP, but no one even hints that DNS involves all of this
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-host-name-with-digitalocean
member
Activity: 98
Merit: 11
FINAL STEP OF THE COIN
We just need someone to set up a Seed Node, someone who understands Servers at least on a basic level, and once the seed note is set up, we are in business. Contact me if you can set up a Seed node, I have 2 VPSs from Digital Ocean. These instructions only work on older version of Ubuntu apparently, but here is what we need to do.
http://forknote.net/guides/setup-private-blockchain/
http://forknote.net/guides/starting-seed-node/
member
Activity: 98
Merit: 11
Cryptonote Seednode and Blockchain creation guide

After you compile your coin 1x, use this
http://forknote.net/guides/setup-private-blockchain/

And then connect seed nodes, then do the 2nd compile.
http://forknote.net/guides/starting-seed-node/

This is it though. This is the last step. This connects the daemon on the computer, to the Blockchain on the server, allowing other computers to sync up with the blockchain, and begin mining.
member
Activity: 98
Merit: 11
Oh, wow. Ok, this is the kind of guide I have been looking for. Here we go everyone. This is about to get easy.

https://bitcointalksearch.org/topic/create-your-own-cryptonote-currency-and-mining-pool-easily-2127566

Quote
Run Step by Step Below Commands on VM Instance, Ubuntu, 2 vCPU with 8 or 13 GB Ram:-

--------------------------------------------------
Creating Your Own Mining Pool
============================

sudo apt-get install git

sudo apt-get install redis-server

sudo apt-get install libboost1.55-all-dev

sudo apt-get install nodejs-dev

sudo apt-get install nodejs-legacy

sudo apt-get install npm

sudo apt-get install cmake

sudo apt-get install libssl-dev

git clone https://github.com/fancoder/cryptonote-universal-pool.git pool

cd pool

npm update

nano config.json

Replace XDN Wallet Address:
ddeTPyKKxV4dSfpnPG9H5HbLXnRmJ2HKvVG3u6zwvJYY1TkSwoVRNJYgUw7wMnJH82FS8noajsHKGiN ABUygXMdm1oKjojAHf

node init.js

--------------------------------------------------
Creating Your Own Cryptocurerncy
============================
apt-get update

apt-get dist-upgrade

sudo dd if=/dev/zero of=/mnt/myswap.swap bs=1M count=4000

sudo mkswap /mnt/myswap.swap

sudo swapon /mnt/myswap.swap

sudo chmod 777 /etc/fstab

nano /etc/fstab

/mnt/myswap.swap none swap sw 0 0

Now your swap is setup, you can modify the size in the future if you need more or less.

sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev

sudo apt-get install libboost-all-dev git npm nodejs nodejs-legacy libminiupnpc-dev redis-server

sudo add-apt-repository ppa:bitcoin/bitcoin

sudo apt-get update

sudo apt-get install libdb4.8-dev libdb4.8++-dev

sudo curl https://raw.githubusercontent.com/creationix/nvm/v0.16.1/install.sh | sh

source ~/.profile

nvm install 0.10.25

nvm use 0.10.25

mkdir digitalnote

cd digitalnote

sudo git clone https://github.com/xdn-project/digitalnote.git

sudo cmake

sudo make

cd /build/release/src

./digitalnoted

-------------------------------------------------------------------------
Three Websites for majority of solution:-

01. http://betbybitcoin.com/setup-monero-mining-pool-using-node-cryptonote-pool/

02. https://github.com/fancoder/cryptonote-universal-pool/blob/master/README.md#usage

03. https://github.com/xdn-project/digitalnote (Cloning Link)

--------------------------------------------------------------------------
Donate if You LIke, I will use it for :-

01. Running My Google Cloud VM.
02. Mining Pool and Hosting Node on Google Cloud.

Bitcoin               = 18msSmpKxN3iCAURQ5whTnq97q3Z1VrLxW
Dash                 = Xkw5STBzT9sfDrouzPupYetVfQ7b3ypLyj
DigiByte              = DEYFFFratz1fTsW3xQZgXEDdi2MWb4h3Qn
Dogecoin              = D6LNCrVryeDidDxJQTJ265kaKNJ6ZHTFqk
Ethereum Classic   = 0x382f11ed930b0ff1b48cefcdf747715e0a6dc44a
Ethereum              = 0x0af5d65a269aa3156657370fec07b1d2b4c9e757
Litecoin              = LgKitsRMirj5sEvGA8Zcmu63vrrLKBkjtZ
NXT                 = NXT-VPY7-BSLP-MJBV-FRK4S
Zcash         = t1XNkQ5fEQa1XmrdqbxtSyDrNBva26VJ96w
member
Activity: 98
Merit: 11
There is also a way to clone the Steemit Blockchain, I assume it is a lot more complicated than Litecoin (maybe not), but this all needs to start becoming more open. Satoshi didn't release this technology for free so that people could use it as a Trade Secret.
https://steemit.com/steemit/@contentjunkie/a-comparison-of-steem-steemit-clones-and-competitors-and-why-they-made-me-invest-more-here
https://steemit.com/steemit/@artakan/how-to-build-your-own-steemit-com-website
member
Activity: 98
Merit: 11
And that is Cryptonote, if you want to Clone Litecoin, here is some info. I will add to it soon, the first coin I am making (and not sharing here) will be a Litecoin Clone.
https://bitcointalksearch.org/topic/coin-making-guides-1877786
member
Activity: 98
Merit: 11
Interesting information but a little bit technical. I think the issue is very informative and helpful for beginners. Keep up sharing and the blockchain technology gospel will spread very fast.

The non-"technical" version, with 100% of the errors that you may encounter along the way, can be found here
https://bytecointalk.org/showthread.php?tid=1218
sr. member
Activity: 798
Merit: 250
homt.net
Interesting information but a little bit technical. I think the issue is very informative and helpful for beginners. Keep up sharing and the blockchain technology gospel will spread very fast.
member
Activity: 98
Merit: 11
And once you make a Coin, don't share it on this website. This website is not where to share new coins, I will not be sharing my coin here until at least a month after it has been on Facebook.
member
Activity: 98
Merit: 11
Bitcoin's value does not come from Greed, Bitcoin's value does not come from it being secure. Bitcoins value comes from the novelty, and the fact that it is used to purchase things. And that started with Drugs, Guns, Counterfeit money and Sawed off body parts.

Greed does not make Bitcoin worth more, sharing it does. The more people who use it, the more people who can get it, the more people who have some, the more valuable it is. And the best way to get Cryptocurrency, is to make your own. If there were a Google Coin, or an Apple Coin (or iCoin), etc, they would be worth more than Bitcoin over night (after news started breaking), guaranteed.

So this thread is going to be the best place on the Internet for people to go to in order to learn to create a currency.

First, go to this website and fill out the form, and copy the .json file that it generates for you.
http://forknote.net/create/#/

After you do that, go to this repository and follow the instructions with your .json file.
https://github.com/forknote/cryptonote-generator

And you have a coin, but no wallet.

ANOTHER ROUTE TO MAKE A COIN

First, go here.
https://cryptonotestarter.org/inner.html

But get all the dependencies first.
https://cryptonotestarter.org/kb/bui...ent-setup.html

The build command is
make -j

So that is how to make a coin, it is that easy. If that does not work, use these links to install all the dependencies, then try again.
https://askubuntu.com/questions/2713...nstall-gcc-4-8
https://geeksww.com/tutorials/operat...e_on_linux.php
http://www.boost.org/doc/libs/1_65_1...-variants.html

You may also need to get an external hard drive and set up Swap Space.

If you are doing that and run into any errors, just look through this thread, and your error should be there, pretty much every error is here.
https://bytecointalk.org/showthread.php?tid=1218
Jump to: