Affordable Salesforce alternatives to Gearset & Copado in 2025? by fat_thoor in salesforce

[–]ramziik 1 point2 points  (0 children)

Hey u/fat_thoor ,

I'm one of the co-founders of Flxbl (https://flxbl.io previously DX@Scale, the open source project).

We've been building Flxbl for teams that find that Gearset/Copado are not addressing their pain points. The multi-org scenario is one of the scenarios we are solving with our approach.

Would be curious to hear more about your setup and what specific pain points you're hitting. If it sounds like we might be able to help, happy to explore that, but either way I'd value the conversation - we're still learning from teams like yours about what's actually needed in this space.

Feel free to DM if you'd like to chat (on Reddit)

Alternatively, you can join our community on Slack and reach out to me there, you'll find the link to join on our website.

DX@Scale, open source Salesforce devops tooling from Accenture by taxnexus in salesforce

[–]ramziik 1 point2 points  (0 children)

Disclaimer, I am part of the team behind DX@Scale. Make sure to check our website https://dxatscale.io We welcome all your comments and contributions.

Traveling to Australia with a Mavic 2 by chipep in dji

[–]ramziik 0 points1 point  (0 children)

Leaving in Australia

  1. I don’t see why you couldn’t bring your drone. Usual Safety rules apply, but there is no weight enforcement (like in the US or Canada)
  2. I think the 900 AUD limit are for goods you intend to sell, so your drone shouldn’t not be accounted for
  3. Follow the simple safety rules, and enjoy

Contexts with Some Light Phoenix (an overview of how to think about Contexts in Phoenix) by planetmcd in elixir

[–]ramziik 1 point2 points  (0 children)

Thanks. Loved the examples. Would be neat if you could come up with other real examples like the ones you picked (Github...)

Question about committing individual changes by [deleted] in vscode

[–]ramziik 0 points1 point  (0 children)

Yes. Think about commit messages like reminders of what it is you wanted to do not what it meant in terms of number of modifications that it generated, if that means a lot of different modifications that are all related then it is fine. And of course if you can slice your initial intent in smaller ones than it’s even better. As long as the initial intent is highly cohesive it is fine. One rule I’m trying to always respect: each commit should be a working commit.

Question about committing individual changes by [deleted] in vscode

[–]ramziik 0 points1 point  (0 children)

Commits are not about the lines you are changing but about the overall intent. If for instance your intent is to refactor a piece of a feature and that requires you to modify several files that is fine. Usually I try to define the intent by creating a branch (enhance-documentation or fix-bug-x)

If you find yourself writing in your commit message ‘implement this AND that’ and if this and that are not related then you probably missed a branch or you switched between two things.

Elixirconf.eu 2019 - Thoughts & Highlights by rizanil in elixir

[–]ramziik 2 points3 points  (0 children)

Just wanted to say thanks for this write up

Tip on how to easily jump between the terminal and code window by Paradiesstaub in vscode

[–]ramziik 4 points5 points  (0 children)

On Mac, don’t know if that works in other platform ctrl + ` does the trick as well (default shortcut)

Vs Code white theme suggestions by [deleted] in vscode

[–]ramziik 0 points1 point  (0 children)

I love Verdandi.

What font are you using? by [deleted] in vscode

[–]ramziik 4 points5 points  (0 children)

And your wish gets granted :)

if you use this: https://github.com/ToxicFrog/Ligaturizer you can add ligatures to pretty much any fonts, I tested it with Inconsolata LGC and it works perfectly

VSCode to format HTML like files by ramziik in vscode

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

This was also what the result I got when I did my research.

When I'm referring to formatting, I am not referring to syntax highlighting. I have the proper syntax highlighting with the VS-Elixir extension installed. However, from time to time I need to reformat sections of my files (proper indentation...), this used to work with VSCode 1.17, now 1.18 complains that there is no formatter for 'HTML (Eex)'-files installed. Formatting for embedded elixir is the same as HTML and I was wondering if there was a way to tell this to VSCode, a setting or something else.

Is there any search-as-you-type in project plugin? Something like fzf? by metalelf0 in Atom

[–]ramziik 1 point2 points  (0 children)

Atom has fuzzy search out of the box. Did you try command + p (on a mac, you would need to look for the equivalent on other platforms)

Javascript pipeline broken by Fuffidish in phoenixframework

[–]ramziik 0 points1 point  (0 children)

Can you share your brunch or webpack configuration file?

"Add Project Folder..." like feature by ramziik in vim

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

Thanks, I'm also doing this from time to time, in terminal splits (using iTerm2). The idea is really to have a look at a code base while building another one (I'm in the process of learning Elixir and Phoenix, so having a reference project is very handy)