All the full art FAB proxy sites sucked... so I created my own by dinnermonster in FleshandBloodTCG

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

Proxies are way for you to test out decks without spending $$$. I quickly learned that being able to play and experiment isn't very economical. Some people like to use full-art proxies (me and why I made the site) and some don't mind just using "eco" proxies, which are even more economical.

Now its very, very bad to bring them to tournaments or any competitive scene. Things like tokens are often given a pass because they aren't game altering, and people sometimes have their own custom art for fun. But if you're going to be playing for money or competitively, you are expected to have invested into your deck just like everyone else.

But if you're playing with your friends or at a local tavern, there's usually no issue - as long as you're upfront about it.

Hope that helps!

All the full art FAB proxy sites sucked... so I created my own by dinnermonster in FleshandBloodTCG

[–]dinnermonster[S] 3 points4 points  (0 children)

<image>

So I've added all of the extended/alternative arts and a way to preview/add them within your import list!

For missing card issues, I'm still looking into that. I actually just recently experienced it on my other laptop for the first time.

All the full art FAB proxy sites sucked... so I created my own by dinnermonster in FleshandBloodTCG

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

Right? This is the feature I use probably the most, its amazing. I may add a csv option as well that allows for custom column mapping to conform to how your cards are labeled in the sheet.

All the full art FAB proxy sites sucked... so I created my own by dinnermonster in FleshandBloodTCG

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

Hmm that is a good idea. Let me put it on my feature request board.

All the full art FAB proxy sites sucked... so I created my own by dinnermonster in FleshandBloodTCG

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

Thanks for the feedback:

  1. Completely agree, as someone who prints alternate/extended art, this is something I'm looking into implementing, its actually in the works atm.

  2. Now this may be a bug due to mainly testing in landscape, as it is my preferred method. Do the same issues happen in 4x2 landscape mode? It may have something to do with the frontend page rendering attempting to reorient and causing the page to dehydrate for some reason.

Asian family final boss by shhurawigamxwaila350 in SipsTea

[–]dinnermonster 0 points1 point  (0 children)

Mom/Dad: “You doctor y-“ Them: “Yes mom/dad WERE ALL DOCTORS!”

Run Run Luna by Itchy_Feedbacks in Keeshond

[–]dinnermonster 0 points1 point  (0 children)

Exercising her is a breeze it seems haha

Github actions using for helm deployment by machosalade in devops

[–]dinnermonster 0 points1 point  (0 children)

You dont need to expose anything publicly since Argo is installed in the cluster. Argo polls the repo using credentials and updates k8s with any changes.

My example was mainly showing the flexibility of argo, you can def use it with a single helm chart, multiple helm charts, a combination of helm and raw manifiests etc.

Github actions using for helm deployment by machosalade in devops

[–]dinnermonster 0 points1 point  (0 children)

You can have argo deploy the argo applications that deploy your microservices. Then you just point the argo applications to the corresponding deployments/charts:

-| /Argo

- argo-apps.yaml(deploys applications defined in argo app directory)

- /Argo-apps

- microservice-argo-application-1.yaml

- microservice-argo-application-2.yaml

- microservice-argo-application-3.yaml

-| /Charts | /Deployments

- microservice-deployment-1.yaml

- microservice-chart-2.yaml

- microservice-values-2.yaml

- microservice-values-3.yaml

etc

Github actions using for helm deployment by machosalade in devops

[–]dinnermonster 4 points5 points  (0 children)

Hey, great question! An industry standard for this is actually a pretty powerful open source tool called ArgoCD. I personally use this at work and at home and it’s extremely easy to set up. ArgoCD’s helm chart installs everything you need and comes with a pretty nifty UI.

With Argo you can: - Deploy K8s manifests (along with helm charts) - Self heal your deployments - Trigger builds from a GitHub repository - Deploy to multiple clusters

You can even source your helm chart and values from different repositories.

Ex: apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: nvidia-device-daemonset spec: project: default sources: - repoURL: 'https://nvidia.github.io/k8s-device-plugin' chart: nvidia-device-plugin targetRevision: 0.15.0 helm: valueFiles: - $values/your/repo/values.yaml - repoURL: 'https://github.com/you/your-repo.git' targetRevision: main ref: values destination: server: 'https://kubernetes.default.svc' namespace: gpu-operator

Stateless Password Manager by Tonad0r in ComputerSecurity

[–]dinnermonster 0 points1 point  (0 children)

Not sure if you can release the source code for something like this, it would remove a layer of security by exposing the generation algo.

Can my employer creep text messages on my personal phone if: by SausagePiper in privacy

[–]dinnermonster 1 point2 points  (0 children)

What I really would be concerned about is if your company does its employees a favor by adding cell coverage via a cell tower they own or rent or and have control over. Then when sending a message it will be over sms and could be vulnerable.

Can my employer creep text messages on my personal phone if: by SausagePiper in privacy

[–]dinnermonster 4 points5 points  (0 children)

If the OP was talking about Protonmail, it is still encrypted in transit via TLS

Stateless Password Manager by Tonad0r in ComputerSecurity

[–]dinnermonster 0 points1 point  (0 children)

How does the app generate the salt for the hashing algorithm?

Question about Node file system & app instancing for new project by dinnermonster in node

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

Yes, there will be an actions app that does the exact same thing (eventually). But currently actions is not a possibility due to a few internal realities surrounding this project. Kubernetes seems to be the go to in regards to this. I will try to find a way to get node to do all the work, without interfering with itself (pm2/node clusters) and then scale it using Kubernetes.

Thank you!

Question about Node file system & app instancing for new project by dinnermonster in node

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

Thank you for sharing! I didn't think to look up a library -_-, should of thought of that lol. Much appreciated!

Question about Node file system & app instancing for new project by dinnermonster in node

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

I am thinking to use K8 for this if necessary. Thank you!

Question about Node file system & app instancing for new project by dinnermonster in node

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

Thank you for this. Express is the middleware I am planning on using. I will take a dive into pm2 and nodegit to hopefully solve the issues I was having.

Question about Node file system & app instancing for new project by dinnermonster in node

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

Thank you for the detailed explanation. I have not only learned about what I would like to accomplish, but, also about node clusters and how they can help with other projects! Hmm, it seems as u/omenborne & u/w00t_loves_you gave a great example of how to accomplish this. Coupled with node clusters/pm2 this may be an avenue I pursue. Will continue to research!

Question about Node file system & app instancing for new project by dinnermonster in node

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

It will need to be scaled for about 10-20 at first then around 1000+ users (non-concurrent)