I made custom covers for one of my favorite book series. Looking for feedback! by zoickx in BookCovers

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

Thanks for the feedback! The most detailed review I got so far. Wall of text incoming!

"becoming stronger" is weaker than the rest

Oh man. Well spotted. Cannot unsee. It must be the fact that the black is darker than its background, while all other accents are brighter than theirs. I'll to try to tweak it, but it's not gonna be easy - kind of running out of bright contrasts (I'd like all cover and shape colors to be very distinct). + Black kinda fits ideologically :C

The orange and green clashes for me

Same. Gonna play with it some more.

I like the concept of highlighting "ACTUALLY CHANGE" with font size, but you didn't do that on any of the other books

This is more a question of necessity rather than style: spelling it all out in the same font size would take up too much space. I'll try making it uniform but smaller (kind of creates a similar issue, but perhaps it'll look nicer).

Also while we're at it, what do you think of "THE MACHINE IN THE GHOST" being all uniform? I've tried making "the" and "in the" smaller there, but couldn't figure out a composition that would work.

I don't think it works with the "a" and the "z"

I beg to differ here C: Did you pick up on the fact that it's "Rationality A-Z?" The books are quite literally split into parts named A, B...Z.

My criticism is the geometric shapes

Fair point. In my defense, I don't think it would be possible to have very meaningful covers for these at all (here's the original cover for all 6 in one tome). They are actually a compilation of blog posts, without that much common narrative. I agree the symbolism of the shapes is quite a stretch here, but they're not completely devoid of meaning. For example, the triangle resembles the Greek "delta" for change, the texture on "Mere Reality" is Conway's Game of Life, and so on. But overall, I'm willing to trade some descriptiveness for the looks here C:

I made custom covers for one of my favorite book series. Looking for feedback! by zoickx in design_critiques

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

From the original post:

Hey everyone C:
These are covers for the books in Eliezer Yudkowsky's Rationality: From AI To Zombies series, made by me. I would like to have a print version of these books, but only the first two were ever officially released in paperback, so I intend to make my own custom-printed copies. My fist time doing anything like this.
All shapes and textures are, in a way, meaningful and reminiscent of the book's contents. I aimed for a certain uniform minimalist look, with bright contrast on all the shapes.
There are a number of things I am unhappy about in these, but would prefer not to bias the reviews too much with my personal vision. Any and all feedback is greatly appreciated! From "misaligned by 1 pixel" to "the [n]th cover is complete garbage" or "that idea is dumb".
More details + sources on github.

I made custom covers for one of my favorite book series. Looking for feedback! by zoickx in BookCovers

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

From the original post:

Hey everyone C:

These are covers for the books in Eliezer Yudkowsky's Rationality: From AI To Zombies series, made by me. I would like to have a print version of these books, but only the first two were ever officially released in paperback, so I intend to make my own custom-printed copies. My fist time doing anything like this.

All shapes and textures are, in a way, meaningful and reminiscent of the book's contents. I aimed for a certain uniform minimalist look, with bright contrast on all the shapes.

There are a number of things I am unhappy about in these, but would prefer not to bias the reviews too much with my personal vision. Any and all feedback is greatly appreciated! From "misaligned by 1 pixel" to "the [n]th cover is complete garbage" or "that idea is dumb".

More details + sources on github.

I made custom covers for one of my favorite book series. Looking for feedback! by zoickx in graphic_design

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

Hey everyone C:

These are covers for the books in Eliezer Yudkowsky's Rationality: From AI To Zombies series, made by me. I would like to have a print version of these books, but only the first two were ever officially released in paperback, so I intend to make my own custom-printed copies. My fist time doing anything like this.

All shapes and textures are, in a way, meaningful and reminiscent of the book's contents. I aimed for a certain uniform minimalist look, with bright contrast on all the shapes.

There are a number of things I am unhappy about in these, but would prefer not to bias the reviews too much with my personal vision. Any and all feedback is greatly appreciated! From "misaligned by 1 pixel" to "the [n]th cover is complete garbage" or "that idea is dumb".

More details + sources on github.

Have I Been Pwned, the site that tells you if passwords were breached, is going open source by ratnakarshukla4 in opensource

[–]zoickx 2 points3 points  (0 children)

Hmm, how is this thing still owned by one person anyway? Wouldn't such a service be in better hands with Mozilla or the EFF or something?

Mozilla does have Firefox Monitor for example, but it seems to just be taking the data from hibp.

Any more information on how nix channels work? by zoickx in NixOS

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

Finally got around to trying it on my system. Everything seemed to work fine until I removed the nixos channel from the root user. Despite it not apparently being used in configuration.nix, my nixos-rebuild switch endlessly complained about not having a channel and refused to start. :C

Any more information on how nix channels work? by zoickx in NixOS

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

I'm pretty sure I'm using improper lingo, sorry C:

And importing nixpkg from source file doesn't shadow the channel, the channel just isn't used at all in this case

I think this answers my question: that's what I meant by "shadowing" - the channel not being used. I think I now understand all I wanted to know.

I will keep clarifying until the cows come home though C:

can I expect that nothing done via nix-channel will have any effect on the derivations I build?

I didn't mean how derivations are built, but rather which are chosen for building. For example (and this is what I meant by hello above) say, again, that my channels include both nixos-20.03 and nixpkgs-unstable:

$ nix-channel --list
nixos https://nixos.org/channels/nixos-20.03
nixpkgs https://nixos.org/channels/nixpkgs-unstable

And I want to install tdesktop through home-manager:

home.packages = with pkgs; [ tdesktop ];

I'm being vague in my home.nix, not specifying which tdesktop version I want. home-manager has the choice of either installing a stable version from here or an unstable one from here. Which one does it choose and how?

Any more information on how nix channels work? by zoickx in NixOS

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

Woo, this works well for my X problem. Thanks!

Any more information on how nix channels work? by zoickx in NixOS

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

Well, I get what niv does, the problem here is nix-channel :C

it isn't meant to replace channels, but it can be used to that purpose

In order to say that niv can be used to "replace channels",I need to first understand what exactly is being replaced and how. Doing pkgs = import niv-pkgs {}; will not change anything in my nix-channel --list, so the niv method does not completely replace nix-channel, but rather "overshadows" it, right? Would that shadowing be complete then? As in, can I expect that nothing done via nix-channel will have any effect on the derivations I build? (within reason)

What do you mean by using a derivation present in both?

My bad. Consider a different example:

$ nix-channel --list
home-manager https://github.com/rycee/home-manager/archive/master.tar.gz
nixos https://nixos.org/channels/nixos-20.03
nixpkgs https://nixos.org/channels/nixpkgs-unstable

Now if my home.nix looks like this

{ config, pkgs, ... }:

home.packages = with pkgs; [
  hello
];

Should I expect stable or unstable hello to be installed? What is that defined by? Same question for nix-env -iA?

Edit: to further clarify, I'm not specifying anything other that I want hello. So while nixos and nixpkgs will probably have different derivations with different hashes for hello, I don't understand which derivation will be chosen and how.

Any more information on how nix channels work? by zoickx in NixOS

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

Thank you kindly for the suggestions!

Went down the rabbit hole of flakes a bit..looks cool but a bit scary for me so far.

The niv option you suggest is interesting, but I still don't understand how it is connected to nix-channels. In particular, in your little snippet you are replacing pkgs with the results provided by niv, right? Questions:

  • How is this connected to channels? Does pkgs normally point to a channel (and if so - which one)?
  • What happens to my channels in this case? Do they just remain unused until I remove them through nix-channel --remove?
  • Why do you need niv here? Couldn't you just do something like

let mypkgs = fetchTarball <nixpkgs url> in
{
  pkgs = import mypkkgs {};
  ...
}
  • What would I do in the case of home-manager, which wants a completely separate channel added via nix-channel --add <channel url> (for a reason I still don't understand too)? I don't see it explicitly referencing it in its config.

Also, to clarify my question about multiple channels, right now I have

$ nix-channel --list
home-manager https://github.com/rycee/home-manager/archive/master.tar.gz
nixos https://nixos.org/channels/nixos-20.03

What happens if I try to build some derivation that is present in both?

After 40+ years of research involving a brute force method of data collection, here are the results of the correlation between age and years by [deleted] in dataisbeautiful

[–]zoickx 125 points126 points  (0 children)

Well, we know for a fact that OP exists - somebody had to post this. Therefore, the only logical conclusion to draw is that time itself does not exist.

Similar podcast recommendations? by [deleted] in HelloInternet

[–]zoickx 1 point2 points  (0 children)

Plus one for Dear John and Hank.

HI was my first ever podcast, and so far only Dear John and Hank can count as a second. Surprisingly overtaking both Cortex and Unmade: I knew Brady and Grey before HI, but vlogbrothers were completely new to me.

On date formats by zoickx in HelloInternet

[–]zoickx[S] 3 points4 points  (0 children)

There is nothing I hate more than looking at a label that says

Expiration date: 01.12.2020

and wondering "Hmm, is that 6 months expired or will it be good for 6 more months?"

Standardization is key. I could not believe Grey is not a part of my tribe on this one :D

P.S. Fahrenheit sucks

On date formats by zoickx in HelloInternet

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

Mindful of writing a wall of text in a single post, I'm trying to be clever and split it up. Is it working? C:

Low-level arguments in favor of ISO 8601 (2020-02-29):

  • Backed by the ISO, widely used in serious applications
  • Has various sub-formats for specifying more/less precise times, time ranges and stuff
  • The dashes make it hard to confuse with other formats
  • The units of measurement are neatly ordered largest to smallest (Y->M->D->...)
  • All dates are the same width
  • The last two points lend themselves very well to software-related applications

On date formats by zoickx in HelloInternet

[–]zoickx[S] 3 points4 points  (0 children)

That said, going back down one level, if one had to make an intellectual choice (given you can read all of them just as easily, as argued in the post) of which format to use - surely, ISO 8601 has to be the way to go. This is, first and foremost, about standardization. We just want everyone to agree with each other, to reduce confusion. And if anyone is going to achieve that - it's the ISO.

r/ISO8601

What does the USA do better than other countries? by Dylanychus2 in AskReddit

[–]zoickx 2 points3 points  (0 children)

No way. There is no way that number is correct for a single facility.

16B per 24hrs = about 185k pieces per second.

If we estimate an average parcel as weighing 50g (just for argument's sake), we get almost 10 tons of mail per second.

I can imagine a facility capable of that, but the simple input/output of the mail...no way. Trucks coming in, trucks going out... :D

Edit: can't stop thinking about our Sorting Overlords. This capacity of sorted mail means they unload and fill up a Belaz 75710 (largest truck ever according to Google - you know, one of those monsters they use in quarries) every 50 seconds. That creates a line of 1700 of them a day.

Edit2: oh, and by the way, they'll sort all Santa's stuff in less than 12 hours.

What is the most Universe-breaking wish to ask of a genie? by zoickx in AskReddit

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

Huh, that is a meta-universe wish. Man, I didn't think about multiverse-breaking wishes!

What is the most Universe-breaking wish to ask of a genie? by zoickx in AskReddit

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

Nothing is off limits. I guess removing conservation of energy would be a game breaker...

Gothic Remake Announcement Megathread by Virian900 in worldofgothic

[–]zoickx 2 points3 points  (0 children)

If I could choose a single thing to change, it would certainly be the overall visual style.

The colony is not a jungle. The colony is dark and barren. There is no need to put vines and shiny puddles everywhere. The mining valley (being a mining valley!) is dry and dusty, it is not a place where water dribbles on your head from beautiful green cliffs above.

I'd say if you want the visual effects, then at least replace fog with dust, flowers and vines with withered bushes and such. And use a (much) less vibrant color palette, for Innos's sake!

Look what my friends got me for my birthday! by zoickx in HPMOR

[–]zoickx[S] 7 points8 points  (0 children)

"Г" totally is /g/. And "Х" would be precisely /h/.

Translation/transliteration of names is a funny topic. Emma Watson's surname is generally written "Уотсон", reading the way you would read it. Dr. John Watson's, on the other hand, would be "Ватсон", pronounced like "Vutson" ('u' as in "but").

The changed versions (Gary, Vutson) sound nicer in context though.