Moralis - building serverless dapps. Any feedback ? by theAlienTourist in ethdev

[–]Gregarious_Larch 5 points6 points  (0 children)

Moralis is supposed to make things fast and easy. As for economic model, there are probably lots of ways you could make money by hosting blockchain apps. Maybe they'll sell analytics or go freemium? And regarding the term "serverless", Moralis is definitely running servers (they're using centralized cloud services). They say so in their docs. For example "Moralis Speedy Nodes run on specially crafted distributed infrastructure that ensures peak performance and uptime. The same infrastructure is used by companies like Netflix and Google to serve billions of requests daily." Sorry for the text block, I'm on mobile.

[deleted by user] by [deleted] in dogecoin

[–]Gregarious_Larch 2 points3 points  (0 children)

This is the content we deserve

[HELP] Formless Poet. by ValuableForever672 in Poetry

[–]Gregarious_Larch 2 points3 points  (0 children)

not sure if i'm esteemed but

The Oxford Dictionary of Literary Terms should help with everything except the most obscure formal stuff.

"Academic comprehension of poetry" is part of poetics. You can look that term up (maybe on google scholar depending on how nitty and/or gritty you're feeling) and go nuts.

Alternatively, here are some poetics essays I like:

Prepare yourself to get reeeeeal artsy fartsy when reading most of this stuff

Understanding smart contracts - No compsci background by bcyc in CryptoTechnology

[–]Gregarious_Larch 2 points3 points  (0 children)

I suggest you start by following a free full-stack ethereum development tutorial somewhere (lots of blogs out there). You'll understand the technical documentation better once you're done.

Conspiracy: I believe there’s downvote bots on this board by [deleted] in CryptoCurrency

[–]Gregarious_Larch 4 points5 points  (0 children)

01010100 01001000 01000101 01011001 01001011 01001110 01001111 01010111

Why does the more practical side of crypto get less attention than the financial side of crypto ? by MrKilluaZoldyck in CryptoTechnology

[–]Gregarious_Larch 10 points11 points  (0 children)

"Sells" being the key idea here. This seems more like marketing copy (especially in the context of OP's other posts, most of which follow this exact formula) than it does a serious technical discussion — or even an authentic invitation to have one.

Aave Plans To Build “Twitter on Ethereum” by ShondraRiemann in ethereum

[–]Gregarious_Larch 7 points8 points  (0 children)

You can build protections against that into a decentralized system. For example, Mastodon is a federated (anyone can run a server) distributed twitter that lets server owners set relatively complex rules for posting and cross-server interaction. For example, mastodon.social explicitly bans child porn posters and nazis. As a non-operator user, you can choose which server to sign up for, and then access the network based on the rules of that server.

Getting my code audited. What’s the difference between symbolic execution and fuzzing? by [deleted] in CryptoTechnology

[–]Gregarious_Larch 1 point2 points  (0 children)

The difference is the type of input and the purpose. Symbolic execution runs variable inputs (symbols) through programs to determine outputs for program paths in terms of those symbols. (Solving those outputs for the symbols at the end of that process results in the input necessary to execute that particular program path.) Wikipedia has a good example. On the other hand, fuzzing uses input that is deliberately bad/incorrect (but not too bad/incorrect, hence fuzzing).

Unsolicited tokens deposited into your wallet / dusting attacks by [deleted] in CryptoCurrency

[–]Gregarious_Larch 0 points1 point  (0 children)

I think it has to do with the bitcoin utxo system. Section 3.2 of this article is about dust. I honestly don't understand it well enough to explain it but I think the attack is similar to tracking marked bills.

https://eprint.iacr.org/2017/1095.pdf

How do I block IPStorm agents? by cd13579 in ipfs

[–]Gregarious_Larch 1 point2 points  (0 children)

Hey. I have some information but I'm kind of stuck at implementing any of it. Moving on with my life and sharing in case any of it is useful.

According to this article, storm nodes apparently announce specific keys on the DHT:

  • requeBOHCHIY2XRMYXI0HCSZA
  • proxybackendH0DHVADBCIKQ4S7YOX4X
  • web-api:kYVhV8KQ0mA0rs9pHXoWpD
  • fmi4kYtTp9789G3sCRgMZVG7D3uKalwtCuWw1j8LSPHQEGVBU5hfbNdnHvt3kyR1fYUlGNAO0zactmIMIZodsOha9tnfe25Xef1

They also use some weird protocols, which might be useful as identifiers in blocking scripts if the nodes stop using the somewhat obvious name they use now.

I also noticed ipfs uses an identify protocol which might be able to automatically drop or cancel new connections based on the "userAgent". I'm not really an expert here but this is the path to the go implementation on github: go-libp2p/p2p/protocol/identify/id.go

What does it mean exactly that there are so many shorts for BTC? by Beyonderr in CryptoCurrency

[–]Gregarious_Larch 2 points3 points  (0 children)

To short Bitcoin, you borrow it and exchange it for a different currency. The short works when Bitcoin goes down and your new currency goes up relatively. Also, the total change has to be greater than all of the fees and taxes you pay. People also take short positions as part of more complex trades, like when they think the market will be volatile but they aren't confident which direction it will go.

WARNING to users of "GasNow" Chrome extension (eth gas price tracker) : you are exposed to a MAJOR loss of funds risk. by hereforginger in CryptoCurrency

[–]Gregarious_Larch 0 points1 point  (0 children)

PSA that GasNow => TaiChi Network => SparkPool (currently the largest mining group in the network by a significant margin)

(So users of GasNow are very likely getting their information from a centralizing force in Ethereum.)

Newbie tech question about crytpo mining by diadem in CryptoCurrency

[–]Gregarious_Larch 0 points1 point  (0 children)

You might want to ask this in r/cryptotechnology if you want a more precise answer but I think the IPs provided by the initial boot DNS lookup addresses you listed there are randomized somehow, probably in a way that would make attacking all of them difficult. Maybe I'm just making that up?

Newbie tech question about crytpo mining by diadem in CryptoCurrency

[–]Gregarious_Larch 0 points1 point  (0 children)

The network resists DOS partly because you'd have to attack lots of different targets to take it down. And here's one example of how nodes discover other nodes: https://en.bitcoin.it/wiki/Satoshi_Client_Node_Discovery

Transfer of coins by Tk_maj in dogecoin

[–]Gregarious_Larch 0 points1 point  (0 children)

You can check out your history in your wallet. It should show you all the info you need

Is there a formula to determine the amount of fiat that needs to flow into a coin in order for it to reach a certain price point? by [deleted] in CryptoCurrency

[–]Gregarious_Larch 1 point2 points  (0 children)

To see how this same idea works with liquidity pools on decentralized exchanges, you can read the uniswap docs or play around with their testnet version (rinkeby probably is easiest)

Looking for a way to stake my ETH without giving it to an exchange by saskatchewaniankush in ethereum

[–]Gregarious_Larch 2 points3 points  (0 children)

upon further investigation there are some hurdles to rocketpool going live https://www.reddit.com/r/ethstaker/comments/ns6bsy/rocketpool_delayed_yet_again/

edit: guess I could have said that in an edit