goddard_guryon

joined 1 year ago
[–] [email protected] 1 points 2 months ago

Yup it seems crazy to me how deep insights one needs to have to be able to, say, connect the dots between compression and machine learning. And now it looks to me like he has done a lot of the foundational work in these fields. Super cool stuff

[–] [email protected] 5 points 2 months ago (2 children)

Too lazy to check, but is this the Rivest from the RSA algorithm?

[–] [email protected] 0 points 3 months ago

Since you're seeking for answers within physics buzzwords, you're missing a lot of nuance which is causing you to come up with nonsensical theories. For one, the wavefunction doesn't exist 'in' the particle, it is the particle. A wavefunction collapsing is what causes a particle to show up in a specific location (going by the most prominent interpretation of the wavefunction); as long as the wavefunction is non-zero at more than one location, the particle exists in all those locations.

Equipped with this knowledge, phrases like "a wavefunction collapsing in such a way that it absorbs light" or "change the composition of atoms" make no sense, so I'd suggest you to rethink your assumptions, and, if possible, not look at quantum mechanics as a magic black box that can explain everything a mind can conjure up.

[–] [email protected] 5 points 4 months ago* (last edited 4 months ago)

Like you said, there's a metric ton of steps involved in the overall process, and our understanding of each of these 'levels' of organization varies quite a bit. Closest to my personal expertise is the sub-cellular and cellular level, for which I would refer you books or papers in developmental biology, developmental genetics, and epigenetics. I can give you a couple bloopers to get you excited though:

When it comes to deciding where different organs will form (again, from a sub-cellular level), it essentially starts from a concentration gradient of certain proteins/chemicals inside the zygotic cell. This gradient then determines the level of activation of other proteins, each level then leading to different biochemical cascades which, once more cells have formed from the zygote, determine which organ systems will come from them. Messing around with this concentration gradient can, thus, dramatically affect an organism's development, leading to, for example, a body with just 'left' organs on both halves, just 'top' organs on both halves, missing an entire organ system (like circulatory system and heart) and so on.

A more or less similar process occurs to determine the shape of organs. As a simple example, when some animals with regenerative capabilities (like axolotls) lose a limb, they are able to regrow the limb to the exact same length as before. Turns out, each cell on the periphery of their limb has a certain concentration of receptor proteins on its surface, which acts as a molecular 'signature' of that cell's position in the limb. These signatures provide information on how far to grow the limb for regeneration, and some chemicals, lile retinol, can even override these signatures and fool the organism's body into regrowing the limb from scratch on top of the place of regeneration.

I hope these examples give you an introduction to the mechanisms involved. There's obviously a lot more involved, so I would again highly recommend textbooks and research papers if you're interested.

[–] [email protected] 8 points 5 months ago (1 children)

Last I checked (which was some time ago), pandoc-bin doesn't require the haskell dependencies. I saved quite some installation time (and screen space during installation) by switching.

[–] [email protected] 1 points 11 months ago

Indeed, an integer is divisible by 3 if and only if the sum of its digits is divisible by 3.

For proof, take the polynomial representation of an integer n = a_0 * 10^k + a_1 * 10^{k-1} + ... + a_k * 1. Note that 10 mod 3 = 1, which means that 10^i mod 3 = (10 mod 3)^i = 1. This makes all powers of 10 = 1 and you're left with n = a_0 + a_1 + ... + a_k. Thus, n is divisible by 3 iff a_0 + a_1 + ... + a_k is. Also note that iff answers your question then; all multiples of 3 have to, by definition, have digits whose sum is a multiple of 3

[–] [email protected] 1 points 11 months ago (1 children)

I see your encourageMint and raise you a stone

 

I've been following this community for some time in order to learn about self-hosting and, while I have learnt about a bunch of cool web services to host, I'm still lost on where/how to start. Does anyone have, like, a very beginner guide that is not just "install this distro and click these buttons"? I have an old laptop that runs Arch (btw), but I'm not familiar with networking at all. So anything starting from "you can check your IP address using ip a" would be appreciated.

More specifically, I have a domain that I want to point to an old laptop of mine (I intend to switch to a VPS if/when I feel like the laptop is starting to lose it). How do I expose my laptop to the internet for this to work (ideally without touching my router, because I'll be traveling quite a bit with my laptop and don't mind the occasional downtime). I assume that once I'm able to type my domain name on my mobile and see it open anything from my laptop, I can then setup all the services I want via nginx, but that's step 2. I tried to follow a few online guides but, like I mentioned, they're either too simplistic (no I don't want to move to Ubuntu Server just for this) or too complex (no I don't know how DHCP works).

Thanks in advance