Would you say that industries with heavy network effects tend towards monopolies, while those without tend to produce more competition?
HN user
tehrei
Not really. Just label it as "Vintage Honey", write "Experience the taste of honey taken from Egyptian tombs" and add in very tiny letters at the bottom "From 2016 harvest". As long as you don't claim it's actually taken from an Egyptian tomb, you can just spin it however you like. If you want to be somewhat more honest, make sure the bees only drink nectar from flowers that would have been grown during the time of the pharaohs.
At this point it's fair to say that anyone waiting on F-35 would have been better served by just ordering more Warthogs.
Yeah, this is typical male group dynamics. Same would happen if I were to suggest Friends instead of baseball.
I wonder though, how do groups of women solve that?
Another interesting way of dithering would be http://johanneskopf.de/publications/blue_noise/ but that might take away from the sought aesthetics.
Like, say, IFS in bash. Have you ever needed to set IFS? Do you know what it does? I've set it maybe 5 times and practically each one was to $'\n' so I can read newline-delimited input values in a while loop. But I appreciate the fact that I can set it to literally anything, if I ever need to.
If you're interested in Linux-specific benchmarks, https://phoronix.com/ has some, and in general http://anandtech.com and http://www.hardocp.com .
I am pretty sure that Intel management engine can do that, though obviously it doesn't... Yet
No, see, home-taping was illegal and in the physical world you can't break the law as easily as in the lawless wasteland that is the internet.
It's pretty good, got me at 0.76. It seems you can switch patterns to make it go down, but if you just mash f and d it rises pretty quickly.
Parent is talking about a small sub-minority of people. Not large enough to form their own church or provide a diverse society to network in.
Really nice and clean. Would prefer it if it included cyrillic characters and more latin ones to cover all European languages (e.g. Polish ł is missing, Czech š, č and probably several Hungarian letters).
Artists who use Linux always seemed like a crazy bunch.
Btw, if anyone needs a simple image editor for Linux, I can't recommend Pinta enough. It's basically Paint.NET. Gimp didn't have the one feature I need - drawing lines, squares, circles, etc. and Kolourpaint doesn't have layers.
I thought unsigned underflow is defined as wrapping?
Oh, so then on C++ you can check if pointer-to-T p is within T a[sz]; by doing (a == p || std::less(a, p)) && (std::less(p, a + sz))
Interesting. What if I use memcpy and memcmp? As in,
void foo(void *a, void *b) {
char ca[sizeof(void*)];
char cb[sizeof(void*)];
memmove(ca, &a, sizeof(void*));
memmove(cb, &b, sizeof(void*));
assert((a == b) == (memcmp(ca, cb, sizeof(void*)) == 0));
}If you bought the software and can't understand the EULA, aren't you entitled to legal counsel by the makers? I imagine you could stir up quite a shitstorm if they refuse, i.e. "company X tries to bind you to terms they DENY TO EXPLAIN".
That's a micro-optimisation that's absolutely worthless. Even if you do pay the cost of indexing an array every single time, that's just a single instruction to fetch the address. The compiler is absolutely capable of caching the indexing for you, either in a register or on the stack, if it deems it worthwhile.
One reason you might want to use a separate variable would be to prevent indexing mistakes, like using i instead of k by mistake in a context where i is a nested loop's counter. But apart from this and other "to make it easier on the human" reasons, there's no point in caching that in a variable. Now, if you were writing Python on the other hand...
That's honestly good news, Apple are one of the few companies that might invest enough money in R&D to make these displays viable. I remember that the first versions had terrible failure rates.
Then you start writing GreaseMonkey scripts and patching the APIs they use.
Because it's really, and I mean REALLY hard to teach the computer to create stylised illustrations from a 3d scene. Even harder, to actually animate the scene geometry in a way that corresponds to what a human animator would draw. Think to one of the core principles of animation - squash and stretch. Every character is more or less a soft body that deforms in a volume-preserving way to add emphasis to movement and intent and that's a really important artistic element of animation.
For example, just watch an old Tom&Jerry short and try to imagine how you'd represent these characters as 3d geometry. How would the animator move and deform them? How do you do the effect where Tom is hit with a shovel in the face and turns into a table? With hand-draw animation (either digital or on paper) you are just drawing the final result, but with 3d animation you have to describe the actual physical geometry in the scene.
To expand on copperx, they might be. Since you can have several versions of a lib installed and the kernel<->userspace interface is stable, if you can get the old versions you need for your distro, then you can run the application. At worst, you might need to compile from source (which I do realise can take a lot of time and effort).
So the kind-of proper answer to that question is, "if you want to run a popular old application on a popular current distro, there is probably a repository you can pull packages from that will allow you to do it, otherwise it's somewhat of a crapshoot".
A more philosophical shebang that I like is
#!/bin/rmGtk (at least from 3 onwards) doesn't even aim to be cross-desktop on Linux, let alone cross-platform. Meaning, your gtk apps will always look and behave according to the Gnome conventions on all platforms, which could be what you want, depending on what cool-aid you're drinking ;) .
You should be a bit careful with implementations and keep in mind that you can't split a number larger than the prime you've picked. I've seen people go "oh I'll just split an N-byte value into M * N-byte values, splitting each byte separately with the largest prime < 256, surely the loss of a few values per byte won't be of consequence...". It might not be in your case, but you need to be aware of that.
At that point it sounds like it would be easier to jab an electrode in your neck matrix-style and have your body go through a programmed exercise while you watch a movie or something.
And this is why I use Discord. The only still sane option. It's a shame you can't use multiple accounts on the phone natively, but there are tools for that.
That's not really any more or less arbitrary.
You could use a hash-based password generator and write the input seed, plus the constraints for the password. Or keep the password verbatim, it's not like the site is really secure anyway.
Basic Income is very, VERY far away from the Utopia in that experiment. It means enough money to cover rent, utilities and food. For anything more, you still have to study, work, etc.
Also, it's one experiment, that I haven't seen replicated, done in an age when you had to show up those darn commies, that Capitalism is the best.