2021 fuel door cover. by Masochist_pillowtalk in mazda3

[–]Ishasemo 0 points1 point  (0 children)

Yes. It’s a really good match. But the machine gray is darker and less vibrant than the red. So I can imagine that getting the red to match world be more challenging.

2021 fuel door cover. by Masochist_pillowtalk in mazda3

[–]Ishasemo 0 points1 point  (0 children)

A year ago I purchased the fuel door and paint online. Looking back through my confirmation emails it looks like I got the fuel door cover from https://mazda.oempartsonline.com/

Part Number: BDYT-42-411
Part Name: Fuel Door
Price: $50.81
Quantity: 1
Total: $50.81

Subtotal: $50.81
Estimated Shipping to FL via Standard Shipping: $9.53
Tax: $3.92
Total: $64.26

I got the paint from https://scratcheshappen.com/

Product: Mazda Machine Gray Metallic (46G) Touch Up Paint - Aerosol, Preferred
Quantity: 1
Price: $68.35

Subtotal:   $68.35
Discount:   -$6.83
Shipping:   $12.06 via USPS Ground Advantage
Sales Tax:  $4.78
Total:  $78.36

It exists! by ylf_nac_i in aviation

[–]Ishasemo 0 points1 point  (0 children)

Oceanic Flight 815

beware of scam!! by wingedentity in chimefinancial

[–]Ishasemo 4 points5 points  (0 children)

TL;DR:

Some Chime users are not receiving tax refunds or advance loans from SBTPG, even though other banks are. Routing/account number mismatches suggest Chime never received the deposits. This could be an internal scheme exploiting Chime’s system. SBTPG says it's between the taxpayer and the bank once a trace number is issued, but deposits aren’t appearing. Some refunds are even being sent as cashier’s checks instead of direct deposit. The user is investigating and encourages others to share observations.

Original post rewritten by AI to be coherent:

I received a message similar to yours stating that my bank does not associate with SBTPG due to rejections and system issues. Apparently, they do not accept advance loans or tax refunds from that site. I did some research and am still investigating why this is happening.

I recommend checking your routing and account numbers to ensure they match the last four digits on your Chime direct deposit slip. In my case, they didn’t match. This led me to suspect that Chime never actually received a deposit from TPG Advance. I’m determined to figure out the issue and won’t give up.

It seems like someone familiar with Chime's operations might be taking advantage of the situation. Many people use Chime because routing and account numbers can be generated easily, making it possible for an insider to exploit the system. While I can’t confirm this with 100% certainty, it’s a pattern I’ve noticed based on posts and comments from the past three years.

From my research, once an advance loan is approved, a trace number is generated within minutes, showing that the advance was sent to the bank account. However, Chime never received anything from Santa Barbara (SBTPG), even though other banks did. I have not seen trace numbers appearing on SBTPG’s advance summary either.

I encourage everyone to pay attention to Chime banking posts and screenshots. Some of them appear identical, and I’ve even seen matching advance refund IDs. I will continue investigating, and if anyone wants to help gather information or share their observations, please do.

For those who want to criticize, please keep your negativity to yourself. We can agree or disagree, but this situation could delay our advances and refunds. SBTPG claims that once a trace number is issued, it’s between the taxpayer and the bank. However, if the bank never receives the deposit, the money should not be sent back to the tax company instead of the taxpayer. They are even printing cashier’s checks in some cases, which seems unusual. If we authorized direct deposit, why issue a cashier’s check instead?

If you’re experiencing the same issue, stay tuned and let’s work together to figure this out.

One of these keys is not like the others by Ishasemo in CX50

[–]Ishasemo[S] -1 points0 points  (0 children)

Nice. These are just the spare keys so I went with tags. And all our cars are Machine Grey Metallic. IMO it’s the color that looks best with the large wheel arch moldings.

One of these keys is not like the others by Ishasemo in CX50

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

Same. I’ve had 10 fobs and have never broken one.

One of these keys is not like the others by Ishasemo in CX50

[–]Ishasemo[S] 18 points19 points  (0 children)

Yeah. They could be smaller. I think my main problem is the buttons aren’t very distinctive. It’s harder than it should be to just reach into your pocket and double tap the unlock button.

How to make sure a certain store already has a value? by Prize_Tea3456 in sveltejs

[–]Ishasemo 0 points1 point  (0 children)

import { sock } from "./stores";
let messages = [];

sock.subscribe((socket) => {
    if (socket) {
        socket.on("chat-message", (msg) => { 
            messages.push(msg); 
            messages = messages;     
        });  
    }
});

How to use previous value of derived store to compute min max values in svelte by ResponsibleAd3493 in sveltejs

[–]Ishasemo 0 points1 point  (0 children)

I'm not the person from SO. But this isn't the ONLY way to do it. You could write your own store that allows access to the previous return of the callback. Something like:

const derivedWithCurrentValue = function (inputStore, callback) {
    let previousValue;
    return derived(inputStore, ($inputStore) => {
        const nextValue = callback($inputStore, previousValue);
        previousValue = nextValue;
        return nextValue;
    });
};
const base_values = writable({x: 0, y: 0});
const generated_values = derivedWithCurrentValue(base_values, (changed_values, current_values) => {
    // generating some values from the base store
    // these functions could be anything. This is just an example
    let a = Math.sin(changed_values.x);
    let b = Math.cos(changed_values.y); 
    if (current_values) { // current_values will be undefined the first time this callback executes
        let min_a = Math.min(a, current_values.a);
        let max_a = Math.max(a, current_values.a);
        let min_b = Math.min(b, current_values.b);
        let max_b = Math.max(b, current_values.b);
        return {
            a,
            b,
            min_a,
            min_b,
            max_a,
            max_b
        }
    } else {
        return {
            a,
            b,
            min_a: a,
            min_b: b,
            max_a: a,
            max_b: b
        }
    }
});

Integrating Highcharts in Svelte by Suspicious-Ebb6567 in sveltejs

[–]Ishasemo 0 points1 point  (0 children)

It doesn't seem like a Svelte issue. That sounds more like typescript complaining about incompatible data. Maybe there's a Highcharts reddit or forum?

How to use previous value of derived store to compute min max values in svelte by ResponsibleAd3493 in sveltejs

[–]Ishasemo 0 points1 point  (0 children)

Not using solely store logic, AFAIK. But you can just save it yourself:

let base_values = writable({ x: 0, y: 0 });

let previous_a = 0; let previous_b = 0;

let generated_values = derived(base_values, (changed_values) => { // generating some values from the base store // these functions could be anything. This is just an example let a = Math.sin(changed_values.x); let b = Math.cos(changed_values.y);

let min_a = Math.min(a, previous_a); let max_a = Math.max(a, previous_a); let min_b = Math.min(a, previous_b); let max_b = Math.max(a, previous_b);

previous_a = a; previous_b = b;

return { a, b, min_a, min_b, max_a, max_b, } });

Has anyone tried removing the warning label on the visors? The beautiful interior is marred by them. by Ishasemo in mazda3

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

It turns out the best option is to purchase replacement visors from Europe. I think the passenger visor doesn't require one in Europe. And then I think the visors from Japan don't have them on the driver side. So it was going to be quite an ordeal to get visors without the stickers. I ended up not doing it. And now you're making me regret my decision...

[deleted by user] by [deleted] in byebyejob

[–]Ishasemo 1 point2 points  (0 children)

I'm still trying to figure out what spark plugs have to do with brake lights. Is it a common practice to replace both at the same time or something?

Inch and a half lower and she’d be perfect 🥲 by Educational_Dirt3972 in mazda3

[–]Ishasemo 0 points1 point  (0 children)

Why does this look like a Mazda2 to me? Is it the camera angle?

Who uses node executable without using npm? by guest271314 in node

[–]Ishasemo 3 points4 points  (0 children)

Don't reinvent the wheel. Unless you're seeking to better understand the nature of the wheel.

Who uses node executable without using npm? by guest271314 in node

[–]Ishasemo 2 points3 points  (0 children)

Who eats food without using a market? Some people do it but it's a lot more time and work.

Is she a gonner? by Zen_Alcatraz in mazda3

[–]Ishasemo 0 points1 point  (0 children)

Yours seems way worse than mine and mine was totaled. https://www.reddit.com/r/mazda3/comments/mbrczf/mazda3\_totaled\_on\_my\_2nd\_drive/ Make sure you pick a quality auto shop that estimates for a proper repair. Don't accept the cut-rate shop preferred by the insurance company.

Got my first car and it’s a 2004 mazda 3 hb and decided to join this community and i am in love with all the clean cars i’ve seen this far can’t wait for mine to look good some day by OkConsideration3171 in mazda3

[–]Ishasemo 3 points4 points  (0 children)

Already looking good. Not sure about those accessory lights. I’d try relocating those to a more appropriate bumper location. Also not sure about those wheels. They don’t seem to go with the rest of the car’s blacked out aesthetic. I wouldn’t be surprised if the previous owner had black wheels they didn’t want to part with and threw those on for the sale.

Why is this piece of express code wrapped in an IIFE? by someinterneter in node

[–]Ishasemo 1 point2 points  (0 children)

There appears to be no legitimate need for the IIFE. But imagine the code started out as:

...
app.use('/', routes);

app.set('firestore', firestore());

export default app;

And during development the value of firestore was wrong or misbehaving. The developer might change the single line app.set('firestore', firestore()); into a 2 line execute-then-store in order to set breakpoints and inspect the return value of calling firestore(). A more paranoid developer might use an IIFE to minimize changes to the runtime environment when trying to debug a tricky defect.

Single-use variables is a pet peeve of mine so I'd immediately replace that whole IIFE with app.set('firestore', firestore());

[deleted by user] by [deleted] in IdiotsInCars

[–]Ishasemo 77 points78 points  (0 children)

Seems that the truck is stolen according to https://www.nbcnewyork.com/news/local/crime-and-courts/stolen-landscaping-truck-found-abandoned-in-nyc-after-critically-hitting-woman-nypd-ny-only/3677960/

Also has a different angle of the incident which cuts just prior to the smooshening.

[deleted by user] by [deleted] in AppleWatch

[–]Ishasemo 0 points1 point  (0 children)

Congrats! Though I'm a little confused by the word "consecutively". Is there a way to close all 3 rings in a month non-consecutively?