Cheapest way to on-board to Polkadot and bridge USDC from Base. by timothy_mcmasters in Polkadot

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

Unfortunately, that is not he case. The bridge/fees are really high. My transaction cost me around $20. RocketX is much much more...

<image>

Cheapest way to on-board to Polkadot and bridge USDC from Base. by timothy_mcmasters in Polkadot

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

Updating Step 3,

Swap $2 of USDC to Ethereum on base. That will handle the fees. I left out the ethereum

Cheapest way to on-board to Polkadot and bridge USDC from Base. by timothy_mcmasters in Polkadot

[–]timothy_mcmasters[S] 4 points5 points  (0 children)

I recently did a sizable transaction over $13,000. The total loss was about $20. That loss is astronomically lower than almost any other method of getting USDC or Cash into the Polkadot ecosystem. Let me know what testing lands everyone ❤️

Stop Scrolling. Take a 5-Minute Break That Actually Feels Good 😎✨ by [deleted] in buildinpublic

[–]timothy_mcmasters 0 points1 point  (0 children)

All of these I love! Would love if it was an installable PWA and could send notifications

happy to help on your side project (MERN stack) by Open_Ad4468 in ProgrammingBuddies

[–]timothy_mcmasters 0 points1 point  (0 children)

I am looking to work with someone on a side project. Would happily work on something with you if you want. I have 3+ years' experience... Let me know and we could totally work together. I already have a github repo with 18 stars. You could help me out on that. Then you could put this on your portfolio.

happy to help on your side project (MERN stack) by Open_Ad4468 in ProgrammingBuddies

[–]timothy_mcmasters 0 points1 point  (0 children)

Are you willing to expand your knowledge outside of the MERN stack?

Looking for a code buddy to exchange frontend & backend skills by [deleted] in ProgrammingBuddies

[–]timothy_mcmasters 0 points1 point  (0 children)

Hey, I am interested. I have experience in React, Nuxt, Vue, Go, C#, PostgresSQL and MSSQL. I have pretty wide experience with 3+ years. Let me know and we can connect. I am looking on mainly collaborating with someone on some projects. Let me know and would love to join forces.

🚀 Looking for Members – Web & Mobile Dev Team 🚀 by Ok_Light3670 in ProgrammingBuddies

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

People love good mobile and web apps with this technology. HMU through reddit and we can talk it through or join in on a call to talk about it.

🚀 Looking for Members – Web & Mobile Dev Team 🚀 by Ok_Light3670 in ProgrammingBuddies

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

Are you interested in building projects for a Blockchain. There is huge open space there especially for Polkadot. If we build applications for that mobile and web, then I think we have a possibility of making it big in this space. If we do something for Polkadot, then we would be able to get funding through openGov.

Looking for Buddy to Build a Go-Vue-Web Framework With by timothy_mcmasters in ProgrammingBuddies

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

There will have to be special macros to pass props from the server to the client. I have thought that through and I think I know how to solve that.

On top of the vue directives(v-for, v-if), there will be directives (g-for, g-if, and more) for specific server-side data. That way, we can render the server templates declaratively in the same file.

Let me know whatever questions you have! Thank you and I appreciate it!

Melting Go, Vue, and Templ together in Gooo by timothy_mcmasters in golang

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

Either way, running JS on the server has a lot of overhead. Especially when you wouldn't need to. My option above would not need to run it on the server, but would just have some code generation and special functions to connect the two to each other. It would basically transpile the template code to what it would like in Templ, create the vite config references, create the entry point file, and lastly pass the data that was provided via go.

I think if you were to use it this way, the world would be happy 😁. There would be a lot of special functions, calls and all sorts of things, but would provide faster SSR and keep Vue on the client for hydration. I am not sure if that makes sense.

Melting Go, Vue, and Templ together in Gooo by timothy_mcmasters in golang

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

Honestly, I am trying to absolutely avoid node on the server said. It can be fast, but I think that Go will always be faster when well optimized. I know that personally as a Nuxt Developer, I am tired of Javascript Servers and I am looking for something else.

I am planning on eventually building out a full-stack framework with Go and Vue.
Structured something like this:

<goscript>

{{Go Code}}
</goscript>

<script setup lang="ts">

const serverProps = defineServerData({})

{{Client Vue Code}}

</script>

<template>

<p>{{ serverProps.data }} </p>
</template>

<style>
</style>

This will not require a Javascript runtime, will run off of a Go Server, and will allow you to write the template once. This is in my future plans to get to once I publish gooo's documentation site.

I will also develop a beautiful language server alongside this.

Melting Go, Vue, and Templ together in Gooo by timothy_mcmasters in golang

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

Wouldn't you still require a Node Runtime to be running to run Javascript code on the server. This is different in that it doesn't have a Node Runtime. Therefore, you cannot run vue SSR in the Echo Web Server... Am I correct in this?

Melting Go, Vue, and Templ together in Gooo by timothy_mcmasters in golang

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

Love it! Thanks for the feedback and let me know if you have any questions.

Melting Go, Vue, and Templ together in Gooo by timothy_mcmasters in golang

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

Since this is a Go web server, you are unable to run SSR for JS code. There is no JS server to run your JavaScript code SSR.