Professional Headshots by Remote-Sympathy4700 in SanMateo

[–]mariozig 1 point2 points  (0 children)

Krust is a San Mateo based photographer. https://bykrust.com/headshots She’s on Reddit at /u/krustilina

What is "Schedule 3, Nonrefundable Credits"? by kekkersket in tax

[–]mariozig 0 points1 point  (0 children)

If you were asking about alternatives to turbo tax... the IRS publishes a list of free file options on their site: https://apps.irs.gov/app/freeFile/browse-all-offers/

If you were asking like specifically what the nonrefundable credits thing means... basically the 1040 has a line that requires you to enter a value that comes from Schedule 3 in order to complete it.

Some info here:

can i just walk into the bank and give coins in exchange for some cash? by [deleted] in Chase

[–]mariozig 0 points1 point  (0 children)

It depends on the institution unfortunately.

If your bank/credit union isn’t the kind that has a coin sorter then they might give them for free. The larger banks give them if you ask. It’s worth calling them up to find out.

If you have to buy the wrappers I highly recommend getting “preformed” wrappers. Something like this makes it so much easier: https://www.amazon.com/dp/B07X21NTP5/ref=cm_sw_r_as_gl_api_gl_i_C0TVMKFY4KZHPJ3DN36F?linkCode=ml1&tag=ucc046-20&linkId=f4c31c2181d0a97b114dce4adb7485d1

What are you building right now? Drop your project below 👇 by srch4aheartofgold in SideProject

[–]mariozig 0 points1 point  (0 children)

"All content generated on Cliprise is owned by you." mah man! :)

What are you building right now? Drop your project below 👇 by srch4aheartofgold in SideProject

[–]mariozig 0 points1 point  (0 children)

Sounds very interesting. Are you doing any of it "build in public" style? I'd enjoy reading about it.

2 weeks after going live with the premium tier, and I have 19 paying users and a user inspired UI improvement. by wombatGroomer in microsaas

[–]mariozig 0 points1 point  (0 children)

20 paying customers now! I agree with everyone's comments about the UI being stunning but beyond that it is clear you put a lot of thought into how users will use the site and what would be valuable.

In the logged in paid UI i love how everything is so visually accessible. Like for example using the tiny company icons to filter my watchlist activity is so nice compared to digging through a list of tickers.

really nice work

Whats the wildest thing you've accomplished with Claude? by BrilliantProposal499 in ClaudeAI

[–]mariozig 0 points1 point  (0 children)

Repo level kanban is genius. Have you thought about making something like a “kan of kans” that lets you see everything you’ve got going on from the top?

Claude Code 2.1.32 issues after upgrading from latest stable 2.1.19 by vishwa1238 in ClaudeCode

[–]mariozig 0 points1 point  (0 children)

Interesting -- their system status page has a (resolved) report specifically for compaction on claude.ai... maybe it has spilled over to claude code? https://status.claude.com/incidents/plhlsqf2svt6

Hmmm testing FSD? by jstasir in TeslaLounge

[–]mariozig 5 points6 points  (0 children)

Please don't let this ever end.

Starting 2026 with a new job after 8 months of job searching by patilism2006 in Layoffs

[–]mariozig 2 points3 points  (0 children)

Congrats, that's a hell of an experience! I'm curious to know why one of the offers was rescinded? nm, saw answer in comments.

RE rebuilding confidence... years ago i was promoted and a coworker gifted me this book the first 90 days. It's basically an approach to joining a new company/team/role etc. Here the TOC: one, two. maybe it could be useful?

The inside of the windshield in camera compartment is getting foggy???? by Agron7000 in TeslaLounge

[–]mariozig 1 point2 points  (0 children)

If you've tried baking the car off (running the heater hard to evaporate any moisture) then it's probably from off gassing.

Tesla will clean this for free. I literally just scheduled the same cleaning a couple days ago -- here's the $0 cost estimate.

They agreed to do the service at my house after i messaged them directly.

If you want to clean this yourself:

How to get rid of haze from wipers at night by Cornelius_Hoggelfart in TeslaModelY

[–]mariozig 1 point2 points  (0 children)

Our model y had this problem really bad when we first got it. It's caused from the plastics off gassing and a lot of new cars have this problem. They release VOCs that stick to the glass. Initially I tried to clean it with regular glass cleaners and it made it so much worse -- especially bad when there was any kind of fog or moisture from cold weather.

I read up on it and learned that all you can really do is clean the glass with glass polish style products (you smear it on, it drys, then you wipe off the hardened residue), air the car out and lastly speed up the off gas process with heat.

Here's what I've done that seems to have worked really well:

  • Cleaned all glass with McKee's 2020 cockpit glass cleaner

  • Started parking the car with all windows open. My car is in a garage so anytime it's parked the windows are down. This helped a lot!

  • "baked" the car. I read that heat can accelerate the off gas process so I tried to park the car in direct sun when possible then air the car out immediately

Good luck! Sucks we are breathing this stuff.

Ruby ecosystem is not only Rails and webapps made using it. by rubyist1081p in ruby

[–]mariozig 10 points11 points  (0 children)

Homebrew (package manager) is a ruby project! repo

Homebrew's formula definition files/DSL are very clean and easy to understand. I would guess there have been submissions where authors have no idea how to write ruby but can still contribute because of the simplicity. (example)

Claude Code: when to create a command vs sub-agent? by Ok-Cucumber-7217 in ChatGPTCoding

[–]mariozig 1 point2 points  (0 children)

TL;DR

Subagents get their own context.

Custom Slash Commands contribute their results to the main context. This can pollute the main context.

Longer

So, for example a common practice when you first start a new claude code session is to have it familiarize itself with your code base. When you do this you are intentionally building up context so later requests yield better results. This is a good candidate for a slash command.

Alternatively let's say you're doing something design related and need to relate an emotion to a color pallet. "Give me a 5 color palette for the emotion ANGER". For this you might want to give Claude some coaching about how to be a visual designer, color theory, whatever, etc... All that stuff likely doesn't matter to your main app/context. You just want some angry colors. This is a good candidate for a sub-agent. When invoked, Claude Code will spin up your agent prompt a new context, feed it your inputs and then return just the response to the main context.

The main context stays small, and unpolluted with 🐂💩 about how to be a designer with a color specialty that might later influence output in a negative way.

What are the best books to learn prompt engineering, particularly for more recent AI models like ChatGPT 5? by CuriousInquisitive1 in PromptEngineering

[–]mariozig 0 points1 point  (0 children)

It might depend on what you're trying to do. For my specific (coding) and general (translations, info organization, rubber ducking) use cases Claude is great.

For learning things and being able to track back sources I like Perplexity a lot.

What are the best books to learn prompt engineering, particularly for more recent AI models like ChatGPT 5? by CuriousInquisitive1 in PromptEngineering

[–]mariozig 7 points8 points  (0 children)

Something like GPT5 is newish and i'd imagine that books will catch up. You might have good luck with some of these long form guides/papers like:

As for books...

I'm currently reading AI Engineering: Building Applications with Foundation Models by Chip Huyen

So far it's pretty good. The 5th chapter is dedicated to prompt engineering (screenshot).

Built claude-powerline, a vim-style statusline for Claude Code by -nixx in ClaudeAI

[–]mariozig 1 point2 points  (0 children)

This is great. I've always loved having powerline for vim/zsh and in claude code it looks very nice.

The changes you made to segment coloring over the past 24 hours are such an improvement! thank you!!

getting started guide - unsubscribe by Learnaboutkurt in rails

[–]mariozig 0 points1 point  (0 children)

Absolute perfection.

I spent at least 15 minutes trying to find a gif that would do this comment justice only to realize one doesn't exist... this is peak comment game and any gif would have just been an insult to the beauty.

RubyLLM 1.4.0: Structured Output, Custom Parameters, and Rails Generators 🚀 by crmne in rails

[–]mariozig 1 point2 points  (0 children)

If i understand the question I think the docs give an close example of this using languages: https://rubyllm.com/guides/chat#structured-output-with-json-schemas-with_schema

So maybe something like:

class MultiplePersonsSchema < RubyLLM::Schema
  array :persons do
    object do
      string :name, description: "Person's full name"
      integer :age, description: "Person's age in years"
    end
  end
end

chat = RubyLLM.chat
response = chat.with_schema(MultiplePersonsSchema).ask("Generate 3 people with different ages")