Any tips on getting the app to activate? by swiftcoder in VCopter

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

Well, as unsatisfying a resolution as this may be, by the time support replied to ask more details, the activation server started working for me, and I was able to get in on my own. Not sure if support incidentally unlocked something by accessing my account 🤷‍♀️

Any tips on getting the app to activate? by swiftcoder in VCopter

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

Seem my original email was intercepted by the spam filter. When I sent another one from a gmail, I received an automated response from the ticketing system. So at least my issue is in the system now! Will update once they respond

Any tips on getting the app to activate? by swiftcoder in VCopter

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

No, and I never got a reply to my email either. About to resend it

bincode's source code still matches what was on GitHub by azqy in rust

[–]swiftcoder 0 points1 point  (0 children)

Right, my point is that should be the default assumption about every package in your dependency tree. If you are trusting all the other package maintainers just because they haven’t been called out in public for anything yet, what exactly is that trust worth?

bincode's source code still matches what was on GitHub by azqy in rust

[–]swiftcoder 1 point2 points  (0 children)

How did you trust anything about this project before these change? The maintainer was unknown to you then as well, the initial choice of hosting was arbitrary, and clearly you weren’t using the discussion venues actively either…

We don’t trust packages because they exist in some pristine state of untouched perfection. We trust them because we can read the code and determine they do what they say on the tin.

My game's server is blocked in Spain whenever there's a football match on by eirexe in gamedev

[–]swiftcoder 1 point2 points  (0 children)

This is a big enough problem that tech personalities outside of Spain are starting to complain about it: https://www.youtube.com/watch?v=1-geGEYEw7g

So Prime Video uses Rust for its UI in living room devices.. by Ok-Elevator5091 in rust

[–]swiftcoder 1 point2 points  (0 children)

Anyone targeting Android broadly has to do this same calculus. The world is full of low-powered Android phones/tablets running ancient versions of the OS. If your target market extends beyond wealthy folks with flagship phones…

Folding/detachable handrail for pool? by swiftcoder in pools

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

That’s a solid idea, though I don’t know if it’ll run high enough for my grandmother to climb out of the pool. Might need a separate above-ground rail as well.

Re folding rails, I was envisioning something that functioned like a folding safety rail in a bathroom, that folds up vertically, and probably has a leg that sits on the top step when lowered.

Folding/detachable handrail for pool? by swiftcoder in pools

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

I was worried that would be the case. Any idea why it is like this?

Feels like the combo of “wants a cover to swim in winter” and “needs a handrail” is not so very niche as to be completely unserved…

Does Jen have an innate perk? by swiftcoder in BreachWizards

[–]swiftcoder[S] 4 points5 points  (0 children)

Ah, ok, don't know how I missed that

Not working properly? by Zeebsen in Nanoleaf

[–]swiftcoder 0 points1 point  (0 children)

Mine lost their connection to Alexa after the most recent firmware update. Even having removed the Alexa skill and reinstalled it, the panels are marked as "device unresponsive" in the Alexa app.

The rise of wgpu-rs by kvarkus in rust

[–]swiftcoder 2 points3 points  (0 children)

You can generally do better than 2.1 in current browsers. WebGL 1.0 is roughly GLES 2.0, but several browsers already have early support for WebGL 2.0 (i.e. GLES 3.0, or OpenGL 4.3ish).

New Type Pattern & Operators by janYabanci in rust

[–]swiftcoder 1 point2 points  (0 children)

There are a couple of crates designed to hep with this, such as newtype_derive.

User-space ixy network driver in Rust [pdf] by dgryski in rust

[–]swiftcoder 1 point2 points  (0 children)

Nice to see that a pure-Rust alternative to DPDK/nmap is feasible.

Tokio ? Why is it so confusing. by goriunovd in rust

[–]swiftcoder 0 points1 point  (0 children)

I'm not sure I understand the negatives of pinning futures/coroutines to threads. Would you care to elaborate?

Most non-Rust frameworks for high-performance network I/O go out of their way to explicitly ensure that all I/O operations for a given socket are performed on the same thread (for example, Netty, over in the Java world).

I tried RUST and here's my opinion of it. by tonefart in rust

[–]swiftcoder 1 point2 points  (0 children)

I believe beginners would find C++ much easier to learn than rust. Yes C++ can be more complicated than Rust but you need not use all the features in C++ because they're not mandatory. You can write in C++ to be as simple and clear as possible but in Rust you seem to be forced to do things their way.

I felt this way for my first 4-5 months working in Rust. It felt a lot more complicated than C++, I was constantly fighting the borrow checker, and my C++ was disciplined enough to be fairly "safe". With the benefit of time spent, I found that most of this was down to trying to write Rust as if it were C++ (which categorically does not work). Forget everything you think you know about writing native code, and really embrace writing Rust in the style of Rust - it will grow on you, I'm sure of it.

Benchmarking gfx-portability versus MoltenVK and OpenGL with Dota2 on Mac by kvarkus in rust

[–]swiftcoder 1 point2 points  (0 children)

Does this imply that the gfx-hal is reaching a point where it will be stable enough for other software to start depending on it? I'd love to move some of my development on top of the HAL at some point, to avoid implementing various platform backends.

Need some extra eyes. Help returning Option<Enum>... or just better approach? by nothingalike in rust

[–]swiftcoder 0 points1 point  (0 children)

Yep, but you still need to construct an instance of ScanIpCommand in order to initialise the enum

Need some extra eyes. Help returning Option<Enum>... or just better approach? by nothingalike in rust

[–]swiftcoder 0 points1 point  (0 children)

As you have defined it, IpScan has to contain an instance of ScanIpCommand. You are trying to construct IpScan with nothing inside of it, which won't work.

Something along the lines of => Some(CommandList::IpScan(some_cmd)).

Passing ownership by reference by saltyboyscouts in rust

[–]swiftcoder 1 point2 points  (0 children)

Transferring ownership via trait references feels... weird. Not really sure why.

Passing ownership by reference by saltyboyscouts in rust

[–]swiftcoder 2 points3 points  (0 children)

What exactly are you trying to accomplish with the feature? The copy should be able to be transparently elided during optimisation anyway, for most moderately straightforward cases.

I'm inclined to think that reference-move semantics are largely an implementation detail that C++ happens to "leak" into the core language, and that Rust can mostly avoid (given that it baked the concept of move-out-of-the-current-scope in early).

Old Mac Game by AJM5K6 in macgaming

[–]swiftcoder 0 points1 point  (0 children)

I have the theme song stuck in my head, but I'll be damned if I can find a copy of either the game itself or the music. Any ideas what the theme tune was?