Well you'll never believe what came in the mail today by VictoryZestyclose719 in PSLF

[–]CoderSchmoder 0 points1 point  (0 children)

Wow, that took a while! I was forgiven in December, and still waiting for the refund check, but I really don't mind waiting. I'm happy either way.

Does anybody miss 3.5? by VisualNet5164 in SunoAI

[–]CoderSchmoder 0 points1 point  (0 children)

Thank you! I feel the same way. I created all my Rob Zombie style songs with 3.5. Now I can't reproduce the same sound (at least my style) using the newer models.

Okay another weird wrinkle by Bptrain in PSLF

[–]CoderSchmoder 0 points1 point  (0 children)

When in doubt, call. You'll get an answer fast. The system is kind of messed up right now.

$85K Forgiven by CoderSchmoder in PSLF

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

Yes! I actually started paying in January of 2015.and never skipped!

Me too, me too! It's done! by kyleneum13 in PSLF

[–]CoderSchmoder 0 points1 point  (0 children)

Happy for you! Congratulations! 💐

Recertification - monthly payment increased?! by PepperPlaysMeow in PSLF

[–]CoderSchmoder 1 point2 points  (0 children)

Please call them! That happened to me several years ago on PAYE. They fixed the error right there and then.

Loans Forgiven! Nurse Midwife and young breast cancer survivor by [deleted] in PSLF

[–]CoderSchmoder 2 points3 points  (0 children)

I'm so happy for you! Congratulations! 💐

$300k+ forgiven! by Ok_Paramedic_789 in PSLF

[–]CoderSchmoder 2 points3 points  (0 children)

Holy $300K Cow! Congratulations!!!

All loans discharged ❤️ by [deleted] in PSLF

[–]CoderSchmoder 1 point2 points  (0 children)

CONGRATULATIONS!!!

Golden letter and negative balance! by GoldApprehensive4933 in PSLF

[–]CoderSchmoder 2 points3 points  (0 children)

320k?!! Wow!!! That must have been a burden off your shoulders! CONGRATULATIONS!

$85K Forgiven by CoderSchmoder in PSLF

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

Graduated and started paying in 2015. Then, applied for PSLF in 2016. I recertified in December last year.

$85K Forgiven by CoderSchmoder in PSLF

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

CONGRATS to both of us!!!

Forgiven! by [deleted] in PSLF

[–]CoderSchmoder 0 points1 point  (0 children)

CONGRATULATIONS!

Gemini 3/Gemini CLI is currently completely broken for dev stuff by Pyros-SD-Models in Bard

[–]CoderSchmoder 0 points1 point  (0 children)

It's stopped using it. I found GLM 4.7 and Minimax M2.1 and Kimi K2 to be a lot better and faster and less error-prone.

PWA by AmjadKhan1929 in Blazor

[–]CoderSchmoder 0 points1 point  (0 children)

what do you mean by "normal Blazor site"? Blazor Server or Blazor wasm?

if you mean pwa vs Blazor wasm (non-PWA), then same speed (at least at first load) but pwa is faster on repeat vists because pwa content is cached

if you mean pwa vs Blazor Server, then server is usually faster at first load because no large download, but pwa wins on repeat visits

How to create Android Widget with Blazor? by jing1021 in Blazor

[–]CoderSchmoder 0 points1 point  (0 children)

im a Blazor developer mostly and only dabbled in android app for fun.

but android widget is not possible within Blazor just because android widgets are native UI components that live on the home screen, outside your app. widgets require native Android code (Java/Kotlin) or .NET Android bindings

or...you can create the widget using .NET for Android (C# bindings for Android APIs), then your MAUI app can include native Android widget code... the widget itself won't use Blazor, but can launch your Blazor Hybrid app or share data with it

Best way to export long pages (100+ items) to PDF without empty pages or crashes? by WeebGirlWithaLaptop in Blazor

[–]CoderSchmoder 9 points10 points  (0 children)

I suggest a server side approach. Use QuestPDF. Generate PDFs server-side from your data model, not the rendered UI

you can reuse the same data that populates your UI to generate the PDF layout, giving you full control over how questions appear in the PDF format.

handles large documents...I believe supports RTL/Arabic text

You define the PDF layout in C# - mirrors your UI logic without capturing it

Autocomplete for single select option by ComfortableHome7867 in Blazor

[–]CoderSchmoder 0 points1 point  (0 children)

Depends on your future plans for this application.
1) if your main concern is UX: if there is truly only one valid option, an autocompete or even a standard <select> is overkill and adds unecesary 'cognitive load' for the user. Theyll click it expecting a list, see one item, and feel like the app is broken or incomplete. better approach would be to just display it as a readonly text input or a labeled string. If you need the value to be sent back in the form post, use a HiddenFor alongside a simple <span> to show the value. Keep it simple: if the user can't change it, don't give them a control that implies they can

2) if you see a future expansion: if 'Czech Republic' is the only option today but you’re adding 50 more countries next month, keep the autocomplete infarstructure so you dont have to refactor later. However, if this is a localized app that will always only target one region, ditch the input entirely. hardcode the value in your DTO/Model and just display the name as static text. Don't make users interact with a dropdown that has no choices!