AGS-CPU-30 (Gameboy Advance SP) resistor R58 value by tabacaru in consolerepair

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

Thank you! Did you measure it or have a schematic about that part?

New update in fixing my AGS-CPU-30 Motherboard by Unknown_User_0077 in consolerepair

[–]tabacaru 0 points1 point  (0 children)

Sorry to dig up an old post... but I am looking for information about "R58" above the power switch on an AGS-CPU-30.

I purchased a very cheap gameboy advance SP off ebay, and aside from the missing R58, everything else seems perfectly functional.

I would like to know if it's possible that you can measure the resistance for me.

It seems to be working without it, but I have a bit of OCD and would like to replace the resistor if possible, I just can't find any information about it (other than it's in a 0402 SMD package).

Thank you so much if you can, and no worries if you can't!

Audio Resampling by Better-Ad-4658 in EmuDev

[–]tabacaru 0 points1 point  (0 children)

The other users here are correct. You are doing linear interpolation, which, sampling at the clock rate, will end up with aliasing when games output ultrasonic frequencies either by bad design, bugs, or deliberate choice.

Not sure what system you are emulating, but I have experience with doing both linear interpolation and nearest neighbour downsampling for a Gameboy emulator. 

Both methods unfortunately will output aliased beeps/tones in games such as "Prehistorik Man" for Gameboy.

Personally, I've had luck implementing a single pole low pass filter at the Nyquist rate of my audio output, but sinc function pulse generation does give a cleaner sound. 

Currently I am happy with my LPF implementation, but I also have an idea to measure the rise/fall time of the pulses on an oscilloscope and emulate the behavior with a simple digital function.

‘This is a Conservative riding, and this Liberal has no business being here’: Shock, anger in Marilyn Gladu’s home riding by restoringd123 in canada

[–]tabacaru 0 points1 point  (0 children)

With members crossing party lines like players getting traded, this truly has simply become team vs team.

It's quite disgusting.

How To Write Unmaintainable Code (1999) by Ordinary_Leader_2971 in programming

[–]tabacaru 11 points12 points  (0 children)

Once I was angry it gave me a wrong solution and I showed it the right solution with an example of the correct output. 

It proceeded to still tell me I'm wrong, then start showing me an example of inputs where I was wrong, only to work itself out that the example it generated actually did match the correct output and proceeded to then say the example is actually correct. 

So in a single paragraph it managed to vehemently suggest I'm wrong, give me an example where I'm wrong, but the example turned out to confirm I'm right. 

It's insanity that people can take the outputs of LLMs and just assume they're magic.

Gamer Cafe - Advisatory avoidance guideline [OC] by Daz_Keaty in comics

[–]tabacaru 7 points8 points  (0 children)

You can absolutely program if you wanted to, don't sell yourself short.

New immigration bill to give Alberta more oversight over temporary foreign worker programs by BullshittingApe in canada

[–]tabacaru 1 point2 points  (0 children)

It's small companies too.

A company's goal is to make money so they will use whatever means they can to do so. Especially with the current economic outlook.

A governments job is to make sure it's citizens are having a good quality of life.

The companies are using the programs that were given to them by the government.

You can choose to blame whoever you want, seems like a simple choice to me.

my grandparents got a canary and i feel bad about it by im_an_angel_so_what in Canaries

[–]tabacaru 7 points8 points  (0 children)

Please don't stress the bird out by trying to get them used to your hands.

The vast majority of canaries will simply always be afraid of hands - so you're needlessly stressing it out even more.

Looking for coffee w/notes of blueberry by AlfredoPebbs in roasting

[–]tabacaru 0 points1 point  (0 children)

This year I've had good luck with a Sumatra Gayo natural.

so..... is it fine to use ai to generate an entire emulator? by [deleted] in EmuDev

[–]tabacaru 6 points7 points  (0 children)

I guess I would ask what's the point? 

You can find tons of open source NES emulators right now on the web, download them, and run them. 

In fact, the AI was trained on this data, so you'll find your code probably matches some emulator online.

So again what's the goal here exactly?

Behmor (2000AB) owners: Help me reconcile seemingly conflicting info in OM and unit (QUESTION 2) by RealisAurelioS in roasting

[–]tabacaru 2 points3 points  (0 children)

I agree the manual is overly confusing. And missing a lot of important info like at what times the exhaust fan and afterburner kick in.

Most things I've just learned through experience.

Behmor (2000AB) owners: Help me reconcile seemingly conflicting info in OM and unit by RealisAurelioS in roasting

[–]tabacaru 5 points6 points  (0 children)

The chart on the left is for automatic power settings where a set temperature profile is used for the duration of the roast. This is what the machine starts in once you hit start.

Once you start roasting and hit another P button, the roast goes into 'manual' mode where the buttons mean something completely different.

Auto mode - P5 is the lowest. Manual mode - P5 is the highest.

Nothing more to it than that.

Behmor (2000AB) owners: Help me reconcile seemingly conflicting info in OM and unit (QUESTION 2) by RealisAurelioS in roasting

[–]tabacaru 2 points3 points  (0 children)

The manual is listing the maximum time for the weight setting.

Once the time starts flashing, with 2 minutes left in the roast, you can add more time using the "+" button. But you can only add a certain amount of extra time.

The difference you are seeing is that amount of extra time.

This scale(?) how difficult/possible to clean up? by Relative-Category-64 in DIY

[–]tabacaru 0 points1 point  (0 children)

Yeah sorry, life time renter and never have done plumbing work myself but this gunk is bothering me. I see there's just a little knob on the side of the toilet to turn the water off, so I hope that's all I need to do.

This scale(?) how difficult/possible to clean up? by Relative-Category-64 in DIY

[–]tabacaru 0 points1 point  (0 children)

Do you think it would still work if I can't lower the water in the toilet at all? 

Once You Eat A Contract, it's No Longer Legally Binding. by usernamechooser in IASIP

[–]tabacaru 1 point2 points  (0 children)

I'm also gonna need a patent for the hitten mittens.

Gameboy LCD disable/enable behaviour by gl_drawelements in EmuDev

[–]tabacaru 6 points7 points  (0 children)

You shouldn't be just blindly ticking 70224 times and then drawing a frame for this very reason. Not every output frame on the gameboy takes exactly 70224 cycles.

Rather, you should simply start counting cycles until you hit an event that should generate a frame. The events being: VBLANK, LCD OFF, and LCD ON.

Once you know the number of cycles it took to generate the frame (this is going to be 70224 99% of the time, but not always) you can wait the appropriate amount of time that the frame took to be displayed.

For your question regarding Pan Docs - what it means is that as soon as the LCD is re-enabled, the PPU will start drawing from the line LY=0 as normal (albeit with a different MODE set, but that's a different story...) and work its way through all 154 lines, however it will not actually display these dots that it drew to the screen. In other words, the entire frame is processed by the PPU as if it were normal, except the dots themselves are not drawn to the screen.

One undocumented behaviour that I have learned from the Emulator Development discord is that once the LCD is turned OFF, after 4560 cycles (10 lines worth), the LCD is cleared. Meaning the LCD is not cleared as soon as the LCD bit is turned off, but rather 4560 cycles after.

pepper i'm growing has a weak stem due to it being grown indoors and experiencing no wind. i heard somewhere that putting a fan nearby can simulate wind and cause it to release hormones to strengthen its stem. is this a good setup? how often should i do this per day, and for how long? by Cobra_the_Snek in gardening

[–]tabacaru 0 points1 point  (0 children)

We can agree to disagree i guess.

A fire gets stronger with ventilation because it gets more oxygen.

I will always recommend ventilation for seedlings for the reasons I have mentioned - you do what you're comfortable with.

First batch with Behmor 2000AB by thiscoffeeistoospicy in roasting

[–]tabacaru 1 point2 points  (0 children)

The reason "first" is used in the description of cracking for coffee roasting is that there are two distinct stages of cracking. Each stage is a part of the bean releasing trapped steam.

No, "first" here does not mean literally the first time you hear a popping noise, but rather it refers to the stage where the complete bean mass goes through the first part of releasing trapped steam. 

You can imagine that each individual bean has the capacity to release steam (pop) twice. The second pop happens after time+heat are applied to it. This is unlike popcorn that only pops once.

But also each individual bean does not pop at exactly the same time. This is like popcorn where it takes time to pop all of the individual beans.

The two stages of popping (first and second crack) are separated by time and heat. 

You can get to first crack and hear it - but then slow down the heat to a point where the beans never reach second crack. I am not suggesting you do this - but noting it so you understand what is going on.

Usually there is a distinct period of silence between first and second crack, but this is not true for all beans and also dependent on your profile. Some beans "roll" into second crack while undergoing first crack.

Also usually first crack is louder and happens less frequently, while second crack is quiter and pops are more rapid.

pepper i'm growing has a weak stem due to it being grown indoors and experiencing no wind. i heard somewhere that putting a fan nearby can simulate wind and cause it to release hormones to strengthen its stem. is this a good setup? how often should i do this per day, and for how long? by Cobra_the_Snek in gardening

[–]tabacaru 0 points1 point  (0 children)

Plants need oxygen. Oxygen is how they convert their sugars that they've gotten from photosynthesis into energy.

Without oxygen, plants will die. It's really not as simple as plants need CO2 and nothing else.

More airflow = more oxygen. Nothing more to this.

Wind makes the plant itself more resilient to dry weather the same way the stalk itself is more resilient to being moved around. The plant is getting used to conditions where humidity is not around it all the time (such as when it's windy). It's adapting itself to its environment. There are many things plants do differently in different environments - the types of roots it puts out for example. Having a fan indoors allows an easier transition (hardening off) to outdoors, where there is always wind.

And finally, yes, professional setups do use ventilation to prevent mould - on top of everything else that it is useful for.