Bitcoin Forum
June 22, 2024, 09:01:21 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 [4]
61  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] ICONOMI - Fund Management Platform on: October 18, 2016, 08:40:32 AM
Hi everyone.

Quick update. I'm in HK with very limited time.

Just a few things. Account swapping is stopped from now on. I'll process all the pending ones, but new ones are not accepted anymore. If you want to sell your ICNs you'll have to wait for genesis and that's when it will hit exchanges.

We are staying on ETH. Lisk could be another option we would consider. However, in current state is not yet ready.

For sure we're not gonna build our own blockchain. This is not our game. We as well didn't build our own data center for our servers.


Edit: I would like to see more people like CoM1ner in this thread! Quality posts. Hats off!

Wow, a personal shout out from ICONOMI! Thank you so much! I am really looking forward to what you guys have to offer after the ball gets rolling. That really means a lot coming directly from you. Definitely will be saving your post and framing it  Cheesy

I know there is a whole lot your plate during ICONOMI's infancy so keep up the good work and stay positive and focused. You guys seem like a wise team and I wish you all the best of luck on your venture. A whole lot of people (3,508 to be exact!) are counting on you to succeed and the entire community is waiting to see what you guys have to offer.

Good luck ICONOMI! Make us proud!
62  Alternate cryptocurrencies / Pools (Altcoins) / Rainmeter script for Ethermine pool on: October 17, 2016, 11:11:44 PM
Hello Bitcointalk! I wrote a very simple Rainmeter skin to monitor my mining rigs last night from my desktop.

https://www.rainmeter.net/

It utilizes Rainmeter to display the hashrate results of each of my two rigs, the total hashrate and the unpaid balance at Ethermine on my desktop (Windows).

This was made mostly for fun and probably not the most efficient coding but works well for learning and writing in one day. Simply replace the bold values with your thresholds and the value will be green or red according to the reported hashrate. I had problems where 2 of my cards would drop to 7mh/s from 29mh/s and I would have to constantly reset them.


I also wrote a script using Tasker on Android today to poll the Ethermine API every 10 minutes and ensure that the hashrates are above certain levels. A notification is sent to my phone and to my Pebble smartwatch if they fall below my defined threshold where I would use Teamviewer remotely to fix any issues.

I am not a coder by any means but I love making my life easier through the little that I learn when I think of an idea and wanted to help some others! I also have a portfolio widget through Rainmeter that updates your portfolio value and the current prices of coins. The 24 hour price change reflects the color of the text if anyone is interested.

Ignore the coins on there now lol. That isn't my portfolio and was used for testing purposes with the first four coins I could think of off the top of my head.



Quote
[Rainmeter]
Update=1000
AccurateText=2
SkinHeight=400
SkinWidth=400

;========================================

[MeasureSite1]
Measure=Plugin
Plugin=WebParser
URL=http://ethermine.org/api/miner_new/INSERT_MINING_ADDRESS
RegExp=(?siU)worker":"Miner1","hashrate":"(.*) MH/s","validShares"Sad.*),"staleShares"Sad.*),"invalidShares"Sad.*),"workerLastSubmitTime"Sad.*),"invalidShareRatio"Sad.*),"reportedHashRate":"(.*) MH/s"

[MeasureSite2]
Measure=Plugin
Plugin=WebParser
URL=http://ethermine.org/api/miner_new/INSERT_MINING_ADDRESS
RegExp=(?siU)worker":"Miner2","hashrate":"(.*) MH/s","validShares"Sad.*),"staleShares"Sad.*),"invalidShares"Sad.*),"workerLastSubmitTime"Sad.*),"invalidShareRatio"Sad.*),"reportedHashRate":"(.*) MH/s"

[MeasureSite3]
Measure=Plugin
Plugin=WebParser
URL=http://ethermine.org/api/miner_new/INSERT_MINING_ADDRESS
RegExp=(?siU)"unpaid"Sad.*)}

;========================================

[MeasureMiner1]
Measure=Plugin
Plugin=WebParser
URL=[MeasureSite1]
StringIndex=7

[MeasureMiner2]
Measure=Plugin
Plugin=WebParser
URL=[MeasureSite2]
StringIndex=7

[Measure3]
Measure=Plugin
Plugin=WebParser
URL=[MeasureSite3]
StringIndex=1

;========================================

[Measure1]
Measure=Calc
Formula=[MeasureMiner1]
IfAboveValue=CHANGES_COLOR_IF_MINER1_ABOVE_CERTAIN_HASHRATE
IfAboveAction=[!SetOption MeterMiner1 FontColor 0,255,0][!Redraw]
IfBelowValue=CHANGES_COLOR_IF_MINER1_BELOW_CERTAIN_HASHRATE
IfBelowAction=[!SetOption MeterMiner1 FontColor 255,0,0][!Redraw]
DynamicVariables=1

[MeterMiner1Label]
Meter=String
X=5
Y=3R
W=280
H=15
FontSize=20
FontColor=32,178,168
Padding=5,5,5,5
AntiAlias=1
StringStyle=BOLD
Text=Miner 1:

[MeterMiner1]
Meter=String
MeasureName=MeasureMiner1
X=200
Y=0r
W=280
H=15
FontSize=20
Padding=5,5,5,5
StringAlign=Right
AntiAlias=1

;========================================

[Measure2]
Measure=Calc
Formula=[MeasureMiner2]
IfAboveValue=CHANGES_COLOR_IF_MINER2_ABOVE_CERTAIN_HASHRATE
IfAboveAction=[!SetOption MeterMiner2 FontColor 0,255,0][!Redraw]
IfBelowValue=CHANGES_COLOR_IF_MINER2_BELOW_CERTAIN_HASHRATE
IfBelowAction=[!SetOption MeterMiner2 FontColor 255,0,0][!Redraw]
DynamicVariables=1

[MeterMiner2Label]
Meter=String
X=5
Y=3R
W=280
H=15
FontSize=20
FontColor=32,178,168
Padding=5,5,5,5
AntiAlias=1
StringStyle=BOLD
Text=Miner 2:

[MeterMiner2]
Meter=String
MeasureName=MeasureMiner2
X=200
Y=0r
W=280
H=15
FontSize=20
Padding=5,5,5,5
StringAlign=Right
AntiAlias=1

;========================================

[MeasureA]
Measure=Calc
Formula=[MeasureMiner1]+[MeasureMiner2]
Dynamicvariables=1

[MeterMinerALabel]
Meter=String
X=5
Y=3R
W=280
H=15
FontSize=20
Padding=5,5,5,5
AntiAlias=1
FontColor=255,255,255,200
StringStyle=BOLD
Text=Total:

[MeterMinerA]
Meter=String
MeasureName=MeasureA
X=200
Y=0r
W=280
H=15
FontSize=20
Padding=5,5,5,5
FontColor=0,255,0
NumOfDecimals=2
StringAlign=Right
AntiAlias=1


;========================================

[Measure33]
Measure=Calc
Formula=[Measure3]/1000000000000000000
Dynamicvariables=1

[MeterMiner3Label]
Meter=String
X=5
Y=3R
W=280
H=15
FontSize=20
FontColor=255,255,255,200
Padding=5,5,5,5
AntiAlias=1
StringStyle=BOLD
Text=Unpaid:

[MeterMiner3]
Meter=String
MeasureName=Measure33
X=200
Y=0r
W=280
H=15
FontSize=20
Padding=5,5,5,5
FontColor=0,255,0
NumOfDecimals=3
StringAlign=Right
AntiAlias=1
63  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] ICONOMI - Fund Management Platform on: October 17, 2016, 08:47:05 AM
Here is the honey, folks! Don't you get it? Donno who CoM1ner is, but he has NAILED IT on his second post.

Just a long time lurker, trader, and small time for-fun miner Grin
A lot of the technology and nitty gritty goes over my head, but I have to thank the whole Crypto scene for the profits it has made me.
I have learned so much and truly believe in the underlying concept of blockchain technology.
Looking back, trading has really opened my eyes to the human psychology works. This factor alone has helped me in many aspects in life.

I would add some thoughts of mine, and would be glad to see your thoughts (posted on reddit, but not much activity there):

The way I see it 5 things need to take place in the next 2 years in order the token value to hit >50x:

1. Team: strong and skilled team that remains united (core team has to stay on the same page) and keeps in touch with the community - we sure have that for now!!
2. Platform: will have to be as transparent as possible, not to be compromised or hacked (big trust issues otherwise). So far no reason to think otherwise.
3. Funds (that is why we are here for Smiley performance, ICNX and new funds on the platform will have to show profits
4. Legal - Iconomi will have to get this new concept trough the legal channels - funds and dividends. Investors and shareholders cannot be legally exposed.
5. Executing the final stage: upon points 1-4 there is NO WAY that a (pardon) shitload of money won't fly into the platform. Money that does between 0 and 10 percent annually. There is  HUGE demand in the markets  
    for new areas to invest. So point 5 is all about being able to play the game in the grownups playground

A word about competitors - they will come, and when they do it will be yet another sign that we are on the right track.

ICONOMI hasn't been released yet but the mere fact that Cashila is behind it makes me very positive on the outlook. I definitely do consider the possible downside of losing money, but this concept is brilliant. I am really hoping the funds go to hiring good investors and other resources that will boost the price of the ICN tokens.

This wasn't your typical ICO where people had a vision and decided to raise funds and then figure out how to make that vision come true.
ICONOMI wants to be the first to make money off of the existing market. Cashila is willing to put their whole reputation on the line and risk losing everything if things go south.
I feel bad for mentioning this, but the DAO drove Slock.it's reputation into the ground. If Cashila is willing to risk 4 years worth of reputation (2013 inception, https://en.bitcoin.it/wiki/Cashila), then I will ride the roller coaster ride with them.
It is so refreshing to see something new compared to the whole "We have a vision and we need you to help fund us so we can try to figure out how to make it happen" ICO BS that has been going on.
I would like to throw out a disclaimer that not all ICO's are scams. Just do your research and never risk more than you can lose. My advice is to stop funding ICO's without a near complete product. You really should only raise an uncapped ICO if you are using the funds to profit the investors.
ICONOMI did a great job with capping it. Keep it scarce. Don't take more than you can handle.

My gripe on ICO's is that they really need to be more transparent. Anyone these days can post some pretty logos and and their vision and ask for money and find free spammers for bounty rewards.

If I knew how, I would create a different method of raising money. Maybe someone can get the ball rolling.
The company would say how much they need upfront (with justification), how much they need total, and how much they need at each milestone. (They could negotiate the amounts with investors)
The initial amount needed would be supplied and then the rest of the money will be divided into each milestone depending on how much they need for the each milestone.
It would be wise for the company to set as many little milestones as possible to ensure the roadmap is detailed as possible and take into consideration the costs/salaries/etc.
The final milestone will hold the excess and be the incentive for the company to finish the project.
If funding were ever to run short, it could be voted among the investors and subtracted from the excess in the final milestone.
To give the company some leverage in case the voters don't unlock the final milestone after completion, the ICO bonus' and a portion of the investor's coins could be locked in the final milestone and unable to be retrieved until the project is completed.
A "time bomb" would be put into place (1 year) if a milestone is not completed in which the rest of the unlocked funds would be returned to the investors (or released to the company if majority of the major milestones have been completed).

This would give the company an incentive to keep the investors happy by completing milestones and also the investors a reason to support the company and help at all costs to unlock the rest of their funds.

If a company can't manage their time/money to the smallest details, they do not deserve holding millions of dollars in investor's funds to chase their idea.
Afterall, the investors are the ones who are paying for them to make THEIR dream come true without any obligations and little to no risk. The risk needs to be distributed less from the investors and more to the companies.
Small ICO's really dont apply here but utilizing a structured and incentivised system is really needed right now with the amount of stillborn coins. Wasting investor's money is no joking matter.

To me the main important decision is safety and security of the project, if Ethereum network keeps performing like this it won't be a $1 billion dollar marketcap, because most of this valuation is based on speculation

You are right. In Ethereum's current stage, it is still early but there aren't many good alternatives in terms of a robust team.
Everything is a speculation. One year water bottles are a great cheap store of water. The next year, BPA's are all the panic. Switch over to BPA-free bottles and then the next year BPS (Bisphenol S) bottles are found to be just as bad.

Judging Ethereum, it has many hiccups, but the important thing is that the team isn't short on money, can dedicate their full time on improving Ethereum (Highly resilient), and they have a larger amount of interest from big names outside of the tiny Crypto world than any other altcoin.

It will be a roller coaster ride for sure, but thinking in the big picture, Ethereum doesn't look so bad. Its all about the potential and the product/tools on hand.

I imagine Ethereum like an engineer with lots of money, experience, and a great drive to try to make what they want to happen exactly how they want it to.
As much as I hate to say it, Bitcoin's biggest rival is working hard. I'm not taking sides but things could get pretty interesting in the next decade. I'm definitely excited to watch it unfold.
http://www.kissfromitaly.com/en/blog/how-the-ferrari-lamborghini-rivalry-began

PS: I think this is why all you Crypto kids unknowingly want to buy a Lamborghini  Cheesy
64  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] ICONOMI - Fund Management Platform on: October 17, 2016, 06:25:58 AM
Just my thoughts:

The ICONOMI platform is best on Ethereum.

Ethereum has the 2nd largest Market Cap ($1,010,625,117)
We all know who the Ethereum leader is and able to see the dedication unlike many other altcoins
Ethereum has an amazing Dev team that is dedicated to bettering the Ethereum ecosystem
The Ethereum team has a huge amount of outside interest + capital (No need to beg for funds. Full time commitment)
Ethereum may still be in "Beta" but still well known across the Crypto community
Due to the popularity of Ethereum, it has been battle tested more than any other coin from the smartest hackers

Sure, Ethereum might not pump to BTC levels and getting paid in Eth might not bring huge profits in terms of holding Eth but it is a lot less volatile than most other coins and I know for a fact that  I don't want to hold something that is volatile.

Bitcoin is like cold hard cash. It is simple.
Ethereum is "smart" cash like online banking.

The decision to utilize Ethereum for the ICONOMI token was a carefully thought out plan and you are always welcome to ShapeShift your dividends or just sell your stake.

This was a wise choice for ICONOMI at this time. They would not be as successful in their initial funding if it weren't for the Ethereum platform and it's reputation. Where they go is another story that the future will unfold, but the choice for Ethereum was a wise one.

As for the actual performance of the ICONOMI token value, I'm thinking that it has the First Mover Advantage (http://www.investopedia.com/terms/f/firstmover.asp)
They were the first to bring the idea mainstream and everyone knows how well the ICO did. Their reputation will be what all other similar coins/tokens will be based on. Just like how Bitcoin had the First Mover Advantage and still holds the strongest. Future coins/tokens that serve the purpose to make more money will be second to ICONOMI.

With $10.6 million in funding for an established payment gateway (Cashila, https://www.cashila.com/), the odds of them running away with the ICO money is extremely unlikely without some serious repercussions.

This is the reason why I invested a large sum of my portfolio into the ICONOMI ICO:
The idea is genius! A token that it's only purpose is to make MORE MONEY! Most of the people in the Crypto space are in it for the future profits. From the big venture capitalists down to average Joe trying to make a quick buck to finally buy his dream Lambo.

The value of ICONOMI is not tethered to Ethereum's price. It has it's own value depending on it's performance. Currently, it sits at #24 (https://coinmarketcap.com/) for highest market cap and there are no other real competitors in that area in terms of potential for growth. ICONOMI has huge potential for climbing up the ranks quick. Give it time. Play the HODL.

And of course, can't wait to see yall at the dealership Wink

65  Alternate cryptocurrencies / Mining (Altcoins) / Re: What are you mining these days? on: October 16, 2016, 09:04:16 PM
Longtime Bitcointalk lurker. Just joined to become involved in the community!

Mining Ethereum at the moment with around 167Mh/s ($0.05/kwh).

2x RX 480 Reference
2x RX 480 MSI
1x R9 MSI 390
1x R9 Sapphire 380X Nitro
2x R9 Sapphire 380 Nitro (Waiting for powered risers from China)

This increasing difficulty has really taken from my profits in the past few months.

Looking into GPU mining ZCash when it releases October 28th.
Pages: « 1 2 3 [4]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!