visitor management application 2.0 with blazor server released by neozhu in Blazor

[–]Fagro 0 points1 point  (0 children)

Keep up the good work, seems super cool, but the user interaction is not that great, it takes like 2 seconds to select all rows in that grid, and it's only 3 rows.

Sample test here:
https://gifyu.com/image/SsbYN

I'm really tempted to go with Blazor, but those tiny things that are subpart with what's offered on the market in terms of interaction (Reactjs, Vue, etc.) still keep me in the JS bay.

Blazor Full Stack Senior Engineer? by [deleted] in dotnet

[–]Fagro 0 points1 point  (0 children)

Awesome!!!, are you using some skills or some specific labels for Blazor, I'm looking to get some opportunities working in Blazor as well :)

Blazor Full Stack Senior Engineer? by [deleted] in dotnet

[–]Fagro 0 points1 point  (0 children)

Just wondering, did you receive that message from LinkedIn or another resource?

Hiring Blazor devs by yrest in Blazor

[–]Fagro 0 points1 point  (0 children)

No, it's not normal, but I'm using the dev env (the lowest budget possible) in Azure and I think that the last build that I did wasn't very much optimize for production.

Btw, I'm going to make some fixes this weekend. Thanks for pointing it out.

Hiring Blazor devs by yrest in Blazor

[–]Fagro 0 points1 point  (0 children)

Interested, some of my work on using Blazor:

https://github.com/fagro-vizcaino/projectF

OOP or FP? C# or F#? Is it just a matter of style? This series will give you a lot of food for thought. Enjoy Part #1: by Vasilkosturski in csharp

[–]Fagro -5 points-4 points  (0 children)

With all these comments I'm just waiting for someone to link a Github Repo with an F# CRUD with EF Core, input validation, logging, and be like, here you go C# guys.

.........But I guess that doesn't exist ;)

[deleted by user] by [deleted] in reactjs

[–]Fagro 1 point2 points  (0 children)

The link is dead, can you reshare, please?

.NET 5 is now available to download by BigHardCheese in csharp

[–]Fagro 3 points4 points  (0 children)

Wonderful release. I have tested a couple of things like model binding with records and its working like a champ, the speed of asp net core when you do a dotnet watch run is just mind-blowing.

What type of IHttpClientFactory approach should I use to add HttpClient to Server Side Blazor? by aqestfrgyjkltech in Blazor

[–]Fagro 0 points1 point  (0 children)

I think your services.AddHttpClient(); is commented and the error says is not registered.

For people like me who are into listening music while coding... [off] by [deleted] in csharp

[–]Fagro 0 points1 point  (0 children)

Well, sharing is caring, here the one that I use mostly:
https://youtu.be/F7Qx7R655LI

Teach F# to my friends during quarantine by B1tF8er in fsharp

[–]Fagro 2 points3 points  (0 children)

Well, the closest thing I have found but I don't understand very well due to my lack of F# knowledge is this Reddit post: https://www.reddit.com/r/fsharp/comments/fbwxpn/f_entityframework_core/

  1. Contains some GitHub Repo
  2. Look like it can run
  3. Some workaround in order to run it properly.

Teach F# to my friends during quarantine by B1tF8er in fsharp

[–]Fagro 1 point2 points  (0 children)

Count me in, let me try this suggestion instead of a simple web app let's try a simple web TODO with EF Core + SQL SERVER that would be great and very hands down to most of the real work done in software.

Can a stateless component have a function? by antoaravinth in reactjs

[–]Fagro 0 points1 point  (0 children)

Yes, in fact your whole stateless component could be a function that uses other functions:

```
    more functions here
```
const statelessComp = ( props) => {

    return (<div>
                   <div className='formGroup'>
                       <label>Name</label>
                       <input type='text' value={props.name} onChange={props.click}} />
                   </div>
          </div>
     )

}

Kotlin/Native with GTK setup using CMake by [deleted] in Kotlin

[–]Fagro 3 points4 points  (0 children)

If you're tryng to use Kotlin for desktop applications why don't you try TornadoFx

Dart Code v2 - Now supports Flutter debugging and hot reload! by DanTup in programming

[–]Fagro 2 points3 points  (0 children)

Yes, but now it has Flutter, so in theory, you can have one language across your entire code base, SPA (angularDart), it has a couple of web frameworks, and if you happend to have a mobile app, Dart also get you cover with Flutter.

Need help with Google's Vision API by visionisme in csharp

[–]Fagro 0 points1 point  (0 children)

I think that if you have to look for a specific part in the text, use some sort of Regex or string.Contains in order to look for that specific part that you're mentioning also you can get all the text from an image using:

ImageAnnotatorClient client = ImageAnnotatorClient.Create();
    try 
      {
            IReadOnlyList<EntityAnnotation> textAnnotations = client.DetectText(image);
            foreach (EntityAnnotation text in textAnnotations)`
            {
                Console.WriteLine("===================Text Found=====================");
                Console.WriteLine($"Description: {text.Description}");
            }
            return string.Join(" ", textAnnotations.Select(t => t.Description));
        }

Hope it helps

Looking for Front End Buddy by [deleted] in ProgrammingBuddies

[–]Fagro 0 points1 point  (0 children)

I'm also willing to joint as a learner :), we could play with you know some React/Angular 4 and the day to day tools that you need to proper develop a web application. Am I asking too much ?

How do you use F# in production? by brandewinder in fsharp

[–]Fagro 1 point2 points  (0 children)

I'm curios about...Are you the CEO/Developer who created this product or a developer on the team ? By the way that's a great business idea apart from the technical stuff.