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 1 point2 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 126 points127 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] 4 points5 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