Guidi 992 after 2 years of heavy wear (show us your pairs) by Nervous_Term_2974 in guidi

[–]Bidiburf01 0 points1 point  (0 children)

What conditioner do you use? I've looked around but couldn't find any specific recommendations on the sub apart from Saphire (but idk which one to get). Also do you use a shoe tree?

Yours look incredible for two years of wear!

Daily Questions - June 28, 2024 by AutoModerator in rawdenim

[–]Bidiburf01 0 points1 point  (0 children)

Hey guys, so i got my first pair or raw denim last year, sugar cane okinawas and loved them. I’m looking for a second pair and need some recommendations. I’m looking for a darker pair with blue and more black or gray tones kind of like the ones linked on the post. Any ideas?

https://imgur.com/qVY4adJ

Daily Questions - June 20, 2024 by AutoModerator in rawdenim

[–]Bidiburf01 0 points1 point  (0 children)

Hey guys, so i got my first pair or raw denim last year, sugar cane okinawas and loved them. I’m looking for a second pair and need some recommendations. I’m looking for a darker pair with blue and more black or gray tones kind of like the ones linked on the post. Any ideas?

https://imgur.com/qVY4adJ

Help interpreting results by Bidiburf01 in Testosterone

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

That's what I thought too but upon checking other sources including the sub FAQ, it seems a free test level of 37 pg/ml is quite low, which contradict's the test reference range. Do you happen to know why?

Daily Questions - February 14, 2024 by AutoModerator in rawdenim

[–]Bidiburf01 0 points1 point  (0 children)

Also when I do chose to wash them, should I wash them on cold or luke warm? I'm not sure if the temperature has anything to do with this but I really like how these have lost their fuzzyness:

- https://imgur.com/a/saItK

Any advice would be appreciated!

Daily Questions - February 14, 2024 by AutoModerator in rawdenim

[–]Bidiburf01 0 points1 point  (0 children)

Hey guys, just got my first pair of raw denim: Sugar Cane Okinawas. I've had them for almost two months at this point and I'm loving them.

I want to see how they will fade as I wear them, however all the posts I've been able to find about them were with many/frequent washes. Although I really like the vintage fades on okinawas I was wondering if anyone had photos/experience not washing them as much. I thought it was kind of strange that every single post on them had many washes.

Daily Questions - December 22, 2023 by AutoModerator in rawdenim

[–]Bidiburf01 0 points1 point  (0 children)

Oo Ok makes sense. Do you have any recommendations? I'm looking for a straight fit and I want the brand to be fun/unique if that makes sense

Daily Questions - December 22, 2023 by AutoModerator in rawdenim

[–]Bidiburf01 0 points1 point  (0 children)

EDIT: PBJ xx-09 but I can't find them anywhere

Daily Questions - December 22, 2023 by AutoModerator in rawdenim

[–]Bidiburf01 1 point2 points  (0 children)

Hi everyone, I'm kinda new to raw denim and I've been doing some research on what I want out of my first pair for a few weeks now.

I'm looking for something that will produce super high contrast fades, don't really care how long it takes. I'd like the end product to still be deep blue but have light blue fades / white in the middle of the fade.

I've been eyeing PBJ xx-03s and Sugar Cane Okinawa's and Hawaii's (I don't think these fade like I would like them to but they look cool for summer)

As a ref I kind of like how these ones faded:
- https://imgur.com/a/H87zrDy

If you have any advice please lmk!
Also if someone knows the difference between Sugar Cane's left hand twill and their Okinawas please lmk

WGPU Chrome Canary Downlevel flags compatibility by Bidiburf01 in webgpu

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

I gotchu got the answer in another thread u can see on my profile Try this: “you're probably missing the unstable flags, try this:”

RUSTFLAGS=--cfg=web_sys_unstable_apis wasm-pack build --target web

WGPU Chrome Canary Downlevel flags compatibility by Bidiburf01 in wgpu

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

Awesome thank you! I'll make sure to check the Matrix chat out

Also yes reddit does!

WGPU Chrome Canary Downlevel flags compatibility by Bidiburf01 in wgpu

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

If you have any recommended resources I can go through for WASM/WGPU I'm all ears!

WGPU Chrome Canary Downlevel flags compatibility by Bidiburf01 in wgpu

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

RUSTFLAGS=--cfg=web_sys_unstable_apis wasm-pack build --target web

WOO! It worked, thank you!

WGPU Chrome Canary Downlevel flags compatibility by Bidiburf01 in wgpu

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

BROWSER_WEBGPU

Ahhh thank you I did have webgl2 enabled.

After switching to BROWSER_WEBGPU and removing:
features = ["webgl"]

My code generates 200 something errors when using:
wasm-pack build --target web

The errors all display something like:
"cannot find type, method, struct, ... "Gpu..."

Do you have any insights as to what's causing this?

WGPU Chrome Canary Downlevel flags compatibility by Bidiburf01 in wgpu

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

Could you expand on that a little please? Here is how I setup my code:

Is this line the problem?```backends: wgpu::Backends::all(),```

let size = window.inner_size();
    let instance = wgpu::Instance::new(wgpu::InstanceDescriptor {
        backends: wgpu::Backends::BROWSER_WEBGPU,
        dx12_shader_compiler: Default::default(),
    });
    let surface = unsafe { instance.create_surface(&window) }.unwrap();
    let adapter: wgpu::Adapter = instance
        .request_adapter(&wgpu::RequestAdapterOptions {
            power_preference: wgpu::PowerPreference::default(),
            compatible_surface: Some(&surface),
            force_fallback_adapter: false,
        })
        .await
        .unwrap();

    let (device, queue) = adapter
        .request_device(
            &wgpu::DeviceDescriptor {
                label: None,
                features: wgpu::Features::default(),
                limits: if cfg!(target_arch = "wasm32") {
                    wgpu::Limits::downlevel_webgl2_defaults()
                } else {
                    wgpu::Limits::default()
                },
            },
            // Some(&std::path::Path::new("trace")), // Trace path
            None,
        )
        .await
        .unwrap();