Am I the only one amused by the self referential recursion paradox created by this sentence which I just read "We do not find words nor ideas offensive, and strongly believe that any attempt to portray words as violence is, in itself a violence against words."
Dont get me wrong I sorta agree with the intent here for freedom of speech and all. But i cant help but laugh at the choice of words.
Someone asked me why DNA and RNA are acids. I am **not** an expert in chemistry but I did study the basics of organic chem and do dabble a bit so I wanted to share the answer here.
Simple answer: Anything that lowers pH is an acid, RNA and DNA lower pH, therefore it is an acid.
Complex answer:
Nucleic Acids are called acids because, well, they lower pH, as anything that is an acid would. pH is, in simplistic terms, the concentration (logarithmicly) of H+ ions in a solution.
A unrelated side note with acids that dont directly donate a H+, your Lewis Acids, they still increase H+ in an aqueous solution because it effects the balance of H+ and OH- dissociation of the water itself. As such the H+ measure is still accurate. However Nucleic acids are not a Lewis Acid, they are a Bronstead-Lowry acid, which means they directly can dissociate and provide the H+ ion directly in an aqueous solution. But I'll get to that.
The individual parts of any molecule can be either acidic and basic, but a molecule overall will usually be one or the other depending on which dominates, RNA is no different, there are three major components to RNA, I attached a picture to show them. The components are a phosphate group, a sugar, and a nitrogenous base (the part that encodes data, your citosine and guanine and shit). Here is the cool part, the word base when talking about the "bases" of a strand is specifically chosen as the the word because they are themselves bases (on their own they would raise pH). Similarly the phosphor group, is also acidic, this should be obvious by its similarity to phosphoric acid. It is a proton donor for the same reason phosphoric acid is a proton donor.
So the only question remaining is why does the acidic phosphor group dominate over the Nitrogenous Base? Well for starters the the phosphate group has a pkA of near 0 , the Nitrogenous Base has a pkB of around 9.8 (depends on the base), so already the phosphate group is going to dissociate more readily than the Nitrogenous Group. However RNA strands are actually far more acidic than the individual Nucleotides that compose them happen to be. The reason for this is that RNA folds back in on itself with the bases associating with each other much like two halves of a DNA strand would. This causes the bases to be on the interior of the molecule while leaving the phosphate groups all around the outside. Since the bases are not exposed to the aqueous solution they do not dissociate as readily as they otherwise would while the phosphate groups are free to dissociate. Thus the RNA exhibits significant acidic properties.
By the way the acidic nature of RNA and DNA is intentional and functionally important. It means that the pH of the solution can be adjusted to effect the charge on the nucleotides and thus move it around. In a neutral pH solution the phosphate groups will have a negative charge. This results in the phosphates pushing each other away. This in turn can cause them to line up on opposite sides with their bases facing each other as well as help to straighten out a strand's backbone.
Jesus fricking christ this was a tough read/listen. I just finished reading through the transcripts of several dozen flight recording from crashed planes. Some of it was curiosity but I also felt a sort of duty to hear peoples last words.
Regardless it was grim, educational, and moving. here is the link
Octave solution
This implementation uses memoization, resulting in a space complexity linear in K and time complexity linear in K*|X| for some K between 1 and N inclusive.
function count = step_orders(distance, permissible_steps = [1, 2])
memos = sparse(distance, 1);
hits = (memos ~= 0);
count = step_orders_stateful(distance);
function sub_count = step_orders_stateful(sub_distance)
sub_count = 0;
for first_step = permissible_steps
remainder = sub_distance - first_step;
if remainder > 0
if ~hits(remainder)
memos(remainder) = step_orders_stateful(remainder);
hits(remainder) = true; end;
sub_count += memos(remainder);
elseif remainder == 0
sub_count += 1; end; end; end; end;
I dont follow Ellen but she is such a sweetie I do love her take on things.
I wish the ban-everyone-liberals of mastodon could learn a thing or two from her amazing maturity here.
https://www.theblaze.com/news/ellen-degeneres-responds-to-online-outrage
My mom is almost 80 years old. She’s was a lifelong democrat. The democrats now make her cringe. She hates what they stand for with a passion! She’s the type person who speaks her mind regardless of whether or not it pisses ppl off. My mom was a diehard DEM. But she’s been singing Trumps praises for the past 2.5 years to everyone she knows and she’s been blasting Dems to everyone as well. If Dems turned my mom against them there’s no doubt Dems have turned millions more against them
About to try streaming for the first time. https://www.twitch.tv/surasanji
First time playing no man's sky.!
Someone asked me why DNA and RNA are acids. I am **not** an expert in chemistry but I did study the basics of organic chem and do dabble a bit so I wanted to share the answer here.
Simple answer: Anything that lowers pH is an acid, RNA and DNA lower pH, therefore it is an acid.
Complex answer:
Nucleic Acids are called acids because, well, they lower pH, as anything that is an acid would. pH is, in simplistic terms, the concentration (logarithmicly) of H+ ions in a solution.
A unrelated side note with acids that dont directly donate a H+, your Lewis Acids, they still increase H+ in an aqueous solution because it effects the balance of H+ and OH- dissociation of the water itself. As such the H+ measure is still accurate. However Nucleic acids are not a Lewis Acid, they are a Bronstead-Lowry acid, which means they directly can dissociate and provide the H+ ion directly in an aqueous solution. But I'll get to that.
The individual parts of any molecule can be either acidic and basic, but a molecule overall will usually be one or the other depending on which dominates, RNA is no different, there are three major components to RNA, I attached a picture to show them. The components are a phosphate group, a sugar, and a nitrogenous base (the part that encodes data, your citosine and guanine and shit). Here is the cool part, the word base when talking about the "bases" of a strand is specifically chosen as the the word because they are themselves bases (on their own they would raise pH). Similarly the phosphor group, is also acidic, this should be obvious by its similarity to phosphoric acid. It is a proton donor for the same reason phosphoric acid is a proton donor.
So the only question remaining is why does the acidic phosphor group dominate over the Nitrogenous Base? Well for starters the the phosphate group has a pkA of near 0 , the Nitrogenous Base has a pkB of around 9.8 (depends on the base), so already the phosphate group is going to dissociate more readily than the Nitrogenous Group. However RNA strands are actually far more acidic than the individual Nucleotides that compose them happen to be. The reason for this is that RNA folds back in on itself with the bases associating with each other much like two halves of a DNA strand would. This causes the bases to be on the interior of the molecule while leaving the phosphate groups all around the outside. Since the bases are not exposed to the aqueous solution they do not dissociate as readily as they otherwise would while the phosphate groups are free to dissociate. Thus the RNA exhibits significant acidic properties.
By the way the acidic nature of RNA and DNA is intentional and functionally important. It means that the pH of the solution can be adjusted to effect the charge on the nucleotides and thus move it around. In a neutral pH solution the phosphate groups will have a negative charge. This results in the phosphates pushing each other away. This in turn can cause them to line up on opposite sides with their bases facing each other as well as help to straighten out a strand's backbone.
Okay, here is another freebie.
This problem was asked by Amazon.
There exists a staircase with N steps, and you can climb up either 1 or 2 steps at a time. Given N, write a function that returns the number of unique ways you can climb the staircase. The order of the steps matters.
For example, if N is 4, then there are 5 unique ways:
1, 1, 1, 1
2, 1, 1
1, 2, 1
1, 1, 2
2, 2
What if, instead of being able to climb 1 or 2 steps at a time, you could climb any number from a set of positive integers X? For example, if X = {1, 3, 5}, you could climb 1, 3, or 5 steps at a time.
This looks sorta epic, gonna try it
asking for help ($)
I could use some help this month. I've got interviews lined up, but in the best case they won't pay out until the end of the month, and in the meantime, I need to be able to eat.
If you can help out, by contributing or boosting, I'd really appreciate it.
https://www.liberapay.com/joyeusenoelle
https://paypal.me/joyeusenoelle
https://venmo.com/Noelle-Anthony-2
Thank you for pitching in and spreading the word!
This poll has me thinking about abandoning the Ruby choice (what I was going to go with)... leaning towards Haskell now. Python maybe too but it is the least enjoyable of the 4 for me...
2,000 Atoms Exist in Two Places at Once in Unprecedented Quantum Experiment
https://www.livescience.com/2000-atoms-in-two-places-at-once.html
So apparently under water VR is a real thing now and its the first thing in VR that has excited me.
This was pretty epic cover
Jeffrey Phillips Freeman
Innovator & Entrepreneur in Machine Learning, Evolutionary Computing & Big Data. Avid SCUBA diver, Open-source developer, HAM radio operator, astrophotographer, and anything nerdy.
Born and raised in Philadelphia, PA, USA, currently living in Utrecht, Netherlands, USA, and Thailand. Was also living in Israel, but left.
Pronouns: Sir / Mister
(Above pronouns are not intended to mock, i will respect any persons pronouns and only wish pronouns to show respect be used with me as well. These are called neopronouns, see an example of the word "frog" used as a neopronoun here: http://tinyurl.com/44hhej89 )
A proud member of the Penobscot Native American tribe, as well as a Mayflower passenger descendant. I sometimes post about my genealogical history.
My stance on various issues:
Education: Free to PhD, tax paid
Abortion: Protected, tax paid, limited time-frame
Welfare: Yes, no one should starve
UBI: No, use welfare
Racism: is real
Guns: Shall not be infringed
LGBT+/minorities: Support
Pronouns: Will respect
Trump: Moron, evil
Biden: Senile, racist
Police: ACAB
Drugs: Fully legal, no prescriptions needed
GPG/PGP Fingerprint: 8B23 64CD 2403 6DCB 7531 01D0 052D DA8E 0506 CBCE