Her logic seems reasonable but stating that the fibers "return to their original crinkled state" is missing the fact that the fiber go through the process of spinning to improve tensile strength (as well as the options of making an infinite yarn from finite fibers by twisting them together). regardless to return to original "crinckled state" they need to overcome those forces as well as the forces of the geometry of the knit(on a different scale).
BTW Rayon is also made from cellulose, cellulose II. While Cellulose I(natural) is metastable it can be converted by disolving in lye to a stable form (beta-gllocouse molecolue chain goes from being parallel to being anti parllel which increases the # of hydrogen bonds as well as helping create a more stable 3d structure) which again improve tensile strength and resist wrinkles on a different scale.
Here's another youtuber journey to fix the lactose intolerance by just eating lactose(powdered milk)("prebiotic") which had strains of a bacteria("probiotic" which feasts on the prebiotic) that breaks down lactose survives in the microbiome
https://www.youtube.com/watch?v=h90rEkbx95w
Inspired by this post & TF comment I tried symbollic regression [0]
Basically it uses genetic algorithm to find a formula that matches known input and output vectors with minimal loss
I tried to force it to use pi constant but was unable
I don't have much expreience with this library but I'm sure with more tweaks you'll get the right result
from pysr import PySRRegressor
def f(n):
if n % 15 == 0:
return 3
elif n%5 == 0:
return 2
elif n%3 == 0:
return 1
return 0
n = 500
X = np.array(range(1,n)).reshape(-1,1)
Y = np.array([f(n) for n in range(1,n)]).reshape(-1,1)
model = PySRRegressor(
maxsize=25,
niterations=200, # < Increase me for better results
binary_operators=["+", "*"],
unary_operators=["cos", "sin", "exp"],
elementwise_loss="loss(prediction, target) = (prediction - target)^2",
with compleixty 22 loss: 0.000015800686
The first term is close to 2/3 * cos(2pi*n/3) which is featured in the actual formula in the article. the constant doesn't compare to 11/15 though
I didn't knew community/public whitelists exist, nor any browser extension that uses whitelists and blocks all other connections by default, like uMatrix does. Do you have any examples?
A question for strcat / other Graphene developers:
Can you clarify what can one expect from legacy extended support. Will old devices get any more updates? how long, how often, is it just security patches etc..
Not a dev, but legacy extended support means that there are no more feature updates, i.e., no new Android versions or QPRs, only AOSP security backports.
Obviously there aren't any firmware patches either, as these devices are unsupported by the manufacturer, who is responsible for delivering any changes to the firmware.
These so-called "hardening scripts" cause a lot of issues and volunteers have to waste their time helping clueless users who copied them without understanding what they do.
I see you're quite active regarding FF. Nevertheless I'm not sure what you're talking about. I've installed Betterfox ESR on Windows, Linux and Android with no apparent issues.
BTW Rayon is also made from cellulose, cellulose II. While Cellulose I(natural) is metastable it can be converted by disolving in lye to a stable form (beta-gllocouse molecolue chain goes from being parallel to being anti parllel which increases the # of hydrogen bonds as well as helping create a more stable 3d structure) which again improve tensile strength and resist wrinkles on a different scale.