mirror of
https://github.com/soapingtime/diyhrt.git
synced 2026-09-04 20:10:19 +02:00
[automated] update groups.io wiki
This commit is contained in:
@@ -142,7 +142,7 @@
|
||||
console.log("stack:", errorObj.stack);
|
||||
stack = errorObj.stack;
|
||||
}
|
||||
console.log("client_id:", "web.app02-g2.790061.1777426198153705341");
|
||||
console.log("client_id:", "web.app01-g2.2373923.1778030546597379449");
|
||||
console.log("last_error:", lastError);
|
||||
console.log("stack:", stack);
|
||||
}
|
||||
@@ -191,7 +191,7 @@
|
||||
column: column,
|
||||
stack: stack,
|
||||
last_error: lastError,
|
||||
client_id: "web.app02-g2.790061.1777426198153705341"
|
||||
client_id: "web.app01-g2.2373923.1778030546597379449"
|
||||
},
|
||||
success: function() {
|
||||
if (console && console.log) {
|
||||
@@ -214,7 +214,7 @@
|
||||
|
||||
<script src="../../../../tinymce-5.10.9/tinymce.min.js"></script>
|
||||
<script src="../../../../js/browser-image-compression-2.0.2.min.js"></script>
|
||||
<link href="../../../../css/application-24dcf155f8cf9ca30214ea64f62961b4.css" rel="stylesheet" id="groupsio-css">
|
||||
<link href="../../../../css/application-7da9b99746ec1cef6913b4e3fec7162c.css" rel="stylesheet" id="groupsio-css">
|
||||
<script src="../../../../js/application-7800e976860b357df405a3ea22aa72b1.js" id="groupsio-js"></script>
|
||||
<script src="../../../../js/run_prettify.js"></script>
|
||||
<title>MTFHRT@groups.io | Wiki</title>
|
||||
@@ -304,7 +304,7 @@
|
||||
}, true);
|
||||
</script>
|
||||
</head>
|
||||
<body id="body" class="" hx-headers='{"Accept-Version": "ca86cf933a8828e8bf670199572b45bc66bd1319"}' hx-ext="preload" hx-boost="false">
|
||||
<body id="body" class="" hx-headers='{"Accept-Version": "210897eaa3752cee32d30cb5ef00b0bd9135036b"}' hx-ext="preload" hx-boost="false">
|
||||
<div id="gio-progress-bar" aria-hidden="true"></div>
|
||||
|
||||
<script>
|
||||
@@ -321,7 +321,7 @@
|
||||
<img src="../../../../orgimg/org.1/mainlogo.png%3Fv=1411358049715440694" height="50" alt="Groups.io">
|
||||
</a>
|
||||
|
||||
<ul class="nav navbar-nav hidden-xs">
|
||||
<ul class="nav navbar-nav hidden-xs hidden-sm">
|
||||
<li>
|
||||
<a href="https://groups.io/search">
|
||||
Find or Create a Group
|
||||
@@ -665,96 +665,6 @@ function showAutocompleteModal(modalName) {
|
||||
location.reload();
|
||||
});
|
||||
|
||||
function ShowBackButton(label, url, subtitle) {
|
||||
var logoElement = document.getElementById("logo");
|
||||
if (!logoElement) {
|
||||
return;
|
||||
}
|
||||
logoElement.innerHTML = '';
|
||||
|
||||
var span = document.createElement('span');
|
||||
span.style.cssText = "color:#fff;margin-top:14px;margin-left:12px;float:left !important;height:36px;";
|
||||
var a = document.createElement('a');
|
||||
a.style.color = '#fff';
|
||||
if (url) {
|
||||
a.href = url;
|
||||
// HTMX-boost only when the target is still inside the same group — then the
|
||||
// bottom nav (which sits outside #maincontent-refresh) is the same layout and
|
||||
// can stay put. Cross-context targets (e.g. /groups) need a full page load so
|
||||
// the bottom nav actually switches.
|
||||
if (/\/g\//.test(url)) {
|
||||
a.setAttribute('hx-boost', 'true');
|
||||
a.setAttribute('hx-target', '#maincontent-refresh');
|
||||
a.setAttribute('hx-push-url', 'true');
|
||||
a.setAttribute('hx-history', 'false');
|
||||
// Reset window scroll to the top after the swap, otherwise the
|
||||
// user lands on the previous page at whatever Y they were at on
|
||||
// the current one — typically mid-page, behind the fixed
|
||||
// navbar/notch in the iOS app.
|
||||
a.setAttribute('hx-on::after-request', 'window.scrollTo({top:0, behavior:"instant"})');
|
||||
if (window.htmx) {
|
||||
htmx.process(a);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
a.onclick = goBack;
|
||||
a.style.cursor = 'pointer';
|
||||
}
|
||||
var icon = document.createElement('i');
|
||||
icon.className = 'fa-fw fa-solid fa-chevron-left fa-lg';
|
||||
a.appendChild(icon);
|
||||
span.appendChild(a);
|
||||
logoElement.appendChild(span);
|
||||
|
||||
if (label) {
|
||||
var titleDiv = document.createElement('div');
|
||||
// The navbar in the iOS app gets padding-top equal to the safe-area
|
||||
// inset, so the outer box can be taller than the visible content
|
||||
// strip. Centering at 50% of the outer box lands the title inside
|
||||
// the notch — offset the center down by half the inset so the
|
||||
// title sits in the visible strip. On non-app contexts
|
||||
// env(safe-area-inset-top) is 0 and this is a no-op.
|
||||
titleDiv.style.cssText = "position:absolute;left:50%;top:calc(50% + env(safe-area-inset-top) / 2);transform:translate(-50%,-50%);text-align:center;color:#ecf0f1;max-width:60%;overflow:hidden;";
|
||||
var h4 = document.createElement('h4');
|
||||
h4.style.cssText = "margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;line-height:1.1;";
|
||||
h4.textContent = label;
|
||||
titleDiv.appendChild(h4);
|
||||
if (subtitle) {
|
||||
var sub = document.createElement('div');
|
||||
sub.style.cssText = "font-size:11px;line-height:1.2;margin-top:1px;opacity:0.85;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;";
|
||||
sub.textContent = subtitle;
|
||||
titleDiv.appendChild(sub);
|
||||
}
|
||||
logoElement.appendChild(titleDiv);
|
||||
}
|
||||
}
|
||||
|
||||
// ShowNavbarTitle sets a centered title (and optional subtitle) in the
|
||||
// mobile navbar without any back arrow — used on top-level tab pages
|
||||
// (/feed, /groups) where there's nowhere to go back to.
|
||||
function ShowNavbarTitle(label, subtitle) {
|
||||
var logoElement = document.getElementById("logo");
|
||||
if (!logoElement) {
|
||||
return;
|
||||
}
|
||||
logoElement.innerHTML = '';
|
||||
if (label) {
|
||||
var titleDiv = document.createElement('div');
|
||||
titleDiv.style.cssText = "position:absolute;left:50%;top:calc(50% + env(safe-area-inset-top) / 2);transform:translate(-50%,-50%);text-align:center;color:#ecf0f1;max-width:70%;overflow:hidden;";
|
||||
var h4 = document.createElement('h4');
|
||||
h4.style.cssText = "margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;line-height:1.1;";
|
||||
h4.textContent = label;
|
||||
titleDiv.appendChild(h4);
|
||||
if (subtitle) {
|
||||
var sub = document.createElement('div');
|
||||
sub.style.cssText = "font-size:11px;line-height:1.2;margin-top:1px;opacity:0.85;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;";
|
||||
sub.textContent = subtitle;
|
||||
titleDiv.appendChild(sub);
|
||||
}
|
||||
logoElement.appendChild(titleDiv);
|
||||
}
|
||||
}
|
||||
|
||||
// ShowHeaderAction adds an icon button (e.g. settings cog) to the mobile navbar,
|
||||
// to the left of the profile icon. modalTarget is optional — if given, clicking
|
||||
// opens that Bootstrap modal. ariaLabel is for accessibility.
|
||||
@@ -790,16 +700,6 @@ function showAutocompleteModal(modalName) {
|
||||
}
|
||||
}
|
||||
|
||||
function HideBackButton() {
|
||||
var logoElement = document.getElementById("logo");
|
||||
if (logoElement) {
|
||||
logoElement.innerHTML = `
|
||||
<a href="https://groups.io" class="navbar-left">
|
||||
<img src="../../../../orgimg/org.1/mainlogo.png%3Fv=1411358049715440694" height="50" alt="Groups.io">
|
||||
</a>`;
|
||||
}
|
||||
}
|
||||
|
||||
function goBack() {
|
||||
history.back();
|
||||
}
|
||||
@@ -1492,7 +1392,7 @@ function createAlert(msg, isError, autoClose, noClose) {
|
||||
<h2 id="Equipment">Equipment</h2>
|
||||
<h3 id="Necessary">Necessary</h3>
|
||||
<p>The only necessary equipment is cheap ($7 - $15) pocket 0.001 g (1 mg) scales (or DIY balance scales you can make from a long narrow wooden plank, 2 small nails and 2 syringes, one of them with 0.5 ml water as a precise weight).</p>
|
||||
<p>If you buy ready-to-use scales then they must look exactly like this:<br/><img src="https://s3-us-west-1.amazonaws.com/groupsiowikiimages/4415/13908/354x254.jpg?AWSAccessKeyId=AKIAJECNKOVMCCU3ATNQ&Expires=1777426798&Signature=c7AzkgvfTgJwp513OipA0GmLTuA%3D" align="right" loading="lazy" class="myimg-responsive"/><a href="https://www.ebay.com/itm/363747240371" target="_blank" rel="nofollow noopener">https://www.ebay.com/itm/363747240371</a><br/><a href="https://www.aliexpress.com/item/4000586480263.html" target="_blank" rel="nofollow noopener">https://www.aliexpress.com/item/4000586480263.html</a></p>
|
||||
<p>If you buy ready-to-use scales then they must look exactly like this:<br/><img src="https://s3-us-west-1.amazonaws.com/groupsiowikiimages/4415/13908/354x254.jpg?AWSAccessKeyId=AKIAJECNKOVMCCU3ATNQ&Expires=1778031146&Signature=P7sdXkmGPA%2B98dtiM3jLdCjqzhs%3D" align="right" loading="lazy" class="myimg-responsive"/><a href="https://www.ebay.com/itm/363747240371" target="_blank" rel="nofollow noopener">https://www.ebay.com/itm/363747240371</a><br/><a href="https://www.aliexpress.com/item/4000586480263.html" target="_blank" rel="nofollow noopener">https://www.aliexpress.com/item/4000586480263.html</a></p>
|
||||
<p>Newer models are not suitable because they attempt to appear more precise and stable by ignoring small weight changes.</p>
|
||||
<p>Search for other sellers:<br/><a href="https://www.ebay.com/sch/i.html?_nkw=scale+0.001&_sacat=0&_blrs=recall_filtering&LH_BIN=1&_sop=15&_ipg=120&_oac=1" target="_blank" rel="nofollow noopener">https://www.ebay.com/sch/i.html?_nkw=scale+0.001&_sacat=0&_blrs=recall_filtering&LH_BIN=1&_sop=15&_ipg=120&_oac=1</a></p>
|
||||
<p><a href="https://www.ebay.com/sch/i.html?_nkw=scale+digital+diamond&_sacat=0&LH_BIN=1&_sop=15&_blrs=recall_filtering&_ipg=120&_oac=1" target="_blank" rel="nofollow noopener">https://www.ebay.com/sch/i.html?_nkw=scale+digital+diamond&_sacat=0&LH_BIN=1&_sop=15&_blrs=recall_filtering&_ipg=120&_oac=1</a></p>
|
||||
@@ -1507,10 +1407,10 @@ function createAlert(msg, isError, autoClose, noClose) {
|
||||
<p>Unnecessary: beaker, mixer/stirrer, room with controlled airflow, depyrogenation. My technology: terminal heat sterilization (after the vials are sealed); measure and mix in each vial separately, so no glassware to wash with water or collecting dust (skin flakes and <a href="https://en.wikipedia.org/wiki/House_dust_mite" target="_blank" rel="nofollow noopener">mites</a>) if never washed. Water - bacteria - pyrogens. Don't try to improve this technology: it protects you from mistakes and unexpected problems.</p>
|
||||
<h2 id="Other-raw-materials-and-expendables">Other raw materials and expendables</h2>
|
||||
<h3 id="Vials2C-stoppers2C-caps">Vials, stoppers, caps</h3>
|
||||
<p><img src="https://s3-us-west-1.amazonaws.com/groupsiowikiimages/4415/13965/s-l300.jpg?AWSAccessKeyId=AKIAJECNKOVMCCU3ATNQ&Expires=1777426798&Signature=Ymh6P8TmiqXo8ua%2FLmnHoKt6%2BOw%3D" align="right" loading="lazy" class="myimg-responsive"/>Buy 10 clear glass vials 10 ml each with 20 mm grey (butyl rubber) stoppers and aluminium caps. Caps may be bare aluminium or painted, with plastic tops or all-metal. Screw-on and all-plastic caps are not suitable. Stoppers must have this shape:<br/><a href="https://www.ebay.com/itm/185908326110" target="_blank" rel="nofollow noopener">https://www.ebay.com/itm/185908326110</a><br/><a href="https://www.aliexpress.us/item/2251832717628622.html" target="_blank" rel="nofollow noopener">https://www.aliexpress.us/item/2251832717628622.html</a><br/>Flat septa are not suitable instead of stoppers. Search:<br/><a href="https://www.ebay.com/sch/i.html?_nkw=vial+10ml+stopper+cap&_sacat=0&LH_TitleDesc=0&LH_BIN=1&_sop=15&_oac=1" target="_blank" rel="nofollow noopener">https://www.ebay.com/sch/i.html?_nkw=vial+10ml+stopper+cap&_sacat=0&LH_TitleDesc=0&LH_BIN=1&_sop=15&_oac=1</a></p>
|
||||
<p><img src="https://s3-us-west-1.amazonaws.com/groupsiowikiimages/4415/13965/s-l300.jpg?AWSAccessKeyId=AKIAJECNKOVMCCU3ATNQ&Expires=1778031146&Signature=knX58cyWpYkHRSydMt13FE3Ppms%3D" align="right" loading="lazy" class="myimg-responsive"/>Buy 10 clear glass vials 10 ml each with 20 mm grey (butyl rubber) stoppers and aluminium caps. Caps may be bare aluminium or painted, with plastic tops or all-metal. Screw-on and all-plastic caps are not suitable. Stoppers must have this shape:<br/><a href="https://www.ebay.com/itm/185908326110" target="_blank" rel="nofollow noopener">https://www.ebay.com/itm/185908326110</a><br/><a href="https://www.aliexpress.us/item/2251832717628622.html" target="_blank" rel="nofollow noopener">https://www.aliexpress.us/item/2251832717628622.html</a><br/>Flat septa are not suitable instead of stoppers. Search:<br/><a href="https://www.ebay.com/sch/i.html?_nkw=vial+10ml+stopper+cap&_sacat=0&LH_TitleDesc=0&LH_BIN=1&_sop=15&_oac=1" target="_blank" rel="nofollow noopener">https://www.ebay.com/sch/i.html?_nkw=vial+10ml+stopper+cap&_sacat=0&LH_TitleDesc=0&LH_BIN=1&_sop=15&_oac=1</a></p>
|
||||
<p><a href="https://www.aliexpress.com/wholesale?SearchText=vials+10ml+stoppers+caps" target="_blank" rel="nofollow noopener">https://www.aliexpress.com/wholesale?SearchText=vials+10ml+stoppers+caps</a></p>
|
||||
<p>After you remove central part of the cap, most of the cap must remain and hold the rubber stopper at place. Caps must <strong>not</strong> have tear-off weak place on one side like this:</p>
|
||||
<p><img src="https://s3-us-west-1.amazonaws.com/groupsiowikiimages/4415/13909/cap-tear-off.jpg?AWSAccessKeyId=AKIAJECNKOVMCCU3ATNQ&Expires=1777426798&Signature=PWaTCjiPci%2BCt1PtGhV%2BXlTSJHY%3D" loading="lazy" class="myimg-responsive"/></p>
|
||||
<p><img src="https://s3-us-west-1.amazonaws.com/groupsiowikiimages/4415/13909/cap-tear-off.jpg?AWSAccessKeyId=AKIAJECNKOVMCCU3ATNQ&Expires=1778031146&Signature=em%2BwbI7ZpvRleKotU5rN2dCPpzk%3D" loading="lazy" class="myimg-responsive"/></p>
|
||||
<p>In Europe you can buy <a href="https://lab-supply-shop.com/epages/171448.sf/en_GB/?ObjectPath=/Shops/171448/Products/VIC010-001NS" target="_blank" rel="nofollow noopener">vials</a>, stoppers <a href="https://lab-supply-shop.com/epages/171448.sf/en_GB/?ObjectPath=/Shops/171448/Products/%22STG20-%200001%22" target="_blank" rel="nofollow noopener">1</a> or <a href="https://lab-supply-shop.com/epages/171448.sf/en_GB/?ObjectPath=/Shops/171448/Products/STR20-0001" target="_blank" rel="nofollow noopener">2</a>, <a href="https://lab-supply-shop.com/epages/171448.sf/en_GB/?ObjectPath=/Shops/171448/Products/%22BKMA%2020-GO%22" target="_blank" rel="nofollow noopener">caps</a>, <a href="https://lab-supply-shop.com/epages/171448.sf/en_GB/?ObjectPath=/Shops/171448/Products/%22BA%200020%22" target="_blank" rel="nofollow noopener">benzyl alcohol</a> and <a href="https://lab-supply-shop.com/epages/171448.sf/en_GB/?ObjectPath=/Shops/171448/Products/%22MCT%201L%22" target="_blank" rel="nofollow noopener">MCT oil</a> in one shop, or <a href="https://www.glas-shop.com/glasprodukte/injektionsflascheninfusionsflaschen/injektionsflaschenklarglas5100ml/injektionsflasche-klarglas-10ml.php" target="_blank" rel="nofollow noopener">vials</a>+<a href="https://www.glas-shop.com/verschluesse2/verschluesse-fuer-injektionsflaschen/injektionsstopfeneinzeln20mmrotausbrombutyl.php" target="_blank" rel="nofollow noopener">stoppers</a>+<a href="https://www.glas-shop.com/verschluesse2/verschluesse-fuer-injektionsflaschen/boerdelkappe-2025-x-74-mm-mittel-abriss-gruen.php" target="_blank" rel="nofollow noopener">caps</a>. In USA <a href="https://www.medical-and-lab-supplies.com/vials/open/rls-10ml-tubular-clear-glass-serum-vials-qty-1.html" target="_blank" rel="nofollow noopener">vials</a>+<a href="https://www.medical-and-lab-supplies.com/lab-supplies/butyl-rubber-stoppers-for-vials-20mm-gray.html" target="_blank" rel="nofollow noopener">stoppers</a>+<a href="https://www.medical-and-lab-supplies.com/lab-supplies/20mm-standard-aluminum-seal-please-click-to-view-all-colors.html" target="_blank" rel="nofollow noopener">caps</a> (<a href="https://www.medical-and-lab-supplies.com/usp-oils/mct-60-40-caprylic-c8-capric-c10-oil.html" target="_blank" rel="nofollow noopener">oil</a>, <a href="https://www.medical-and-lab-supplies.com/chemicals-solvents/benzyl-alcohol-usp.html" target="_blank" rel="nofollow noopener">BA</a>, <a href="https://www.medical-and-lab-supplies.com/medical-supplies/syringes-and-needles/diabetic-syringes/aimsco-maxicomfort-diabetic-insulin-syringes.html" target="_blank" rel="nofollow noopener">syringes</a>) or <a href="https://lemelange.com/unsterilevialwide10ml20mm.aspx" target="_blank" rel="nofollow noopener">vials</a>+<a href="https://lemelange.com/20-mm-vial-stoppers-grey.aspx" target="_blank" rel="nofollow noopener">stoppers</a>+<a href="https://lemelange.com/20mmaluminumringwithcentertearout.aspx" target="_blank" rel="nofollow noopener">caps</a> or <a href="https://qcvialz.com/vial-samples/316-10ml-clear-shorty-serum-vials-iso-10r-24x45mm-sample-pack-of-10.html" target="_blank" rel="nofollow noopener">vials</a>+<a href="https://qcvialz.com/vial-stopper-samples/319-20mm-round-bottom-vial-stopper-sample-pack-of-10.html" target="_blank" rel="nofollow noopener">stoppers</a>+<a href="https://qcvialz.com/superior-flip-cap-vial-seals/482-light-blue-20mm-superior-flip-cap-vial-seals-pack-of-10pc.html" target="_blank" rel="nofollow noopener">caps</a> or <a href="https://www.gpzmedlab.com/store/p/110-10-ML-Unsealed-Clear-Vial.aspx" target="_blank" rel="nofollow noopener">vials</a>+<a href="https://www.gpzmedlab.com/store/p/38-Grey-Butyl-Stopper.aspx" target="_blank" rel="nofollow noopener">stoppers</a>+<a href="https://www.gpzmedlab.com/store/p/102-Aluminum-Seal-Center-Tear-Out.aspx" target="_blank" rel="nofollow noopener">caps</a> (<a href="https://www.gpzmedlab.com/easy-touch-1-cc-insulin-syringe-with-28-g-x-1-2-needle-100-count.aspx" target="_blank" rel="nofollow noopener">syringes</a>) or <a href="https://www.premiumvials.com/10ml-glass-bottle-with-lid-transparent-vial-b-10pcs/" target="_blank" rel="nofollow noopener">here</a>. In Canada <a href="https://canadianmedhealthsupplies.ca/collections/10ml-vials-clear/products/10ml-vial-22mm-x-50mm-clear?variant=8081524817966" target="_blank" rel="nofollow noopener">vials</a>+<a href="https://canadianmedhealthsupplies.ca/collections/all-rubber-stoppers/products/20mm-rubber-stopper-grey?variant=8081553915950" target="_blank" rel="nofollow noopener">stoppers</a>+<a href="https://canadianmedhealthsupplies.ca/collections/20mm-flip-off-cap-flip-off/products/20mm-white-flip-off-cap-flip-off" target="_blank" rel="nofollow noopener">caps</a> (<a href="https://canadianmedhealthsupplies.ca/collections/solvents/products/benzyl-alcohol" target="_blank" rel="nofollow noopener">BA</a>).</p>
|
||||
<p>If you are paranoid and believe incompetent or deceitful slander about this guide then you can buy washed sealed sterile empty vials <a href="https://www.ebay.com/sch/i.html?_nkw=vial+10ml+sterile&_sacat=0&LH_BIN=1&_sop=15&_blrs=recall_filtering&_ipg=240" target="_blank" rel="nofollow noopener">on ebay</a>, and buy new caps or carefully unbend crimped caps with a small flat screwdriver. Really it'd not improve "safety", just waste of money following prejudices.</p>
|
||||
<h3 id="Oil">Oil</h3>
|
||||
@@ -1523,7 +1423,7 @@ function createAlert(msg, isError, autoClose, noClose) {
|
||||
<h2 id="Mix">Mix</h2>
|
||||
<p>(See below for an alternate way without a funnel).</p>
|
||||
<p>Make a small funnel from a piece of foil (the thicker foil the better; shinier side inside), hold it folded with a small piece of sticky tape. If you have only thin foil then perhaps strengthen it by wide sticky tape on another side (or try to strip the outer paint from a few different beer or soft drink aluminium cans with nail polish remover, then cut a clean can with scissors). May be use something conical to wrap the foil around before cutting off unneeded parts. The hole at the pointy end of the funnel must be slightly (not much) smaller than the opening in the vial. Use this funnel to weigh up estradiol enanthate powder and to pour the powder into a vial. The funnel I'm using at the center, unfolded piece of foil from my previous funnel at the left, a funnel in a vial at the right:</p>
|
||||
<p><img src="https://s3-us-west-1.amazonaws.com/groupsiowikiimages/4415/13910/cone.jpg?AWSAccessKeyId=AKIAJECNKOVMCCU3ATNQ&Expires=1777426798&Signature=ukCXHeDmP5zL0kOvC1N3ROE4y3g%3D" loading="lazy" class="myimg-responsive"/></p>
|
||||
<p><img src="https://s3-us-west-1.amazonaws.com/groupsiowikiimages/4415/13910/cone.jpg?AWSAccessKeyId=AKIAJECNKOVMCCU3ATNQ&Expires=1778031146&Signature=U1hNJeoshGSHq3JWSwMdc78bKUc%3D" loading="lazy" class="myimg-responsive"/></p>
|
||||
<p>Two recipes I can recommend:</p>
|
||||
<p>1) 500 mg = 0.5 g of estradiol enanthate (density 1.1 g/cm<sup><small>3</small></sup>),<br/>benzyl alcohol (preservative - antibacterial) 0.2 ml,<br/>MCT oil 10-0.2-0.5/1.1= 9.35 ml.</p>
|
||||
<p>2) 0.5 g of estradiol enanthate,<br/>MCT oil 10-0.5/1.1= 9.55 ml.</p>
|
||||
@@ -1635,9 +1535,6 @@ function createAlert(msg, isError, autoClose, noClose) {
|
||||
contentLoaded( false , function() {
|
||||
UpdateSidebar("wiki");
|
||||
if (document.documentElement.clientWidth <= 992) {
|
||||
|
||||
ShowBackButton("Ultimate DIY", "https://groups.io/g/MTFHRT/wiki", "Wiki");
|
||||
|
||||
ShowHeaderAction("fa fa-search fa-lg", "#searchModal", "Search");
|
||||
}
|
||||
EnableTopbarAutoHide();
|
||||
@@ -1656,15 +1553,18 @@ function createAlert(msg, isError, autoClose, noClose) {
|
||||
|
||||
|
||||
|
||||
<div id="mobilesidebar-groups" class="mobilesidebar-item" style="margin-top:10px; padding-bottom:20px; flex: 1; text-align: center;" hx-get="https://groups.io/groups" hx-boost="true" hx-target="#maincontent-refresh" hx-push-url="true" hx-history="false" hx-on::after-request="document.getElementById('maincontent').scrollTo({top: 0, behavior: 'instant'})" >
|
||||
<div style="display: inline-block; position: relative;">
|
||||
<div style="position: relative;display: inline-block;">
|
||||
<i class="fa-fw fa-light fa-users fa-2x"></i>
|
||||
|
||||
</div><br>
|
||||
<span style="font-size:12px;">Groups</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<a id="mobilesidebar-groups" class="mobilesidebar-item" style="margin-top:10px; padding-bottom:20px; flex: 1; text-align: center; color: inherit; text-decoration: none;" href="https://groups.io/groups" hx-boost="false">
|
||||
<div style="display: inline-block; position: relative;">
|
||||
<div style="position: relative;display: inline-block;">
|
||||
<i class="fa-fw fa-light fa-users fa-2x"></i>
|
||||
|
||||
</div><br>
|
||||
<span style="font-size:12px;">Groups</span>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user