Bitcoin Forum
June 30, 2024, 08:54:57 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 [78] 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 ... 228 »
1541  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [DBIC] DubaiCoin-DBIC | PAYMENT GATEWAY DBIC-EX دبي كوين on: September 30, 2016, 01:47:25 PM
Azure-blockchain-projects
Initial Dubaicoin Blockchain commit

Code:
+# Dubaicoin Blockchain Node on Ubuntu VM
+
+This template delivers the Dubaicoin network to your VM in about 15 minutes (PPA install).  Everything you need to get started using the Dubaicoin blockchain from the command line is included.
+You may select to build from source or install from the community provided Personal Package Archive (PPA).Once installed, 'dubaicoind' will begin syncing the public blockchain.
+You may then connect via SSH to the VM and launch 'dubaicoind' to interface with the dubaicoin blockchain.
+
+<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fdubaicoin-on-ubuntu%2Fazuredeploy.json" target="_blank"><img src="http://azuredeploy.net/deploybutton.png"/></a>
+<a href="http://armviz.io/#/?load=https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fdubaicoin-on-ubuntu%2Fazuredeploy.json" target="_blank"><img src="http://armviz.io/visualizebutton.png"/></a>
+
+# What is Dubaicoin?
+
+A new and exciting Open Source currency that will revolutionize Gold/Diamond purchases based on fair-play rules.
+
+Dubaicoin using secure POS algorithm.
+
+DubaiCoin - DBIC<br />
+
+Ticker: DBIC<br />
+Algorithm: SHA-256<br />
+Supply: 10 500 000<br />
+Premine: 1%<br />
+Pos: 10% pa<br />
+Number Of Blocks: 280 000<br />
+60 Seconds Per Block<br />
+10 Blocks to Confirm<br />
+Min. Staking Age: 1 hour<br />
+
+Block Rewards:<br />
+
+1: ~ 1% Premine<br />
+2-100: 0 (instamine protection)<br />
+101-40,000: 100 (~ 1 month)<br />
+40,001-80,000: 50 (~ 1 month)<br />
+80,001-120,000: 25  (~ 1 month)<br />
+120,001-160,000: 12.5  (~ 1 month)<br />
+160,001-200,000: 6.25 (~ 1 month)<br />
+200,001-240,000: 3.125 (~ 1 month)<br />
+240,001-280,000: 1.5625 (~ 1 month)<br />
+
+For more information, as well as an immediately useable, binary version of
+the Dubaicoin client sofware, see https://dubaicoin.org/.
+
+
+# Template Parameters
+
+When you click the Deploy to Azure icon above, you need to specify the following template parameters:
+
+* `adminUsername`: This is the account for connecting to your Dubaicoin host.
+* `adminPassword`: This is your password for the host.  Azure requires passwords to have One upper case, one lower case, a special character, and a number.
+* `dnsLabelPrefix`: This is used as both the VM name and DNS name of your public IP address.  Please ensure an unique name.
+* `installMethod`: This tells Azure how to install the software.  The default is using the community provided PPA.  You may choose to install from source, but be advised this method takes substantially longer to complete.
+* `vmSize`: This is the size of the VM to use.  Recommendations: Use the A series for PPA installs, and D series for installations from source.
+
+# Getting Started Tutorial
+
+* Click the `Deploy to Azure` icon above
+* Complete the template parameters, choose your resource group, accept the terms and click Create
+* Wait about 15 minutes for the VM to spin up and install the software
+* Connect to the VM via SSH using the DNS name assigned to your Public IP
+* If you wish to relaunch dubaicoind `sudo dubaicoind`
+* dubaicoin will run automatically on restart
+
+# Licensing
+
+Dubaicoin is released under the terms of the MIT license. See `COPYING` for more information or see http://opensource.org/licenses/MIT.
View
28  baas-artifacts/linux-dubaicoin/artifactfile.json
@@ -0,0 +1,28 @@
+{
+  "$schema": "https://raw.githubusercontent.com/Azure/azure-devtestlab/master/schemas/2015-01-01/dtlArtifacts.json",
+  "title": "Dubaicoin Gold and Diamond Blockchain",
+  "description": "Add an Linux Dubaicoin node to the Lab",
+  "tags": [
+    "Dubaicoin",
+ "Gold",
+ "Diamond",
+    "Blockchain",
+    "Linux"
+  ],
+  "iconUri": "https://raw.githubusercontent.com/Azure/azure-blockchain-projects/master/baas-artifacts/linux-dubaicoin/dubaicoinArtifact.png",
+  "targetOsType": "Linux",
+  "parameters": {
+     "installMethod": {
+      "type": "string",
+      "displayName": "Method to install Dubaicoin. From_PPA: unofficial community bianaries.  From_Source: official Dubaicoin repo on GitHub.",
+      "defaultValue": "From_Source",
+      "allowedValues": [
+        "From_PPA",
+        "From_Source"
+      ]
+    }
+  },
+  "runCommand": {
+    "commandToExecute": "[concat('sh', ' ', 'build_dubaicoin.sh', ' ', parameters('installMethod'))]"
+  }
+}
View
79  baas-artifacts/linux-dubaicoin/build_dubaicoin.sh
@@ -0,0 +1,79 @@
+#!/bin/bash
+
+set -e
+
+date
+ps axjf
+
+
+if [ $1 = 'From_Source' ]; then
+#################################################################
+# Update Ubuntu and install prerequisites for running DubaiCoin   #
+#################################################################
+sudo apt-get update
+#################################################################
+# Build DubaiCoin from source                                     #
+#################################################################
+NPROC=$(nproc)
+echo "nproc: $NPROC"
+#################################################################
+# Install all necessary packages for building DubaiCoin           #
+#################################################################
+sudo apt-get -y install git unzip wget build-essential libtool autotools-dev autoconf pkg-config libssl-dev libevent-dev bsdmainutils libboost-all-dev libminiupnpc-dev libzmq3-dev
+sudo add-apt-repository -y ppa:bitcoin/bitcoin
+sudo apt-get update
+sudo apt-get install -y libdb4.8-dev libdb4.8++-dev
+
+cd /usr/local
+file=/usr/local/DubaiCoin
+if [ ! -e "$file" ]
+then
+ sudo git clone https://github.com/DubaiCoinDev/DubaiCoin.git
+fi
+
+cd /usr/local/DubaiCoin
+file=/usr/local/DubaiCoin/src/DubaiCoind
+if [ ! -e "$file" ]
+then
+ sudo make -f makefile.unix -j $NPROC
+fi
+
+sudo cp /usr/local/DubaiCoin/src/DubaiCoind /usr/bin/DubaiCoind
+
+else    
+#################################################################
+# Install DubaiCoin from PPA                                  #
+#################################################################
+#sudo add-apt-repository -y ppa:DubaiCoin/DubaiCoin
+#sudo apt-get update
+#sudo apt-get install -y DubaiCoin
+cd /usr/local/src/
+DOWNLOADFILE=$(curl -s https://api.github.com/repos/DubaiCoinDev/DubaiCoin/releases | grep browser_download_url | grep linux64 | head -n 1 | cut -d '"' -f 4)
+DOWNLOADNAME=$(curl -s https://api.github.com/repos/DubaiCoinDev/DubaiCoin/releases | grep name | grep linux64 | head -n 1 | cut -d '"' -f 4)
+sudo wget $DOWNLOADFILE
+sudo unzip $DOWNLOADNAME
+sudo cp DubaiCoind /usr/bin/DubaiCoind
+
+fi
+
+################################################################
+# Configure to auto start at boot    #
+################################################################
+file=$HOME/.DubaiCoin
+if [ ! -e "$file" ]
+then
+ sudo mkdir $HOME/.DubaiCoin
+fi
+printf '%s\n%s\n%s\n%s\n' 'daemon=1' 'server=1' 'rpcuser=u' 'rpcpassword=p' | sudo tee $HOME/.DubaiCoin/DubaiCoin.conf
+file=/etc/init.d/DubaiCoin
+if [ ! -e "$file" ]
+then
+ printf '%s\n%s\n' '#!/bin/sh' 'sudo DubaiCoind' | sudo tee /etc/init.d/DubaiCoin
+ sudo chmod +x /etc/init.d/DubaiCoin
+ sudo update-rc.d DubaiCoin defaults
+fi
+
+/usr/bin/DubaiCoind & exit 0
+
+echo "DubaiCoin Blockchain has been setup successfully and is running... Have Fun ..."
+exit 0
Its so nice seeing you as always. Quite behind your hardwork keep it up buddy we will always look forward for the success of this coin good luck
1542  Other / Politics & Society / Re: Drug free in the Philippines on: September 29, 2016, 11:23:03 AM
President of the Philippines decided to cleanse our nation of this shit. And rightly so. It's time to do it.
thats right time to clean and make this country safe from drug addicts i just hope the president will live longer so he can pursue to his will everything now is moving smoothly people is already trusting the government and the goal of being a drug free country cant be achieved right away but it can be possible just needed some more time.
1543  Economy / Gambling discussion / Re: Premier League Prediction Thread (EPL) on: September 29, 2016, 11:07:29 AM
after manhester city only draw is batle with glasglow celtic in champion league
i hope this weekend, batle match in sunday with totenham hotspur
manchester city lost, if lost run to win EPL can competitif
I was hoping Man.City slip in a match against Tottenham, so the competition in the top league will be more attractive and compete to be the best in the Premier League this season.

Yeah, at least Manchester City can get draw on that match versus Tottenham. Tottenham is not a bad team though. I hope too Man City get lose or draw on this match, so other teams can go to top 1 too.
well draw can be much better so my bet can win it is the best way to finish this and allow other team to compete, good luck
to all of us who's hoping for this game place your bets while it is still early.
1544  Economy / Gambling discussion / Re: How to stay away from gambling? suggestions ? on: September 29, 2016, 11:04:49 AM
look for another hobby more fun, playing with friends or others. multiply religious worship as you so that you feel that gambling is a mistake. and I hope my suggestions can help you

Looks for more play mates too. With more buddies around to do things together, they also can help you to divert your attention away from gambling too. It will also make the activities more meaningful.

I have recently seen a friend of mine who recovered from this gambling addiction without any issues and only because of his interest in sports, actually he was a big gambler but he realized at right point and started to play sports more so to abandon any time for gambling and it worked.
it's might work , worth to try . but you do realize you can't do play football , tennis , basketball or other sports activity all day long don't you? there still a spare time , and that spare time could leading someone to do gamble due they think they have a boring time , this is always happened to the real addicted gambler , a serious medication needed.

to anticipate the spare time i think that person will have an hobby that he can find by him like reading a book, watch movie, or walk around with his girl. try to open a new view in around us and if we do, i am sure that we can see many thing that we actually not know that its already there and we don't realize that thing will help us to change.
no i guess there would be a spare time to spend on gamble as long as they have a serious problem that couldn't solved by an ordinary distraction , it has been a disease. addicted to gamble could only solved by a professional help in my opinion.
well in some cases you are correct but theres always a good ways to deal with this a self will can removed it your willingness to
stay away from it and the power to take control of your mind i know it is also what the professional will tell you the only advantage
was they know what proper diet and what are those things you needed to do to make yourself busy.
1545  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [LAUNCH] [ENGLISH] Moneta (XJM) - Juno Moneta - Ancient Currency Digitised on: September 29, 2016, 11:01:55 AM
another exchange ?

Moneta has been submitted to Nova Exchange for vote listing, then we will upvote to ensure it is listed on that exchange.
Buy orders will also be put in place to encourage early trading/buy/sell.
Hope that helps.
nice to see that you really doing your work dev initiating and allowing the community to work with you i guess it will turned big after reaching more and more investors coming from different exchange hope to see more coming from your project dev, good luck.
1546  Other / Off-topic / Re: Does sending Bitcoins feel good? on: September 29, 2016, 10:56:41 AM
I do not want to be rude but it is not for me.  Grin  Especially if I have to pay someone with it.  It hurts to see my bitcoin go.

Me too it hurts when sending bitcoin to other people but we must pay the services or goods we avail. But still it is hard to let go our bitcoins that we worked hard for it. Even in fiat money it is really hard to let it go even you are going to enjoy the products that you are going to buy because it feels to be happy to hold money in your hand.

Sorry to oppose you both, but I feel different, I feel happy when I bought what I really want, I always think that money will be useless if you would just hold it except if it is going to your bank and you have nothing to buy...But if you bought unnecessary things, then I think you must really feel sorry and regret buying those, but if you need it, then you should be proud... You can always find money if you work...  Smiley

I don't know but that is going to make me feel sad every time I am going to send bitcoins to other people. And sometimes it makes me uncertain if I am going to send or buy again with the use of bitcoins. But I am just thinking that whenever I see the investment or product that I bought with bitcoin  makes me feel happy.
thats the spirit because bitcoin also needed to be use i understand that we are keeping it as one of our assets but sending it or using it will also helps the community it should be treated as a currency to make it more popular even we are always valuing it when we it is inside of our wallet.
1547  Economy / Trading Discussion / Re: HOW MUCH YOU EARN/LOSE FROM TRADING on: September 29, 2016, 10:45:14 AM
I don't earn anything with trading and i have quit trading cause I only made a lot and it costs me money to even learn the skill.
Sadly enough there's no "fake" trading to practice maybe I should make fictional trading so I can practice without losing anything.
why not try to do some research with watching some videos from youtube it has a lots of tutorial and insight on how you can place your entry and exit points and how you can predict in advance i think its needed a lots of skills before entering i just made some good profits since monday im playing with ripples right now and i guess its really working good.
1548  Economy / Gambling discussion / Re: 2016/17 NBA Off-Season on: September 29, 2016, 10:42:45 AM
I'm not a Lebron fan but I agree with you all. They are different player. I will just say that if continue playing like this, I think he can beat the scoring leader of kareem and also he can surpass Michael Jorda n 6 rings. Only injury can stop him and I dont want that happen to him.
in statistic well he can but mj will always be mj never come in my mind that there will be a player that will surpass what he achieved as a pro he gives the game into a new dimension he play the game well with no hesitation and he show the best he can be with the dominance that no one can deny.
1549  Alternate cryptocurrencies / Announcements (Altcoins) / Re: *****[ANN] [SNC] SINCERECOIN / Scrypt POW / Bounty / YOBIT SOON / AIRDROP ***** on: September 29, 2016, 09:08:02 AM
Are Sincerecoin airdrop just up stage 1??? Next stage???
interested too mate hope you can open another sets and the exchange might need twitter post too.
1550  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NoLimitCoin NLC for Fantasy Sports Game [SHA256d][PoW/PoS][ICO] on: September 29, 2016, 09:00:05 AM
Devs, hope for more pr, signature and avatar campaign for NLC Wink
it will helps a lot for advertising dev maybe you take some part of your developing funds and make some airdrop and allow community here
to be aware about your project it will attract more investors too.
1551  Economy / Speculation / Re: Keep or sell? on: September 29, 2016, 08:58:34 AM
I think it's going to stay in a tight range until there is some kind of good or bad news that comes out. I think overall we are going to see the price increase in the long run, so I still am investing as much as I can.
right decision mate just keep buying little by little i also believes that the price will go high in the next year or two as more and more people are aware now about bitcoin and adoption is being established so i think we can say keep until you reach your goal.
1552  Economy / Trading Discussion / Re: Is Holding Bitcoin a long time good way to make money? on: September 29, 2016, 08:56:12 AM
Holding bitcoin for a long time to make money by the value increasing is a strategy alot of people use in this community actually.
I do it do, it's simple and passive you invest in bitcoin and just wait it out. I think it'll make alot of money in a few years.
long investment will do just because we are all believing that it will rises up again with its current value its still the best time to keep buying little by little and wait for the price to really go up and make some fortune coming with your investment.
1553  Economy / Economics / Re: How too get rich on: September 29, 2016, 08:54:19 AM
To get rich you have to make a nice investment and sell it later in the future with a lot of profit, but it can takes a long time.

I wish it was that easy to get rich from an investment then you'd need to buy tons and tons of bitcoin in 2009 and sell them when they were at their all time high.
But chances like that don't come by alot you really have to keep an eye on the market.
yes indeed thats why im keeping an eye to very know alt to hold for a long run and keep it stored inside my wallet like with btc before if they knew how btc will grow they will hold it like a diamond inside there computers but we cant go back so much better to look and support some good projects and hope it will bring richness to us.
1554  Economy / Economics / Re: Best way to manage money? on: September 29, 2016, 08:52:10 AM
Minimize your spending and maximize your savings, that'st the only way to manage your money and you do not need to make other method as that is just very simple.

No, it's not that simple... Every one of us has his own lifestyle, including the practices that we inherit from our parents, now, if our parents has a difficulty in managing money or receive only enough for a living, for sure, that's the first thing that we will adopt, and it's only you who can make a difference when you can already feel that there is something wrong with the way your family manages your money... But it takes time and sometimes never happen if when the same situation as your parents is happening to you, for sure, their way will be the easiest... To make it short, "lifestyle" and "status" that's where we all differ when it comes to managing our money..  Smiley

Definitely right. And one important factor is how much people saved or getting income in a fixed basis.

It will be the one to consider so that people can managed their money well. Spendings is part of daily life so that people must have a fixed income in order to support all the spendings.
No matter how we resist to spend because we want to save more money but it would not happen because we have our daily needs that we need to take care, the basic needs are very important if you want to survive in this world, our family matters to us so we will have to provide them the best and that entails money, I guess we just to control and learn to prioritize our needs than wants.
same here mate i was always telling myself that i will save everything i earned from my btc investment and use only the money that i earned from my day job but all along the way we will encounter emergency things that will force us to spend the money that we save in most cases many of us really wanted to manage our money in a correct ways but situation forces us to use it again.
1555  Economy / Economics / Re: If Bitcoin had a stable price, would it still be as popular? on: September 29, 2016, 08:49:35 AM
I think bitcoin would be even more popular with a stable price because of course the investing side gets less fun and more boring.
But the people would see a better currency than fiat with alot more benefits and if its stable theres nothing to lose.

Thats correct! If bitcoin is stable, theres nothing to lose.you know why? Its a good mode  of payments on internet as its fast,cheap and verifiable online. Though the  trading would be affected and as you say it, its boring since traders cannot earn from it, but it will benefit freelancers as they can opted  for bitcoin payment anytime.
i like the impression of saying it can be boring but for it wasn't since btc is a currency trading are still works like forex it will be depend on the actual movement of btc although its not like the same fluctuation that can give you a lot but i seen its just starting to be stable on its current rate,.
1556  Economy / Gambling discussion / Re: To Gamble or To Invest? on: September 29, 2016, 08:46:21 AM
I think i will go to gamble if the investment site like coinsera or cloud mining online those are scam its better to gamlbe because you are making fun and entertainment. but if we are investing in legit bitcoin casino i will choose to invest its more good to invest to make a good profit than to gamble that always base in your luck..
you are right investment things are really risky because most of them just turn to scams and not make you money
you are totally wrong about it , you think too small about investment world.

there so many investment service offered with biggest community and biggest reputation , you just need to dig more deep about this investment world , do your own research and you will find investing much more better than gambling .
it will be depend on what investment are you going to much better to do hard research and then try to study just like me im into trading and im carefully checking the potential of my trade then do more research if how to maximized earnings.
The easiest way to invest that you do not need to do a lot of research is just to invest in bitcoin, what you need to do is just to buy bitcoin and hold it for a long period of time, the right timing should be done when buying and selling to ensure success.

its a good investment for long period of time, but if the price is increase, the amount of bitcoin we have not increase, its still the same as we buy at first time, but if we make investment or make trading, then i think the amount of our bitcoin will be increase because in trading, if we get profit, the amount of our bitcoin is increase too. its same as the investment that we do, but for investment, we should choose the right investment so we don't have to be worried.
well thats right the more you understand how to grow your bitcoin the more chances that you can earn big unlike in gambling always trusting for your luck and keeps you on a risk while in investing experience will teach you a lot to have more better skills. good luck
1557  Economy / Speculation / Re: Why price of Bitcoin too stable? on: September 29, 2016, 08:43:53 AM
When nobody spends/buys/sells coins then prices tend to be very stable cause there is not a big change in the amount of coins.
But when alot of people buy coins then theres less coins left making them more valuable so right now it's stable cause theres not alot of investing into it.
thats right stable because its quite been in a good chain now the more people using it and not storing it to a wallet or exchange make it established for quite  a while hope we see much better price in this coming days to come.
1558  Economy / Games and rounds / Re: yobicode, free BTC on: September 29, 2016, 08:39:38 AM
-snip-
...thanks and nice to see that codes get shared this way.
No welcome, I'm glad that you liked it. No doubt there will be more codes to take, released in similar manor but I don't know for how long. So far my little giveaways combined where worth around 80Ksatoshi, not that much but if I manage to find a good way of supplying my yobit account with bitcoins, they will last. So keep an eye.
Now for the next code -->

                Daily micro-giveaway I (most likely last for today)

          YOBITD68CAC1DB2C8F7E06☫☬BE7DOGE  

               Hint: Electronic Entertainment Expo

Congratulations! Code at the amount of 250.00000000 DOGE has been successfully activated!

I missed recent codes..got quicker this time.Answer is simply E3..thank you mate..till next time!
good job you seen it first i will wait again for another sets good luck buds.
1559  Economy / Economics / Re: Bitcoin replaces the money? Could happen? on: September 29, 2016, 08:38:55 AM
Off course that wont happejn do you really think that the bitcoin can replace the money how would you think that would happen if everybody has money instyead of bitcoins.
it can actually happen and it will most probably happen in the near future, we just need to wait for a while

Why we need to wait? Do you think all people like the idea?

And no it can't happen in the future. No way that bitcoin can support all people in the world.
Don't expect that all the people has the capacity to understand bitcoin and even if they understand but not on their interest to use it, you cannot force them to use, they are already satisfied with paper money so they will stick to it.
thats right there are already established country that wont allowed this since they already satisfied by what they have using and we cant
convinced them even bitcoin will be more popular in the whole wide web adoption cant be done for those who dont want it.
1560  Economy / Trading Discussion / Re: Trading is unpredictable job. on: September 29, 2016, 08:34:36 AM
Trading is and will always be unpredictable one time this can happen the other time the opposite happens and theres no way to know what happens.
You can analyze though and reduce the risks but still any event can change other events making it so unpredictable.
thats the reason we study analyzing the flow in order for us to make good prediction but as always we cant control the movements
especially if theres a big investors who's playing with the project so better to understand more and always be ready and careful when
dealing with the trade.
Pages: « 1 ... 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 [78] 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 ... 228 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!