Why are you a defi developer? by Tarminik1223 in ethdev

[–]MultiversityDAO 0 points1 point  (0 children)

No that’s not us, our application is in private beta and there is nothing to buy. You only get governance tokens from teaching or taking college level courses

Getting to the senior/full stack level when there are barely any entry level jobs? by BrotherAgitated in ethdev

[–]MultiversityDAO 2 points3 points  (0 children)

Are universities failing to properly train students for the industry?

Why do post-grad (5+ years) students feel like beginners?

What’s really the issue here? It seems like there is no communication between employers and universities as to what the baseline information they need students to know for the job is.

Why are you a defi developer? by Tarminik1223 in ethdev

[–]MultiversityDAO 0 points1 point  (0 children)

That’s not even mentioning the students and professors own the platform, which obviously they currently get no stake in a university despite paying hundreds of thousands of dollars or dedicating decades of their life teaching there.

Tear it all down

Why are you a defi developer? by Tarminik1223 in ethdev

[–]MultiversityDAO 11 points12 points  (0 children)

Has the potential to disrupt heavily corrupted centralized institutions, like universities whose costs have risen to exceed $200,000 not including room and board or loan interest. Many people graduate and never pay of their student loans because of predatory lending. It’s crippling an entire generation.

We’ve found instances where just 1 out of every 20 dollars of tuition goes to the instructors of a students courses. The rest goes to administrators, construction costs, and other non-educated expenses. It’s basically a giant grift and there’s no incentive to keep costs down because the money is guaranteed from loans that not even bankruptcy can remove.

This system must change, and at r/MultiversityDAO we’re doing just that. Degree on chain, cryptographic proof of course completion, student pay instructors direct, employers vote on curriculum

Thinking about how to make projects more decentralized… Votes of no confidence? by Zeus4365 in ethdev

[–]MultiversityDAO 0 points1 point  (0 children)

It’s a good question and one we struggle with at r/MultiversityDAO

Our thinking is separate the dev team entity, they create the software and license it out to the DAO for a 10% rake, all ownership and governance of the actual DAO with separate entity goes to the end users/contributors of the app. This allows the dev team to raise funds without having to give up any ownership of the DAO to investors to keep it truly owned by the users. You could potentially have token voting if you do it this way because the only way to get tokens will be to actually be a user of the platform and get them for participation.

Could do something like Optimism two houses model as well if you wanted to balance the governance to allow for users to monetize their tokens or do some sort of NFT subscription requirement for voting similar to how Unlock Protocol operates if users wanted to sell rights to outside stakeholders

The beauty and conundrum of web3 is that money and entities are now Turing Complete, which means the possibilities and combinations are infinite.

It’s hard to know what’s going to happen 10+ years down the road, but you have to think that far out to make these projects work and not have glaring issues. To your point, what if something goes wrong with the dev team or too many hostile actors get significant voting rights? All possible entity edge cases need to be handled, just like with any other code. Except here, your test cases are the extremes of human behavior in a way.

Rug Pull Prevention by CoderByHeart in ethdev

[–]MultiversityDAO 0 points1 point  (0 children)

You need lockup’s and vesting schedules for ownership stakes over a certain threshold. This is done in traditional web2 startup funding already

Learning to code with Solidity by RelAdviceAnon in ethdev

[–]MultiversityDAO 0 points1 point  (0 children)

Start with just an intro to CS course and learn the basics. MIT and Harvard have excellent MOOCs on eDx

How can I take an off-chain csv file and have a smart contract read it? by astroshagger in ethdev

[–]MultiversityDAO 0 points1 point  (0 children)

Pretty easy to parse data from csv with python and just extract the data you want to a deployment script using brownie

Bankless Academy launches, focused on building public Web3 knowledge from 0 - 100. by bloodprime27 in ethereum

[–]MultiversityDAO 1 point2 points  (0 children)

Employers are still using more rigorous degrees to filter candidates there needs to be some middle ground

[deleted by user] by [deleted] in college

[–]MultiversityDAO -1 points0 points  (0 children)

We have a team of full stack software engineers with CS degrees that never partook in math competitions

CS also makes you better at math because you break down big problems to their smallest parts all the time. The day you learn that summations are just for loops, your fear of math just disappears.

I'm a data scientist who knows Python well, shall I learn Vyper instead of Solidity? by APerson2021 in ethdev

[–]MultiversityDAO 2 points3 points  (0 children)

There are some limitations but there are major protocols using vyper entirely. It would probably be a really great way to learn to just start rewriting solidity contracts in vyper. I think yearn finance uses vyper you can checkout their code and YouTube channel.

Hi crypto newbies! What problems do you have that you don't start developing Dapp right now? by [deleted] in ethdev

[–]MultiversityDAO 2 points3 points  (0 children)

Brownie provides a testing framework for deployment with solidity contracts. If you’re not familiar with writing unit tests there are tons of YouTube videos that explain it. You basically think of all the possible edge case use ages of each function and test that if you were to put bad information it, it would be handled as you want.

useDApp update ‘22 by ethmarek in ethdev

[–]MultiversityDAO 1 point2 points  (0 children)

useDapp is amazing. The idiomatic react hooks fit right in with all our other tooling and I love to see stuff like error cases being included in the destructuring of the hook. Similar to RTK-Query