HackerTrans
TopNewTrendsCommentsPastAskShowJobs

MadVikingGod

no profile record

comments

MadVikingGod
·3 माह पहले·discuss
I was wondering about how they came to the conclusion that they violated the copyright, so I went to check if they did the AGPL[1] with some extra clauses in it. Turns out they didn't, but they did change[2] it[3] in an interesting way: All the https urls in the GNU version are http urls.

[1]: https://www.gnu.org/licenses/agpl-3.0.txt

[2]: https://github.com/ONLYOFFICE/core/blob/master/LICENSE.txt

[3]: https://github.com/ONLYOFFICE/onlyoffice-nextcloud/blob/mast...
MadVikingGod
·4 माह पहले·discuss
While I too love the promise of Nix, I never was able to handle the configuration of nix. And at this point I've given up on it.

What I wonder is if there is a medium between Nix's build everything from the ground up, and the traditional get everything delivered. I've been excited about the Fedora Atomic collections, silverblue etc., as it gives me a lot of the roll back and isolation of nix with the workflow closer to a regular fedora or arch. I'm not saying that everything is roses, but I've been able to use it more than I ever got out of a nix.
MadVikingGod
·4 माह पहले·discuss
I know this has nothing to do with the RFC, but I wonder what RFC 10000 will be. I'm just hoping for some sort of joke RFC like TCP over Avian Carriers or the Oops I'm A teapot.
MadVikingGod
·5 माह पहले·discuss
The ultimate reason is there isn't economic reason so. It cost's a lot to recycle anything, and most electronics would net you almost nothing valuable.

Let's look at an example. Let's say your phones main board, which will net a few hundred grams of raw materials. First thing by weight the actual board itself is probably the biggest, if you could perfectly decompose it to it's parts you would have some fiberglass, glue, a few grams of copper, and maybe a trace amount of gold. Next you would have the different components, mostly ICs but let's cover them next. These are mostly plastic with bits of copper, tin, and other more exotic metals. Most of these could be used again, if you can separate them and sort them. There would be a bunch of solder, which maybe could be reused, if you remix it with more flux. Finally, you'll have chips, these could be reused, but only as replacements for the same chip. Getting anything out of these would mostly be removing the bulk of the material which is silicon that's been contaminated with other elements to make the semiconductors. I don't think there is any process right now that could take doped Si and get you anything back. Besides the silicon you have micrograms of gold and other conductors.

Having put all that down, I think there could be an opportunity to take the bulk components off boards, test and sort them, and sell them in bulk.
MadVikingGod
·5 माह पहले·discuss
This is all possible and quite neat to dive into the specifics, but if you really want to be able swap a std lib call, just turn it into a variable and change it.

  // code.go
  var now = time.Now

  // code_test.go
  func TestCode(t *testing.T) {
      nowSwap := now
      t.Cleanup (func() {
          now = nowSwap
      }
      now = func() time.Time {
          return time.Date(...)
      }
  }

Examples Code: https://github.com/open-telemetry/opentelemetry-go/blob/main... Test: https://github.com/open-telemetry/opentelemetry-go/blob/490f...
MadVikingGod
·9 माह पहले·discuss
The AI songs do suck, but what's even worse is that I can't block artists on Spotify or YouTube. My only recourse was to down vote each song individually, which didn't prevent the songs from showing up, just "Showed my preference".

I don't know what service is safe, but it seems like the incentives for the companies is not to direct me to what I want, real people performing music.
MadVikingGod
·9 माह पहले·discuss
Another one writes in Rust.
MadVikingGod
·10 माह पहले·discuss
So will this make EA less evil or more? They have shepherded so many great IPs, but also have been on the forefront of sleaze practices. There has to be plenty of money just squeezing those IPs or using the talent in making new things, but I have the feeling that we are going to see more of the same thing with super micro transactions.
MadVikingGod
·10 माह पहले·discuss
Think of irrationality as a form of infinite precision, such that no matter how many numbers you write down it’s always an approximation because there is always a more precise form. Now think of the number of sides as increasing your precision. Meaning there is an n such that every approximation after will read 3.14… and another for 3.141….
MadVikingGod
·10 माह पहले·discuss
I wish podman was more common in documentation. Want to use podman with your CI platform, it will probably work with socket compatibility but good luck finding instructions and anyone know if it’s tested. How about using some service with podman? Yeah the container is the same, but all the instructions or docker this or docker that, and god help you if you if they used networking or compose.

I prefer to use podman if it’s available on my system but it still hasn’t hit the critical mass needed for it to be targeted and that’s a shame.

Also is there something like a dockerfile for buildah? I’ve tried a few times to understand how to use buildah and just fall back on a dockerfile because I can’t seem to wrap my head around how to put it into something IAC like.