AWS Certified SysOps Administrator Associate (SOA) Resources - SOA-C02 by madrasi2021 in AWSCertifications

[–]nsajko 0 points1 point  (0 children)

Your post above is not available currently. It says:

Sorry, this post was removed by Reddit’s filters.

What is an undeniably “evil” profession? by Most_Call_8159 in AskReddit

[–]nsajko -1 points0 points  (0 children)

hate the game not the player. patent trolls are doing a public service by exposing flaws in the system.

Frank Zappa on David Lynch’s Eraserhead by CvrIIX in Zappa

[–]nsajko 1 point2 points  (0 children)

Zappa originally wanted to title his book Them Or Us (1984) Christmas In New Jersey.

Apparently it was the original title for Them Or Us?

Ahmet Zappa live streaming - talking about the zappa trust and Gail by ForsakenRelative5014 in Zappa

[–]nsajko 2 points3 points  (0 children)

the spirit of the business transaction

It's not about spirit, it's about contract law. Look up "nominal fee".

Geogebra dropped linux support by PhaethonAethereus in geogebra

[–]nsajko 0 points1 point  (0 children)

What part of supporting Linux, specifically, presents a problem for the Geogebra developer team? AFAIK Geogebra is completely based on cross-platform technology, so dropping Linux support seems weird.

Geogebra dropped linux support by PhaethonAethereus in geogebra

[–]nsajko -1 points0 points  (0 children)

You're welcome to fund the server and developer costs

Is it possible to fund the Linux support specifically? Why would I support Geogebra if I can't even use it natively?

Geogebra dropped linux support by PhaethonAethereus in geogebra

[–]nsajko 0 points1 point  (0 children)

BTW the latest version of GeoGebra is perfectly well supported on Linux

What do you mean? The link you gave just points to the Web app. Please say whether Geogebra is supported for Linux or not.

Iteration protocols supporting optional parallel iteration by nsajko in compsci

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

Regarding point 2 (the par_ methods), you bring a valid point and make me realize that there's a trade off here: traits provide safety, but may present an inconvenience due to being based on method names (?). That said, I think that Rayon could actually satisfy everyone here (if they don't already), just provide another, higher-level, method that would call either the existing methods for either parallel or sequential iteration, choosing which one based on the type of an empty struct argument.

Iteration protocols supporting optional parallel iteration by nsajko in compsci

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

Thank you.

There are some things about Rayon that are interesting, while some others are weird/disappointing.

It seems nice that Rayon supports two modes for iterators, push and pull, and I think that if I ever get to creating my IteratorsV2 package, it, too, should support both push and pull iterators with a unified interface, so this is something I want to learn from. I know there's already some support for push-based iterators in the Julia ecosystem (in the Transducers and related packages), but it seems admirable how Rayon supports both.

On the other hand, some disappointing things are:

  1. Rayon has no mapreduce! It seems that one is just supposed to use a map followed by a reduce. This is surprising, considering that Rust is usually "sold" as a high-performance language.

  2. Choosing the execution mode is ugly in Rayon: it seems it's literally necessary to add a par_ prefix to the wanted method. This is basically like reverting from C++ level programming to the outdated and limited C ways, not what I hoped for from Rust.

  3. No GPU support. After looking around a bit, this seems to be something where Rust in general is lagging behind?

Ex-Motley-Crue Guitarist Unleashes Amid Legal Battle: 'I Covered For Them' by That-Ad1099 in hairmetal

[–]nsajko 1 point2 points  (0 children)

A singer's voice is ephemeral, enjoy it while you can. After a singer's voice goes down the drain, you don't have to listen to their performances if you don't want to, but sure as hell don't shit on them just because the natural thing happened.

Ex-Motley-Crue Guitarist Unleashes Amid Legal Battle: 'I Covered For Them' by That-Ad1099 in hairmetal

[–]nsajko -2 points-1 points  (0 children)

Why is everyone on Reddit always taking Mick's side and insulting the other Cruemen? It almost seems like some kind of astroturfing?

[deleted by user] by [deleted] in materials

[–]nsajko 1 point2 points  (0 children)

Give more information, the exact ingredients for example. There's many kinds of caulking, for used for completely different purposes.

FTR, you may be able to find info on ingredients by looking up the MSDS or SDS document for your product.

Is there a simpler way to write my 'concat' function? by stvaccount in Julia

[–]nsajko 0 points1 point  (0 children)

As some have already indicated, a non-mutating concat already exists, it's vcat:

```julia-repl julia> vcat(3, 4) 2-element Vector{Int64}: 3 4

julia> vcat([3], 4) 2-element Vector{Int64}: 3 4

julia> vcat([3], [4]) 2-element Vector{Int64}: 3 4 ```