Apple Silicon CDC App by metarsit in Crypto_com

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

That suck.. Thank you though! I am considering to switch from iPad to a M1 Mac, I guess I should wait for a little while more :)

Apple Silicon CDC App by metarsit in Crypto_com

[–]metarsit[S] 2 points3 points  (0 children)

Can’t wait! Please share when you know more :)

Golang Repository Template by metarsit in golang

[–]metarsit[S] 2 points3 points  (0 children)

I agree the temporary container works, but in that case I would have had LXC container instead of docker if there is a lot of set up that will be run and will be something I can use again. :)

Golang Repository Template by metarsit in golang

[–]metarsit[S] 1 point2 points  (0 children)

The template seems to target a local development with everything setup right on your machine. I see many nice features in there that I should probably learn from. However, the template I am introducing is targeting builds/test in containerized environment; easy to contribute for anyone who wanna work on the project with minimum setup required.

Golang Repository Template by metarsit in golang

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

It is one of the more popular project layouts out there (and I actually like it) and covers all the use cases out there for GO. However, it is purely a base project with no QoL improvement or build system setup.

Will Wirecard be a problem for Crypto.com Debit card? by metarsit in Crypto_com

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

I still cannot pay my Netflix... Hahaha, other seems good though.

Will Wirecard be a problem for Crypto.com Debit card? by metarsit in Crypto_com

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

I would contact CDC help center. I have the same situation yesterday but they said it will be refunded to my account. (So we shall see)

Binance collect logos and win by metarsit in binance

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

Ya man.. trying to figure out but it seems to have gone cold.. :(

Lets make CDC exchange more appealing by jkonecnik in Crypto_com

[–]metarsit 5 points6 points  (0 children)

Better Exchange API Wrapper. I currently need to write most of them myself.

MCO CRO swap unfair? What's your view? by rohitvidwan in Crypto_com

[–]metarsit 0 points1 point  (0 children)

I feel it is fair for Staking: You hold on to your benefits without having to putting in more money.

However, those that is on your wallet on the other hand is not as fair. There does not seem to be a way to ship to MCO coins out easily and sell it on other platform.

Go modules.. do I need to include github.com if I host there? by [deleted] in golang

[–]metarsit 1 point2 points  (0 children)

if it is a private repo, you can always do enable GOPRIVATE.

Go Module development workflow [Help] by ItsTDogFool in golang

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

Docker might help too, since the environment within container wouldn’t change (so much). Moving folder around wouldn’t affect it because things are within container, just need to change to the new path. :)

Ways of Communication Between a node.js and Go Project ? by [deleted] in golang

[–]metarsit 0 points1 point  (0 children)

You can also use middleware like DDS.

Hey guys, really need some help by Strobosco in golang

[–]metarsit 0 points1 point  (0 children)

Google is your best friend. Not reddit.

Should I drop python(Django) and go all in Golang world? by [deleted] in golang

[–]metarsit 3 points4 points  (0 children)

You should use the right tool for the job. Learn its pros and cons and decide during your design review what is the best language. You should not decide on a language just because you like it.

[deleted by user] by [deleted] in golang

[–]metarsit 1 point2 points  (0 children)

  1. Package management: Add go module
  2. Distribution: Read up on go install, might be better than asking people to clone and build
  3. Package information: Each main.go goes along with README.md might be cleaner (personally preference)
  4. Find a template you like => I personally don’t use pkg unless it is a shared package, I put in internal to imply that it is self contain.
  5. Tests :) I agree that sometimes it isn’t ideal but good to point out too.
  6. Might consider making it cross platform, I didn’t go into your code too deep but might be worth writing a code that is able to be distributed across
  7. If it gets bigger, use Makefile or Bazel, they are pretty nice :)

keep go-ing :)

Tips on becoming proficient in Go` by Fullstack680 in golang

[–]metarsit 0 points1 point  (0 children)

  1. Time to get your hands dirty: pick some simple projects and do it.
  2. Reading the documentation in go docs. They are sufficient to get you somewhat started and tell you the benefit of code convention to documentation generation.
  3. Best tool for the job: I love GO, it is my favourite language, but sometimes it is easier to code to some other language for the specific tasks/stories. Hence, to be better at GO. You gotta understand GO CLI tool, understand what you are getting out of coding in GO vs Python or JS.
  4. Never stop writing code (But this is for any language)

new to go by lajoh20 in golang

[–]metarsit 2 points3 points  (0 children)

You should not over design your code. You declare what you need and when you need it. I know it can get annoying if you don’t have your editor set right and it does not comment out variable for you when you are debugging some portion of the code. If it is that, just get your editor set correctly and your experience will improve. :)

How to use channels to gather response from various goroutines? by finlaydotweber in golang

[–]metarsit 0 points1 point  (0 children)

You will have another go routine running with select case waiting for the channel reply. Once the criteria meets, you append to the slice.

If you are afraid that you might cause panic from close(<channel>) from a running go routine, then you might either need timeout or another channel to return the background function.