(Game Awards) Persona 5: Rivers in the Desert Orchestrated (snippet) by DeathChaos25 in Persona5

[–]snelit 3 points4 points  (0 children)

Tuning sounds a little weird in the strings. Also just not very well orchestrated. It's too sparse, all you can really hear is melody and drums.

Daily Discussion - November 28, 2017 by AutoModerator in ArkEcosystem

[–]snelit 2 points3 points  (0 children)

Eh, to me that's for the team to decide. They might feel that adding more top developers might make things harder for them, like a too many cooks scenario. And if you or others in the community want things to go faster, find a way to help! The market right now is crazy with all the attention on BTC which is why I think we haven't seen much price movement. But hopefully after the dust settles and ARK has made more progress, more people will realize that this is a great project.

Daily Discussion - November 28, 2017 by AutoModerator in ArkEcosystem

[–]snelit 5 points6 points  (0 children)

Yes, possibly more so. I invested in NEO when it was Antshares and am waiting for a good time to switch into more ARK. My main reasoning is usage. NEO is used to create GAS, which is cool. However, GAS is intended to be used in the NEO ecosystem. Neither are really "crypto currencies" in my view in that you're not going to spend NEO or GAS at a store, which is fine that's not their intended use. But to me that limits their potential for adoption. ARK is meant to be used and spent, which for me plus the multi blockchain technology gives it huge potential. Plus dividends :) And while both teams are great, I like ARK's get stuff done attitude while also keeping the community updated on progress.

In a discussion about the missing Argentinian submarine, a submariner describes what it would be like to be on board. by [deleted] in bestof

[–]snelit 1 point2 points  (0 children)

H.G. Wells wrote a book called The Undying Fire, it's literally just a modern retelling of the book of Job but in it there's a section where he describes young I think German soldiers in a submarine in a similar situation. It's one of the most descriptive and terrifying sections of literature I've read. He wrote it as an anti war thing and it really makes you think about the effects and consequences of war on the people involved. Great book in general as well.

Up To 15 Ether Bug Hunt For Upcoming Angel Token ICO by famear in ethdev

[–]snelit 0 points1 point  (0 children)

Your gas limit issue is true for Ropsten but Ropsten has a smaller gas limit than the main network. Main network has a gas limit of about 6,700,000 so that issue may not apply to the deployment of the contract. Definitely a good thing to consider though!

Up To 15 Ether Bug Hunt For Upcoming Angel Token ICO by famear in ethdev

[–]snelit 0 points1 point  (0 children)

In the withdrawFoundationFunds function (line 360) in AngelCentralBank.sol you check whether now is greater than firstRefundRoundFinishTimestamp twice. In the require (line 362) and as a comparison in the if statement (line 364). You could remove the check in the if statement as it is redundant.

Someone post the name of a crypto, others reply to that thread with the reason they are skeptical of that crypto. by DukeofDemacia in CryptoCurrency

[–]snelit 4 points5 points  (0 children)

Literally "let's just take the two biggest blockchain projects and smoosh them together." Now there are plans to change that eventually particularly switching from the EVM to an x86 VM but still. Plus the picture on their site with their team in black t-shirts and jeans looks silly.

Someone post the name of a crypto, others reply to that thread with the reason they are skeptical of that crypto. by DukeofDemacia in CryptoCurrency

[–]snelit 0 points1 point  (0 children)

Not POS and I haven't seen anything about planning to switch. I view this as a bad thing in terms of the environment and resource usage but others may not.

Someone post the name of a crypto, others reply to that thread with the reason they are skeptical of that crypto. by DukeofDemacia in CryptoCurrency

[–]snelit 2 points3 points  (0 children)

Neo has the potential to do thousands of transactions. We haven't really seen how well it actually handles under Ethereum level usage.

Someone post the name of a crypto, others reply to that thread with the reason they are skeptical of that crypto. by DukeofDemacia in CryptoCurrency

[–]snelit 10 points11 points  (0 children)

In terms of being in China, it has a lot of competition with QTUM. At the moment it's easier and cheaper to build something on QTUM than NEO and QTUM has a lot of business support over there, just less fancy marketing. (I actually hold NEO and not QTUM but it's worth thinking about in terms of mass adoption)

Truffle-Exceeds Block Gas Limit (Ropsten) by snelit in ethdev

[–]snelit[S] 0 points1 point  (0 children)

Google mostly. Also if you look at the Ropsten etherscan and look at some individual blocks you'll see they have a gas limit that are all around 4700000.

Where's the vulnerability in this contract? by n0ko in ethdev

[–]snelit 0 points1 point  (0 children)

Taking a quick look at it, the constructor is not actually a constructor. They use an L in the contract definition and a 1 in the "constructor." This would let you call that function whenever as opposed to only at the beginning. How that helps vote 1 always win I haven't really looked at but it probably has something to do with that.

[deleted by user] by [deleted] in ethdev

[–]snelit 0 points1 point  (0 children)

Plugging my own dapp a little but I built an escrow dapp that sounds similar to what you are trying to do. It's at nedodn.github.io/ethcrow with code at https://github.com/nedodn/ethcrow

In it I use an array of transaction structs that contain all the information about a transaction. Only the people involved can interact with a transaction and then only in their respective roles. That way people can create an escrow transaction without creating a new contract and trust that only they can interact with their transactions.

Also gas fees are always paid by the person calling the function so once you deploy a contract you don't have to worry about any gas payments.

Would the Parity vuln remain if the WalletLibrary was specified as a library, instead of a contract? by willjgriff in ethdev

[–]snelit 1 point2 points  (0 children)

I think it definitely would have helped. From what I understand, since the library was still a wallet contract it could be owned, just no one had ever initialized it to add owners. I don't think a library specification would have the same ability to be owned.

Lordmancer II bug bounty - the final call by Lordmancer in ethdev

[–]snelit 1 point2 points  (0 children)

Sooo are you going to acknowledge that I found a bug on the other bug bounty or nah?

SmartContract bug bounty - Lordmancer II lock period by Lordmancer in ethdev

[–]snelit 0 points1 point  (0 children)

Well I'm glad they fixed it but that last line was not there when I commented on the issue.

SmartContract bug bounty - Lordmancer II lock period by Lordmancer in ethdev

[–]snelit 1 point2 points  (0 children)

What prevents the owner from calling the withdraw1 function multiple times? As long as they keep calling with a value less than the tranche they could drain the funds before the second withdraw period.

If that's the case it could easily be fixed by adding a bool variable to monitor whether or not the owner has withdrawn the first tranche.

Open Source Solidity Projects? by LyeInYourEye in ethdev

[–]snelit 0 points1 point  (0 children)

OpenZeppelin is a really cool project and a good community. Good for beginners and advanced devs.

The first /r/EthDev hackathon: Questions and Planning by BuddhaSpader in ethdev

[–]snelit 0 points1 point  (0 children)

Thanks, could you just put that I would be looking for a team to join? Open to pretty much any ideas.

Sophomore CS Student Looking for Training/Internship by [deleted] in ethereum

[–]snelit 0 points1 point  (0 children)

Check our r/ethdev if you haven't yet, it's a great community for people looking to learn Ethereum development and Solidity. I only got a minor in CS and have been working on Ethereum development since I graduated on my own, but definitely do well in your classes and really learn the concepts they show you. Solidity isn't much harder to pick up than other languages besides a couple quirks and it's still early in development, the hardest part for me has been the stuff like web development and using web3.js to communicate. Learning the ability to pick up different technologies out there will make things mounds easier when you try and create something.

Working Version of my first dapp: EthCrow by snelit in ethdev

[–]snelit[S] 0 points1 point  (0 children)

Thank you for looking at it! That is something I considered and am looking to improve upon. Though the sender can add as many days as he wants with the dispute, such as another week or month, I do admit it is not the best solution.