<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Solution &amp;mdash; Paul Sutton</title>
    <link>https://personaljournal.ca/paulsutton/tag:Solution</link>
    <description>Personal Blog</description>
    <pubDate>Tue, 05 May 2026 16:32:16 +0000</pubDate>
    <item>
      <title>Solute calculator</title>
      <link>https://personaljournal.ca/paulsutton/solute-calculator-c98y</link>
      <description>&lt;![CDATA[Solute calculator&#xA;&#xA;This is a basic Python program to calculate how much solute is needed to make a particular concentration of a chemical for a given solution.&#xA;&#xA;Enter mass of chemical, volume and concentration required.  Program will calculate required solute needed.&#xA;&#xA;Chemical solute calculator&#xA;print(&#34;Chemical solute calculator&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;This program will ask you for some basic data and will then calculate how much solute is needed for a given volume and concentration&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;1 mol solution is formula weight in 1 liter of water&#34;)&#xA;print(&#34;&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Mass is the molecular mass of the chemical solution you&#39;re making e.,g Copper Sulfate is 249g&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Volume the total solution volume in litres,  100ml is written as 0.100&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Concentration required in Mols&#34;)&#xA;print(&#34; &#34;)&#xA;mass = input (&#34;Mass in g: &#34;) &#xA;print(&#34;Solute requred&#34;)&#xA;volume = input(&#34;Volume in l: &#34;)&#xA;print((volume) + &#34; l&#34;)&#xA;conc = input (&#34;Required Concentration in M: &#34;) &#xA;&#xA;solute = float(mass)  float(volume)  float(conc)&#xA;print(&#34;Solute required: &#34;)&#xA;print(str(solute) + &#34; g&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Note:  This program is a guide, and you should double check calculations&#34;)&#xA;There is a better online solution to this here&#xA;&#xA;Program 2&#xA;&#xA;This is a related ruby program to calculate different molar masses&#xA;&#xA;molar weight calculator&#xA;puts &#34;molecular weight calculator&#34;&#xA;puts&#xA;print &#34;Enter Weight: &#34;&#xA;weight = gets&#xA;print (&#34;Weight :&#34;); &#xA;print (weight)&#xA;puts &#xA;print (&#34;0.5 Mol: &#34;)&#xA;print weight.tof / 2&#xA;puts&#xA;print (&#34;2 Mol: &#34;)&#xA;print weight.toi  2&#xA;puts &#xA;print (&#34;4 Mol: &#34;)&#xA;print weight.toi  4&#xA;puts&#xA;puts &#xA;print (&#34;End&#34;)&#xA;&#xA;Enter a molecular weight, and it will calculate 1/2, 2 and 4 moles accordingly.   It is not perfect,  just works.&#xA;&#xA;Tags&#xA;&#xA;#Science,#Chemistry,#Calculator,#Mole,#Solution,#Solute&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Solute calculator</p>

<p>This is a basic Python program to calculate how much solute is needed to make a particular concentration of a chemical for a given solution.</p>

<p>Enter mass of chemical, volume and concentration required.  Program will calculate required solute needed.</p>

<pre><code>#Chemical solute calculator
print(&#34;Chemical solute calculator&#34;)
print(&#34; &#34;)
print(&#34;This program will ask you for some basic data and will then calculate how much solute is needed for a given volume and concentration&#34;)
print(&#34; &#34;)
print(&#34;1 mol solution is formula weight in 1 liter of water&#34;)
print(&#34;&#34;)
print(&#34; &#34;)
print(&#34;Mass is the molecular mass of the chemical solution you&#39;re making e.,g Copper Sulfate is 249g&#34;)
print(&#34; &#34;)
print(&#34;Volume the total solution volume in litres,  100ml is written as 0.100&#34;)
print(&#34; &#34;)
print(&#34;Concentration required in Mols&#34;)
print(&#34; &#34;)
mass = input (&#34;Mass in g: &#34;) 
#print(&#34;Solute requred&#34;)
volume = input(&#34;Volume in l: &#34;)
print((volume) + &#34; l&#34;)
conc = input (&#34;Required Concentration in M: &#34;) 

solute = float(mass) * float(volume) * float(conc)
print(&#34;Solute required: &#34;)
print(str(solute) + &#34; g&#34;)
print(&#34; &#34;)
print(&#34;Note:  This program is a guide, and you should double check calculations&#34;)
</code></pre>

<p>There is a better online solution to this <a href="https://www.physiologyweb.com/calculators/molar_solution_concentration_calculator.html" rel="nofollow">here</a></p>

<p>Program 2</p>

<p>This is a related ruby program to calculate different molar masses</p>

<pre><code># molar weight calculator
puts &#34;molecular weight calculator&#34;
puts
print &#34;Enter Weight: &#34;
weight = gets
print (&#34;Weight :&#34;); 
print (weight)
puts 
print (&#34;0.5 Mol: &#34;)
print weight.to_f / 2
puts
print (&#34;2 Mol: &#34;)
print weight.to_i * 2
puts 
print (&#34;4 Mol: &#34;)
print weight.to_i * 4
puts
puts 
print (&#34;End&#34;)

</code></pre>

<p>Enter a molecular weight, and it will calculate ½, 2 and 4 moles accordingly.   It is not perfect,  just works.</p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Science" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Science</span></a>,<a href="/paulsutton/tag:Chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Chemistry</span></a>,<a href="/paulsutton/tag:Calculator" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Calculator</span></a>,<a href="/paulsutton/tag:Mole" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Mole</span></a>,<a href="/paulsutton/tag:Solution" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solution</span></a>,<a href="/paulsutton/tag:Solute" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solute</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/solute-calculator-c98y</guid>
      <pubDate>Sat, 07 Dec 2024 09:05:54 +0000</pubDate>
    </item>
    <item>
      <title>Solute calculator</title>
      <link>https://personaljournal.ca/paulsutton/solute-calculator</link>
      <description>&lt;![CDATA[Solute calculator&#xA;&#xA;There is website tool for calculating the amount of solute needed for a given volume and concentration.   This can be found here&#xA;&#xA;I just put this together in python3&#xA;&#xA;V2.0&#xA;&#xA;Chemical solute calculator&#xA;print(&#34;Chemical solute calculator&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;This program will ask you for some basic data and will then calculate how much solute is needed for a given volume and concentration&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;1 mol solution is formula weight in 1 liter of water&#34;)&#xA;print(&#34;&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Mass is the molecular mass of the chemical solution you&#39;re making e.,g Copper Sulfate is 249g&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Volume the total solution volume in litres,  100ml is written as 0.100&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Concentration required in Mols&#34;)&#xA;print(&#34; &#34;)&#xA;mass = input (&#34;Mass in g: &#34;) &#xA;print(&#34;Solute requred&#34;)&#xA;volume = input(&#34;Volume in l: &#34;)&#xA;print((volume) + &#34; l&#34;)&#xA;conc = input (&#34;Required Concentration in M: &#34;) &#xA;&#xA;solute = float(mass)  float(volume)  float(conc)&#xA;print(&#34;Solute required: &#34;)&#xA;print(str(solute) + &#34; g&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;Note:  This program is a guide, and you should double check calculations&#34;)&#xA;&#xA;Chemical solute calculator&#xA;print(&#34;Chemical solute calculator&#34;)&#xA;print(&#34; &#34;)&#xA;print(&#34;This program will ask you for some basic data and then calculate how much solute is needed for a given volume and concentration&#34;)&#xA;print(&#34; &#34;)&#xA;mass = input (&#34;Mass in g: &#34;) &#xA;print(&#34;Solute requred&#34;)&#xA;volume = input(&#34;Volume in l: &#34;)&#xA;print((volume) + &#34; l&#34;)&#xA;conc = input (&#34;Required Concentration in M: &#34;) &#xA;&#xA;solute = float(mass)  float(volume)  float(conc)&#xA;print(solute)&#xA;&#xA;Note: This is just meant to work and perform a single function.  I have not added error checking, so values are numerical. &#xA;&#xA;Tags&#xA;&#xA;#Calculator,#Solute,#Chemistry,#Solution,#Volume,#Mols&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Solute calculator</p>

<p>There is website tool for calculating the amount of solute needed for a given volume and concentration.   This can be <a href="https://www.physiologyweb.com/calculators/molar_solution_concentration_calculator.html" rel="nofollow">found here</a></p>

<p>I just put this together in python3</p>

<p>V2.0</p>

<pre><code>#Chemical solute calculator
print(&#34;Chemical solute calculator&#34;)
print(&#34; &#34;)
print(&#34;This program will ask you for some basic data and will then calculate how much solute is needed for a given volume and concentration&#34;)
print(&#34; &#34;)
print(&#34;1 mol solution is formula weight in 1 liter of water&#34;)
print(&#34;&#34;)
print(&#34; &#34;)
print(&#34;Mass is the molecular mass of the chemical solution you&#39;re making e.,g Copper Sulfate is 249g&#34;)
print(&#34; &#34;)
print(&#34;Volume the total solution volume in litres,  100ml is written as 0.100&#34;)
print(&#34; &#34;)
print(&#34;Concentration required in Mols&#34;)
print(&#34; &#34;)
mass = input (&#34;Mass in g: &#34;) 
#print(&#34;Solute requred&#34;)
volume = input(&#34;Volume in l: &#34;)
print((volume) + &#34; l&#34;)
conc = input (&#34;Required Concentration in M: &#34;) 

solute = float(mass) * float(volume) * float(conc)
print(&#34;Solute required: &#34;)
print(str(solute) + &#34; g&#34;)
print(&#34; &#34;)
print(&#34;Note:  This program is a guide, and you should double check calculations&#34;)
</code></pre>

<pre><code>#Chemical solute calculator
print(&#34;Chemical solute calculator&#34;)
print(&#34; &#34;)
print(&#34;This program will ask you for some basic data and then calculate how much solute is needed for a given volume and concentration&#34;)
print(&#34; &#34;)
mass = input (&#34;Mass in g: &#34;) 
print(&#34;Solute requred&#34;)
volume = input(&#34;Volume in l: &#34;)
print((volume) + &#34; l&#34;)
conc = input (&#34;Required Concentration in M: &#34;) 


solute = float(mass) * float(volume) * float(conc)
print(solute)

</code></pre>

<p><strong>Note</strong>: This is just meant to work and perform a single function.  I have not added error checking, so values are numerical.</p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Calculator" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Calculator</span></a>,<a href="/paulsutton/tag:Solute" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solute</span></a>,<a href="/paulsutton/tag:Chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Chemistry</span></a>,<a href="/paulsutton/tag:Solution" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solution</span></a>,<a href="/paulsutton/tag:Volume" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Volume</span></a>,<a href="/paulsutton/tag:Mols" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Mols</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/solute-calculator</guid>
      <pubDate>Sun, 17 Sep 2023 19:57:43 +0000</pubDate>
    </item>
    <item>
      <title>Every Author as First Author</title>
      <link>https://personaljournal.ca/paulsutton/every-author-as-first-author</link>
      <description>&lt;![CDATA[Every Author as First Author&#xA;&#xA;This looks like a great idea &#xA;&#xA;    We propose a new standard for writing author names on papers and in bibliographies, which places every author as a first author -- superimposed. This approach enables authors to write papers as true equals, without any advantage given to whoever&#39;s name happens to come first alphabetically (for example). We develop the technology for implementing this standard in LaTeX, BibTeX, and HTML; show several examples; and discuss further advantages. &#xA;&#xA;Every Author as First Author&#xA;   Fediverse post&#xA;Science Forums&#xA;&#xA;Tags&#xA;&#xA;#Science,#Papers,#Author,#Fairness,#Solution,#Proposal&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Every Author as First Author</p>

<p>This looks like a great idea</p>

<pre><code>    We propose a new standard for writing author names on papers and in bibliographies, which places every author as a first author -- superimposed. This approach enables authors to write papers as true equals, without any advantage given to whoever&#39;s name happens to come first alphabetically (for example). We develop the technology for implementing this standard in LaTeX, BibTeX, and HTML; show several examples; and discuss further advantages. 
</code></pre>
<ul><li><a href="https://arxiv.org/abs/2304.01393" rel="nofollow">Every Author as First Author</a>
<ul><li><a href="https://qoto.org/web/statuses/110339449803367184" rel="nofollow">Fediverse post</a></li></ul></li>
<li><a href="https://www.scienceforus.net" rel="nofollow">Science Forums</a></li></ul>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Science" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Science</span></a>,<a href="/paulsutton/tag:Papers" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Papers</span></a>,<a href="/paulsutton/tag:Author" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Author</span></a>,<a href="/paulsutton/tag:Fairness" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Fairness</span></a>,<a href="/paulsutton/tag:Solution" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solution</span></a>,<a href="/paulsutton/tag:Proposal" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Proposal</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/every-author-as-first-author</guid>
      <pubDate>Tue, 16 May 2023 06:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Home Chemistry 11 - Making a Citric Acid solution</title>
      <link>https://personaljournal.ca/paulsutton/home-chemistry-11-making-a-citric-acid-solution</link>
      <description>&lt;![CDATA[Home Chemistry 11 - Making a Citric Acid solution&#xA;&#xA;This post has now been moved to my new website &#xA;&#xA;Further to the previous post on making molar solutions I am going to make up a 250ml solution of Citric acid.&#xA;&#xA;So based on my previous calculations &#xA;&#xA;1 Molar solution is formula weight in 1 litre of Water&#xA;&#xA;Molar Weight of Citric acid 192.19&#xA;Amount of Water = 250ml (0.250 l)&#xA;&#xA;Therefore&#xA;&#xA;192.19 / 4 = 48.03g&#xA;&#xA;I can weigh this out easy enough now that I have got some small scales (which are actually used for weighing jewellery) but are really good as they measure to 2 decimal places. Granted max is about 200g, but for what I am doing in chemistry this doesn&#39;t matter too much.&#xA;&#xA;make citric acid 1&#xA;&#xA;The first task is to weigh out the required amount of Powder.&#xA;&#xA;make citric acid 2&#xA;&#xA;Given I wanted 48.03g,  I think for the purpose of home chemistry this is fine.&#xA;&#xA;make citric acid 3&#xA;&#xA;For the next step I mixed the powder with about 200ml water, stirred well then  poured (via funnel) in to a conical flask and topped up to about 250ml (note the flask is approximate.) I may be just over.  in a proper laboratory, I would have access to a volumetric flask, which is more accurate.  I am making do with what I have. &#xA;&#xA;I would probably have access to some help with this too. &#xA;&#xA;make citric acid 4&#xA;&#xA;Finally, the solution is poured (via funnel) in to a suitable bottle, that I have already put a label etc on.&#xA;&#xA;This is now stored safely before being taken down to the Library. &#xA;&#xA;We can then use this for various experiments such as adding to alkalis,  using indicator (paper or liquid) or whatever else we decide to do). &#xA;&#xA;There is a really nice calculation tool which you can use to help or at least double check calculations. &#xA;&#xA;#HomeChemistry11,#Chemistry,#Science,#HomeChemistry,#CitricAcid,#Solution,#Molar,#Concentration&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Home Chemistry 11 – Making a Citric Acid solution</p>

<p>This post has now been moved to my <a href="https://zleap.net/blog/making-a-citric-acid-solution" rel="nofollow">new website</a></p>

<p>Further to the previous post on making <a href="https://personaljournal.ca/paulsutton/" rel="nofollow">molar solutions</a> I am going to make up a 250ml solution of Citric acid.</p>

<p>So based on my previous calculations</p>

<p><em>1 Molar solution is formula weight in 1 litre of Water</em></p>

<p>Molar Weight of Citric acid 192.19
Amount of Water = 250ml (0.250 l)</p>

<p>Therefore</p>

<p>192.19 / 4 = 48.03g</p>

<p>I can weigh this out easy enough now that I have got some small scales (which are actually used for weighing jewellery) but are really good as they measure to 2 decimal places. Granted max is about 200g, but for what I am doing in chemistry this doesn&#39;t matter too much.</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/makingcitricacid1.JPG" alt="make citric acid 1"></p>

<p>The first task is to weigh out the required amount of Powder.</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/makingcitricacid2.JPG" alt="make citric acid 2"></p>

<p>Given I wanted 48.03g,  I think for the purpose of home chemistry this is fine.</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/makingcitricacid3.JPG" alt="make citric acid 3"></p>

<p>For the next step I mixed the powder with about 200ml water, stirred well then  poured (via funnel) in to a conical flask and topped up to about 250ml (<strong>note</strong> the flask is approximate.) I may be just over.  in a proper laboratory, I would have access to a volumetric flask, which is more accurate.  I am making do with what I have.</p>

<p>I would probably have access to some help with this too.</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/makingcitricacid14.JPG" alt="make citric acid 4"></p>

<p>Finally, the solution is poured (via funnel) in to a suitable bottle, that I have already put a label etc on.</p>

<p>This is now stored safely before being taken down to the Library.</p>

<p>We can then use this for various experiments such as adding to alkalis,  using indicator (paper or liquid) or whatever else we decide to do).</p>

<p>There is a really nice <a href="https://www.physiologyweb.com/calculators/molar_solution_concentration_calculator.html" rel="nofollow">calculation tool</a> which you can use to help or at least double check calculations.</p>

<p><a href="/paulsutton/tag:HomeChemistry11" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">HomeChemistry11</span></a>,<a href="/paulsutton/tag:Chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Chemistry</span></a>,<a href="/paulsutton/tag:Science" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Science</span></a>,<a href="/paulsutton/tag:HomeChemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">HomeChemistry</span></a>,<a href="/paulsutton/tag:CitricAcid" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CitricAcid</span></a>,<a href="/paulsutton/tag:Solution" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solution</span></a>,<a href="/paulsutton/tag:Molar" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Molar</span></a>,<a href="/paulsutton/tag:Concentration" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Concentration</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/home-chemistry-11-making-a-citric-acid-solution</guid>
      <pubDate>Tue, 14 Feb 2023 07:30:00 +0000</pubDate>
    </item>
    <item>
      <title>Home Chemistry 3 - Molar Solutions</title>
      <link>https://personaljournal.ca/paulsutton/home-chemistry-3-molar-solutions</link>
      <description>&lt;![CDATA[Home Chemistry 3 - Molar Solutions&#xA;&#xA;Last year, I had a go at preparing a known concentration 1M of Sodium Chloride (Salt).  Using the instructions at Quora.&#xA;&#xA;How many grams of sodium chloride are required to prepare 250 mL of a solution of 1M sodium chloride?&#xA;&#xA;In order to some chemicals for future use.  I will use the same instructions to create a known concentration of Citric Acid,  given I want to test the reactivity between this and various metals, in a similar way to my previous experiment in Home Chemistry 1&#xA;&#xA;Calculations&#xA;&#xA;Decide how much solution is needed - 250ml&#xA;Determine Molar mass of Citric Acid&#xA;  According to PubChem this is 192.12g&#xA;Work out how much solid powder is needed&#xA;  Given 1 Mol is the molecular weight in 1 litire of water&#xA;We are producing 250ml - so need to weigh out 1/4 of the molar mass&#xA; 192.12 / 4 = 48.03g&#xA;So based on the instructions I found for NaCl&#xA;We need to dissolve 48.03g in 250ml of Water to produce 250ml 1 molar concentration of Citric Acid &#xA;&#xA;Safety&#xA;&#xA;Refer to data sheet - We know that Citric Acid is a Irritant,  therefore it would be prudent to stick the CORRECT label on the bottle storing the solution.&#xA;Correctly label the bottle&#xA;Wear goggles when preparing the solution&#xA;Wear gloves and Lab Coat&#xA;Clean Surfaces&#xA;Wash hands when finished&#xA;&#xA;Equipment&#xA;&#xA;Scales or Balance&#xA;Volumetric Flask 1&#xA;Stirrer&#xA;Spatula&#xA;Paper to write notes&#xA;Paper to put on scales for powder&#xA;Funnel&#xA;Label saying 250ml 1 mol Citric Acid&#xA;Label giving formula and Molar weight&#xA;Irritant label&#xA;&#xA;Equipment Replacement&#xA;&#xA;1 As I don&#39;t have a volumetric Flask,  I can use a 250 or 500ml Conical Flask&#xA;&#xA;Considerations&#xA;&#xA;My weighing scales are only basic and do not measure to 2 decimal places,  there for we can weigh out 48g.   As this is for home chemistry, while accuracy is important,   we can probably make minor compromises. &#xA;&#xA;Chemicals&#xA;&#xA;Water&#xA;Citric Acid Powder&#xA;&#xA;Method&#xA;&#xA;Read fully first&#xA;&#xA;Prepare equipment&#xA;Measure out 250ml Water&#xA;Fold paper in 1/2&#xA;Unfold paper&#xA;Put paper on scales&#xA;Ensure Scales are ZERO&#xA;Weigh out required amount of Citric Acid Powder&#xA;Pour powder in to flask and stir or move flask around in a circular motion* &#xA;Pour solution in to suitable container&#xA;Stick on labels&#xA;Wash up and dry equipment &#xA;10. Wipe down surfaces etc&#xA;11. Wash hands&#xA;12. Store solution safely&#xA;&#xA;Note the fold in the paper,just makes this easier.&#xA;&#xA;You may need to pour small amounts in to the flash,  and dissolve before adding more&#xA;&#xA;Further reading and advice&#xA;&#xA;There will be a related thread on Science Forums for this, as I want to double check everything is correct.  &#xA;&#xA;Tags&#xA;&#xA;#Home,#Chemistry,#HomeChemistry3,#Molar,#Solution,#CitricAcid&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Home Chemistry 3 – Molar Solutions</p>

<p>Last year, I had a go at preparing a known concentration 1M of Sodium Chloride (Salt).  Using the instructions at Quora.</p>
<ul><li><a href="https://www.quora.com/How-many-grams-of-sodium-chloride-are-required-to-prepare-250-mL-of-a-solution-of-1M-sodium-chloride?share=1" rel="nofollow">How many grams of sodium chloride are required to prepare 250 mL of a solution of 1M sodium chloride?</a></li></ul>

<p>In order to some chemicals for future use.  I will use the same instructions to create a known concentration of Citric Acid,  given I want to test the reactivity between this and various metals, in a similar way to my previous experiment in <a href="https://personaljournal.ca/paulsutton/home-chemistry-1" rel="nofollow">Home Chemistry 1</a></p>

<p><strong>Calculations</strong></p>
<ol><li>Decide how much solution is needed – 250ml</li>
<li>Determine Molar mass of Citric Acid
<ul><li>According to <a href="https://pubchem.ncbi.nlm.nih.gov/compound/Citric-acid" rel="nofollow">PubChem</a> this is 192.12g</li></ul></li>
<li>Work out how much solid powder is needed
<ul><li>Given 1 Mol is the molecular weight in 1 litire of water</li></ul></li>
<li>We are producing 250ml – so need to weigh out ¼ of the molar mass
<ul><li>192.12 / 4 = 48.03g</li></ul></li>
<li>So based on the instructions I found for NaCl</li>
<li>We need to dissolve 48.03g in 250ml of Water to produce 250ml 1 molar concentration of Citric Acid</li></ol>

<p><strong>Safety</strong></p>
<ol><li>Refer to data sheet – We know that Citric Acid is a Irritant,  therefore it would be prudent to stick the CORRECT label on the bottle storing the solution.</li>
<li>Correctly label the bottle</li>
<li>Wear goggles when preparing the solution</li>
<li>Wear gloves and Lab Coat</li>
<li>Clean Surfaces</li>
<li>Wash hands when finished</li></ol>

<p><strong>Equipment</strong></p>
<ul><li>Scales or Balance</li>
<li>Volumetric Flask *1</li>
<li>Stirrer</li>
<li>Spatula</li>
<li>Paper to write notes</li>
<li>Paper to put on scales for powder</li>
<li>Funnel</li>
<li>Label saying 250ml 1 mol Citric Acid</li>
<li>Label giving formula and Molar weight</li>
<li>Irritant label</li></ul>

<p><strong>Equipment Replacement</strong></p>

<p>*1 As I don&#39;t have a volumetric Flask,  I can use a 250 or 500ml Conical Flask</p>

<p><strong>Considerations</strong></p>

<p>My weighing scales are only basic and do not measure to 2 decimal places,  there for we can weigh out 48g.   As this is for home chemistry, while accuracy is important,   we can probably make minor compromises.</p>

<p><strong>Chemicals</strong></p>
<ul><li>Water</li>
<li>Citric Acid Powder</li></ul>

<p><strong>Method</strong></p>

<p><strong>Read fully first</strong></p>
<ol><li>Prepare equipment</li>
<li>Measure out 250ml Water</li>
<li>Fold paper in ½</li>
<li>Unfold paper</li>
<li>Put paper on scales</li>
<li>Ensure Scales are ZERO</li>
<li>Weigh out required amount of Citric Acid Powder</li>
<li>Pour powder in to flask and stir or move flask around in a circular motion*</li>
<li>Pour solution in to suitable container</li>
<li>Stick on labels</li>
<li>Wash up and dry equipment</li>
<li>Wipe down surfaces etc</li>
<li>Wash hands</li>
<li>Store solution safely</li></ol>

<p><strong>Note</strong> the fold in the paper,just makes this easier.</p>
<ul><li>You may need to pour small amounts in to the flash,  and dissolve before adding more</li></ul>

<p><strong>Further reading and advice</strong></p>

<p>There will be a related thread on <a href="https://www.scienceforums.net/topic/128509-molar-solutions/" rel="nofollow">Science Forums</a> for this, as I want to double check everything is correct.</p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Home" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Home</span></a>,<a href="/paulsutton/tag:Chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Chemistry</span></a>,<a href="/paulsutton/tag:HomeChemistry3" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">HomeChemistry3</span></a>,<a href="/paulsutton/tag:Molar" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Molar</span></a>,<a href="/paulsutton/tag:Solution" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solution</span></a>,<a href="/paulsutton/tag:CitricAcid" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CitricAcid</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/home-chemistry-3-molar-solutions</guid>
      <pubDate>Sat, 07 Jan 2023 17:45:38 +0000</pubDate>
    </item>
    <item>
      <title>Making chemical solutions</title>
      <link>https://personaljournal.ca/paulsutton/making-chemical-solutions</link>
      <description>&lt;![CDATA[Making chemical solutions&#xA;&#xA;An important part of Chemistry is the ability to make up solutions of a known concentration.   This can sound quite complex, however it doesn&#39;t need to be.&#xA;&#xA;The following is some simple instructions that will produce 250m of 1molar concentration of Sodium Chloride&#xA;&#xA;I have made this solution up using pure Sodium Chloride, from a chemical supplier [1], rather than table salt which contains Sodium Ferrocyanide.  If you need extra help with this try asking on Science forums [2] as there is a section on there for home chemistry.&#xA;&#xA;I am also on the IRCNow network, where we are starting up a channel to discuss amateur / home science. &#xA;&#xA;Links&#xA;&#xA;1 Better Equipped&#xA;2 Science Forums&#xA;   3 Amateur Science&#xA;&#xA;Tags&#xA;&#xA;#Chemistry,#NaCl,#SodiumChloride,#Molar,#Mol,#Solution,&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Making chemical solutions</p>

<p>An important part of Chemistry is the ability to make up solutions of a known concentration.   This can sound quite complex, however it doesn&#39;t need to be.</p>

<p>The following is some simple instructions that will produce <a href="https://www.quora.com/How-many-grams-of-sodium-chloride-are-required-to-prepare-250-mL-of-a-solution-of-1M-sodium-chloride?share=1" rel="nofollow">250m of 1molar concentration of Sodium Chloride</a></p>

<p>I have made this solution up using pure Sodium Chloride, from a chemical supplier [1], rather than table salt which contains Sodium Ferrocyanide.  If you need extra help with this try asking on Science forums [2] as there is a section on there for home chemistry.</p>

<p>I am also on the IRCNow network, where we are starting up a channel to discuss amateur / home science.</p>

<p><strong>Links</strong></p>

<p>1 <a href="https://www.betterequipped.co.uk/" rel="nofollow">Better Equipped</a>
2 <a href="https://www.scienceforums.net" rel="nofollow">Science Forums</a>
   3 <a href="https://www.scienceforums.net/forum/78-amateur-science/" rel="nofollow">Amateur Science</a></p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Chemistry" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Chemistry</span></a>,<a href="/paulsutton/tag:NaCl" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">NaCl</span></a>,<a href="/paulsutton/tag:SodiumChloride" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">SodiumChloride</span></a>,<a href="/paulsutton/tag:Molar" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Molar</span></a>,<a href="/paulsutton/tag:Mol" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Mol</span></a>,<a href="/paulsutton/tag:Solution" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Solution</span></a>,</p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/making-chemical-solutions</guid>
      <pubDate>Tue, 30 Aug 2022 17:03:51 +0000</pubDate>
    </item>
    <item>
      <title>Youtube-dl out of date</title>
      <link>https://personaljournal.ca/paulsutton/youtube-dl-out-of-date</link>
      <description>&lt;![CDATA[Youtube-dl out of date&#xA;&#xA;The youtube-dl tool on Debian 10 is out of date, it seems even the sid version is behind, by a good few months.  &#xA;&#xA;After some searching I have found a way to fix this.  &#xA;&#xA;Please note you need to do you OWN RESEARCH in to fixing this.  I am not responsible for loss or problems caused by following what I have put here.&#xA;&#xA;Firstly I was getting the following error&#xA;&#xA;youtube-dl https://www.youtube.com/watch?v=0JSHubLg7NE&#xA;[youtube] 0JSHubLg7NE: Downloading webpage&#xA;[youtube] 0JSHubLg7NE: Downloading video info webpage&#xA;ERROR: 0JSHubLg7NE: YouTube said: This video is unavailable.&#xA;&#xA;The webpage here was a little helpful &#xA;&#xA;*https://askubuntu.com/questions/1200552/youtube-dl-troubleshooting-error-this-video-is-unavailable&#xA;&#xA;In providing an explanation and some fixes.&#xA;&#xA;Firstly on Debian the internal update option is disabled so &#xA;&#xA;youtube-dl -U&#xA;&#xA;Won&#39;t work,  reading further this seems to download the latest version&#xA;&#xA;While the above instructions worked for me, The old version was still installed, this needs to be removed so doing this before hand may help.&#xA;&#xA;However if you want to check the current version before removing you can use:&#xA;&#xA;youtube-dl --version&#xA;&#xA;Then remove with: &#xA;&#xA;apt remove youtube-dl -&#xA;&#xA;The instructions &#xA;&#xA;wget http://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl&#xA;&#xA;You will still need to change the permissions as per above website. I am not repeating them here, you need to read up.&#xA;&#xA;However - Debian appears to expect youtube-dl to be in /usr/bin. &#xA;&#xA;The above solution downloads to /usr/local/bin/youtube-dl,  you can either put in the path manually when running as in:&#xA;&#xA;/usr/local/bin/youtube-dl https://www.youtube.com/watch?v=0JSHubLg7NE&#xA;&#xA;Which gets rather tedious to keep doing that.&#xA;&#xA;In order to get round this, I have copied the binary to where Debian wants it&#xA;&#xA;cp /usr/local/bin/youtube-dl /usr/bin/youtube-dl&#xA;&#xA;Which seems to work for me,  but is probably the wrong way to go about doing this. &#xA;&#xA;You can now find the version that is now installed by using&#xA;&#xA;youtube-dl --version&#xA;&#xA;2020.01.24&#xA;&#xA;Hopefully this is useful. You need to do your own research but the problem is fixable.  &#xA;&#xA;Once you have upgraded you can download youtube videos in the normal way with youtube-dl.&#xA;&#xA;#debian, #youtube-dl, #error, #fix, #solution, #gnu, #linux&#xA;&#xA;You can find me on Friendica at zleap@social.isurf.ca&#xA;&#xA;---&#xA;&#xA;cc-by logo&#xA;&#xA;Licenced under Attribution 4.0 International (CC BY 4.0)&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Youtube-dl out of date</p>

<p>The youtube-dl tool on Debian 10 is out of date, it seems even the sid version is behind, by a good few months.</p>

<p>After some searching I have found a way to fix this.</p>

<p><strong>Please note you need to do you OWN RESEARCH in to fixing this.  I am not responsible for loss or problems caused by following what I have put here.</strong></p>

<p>Firstly I was getting the following error</p>

<p>youtube-dl <a href="https://www.youtube.com/watch?v=0JSHubLg7NE" rel="nofollow">https://www.youtube.com/watch?v=0JSHubLg7NE</a>
[youtube] 0JSHubLg7NE: Downloading webpage
[youtube] 0JSHubLg7NE: Downloading video info webpage
ERROR: 0JSHubLg7NE: YouTube said: This video is unavailable.</p>

<p>The webpage here was a little helpful</p>

<p>*<a href="https://askubuntu.com/questions/1200552/youtube-dl-troubleshooting-error-this-video-is-unavailable" rel="nofollow">https://askubuntu.com/questions/1200552/youtube-dl-troubleshooting-error-this-video-is-unavailable</a></p>

<p>In providing an explanation and some fixes.</p>

<p>Firstly on Debian the internal update option is disabled so</p>

<p>youtube-dl -U</p>

<p>Won&#39;t work,  reading further this seems to download the latest version</p>

<p>While the above instructions worked for me, The old version was still installed, this needs to be removed so doing this before hand may help.</p>

<p>However if you want to <strong>check the current version</strong> before removing you can use:</p>

<p><strong>youtube-dl —version</strong></p>

<p>Then remove with:</p>

<p><strong>apt remove youtube-dl</strong> -</p>

<p>The instructions</p>

<p>wget <a href="http://yt-dl.org/downloads/latest/youtube-dl" rel="nofollow">http://yt-dl.org/downloads/latest/youtube-dl</a> -O /usr/local/bin/youtube-dl</p>

<p>You will still need to change the permissions as per above website. I am not repeating them here, you need to read up.</p>

<p><strong>However</strong> – Debian appears to expect youtube-dl to be in /usr/bin.</p>

<p>The above solution downloads to /usr/local/bin/youtube-dl,  you can either put in the path manually when running as in:</p>

<p>/usr/local/bin/youtube-dl <a href="https://www.youtube.com/watch?v=0JSHubLg7NE" rel="nofollow">https://www.youtube.com/watch?v=0JSHubLg7NE</a></p>

<p>Which gets rather tedious to keep doing that.</p>

<p>In order to get round this, I have copied the binary to where Debian wants it</p>

<p>cp /usr/local/bin/youtube-dl /usr/bin/youtube-dl</p>

<p>Which seems to work for me,  but is probably the wrong way to go about doing this.</p>

<p>You can now find the version that is now installed by using</p>

<p>youtube-dl —version</p>

<p>2020.01.24</p>

<p>Hopefully this is useful. You need to do your own research but the problem is fixable.</p>

<p>Once you have upgraded you can download youtube videos in the normal way with youtube-dl.</p>

<p><a href="/paulsutton/tag:debian" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">debian</span></a>, <a href="/paulsutton/tag:youtube" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">youtube</span></a>-dl, <a href="/paulsutton/tag:error" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">error</span></a>, <a href="/paulsutton/tag:fix" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">fix</span></a>, <a href="/paulsutton/tag:solution" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">solution</span></a>, <a href="/paulsutton/tag:gnu" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">gnu</span></a>, <a href="/paulsutton/tag:linux" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">linux</span></a></p>

<p><a href="https://social.isurf.ca/profile/zleap" rel="nofollow">You can find me on Friendica at zleap@social.isurf.ca</a></p>

<hr>

<p><img src="https://raw.githubusercontent.com/zleap/blogmedia/master/88x31.png" alt="cc-by logo"></p>

<p><a href="https://creativecommons.org/licenses/by/4.0/" rel="nofollow">Licenced under Attribution 4.0 International (CC BY 4.0)</a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/youtube-dl-out-of-date</guid>
      <pubDate>Thu, 30 Jan 2020 19:01:33 +0000</pubDate>
    </item>
  </channel>
</rss>