home.social

Search

286 results for “angelmunoz”

  1. Feeling Kotlin'ish today, this is a learning project that takes a json file with a particular structure and "converts it to PDF" I haven't added the actual HTML Templates to it but the general mechanism of
    locating template -> reading -> parsing -> rendering html
    locating json -> reading -> serializing to known object
    taking document + known object -> pdf
    Is ready it 'technically' works but... UI design is hard
    😅

    For the curious eyes:
    https://github.com/AngelMunoz/resumakerkt

    #kotlin #jetbrainsfleet #learningintheopen #jvm #sideproject #programming #clitools

  2. Feeling Kotlin'ish today, this is a learning project that takes a json file with a particular structure and "converts it to PDF" I haven't added the actual HTML Templates to it but the general mechanism of
    locating template -> reading -> parsing -> rendering html
    locating json -> reading -> serializing to known object
    taking document + known object -> pdf
    Is ready it 'technically' works but... UI design is hard
    😅

    For the curious eyes:
    https://github.com/AngelMunoz/resumakerkt

    #kotlin #jetbrainsfleet #learningintheopen #jvm #sideproject #programming #clitools

  3. Hox 1.3.0 is out today!
    You can now specify children in the h parsing function like
    "li.cls > a.list-item" this will reduce your nesting and parenthesis count for wrapper elements!

    https://github.com/AngelMunoz/Hox/releases/tag/v1.3.0


    #fsharp #dotnet #htmlrendering

  4. Here's the async html rendering thing I got distracted this week, if anyone in F# (or from outside) land is interested in HTML Streaming, they're welcome to poke around and ask

    I'm not particularly an expert here so any help/feedback is appreciated!

    https://github.com/AngelMunoz/Htmelo

    #fsharp #dotnet #html #bacend #library #htmlrendering #htmlstreaming

  5. New Beta is out! pick it while.... well, whenever you want!

    This release refines the setup and 1st run checks experiences as well as hide some of the commands in preview we were not able to do before

    https://github.com/AngelMunoz/Perla/releases/tag/v1.0.0-beta-018

    #dotnet #fsharp #perlaDevServer #webdev #importmaps

  6. Oh well, looks like my dart Journey is being fruitful at last.

    I am able to install different node versions at least in Linux
    😆
    I have to try windows/mac but over all I think I've learned what I wanted to learn from dart

    repo for the curious eyes
    https://github.com/AngelMunoz/novenio


    #dart #clitool #cli #learningintheopen #node

  7. Welp I made this thing yesterday

    https://github.com/AngelMunoz/KotlinCliAppSkeleton

    it is a github template with a
    sample CLI app, I even added tests! but of course I need to do something more complex so I can fine tune that template even further.

    I like to learn a language by doing things, so that will be my to-go when I want to start diving into something new

    #jvm #kotlin #cli #template #learningintheopen #github

  8. I couldn't leave F# behind too much so for this Weekend I ported my current jetpack compose learning project to F# using @[email protected]

    Here's the code:

    https://github.com/AngelMunoz/MandadinFs

    Oh gee I love observables
    😆 and Avalonia can use them very seamless, And here's the Kotlin version:

    https://github.com/AngelMunoz/MandadinReloaded/

    both show a in-memory todo list with strike through text once checked and a page that Fetches some fediverse notes from the network Naturally the F# version is much cleaner as 1. The language is less noisy, and 2. I'm very familiar with it.

    I will continue my jetpack compose journey this week but I'm glad I could pick up some lessons from it and apply them to my F# version

    #dotnet #fsharp #kotlin #jetpackcompose #learningintheopen #avalonia

  9. As per the F# tradition here you have some counters running in Windows desktop, the Browser and Windows Subsystem For Android thanks to
    @[email protected] and @[email protected]


    it's the same template I shared earlier.

    https://github.com/AngelMunoz/NXUIFSharpMultiPlatformTemplate

    #dotnet #fsharp #mobile #crosplatform #android #desktop

  10. I know we have like 3-4 abstractions over Avalonia in F#
    but choice is not a bad thing!
    I just pushed this GitHub template for a cross-platform app using NXUI for
    @[email protected]
    which targets desktop,mobile, and web

    https://github.com/AngelMunoz/NXUIFSharpMultiPlatformTemplate

    If you're interested in the other templates around let me know, perhaps it is time to discuss what are our options in regards of Desktop/Mobile Frameworks in F#!

    #dotnet #mobile #fsharp #crosplatform #android #ios #web #desktop

  11. I was sniped into writing some rudimental bindings for @vuejs for the #FableCompiler
    I'm amazed on how well Fable integrates with the ecosystem, you can use F# defined components in .vue files and .vue files in F# defined components

    I don't plan to fully implement it (or a DSL like Feliz) as it is a responsibility I don't plan to bear with me right now, but it should be good enough for others to pick up and offer real Vue apps in F#
    github.com/AngelMunoz/Vuoso

    #fsharp #dotnet #webdev

  12. Not the prettiest website ever but this is the full circle for my little project with #GoogleCloudFunctions and #fsharp
    https://fediverse.tunaxor.me/
    - A webhook gets fired once I post/reply something in misskey (mastodon alternative)
    - The content is serialized and sent into pub/sub
    - From pub/sub I pick the event and parse the content to save it into firestore
    - From the little project above, I just render the content of whatever is in the database
    I will write a couple of blog posts around this and maybe a video! but in the meantime, I'm quite happy with the results, F# once again proves to be a useful tool regardless of the target environment
    The exercise was to just test the waters around F# and serverless in GCP which I have had the eye for a while but no incentives to try it, I finally got around to make it, so the code is here (as I have mentioned before)
    https://github.com/AngelMunoz/MkWebHook

  13. Well as I mentioned, here's the first release candidate, if you're interested in trying out a web-like inspired router for Avalonia, check out Navs: https://github.com/AngelMunoz/Navs/releases/tag/v1.0.0-rc-001
    I don't plan into adding more features to this release as I think it does what it should, I can for sure respond to feedback and add a couple more features that are not breaking changes before I run out of adhd gas though
    😆 so be sure to give feedback during April!

    #dotnet #fsharp #avalonia #router #codefirst #buildintheopen #softwaredev

  14. Playing a bit with my Threads API wrapper written in F# and the sample app with @[email protected]

    Mostly I'm just testing that the requests are well encoded and are somewhat ergonomic to use, the Avalonia bits are just for fun!

    Code over here

    https://github.com/AngelMunoz/Threads.Lib

    Particularly in the samples directory

    #dotnet #fsharp #avaloniaui #desktop #threads #threadsapi #buildintheopen

  15. Playing a bit with my Threads API wrapper written in F# and the sample app with @[email protected]

    Mostly I'm just testing that the requests are well encoded and are somewhat ergonomic to use, the Avalonia bits are just for fun!

    Code over here

    https://github.com/AngelMunoz/Threads.Lib

    Particularly in the samples directory

    #dotnet #fsharp #avaloniaui #desktop #threads #threadsapi #buildintheopen

  16. Playing a bit with my Threads API wrapper written in F# and the sample app with @[email protected]

    Mostly I'm just testing that the requests are well encoded and are somewhat ergonomic to use, the Avalonia bits are just for fun!

    Code over here

    https://github.com/AngelMunoz/Threads.Lib

    Particularly in the samples directory

    #dotnet #fsharp #avaloniaui #desktop #threads #threadsapi #buildintheopen

  17. Playing a bit with my Threads API wrapper written in F# and the sample app with @[email protected]

    Mostly I'm just testing that the requests are well encoded and are somewhat ergonomic to use, the Avalonia bits are just for fun!

    Code over here

    https://github.com/AngelMunoz/Threads.Lib

    Particularly in the samples directory

    #dotnet #fsharp #avaloniaui #desktop #threads #threadsapi #buildintheopen

  18. Playing a bit with my Threads API wrapper written in F# and the sample app with @[email protected]

    Mostly I'm just testing that the requests are well encoded and are somewhat ergonomic to use, the Avalonia bits are just for fun!

    Code over here

    https://github.com/AngelMunoz/Threads.Lib

    Particularly in the samples directory

    #dotnet #fsharp #avaloniaui #desktop #threads #threadsapi #buildintheopen

  19. I've updated my GH template for @[email protected] F# apps built with NXUI. I added also a bit of the stuff I worked on the Navs Project (the adaptive value stuff and such you'll see in the template) it ain't much but it is honest OSS work 😂

    https://github.com/AngelMunoz/NXUIFSharpTemplate

    #dotnet #fsharp #buildintheopen #buildinpublic #avalonia #desktop

  20. I've updated my GH template for @[email protected] F# apps built with NXUI. I added also a bit of the stuff I worked on the Navs Project (the adaptive value stuff and such you'll see in the template) it ain't much but it is honest OSS work 😂

    https://github.com/AngelMunoz/NXUIFSharpTemplate

    #dotnet #fsharp #buildintheopen #buildinpublic #avalonia #desktop

  21. I've updated my GH template for @[email protected] F# apps built with NXUI. I added also a bit of the stuff I worked on the Navs Project (the adaptive value stuff and such you'll see in the template) it ain't much but it is honest OSS work 😂

    https://github.com/AngelMunoz/NXUIFSharpTemplate

    #dotnet #fsharp #buildintheopen #buildinpublic #avalonia #desktop

  22. I've updated my GH template for @[email protected] F# apps built with NXUI. I added also a bit of the stuff I worked on the Navs Project (the adaptive value stuff and such you'll see in the template) it ain't much but it is honest OSS work 😂

    https://github.com/AngelMunoz/NXUIFSharpTemplate

    #dotnet #fsharp #buildintheopen #buildinpublic #avalonia #desktop

  23. I've updated my GH template for @[email protected] F# apps built with NXUI. I added also a bit of the stuff I worked on the Navs Project (the adaptive value stuff and such you'll see in the template) it ain't much but it is honest OSS work 😂

    https://github.com/AngelMunoz/NXUIFSharpTemplate

    #dotnet #fsharp #buildintheopen #buildinpublic #avalonia #desktop

  24. Well as I mentioned, here's the first release candidate, if you're interested in trying out a web-like inspired router for Avalonia, check out Navs: https://github.com/AngelMunoz/Navs/releases/tag/v1.0.0-rc-001
    I don't plan into adding more features to this release as I think it does what it should, I can for sure respond to feedback and add a couple more features that are not breaking changes before I run out of adhd gas though
    😆 so be sure to give feedback during April!

    #dotnet #fsharp #avalonia #router #codefirst #buildintheopen #softwaredev

  25. Well as I mentioned, here's the first release candidate, if you're interested in trying out a web-like inspired router for Avalonia, check out Navs: https://github.com/AngelMunoz/Navs/releases/tag/v1.0.0-rc-001
    I don't plan into adding more features to this release as I think it does what it should, I can for sure respond to feedback and add a couple more features that are not breaking changes before I run out of adhd gas though
    😆 so be sure to give feedback during April!

    #dotnet #fsharp #avalonia #router #codefirst #buildintheopen #softwaredev

  26. Well as I mentioned, here's the first release candidate, if you're interested in trying out a web-like inspired router for Avalonia, check out Navs: https://github.com/AngelMunoz/Navs/releases/tag/v1.0.0-rc-001
    I don't plan into adding more features to this release as I think it does what it should, I can for sure respond to feedback and add a couple more features that are not breaking changes before I run out of adhd gas though
    😆 so be sure to give feedback during April!

    #dotnet #fsharp #avalonia #router #codefirst #buildintheopen #softwaredev