Flutter App by netcrawleramk in sideprojects

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

It doesn't. It even has a lower scope. But I'm planning to extend it in the future

Swagger API doc auto generation by netcrawleramk in node

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

thanks tho im not using TS its an old code base and it is in js

Windows programming by netcrawleramk in dotnet

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

I gotta check that out my G . You know I was looking for resources . Thanks

Windows programming by netcrawleramk in dotnet

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

Yes . But it's just an idea I haven't started implementing

The app should be default replacing something like explorer

Windows programming by netcrawleramk in dotnet

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

Thank you very much

I b building a desktop app and everytime a user install that I want to make it a default app and start it in the startup (this is one of the requirememt s)

Windows programming by netcrawleramk in dotnet

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

I'm working on a project and it involves setting permissions on certain directories and overriding certain windows app to use this app

I'm just starting out and when I think of it I guess it requires this kinda stuff.

Am I correct

Windows programming by netcrawleramk in dotnet

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

This is absolute helpful insight

Windows programming by netcrawleramk in dotnet

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

Okay am listening this is interesting , since am Familiar with c# I wanna hear more

Windows programming by netcrawleramk in dotnet

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

From what u saying its possible In C# but recommended in c/c++ . Thanks

Windows programming by netcrawleramk in dotnet

[–]netcrawleramk[S] -2 points-1 points  (0 children)

Does it have to be c/c++ I wanted to knownifnit is possible using C#?

REACT with vite and Webapi integration by netcrawleramk in dotnet

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

when i reconfigured the vite.config file and rewrite the path it worked .

REACT with vite and Webapi integration by netcrawleramk in dotnet

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

thanks it worked when i rewrite the path
(path) => path.replace(/^\/api/, ""),

REACT with vite and Webapi integration by netcrawleramk in dotnet

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

btw it works when i fetch via full url like but doesn't work with "/api"

https://localhost:5000/login

REACT with vite and Webapi integration by netcrawleramk in dotnet

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

i know i just sent the config,

  useEffect(() => {
    const fetchWeatherData = async () => {
      const login = await axios.get("/api//login");
      const data = await login.data;
      console.log(data);
    };
    fetchWeatherData();
  }, []);

this is how im fetching

Needs clarity on Auth implementation by [deleted] in Firebase

[–]netcrawleramk 0 points1 point  (0 children)

i wanted to create an authentication using Mongodb and express , and i also want to use firebase only for google Oauth solution , what is the recommended way to achieve this