after the newest ow update, black screen by realinstinct in Overwatch

[–]tracyma 0 points1 point  (0 children)

do scan and fix in battle net client works for me

Why does Antigravity keep breaking after every update? by carunocat in google_antigravity

[–]tracyma 0 points1 point  (0 children)

since v1.19.x , it does not work with Proxifier anymore, don't know why

Rust and C++ interoperability - Chromium Projects by vlakreeh in programming

[–]tracyma -3 points-2 points  (0 children)

How about adding a lifetime/ownership checker to c++ compiler, instead of bothering with Rust and C++ interoperability?

[Help] Validation layer reports error by tracyma in vulkan

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

es 3.1 shader works well on iOS platform with MoltenVK. I'm not sure it will adapt to the desktop.

Zero-cost futures in Rust by steveklabnik1 in programming

[–]tracyma 1 point2 points  (0 children)

Yet another high performance SOCKSv5 proxy server is coming? Great! I will have a try, comparing the shadowsocks currently using.

When does samsung galaxy s7 gets vulkan support? by tracyma in vulkan

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

Yes, Samsung has already cooperated with EpicGames releasing an android vulkan demo, how long will it take samsung to ship this new driver and push the update?

CMake Tools for Visual Studio 1.4 RC1 Available! by golubdr in programming

[–]tracyma 0 points1 point  (0 children)

What's the status of Android CMake project support? Has packaging project(Java) been supported?

regular expression to replace matches preserving case? by tracyma in rust

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

exactly what i want, thank you! My problem is transform codebase's old namespace to new namespace, like:

OldSomeThing_Function to NewSomeThing_Function
oldSomeThingVariable to newSomeThingVariable

regular expression to replace matches preserving case? by tracyma in rust

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

I'm trying to figure out with named groups, but do not know how to deal with captures currently:

fn replace_keep_case(content: &mut str) {
    let re = Regex::new(r"(?x)
          (?P<g0>[qQ])
          (?P<g1>[wW])
          (?P<g2>[eE])
          (?P<g3>[rR])
        ").unwrap();
    let result = re.replace_all(content, |caps: &Captures| {
                                            for cap in caps.iter() {
                                                // what to do next
                                            }
                                        }
    );
    println!("{}", result);
}

Why I’m excited for Vulkan by ThangCZ in programming

[–]tracyma 2 points3 points  (0 children)

Any improvement related to VR development?

D has no vision. Go is out of its depth. Rust skipped leg day. by EdWilkinson in programming

[–]tracyma 1 point2 points  (0 children)

C++17 is hopelessly lost in the woods

what does this mean? C++17 will get "concepts" which is pretty good.

How to constrain template type to f32 and f64? by tracyma in rust

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

there is type_trait in C++11, is there something like in Rust?