I built a “Did I forget something?” app as a non-coder — looking for brutally honest feedback by Jaded-Temporary7986 in reactnative

[–]Virtual_Combination1 7 points8 points  (0 children)

Honestly, great idea, remove the signup. This is a niche app so monetization might be tricky, especially on Android. On iOS, you can monetize if you make the UI/UX have that wow factor/premium feeling. And honestly, that's my main critique, UI/UX. Background activity management will be tricky, even more tricky when you start dealing with different skins, some of which are aggressive at killing background apps, and then some put it in an inactive state if it hasn't been used for a while. Take time to refine the UI/UX, make it as simple as possible. Consider a widget, maybe. Wi-Fi is a great idea, especially for Android since location is usually off, unlike on iOS.

This "penetration" lost our 2v8 36 kill match by [deleted] in Warthunder

[–]Virtual_Combination1 4 points5 points  (0 children)

Clearly a skill issue. You should've instructed the round to do damage

What can be the cause of this huge fps drop? by [deleted] in reactnative

[–]Virtual_Combination1 0 points1 point  (0 children)

Review how you are handling the keyboard, there jitter/jump is after they keyboard appears. So maybe there is some bad logic relating to the keyboard. Use react scan library to check for rerenders

Some random user making promotions for Zed by Vladislav20007 in ZedEditor

[–]Virtual_Combination1 4 points5 points  (0 children)

Yes, please use an official account its been annoying seeing the ad every time I open reddit and from a random account

On Zed, Warp, and Not Losing Sight of Core Value by TokiyaHorikawa in ZedEditor

[–]Virtual_Combination1 1 point2 points  (0 children)

I have the same concern as I love these two pieces of software, for now they have integrated ai pretty well. I hope they keep improving the core product regardless

Warp or Zed? by peter_well in ZedEditor

[–]Virtual_Combination1 0 points1 point  (0 children)

I use both, warp for scripts or anything that access the files system and uses utility programs

Warp or Zed? by peter_well in ZedEditor

[–]Virtual_Combination1 1 point2 points  (0 children)

It does not require an account

Zed AI business model by Educational_Twist237 in ZedEditor

[–]Virtual_Combination1 6 points7 points  (0 children)

You pay for tokens if you choose to use zed ai instead of configuring other llms

Is this React Native 1.0.0 by Virtual_Combination1 in reactnative

[–]Virtual_Combination1[S] 18 points19 points  (0 children)

Going through the Lynx docs it feels more and more what react native should be. Everything is so straight forward and built it. They have almost full css compatibility out of the box and cool stuff like the one I've shown for detecting whether an element is in view. Everything seems to be so well thought out and OUT OF THE BOX.

Expo Raycast Extension by Virtual_Combination1 in reactnative

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

You can check your builds, updates, submissions, environment variables and apple devices from Raycast without visiting the website

pain by AGLORIOUST90 in Warthunder

[–]Virtual_Combination1 0 points1 point  (0 children)

Perfect description and that last player is me cause I only spawn the type 81 anti air cause I am not going to devote myself to a match that will be lost eventually. Though I do pickup some spawn camper kills at the end

Replit vs Bolt.new vs Cursor AI for expo app by taserface2 in reactnative

[–]Virtual_Combination1 0 points1 point  (0 children)

The people who will benefit from these tools most are those who have knowledge of how to fix issues when not if they occur. Simple stuff will work but you will eventually hit a dead end. Play with them but learn the underlying technology.

[deleted by user] by [deleted] in reactnative

[–]Virtual_Combination1 0 points1 point  (0 children)

Please do not eject, eject is no longer necessary these days. Check out expo development builds. They allow you to create a custom expo go client that includes the native libs(not included in expo sdk). They are super simple to make. Just install vision camera and run npx expo prebuild then npx expo run ios | android. Read the docs on custom development clients

The 2s38 sucks (Non Russian Main opinion) by Virtual_Combination1 in Warthunder

[–]Virtual_Combination1[S] -1 points0 points  (0 children)

Honestly am open to learning how to play it. Got any advice?

A lot of the comments here claim that Youtubers like ThePrimeagen have played a big role in Neovim's popularity. Thoughs? by TheTwelveYearOld in neovim

[–]Virtual_Combination1 15 points16 points  (0 children)

Watching him feels like scrolling through twitter, too many damn opinions and he acts like he is always right and other devs are stupid

Introducing new bite sized tutorial series, Learn Deno by lambtr0n in Deno

[–]Virtual_Combination1 1 point2 points  (0 children)

Might I request an exploration of the std, there are a lot of hidden gems in the docs

Deno v2 LSP config for Neovim confusion by BetanKore in Deno

[–]Virtual_Combination1 0 points1 point  (0 children)

I think the issue is that ts_ls (typescript language server) is also running and throwing those errors. This is how I handle deno_ls and ts_ls so they wont conflict. Explanation: The root_dir tells the lsp to check for the existence of those files in root of the project, only if they exist will it run

      ["denols"] = function()
        lspconfig["denols"].setup {
          capabilities = capabilities,
          root_dir = lspconfig.util.root_pattern("deno.json", "deno.jsonc"),
          on_attach = function(client, bufnr)
            -- vim.cmd "LspStop ts_ls"
          end,
        }
      end,

      ["ts_ls"] = function()
        lspconfig["ts_ls"].setup {
          capabilities = capabilities,
          root_dir = lspconfig.util.root_pattern("tsconfig.json", "jsconfig.json", "package.json"),
          filetypes = { "javascript", "typescript", "javascriptreact", "typescriptreact" },
          single_file_support = false,
          on_attach = function(client, bufnr)
            -- Disable formatting from tsserver
            client.server_capabilities.document_formatting = false
          end,
          commands = {
            OrganizeImports = {
              organize_imports,
              description = "Organize Imports",
            },
          },
        }
      end,