yoinked heading anchor tags from paperMod cuz they were better than mine

This commit is contained in:
kurets 2023-04-11 23:01:49 +03:00
parent de7654b91b
commit 3400370887
95 changed files with 7105 additions and 9198 deletions

View file

@ -0,0 +1 @@
used to be '_default' instead of 'asd'

File diff suppressed because one or more lines are too long

View file

@ -17,12 +17,11 @@
<header><h1 id="tag_Meta Description in Hugo">Meta Description in Hugo</h1></header>
<article>
<h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo <a class="anchor" href="#adding-meta-description-in-hugo">
<span class="spanForHeader"></span>
</a></h2><p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p>
<h3 id="setting-a-global-meta-description">Setting a global meta description <a class="anchor" href="#setting-a-global-meta-description">
<span class="spanForHeader"></span>
</a></h3><ol>
<div class="post-content"><h2 id="adding-meta-description-in-hugo">Adding meta description in Hugo<a hidden class="anchor" aria-hidden="true" href="#adding-meta-description-in-hugo">#</a></h2>
<p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p>
<h3 id="setting-a-global-meta-description">Setting a global meta description<a hidden class="anchor" aria-hidden="true" href="#setting-a-global-meta-description">#</a></h3>
<ol>
<li>Locate your config.toml or config.yaml file</li>
<li>Add the following line inside it</li>
</ol>
@ -33,17 +32,15 @@
<div class="highlight"><pre tabindex="0" style="color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#e06c75">params</span>:
</span></span><span style="display:flex;"><span> <span style="color:#e06c75">description</span>: <span style="color:#98c379">The global meta description of your website</span>
</span></span></code></pre></div><p>It won&rsquo;t work just yet because you have to update the <code>baseof.html</code> file.</p>
<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file <a class="anchor" href="#updating-the-baseofhtml-file">
<span class="spanForHeader"></span>
</a></h3><ol>
<h3 id="updating-the-baseofhtml-file">Updating the baseof.html file<a hidden class="anchor" aria-hidden="true" href="#updating-the-baseofhtml-file">#</a></h3>
<ol>
<li>Locate baseof.html</li>
<li>Add or change the meta description line with the following</li>
</ol>
<div class="highlight"><pre tabindex="0" style="color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#e06c75">meta</span> <span style="color:#b3d23c">name</span><span style="color:#c7bf54">=</span><span style="color:#98c379">&#34;description&#34;</span> <span style="color:#b3d23c">content</span><span style="color:#c7bf54">=</span><span style="color:#98c379">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt;
</span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p>
<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one <a class="anchor" href="#replacing-the-global-description-with-a-custom-one">
<span class="spanForHeader"></span>
</a></h3><ol>
<h3 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one<a hidden class="anchor" aria-hidden="true" href="#replacing-the-global-description-with-a-custom-one">#</a></h3>
<ol>
<li>Have a markdown file ready</li>
<li>In the preamble, add</li>
</ol>
@ -52,6 +49,7 @@
</span></span><span style="display:flex;"><span><span style="color:#76a9f9">---</span>
</span></span></code></pre></div><p>Following these steps would guarantee that you have a meta description for everypage with the ability for creating a custom one whenever you need it!</p>
</div>
<div id="nextprev">
<a href="/blog/multiple-index-pages-in-hugo/"><div id="prevart">Previous:<br>Multiple Index Pages in Hugo</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="This is how to create multiple index pages in Hugo I wanted to order Hackbook in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.
<meta name="description" content="This is how to create multiple index pages in Hugo I wanted to order Hackbook in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.
I ran into the following problem - the default list.html does them from newest to oldest.
So I found this forum post and I created a file in the _default directory as follows:
layouts |----**_default** |-------**hackbook** |-----------**order-by-oldest."/>
@ -25,9 +25,9 @@ Table Of Contents:<nav id="TableOfContents">
<li><a href="#this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo</a></li>
<li><a href="#using-your-custom-_indexhtml">Using your custom _index.html</a></li>
</ul>
</nav><h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo <a class="anchor" href="#this-is-how-to-create-multiple-index-pages-in-hugo">
<span class="spanForHeader"></span>
</a></h2><p>I wanted to order <a href="/library/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p>
</nav>
<div class="post-content"><h2 id="this-is-how-to-create-multiple-index-pages-in-hugo">This is how to create multiple index pages in Hugo<a hidden class="anchor" aria-hidden="true" href="#this-is-how-to-create-multiple-index-pages-in-hugo">#</a></h2>
<p>I wanted to order <a href="/library/hackbook">Hackbook</a> in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.</p>
<p>I ran into the following problem - the default <strong><code>list.html</code></strong> does them from newest to oldest.</p>
<p>So I found <a href="https://discourse.gohugo.io/t/two-home-pages/31312/9">this forum post</a> and I created a file in the <strong><code>_default</code></strong> directory as follows:</p>
<pre tabindex="0"><code>layouts
@ -61,9 +61,8 @@ Table Of Contents:<nav id="TableOfContents">
{{- end }}
</code></pre><p>If you want to display the date on the left of the titles, you have to add <strong><code>datesinlist=true</code></strong> in your config.toml or <strong><code>datesinlist: true</code></strong> in your config.yaml</p>
<p>You probably don&rsquo;t need <strong><code>enableGitInfo = true</code></strong> as that will crash your website, I have no idea what it does, you don&rsquo;t need it.</p>
<h2 id="using-your-custom-_indexhtml">Using your custom _index.html <a class="anchor" href="#using-your-custom-_indexhtml">
<span class="spanForHeader"></span>
</a></h2><p>After creating your custom _index.html you&rsquo;d use it as follows:</p>
<h2 id="using-your-custom-_indexhtml">Using your custom _index.html<a hidden class="anchor" aria-hidden="true" href="#using-your-custom-_indexhtml">#</a></h2>
<p>After creating your custom _index.html you&rsquo;d use it as follows:</p>
<ol>
<li>Create an _index.md file in your desired directory</li>
<li>Add <strong><code>layout: &quot;hackbook/order-by-oldest&quot;</code></strong> to your preamble (if you named your folder and or file something else, you have to change it here)</li>
@ -127,6 +126,7 @@ config.toml (see https://gohugo.io/variables/git/#lastmod)
enableGitInfo = true
</code></pre>
</div>
<div id="nextprev">
<a href="/updates/yoinked-css/"><div id="prevart">Previous:<br>Yoinked some Css and updated the site</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="this is my first entry and i&rsquo;m already having issues lol So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs
<meta name="description" content="this is my first entry and i&rsquo;m already having issues lol So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs
You can fix this in config.toml with the following line
pluralizelisttitles = false "/>
<meta name="keywords" content="blog">
@ -19,14 +19,15 @@ pluralizelisttitles = false "/>
<header><h1 id="tag_Pluralization issues (Blogs instead of Blog)">Pluralization issues (Blogs instead of Blog)</h1></header>
<article>
<h3 id="this-is-my-first-entry-and-im-already-having-issues-lol">this is my first entry and i&rsquo;m already having issues lol <a class="anchor" href="#this-is-my-first-entry-and-im-already-having-issues-lol">
<span class="spanForHeader"></span>
</a></h3><p>So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs</p>
<div class="post-content"><h3 id="this-is-my-first-entry-and-im-already-having-issues-lol">this is my first entry and i&rsquo;m already having issues lol<a hidden class="anchor" aria-hidden="true" href="#this-is-my-first-entry-and-im-already-having-issues-lol">#</a></h3>
<p>So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs</p>
<p>You can fix this in config.toml with the following line</p>
<blockquote>
<div class="highlight"><pre tabindex="0" style="color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-toml" data-lang="toml"><span style="display:flex;"><span><span style="color:#c1abea">pluralizelisttitles</span> = <span style="color:#b756ff;font-weight:bold">false</span>
</span></span></code></pre></div></blockquote>
</div>
<div id="nextprev">
<a href="/updates/helloworld/"><div id="prevart">Previous:<br>Hello world</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="How to recover a lost anki streak Word for word copy paste of what fixed my issue. Original post
<meta name="description" content="How to recover a lost anki streak Word for word copy paste of what fixed my issue. Original post
btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7
Happened to me as well, idk why. But there is a way to cheat streaks:
Check what was the date when you broke your streak, aka the date of that day when you had 0 reviews Turn Anki off Disable &ldquo;Set time automatically&rdquo; in Windows (assuming you&rsquo;re using Windows) Manually set the date to that date when you missed a review Turn the Internet connection off (or just unplug your cable) Turn Anki on, do at least 1 review, turn Anki off again Enable &ldquo;Set time automatically&rdquo;, turn the Internet connection on Turn Anki on and you&rsquo;ll see that it counts as if you really did a review on that day "/>
@ -20,9 +20,9 @@ Check what was the date when you broke your streak, aka the date of that day whe
<header><h1 id="tag_Recover Lost Anki Streak">Recover Lost Anki Streak</h1></header>
<article>
<h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak <a class="anchor" href="#how-to-recover-a-lost-anki-streak">
<span class="spanForHeader"></span>
</a></h2><p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p>
<div class="post-content"><h2 id="how-to-recover-a-lost-anki-streak">How to recover a lost anki streak<a hidden class="anchor" aria-hidden="true" href="#how-to-recover-a-lost-anki-streak">#</a></h2>
<p>Word for word copy paste of what fixed my issue. <a href="https://www.reddit.com/r/Anki/comments/ndt6ag/comment/gycwiti/?utm_source=share&amp;utm_medium=web2x&amp;context=3">Original post</a></p>
<p><em>btw i had to create a seperate Custom Study for cards i had forgotten, i set it to 1 day, did one review and followed from step 7</em></p>
<p>Happened to me as well, idk why. But there is a way to cheat streaks:</p>
<ol>
@ -36,6 +36,7 @@ Check what was the date when you broke your streak, aka the date of that day whe
<li>Turn Anki on and you&rsquo;ll see that it counts as if you really did a review on that day</li>
</ol>
</div>
<div id="nextprev">
<a href="/blog/meta-description-in-hugo/"><div id="prevart">Previous:<br>Meta Description in Hugo</div></a>

File diff suppressed because one or more lines are too long

View file

@ -17,18 +17,17 @@
<header><h1 id="tag_vodoraslo">vodoraslo</h1></header>
<article>
<div style="text-align: center;">
<div class="post-content"><div style="text-align: center;">
<p><strong>vodoraslo == seaweed</strong>
<br><br><br></p>
<h3 id="updatestagsupdatesndash-blogtagsblog-ndashlibrarylibrary"><a href="/tags/updates">🆕Updates</a>   <a href="/tags/blog">📜Blog</a>   <a href="/library">📚Library</a> <a class="anchor" href="#updatestagsupdatesndash-blogtagsblog-ndashlibrarylibrary">
<span class="spanForHeader"></span>
</a></h3><br>
<h3 id="updatestagsupdatesndash-blogtagsblog-ndashlibrarylibrary"><a href="/tags/updates">🆕Updates</a>   <a href="/tags/blog">📜Blog</a>   <a href="/library">📚Library</a><a hidden class="anchor" aria-hidden="true" href="#updatestagsupdatesndash-blogtagsblog-ndashlibrarylibrary">#</a></h3>
<br>
<p>You can contact me by email <strong>contact@[site name]</strong></p>
<figure ><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"><img src="/img/wip.gif" alt="Work in progress"></a></figure>
</div>
<h3 id="recent-posts">Recent posts: <a class="anchor" href="#recent-posts">
<span class="spanForHeader"></span>
</a></h3><ul class="tenRecentPosts">
<h3 id="recent-posts">Recent posts:<a hidden class="anchor" aria-hidden="true" href="#recent-posts">#</a></h3>
<ul class="tenRecentPosts">
<li><time datetime="2023-04-05T16:58:44&#43;03:00">2023 Apr 05</time> &ndash; <a href="/updates/updated-the-css-again/"><b class="white_span">Updated the Css Again (prefers-color-scheme)</b></a> - <span class="muted_text">I actually updated the css once more.
If you&rsquo;re using a dark theme in your browser, the website will follow suit and change to darker colors.
I …</span> <a href="/updates/updated-the-css-again/">Read more</a> <em>(1 minute read).</em></li>
@ -39,14 +38,15 @@ They do not advocate total rejection of modern technology; instead, …</span> <
<li><time datetime="2023-04-01T14:37:31&#43;03:00">2023 Apr 01</time> &ndash; <a href="/library/ted-kaczynski/the-road-to-revolution/"><b class="white_span">The Road to Revolution</b></a> - <span class="muted_text">The revolution is not a dinner party…
&ndash; Mao Zedong1
A great revolution is brewing. What this means is that the necessary preconditions for …</span> <a href="/library/ted-kaczynski/the-road-to-revolution/">Read more</a> <em>(12 minute read).</em></li>
<li><time datetime="2023-04-01T14:34:31&#43;03:00">2023 Apr 01</time> &ndash; <a href="/library/ted-kaczynski/the-truth-about-primitive-life-a-critique-of-anarchoprimitivism/"><b class="white_span">The Truth About Primitive Life a Critique of Anarchoprimitivism</b></a> - <span class="muted_text">The Truth About Primitive Life a Critique of Anarchoprimitivism 1. As the Industrial Revolution proceeded, modern society created for itself a …</span> <a href="/library/ted-kaczynski/the-truth-about-primitive-life-a-critique-of-anarchoprimitivism/">Read more</a> <em>(107 minute read).</em></li>
<li><time datetime="2023-04-01T14:34:31&#43;03:00">2023 Apr 01</time> &ndash; <a href="/library/ted-kaczynski/the-truth-about-primitive-life-a-critique-of-anarchoprimitivism/"><b class="white_span">The Truth About Primitive Life a Critique of Anarchoprimitivism</b></a> - <span class="muted_text">The Truth About Primitive Life a Critique of Anarchoprimitivism 1. As the Industrial Revolution proceeded, modern society created for itself a …</span> <a href="/library/ted-kaczynski/the-truth-about-primitive-life-a-critique-of-anarchoprimitivism/">Read more</a> <em>(107 minute read).</em></li>
<li><time datetime="2023-04-01T14:32:25&#43;03:00">2023 Apr 01</time> &ndash; <a href="/library/ted-kaczynski/when-non-violence-is-suicide/"><b class="white_span">When Non-Violence Is Suicide</b></a> - <span class="muted_text">Its the autumn of 2025 AD. The technoindustrial system fell apart a year ago, but you and your friends are doing alright. Your garden has flourished …</span> <a href="/library/ted-kaczynski/when-non-violence-is-suicide/">Read more</a> <em>(5 minute read).</em></li>
<li><time datetime="2023-04-01T14:24:10&#43;03:00">2023 Apr 01</time> &ndash; <a href="/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/"><b class="white_span">Why the Technological System Will Destroy Itself</b></a> - <span class="muted_text">I. Our discussion deals with self-propagating systems. By a self-propagating system (self-prop system for short) we mean a system that tends to …</span> <a href="/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/">Read more</a> <em>(33 minute read).</em></li>
<li><time datetime="2023-03-23T18:06:34&#43;02:00">2023 Mar 23</time> &ndash; <a href="/library/ted-kaczynski/industrial-society-and-its-future/"><b class="white_span">Industrial Society and Its Future </b></a> - <span class="muted_text">Introduction The Industrial Revolution and its consequences have been a disaster for the human race. They have greatly increased the life expectancy …</span> <a href="/library/ted-kaczynski/industrial-society-and-its-future/">Read more</a> <em>(159 minute read).</em></li>
<li><time datetime="2023-01-12T21:34:30&#43;02:00">2023 Jan 12</time> &ndash; <a href="/blog/recover-lost-anki-streak/"><b class="white_span">Recover Lost Anki Streak</b></a> - <span class="muted_text">How to recover a lost anki streak Word for word copy paste of what fixed my issue. Original post
btw i had to create a seperate Custom Study for …</span> <a href="/blog/recover-lost-anki-streak/">Read more</a> <em>(1 minute read).</em></li>
<li><time datetime="2023-04-01T14:24:10&#43;03:00">2023 Apr 01</time> &ndash; <a href="/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/"><b class="white_span">Why the Technological System Will Destroy Itself</b></a> - <span class="muted_text">I. Our discussion deals with self-propagating systems. By a self-propagating system (self-prop system for short) we mean a system that tends to …</span> <a href="/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/">Read more</a> <em>(33 minute read).</em></li>
<li><time datetime="2023-03-23T18:06:34&#43;02:00">2023 Mar 23</time> &ndash; <a href="/library/ted-kaczynski/industrial-society-and-its-future/"><b class="white_span">Industrial Society and Its Future </b></a> - <span class="muted_text">Introduction The Industrial Revolution and its consequences have been a disaster for the human race. They have greatly increased the life expectancy …</span> <a href="/library/ted-kaczynski/industrial-society-and-its-future/">Read more</a> <em>(158 minute read).</em></li>
<li><time datetime="2023-01-12T21:34:30&#43;02:00">2023 Jan 12</time> &ndash; <a href="/blog/recover-lost-anki-streak/"><b class="white_span">Recover Lost Anki Streak</b></a> - <span class="muted_text">How to recover a lost anki streak Word for word copy paste of what fixed my issue. Original post
btw i had to create a seperate Custom Study for cards </span> <a href="/blog/recover-lost-anki-streak/">Read more</a> <em>(1 minute read).</em></li>
</ul>
</div>
<br>

File diff suppressed because one or more lines are too long

View file

@ -6,8 +6,8 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Click to download HackBookEasyPeasy (original pdf) EasyPeasyWay https://sites.google.com/site/hackbookeasypeasy/home HackBookEasyPeasy EasyPeasyWay https://sites.google.com/site/hackbookeasypeasy/home I am Allen Carr. I am also not Allen Carr. So yes I am not the author. I am the hack-author.
I hacked Allen Carrs book and his method of de-addiction to adapt it for PMO. Why? Because his method helped me in getting rid of cigarettes, alcohol and then PMO. Why did I hack his work?"/>
<meta name="description" content="Click to download HackBookEasyPeasy (original pdf) EasyPeasyWay https://sites.google.com/site/hackbookeasypeasy/home HackBookEasyPeasy EasyPeasyWay https://sites.google.com/site/hackbookeasypeasy/home I am Allen Carr. I am also not Allen Carr. So yes I am not the author. I am the hack-author.
I hacked Allen Carrs book and his method of de-addiction to adapt it for PMO. Why? Because his method helped me in getting rid of cigarettes, alcohol and then PMO. Why did I hack his work? Because he is dead now."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -18,34 +18,27 @@ I hacked Allen Carrs book and his method of de-addiction to adapt it for PMO.
<header><h1 id="tag_00-00 HackBook EasyPeasy">00-00 HackBook EasyPeasy</h1></header>
<article>
<div style="text-align: center;">
<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a> <a class="anchor" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa">
<span class="spanForHeader"></span>
</a></h2><h3 id="easypeasyway">EasyPeasyWay <a class="anchor" href="#easypeasyway">
<span class="spanForHeader"></span>
</a></h3><h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> <a class="anchor" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome">
<span class="spanForHeader"></span>
</a></h4><p>HackBookEasyPeasy EasyPeasyWay <a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> I am Allen Carr. I am also not Allen Carr. So yes I am not the author. I am the hack-author.</p>
<div class="post-content"><div style="text-align: center;">
<h2 id="a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa"><a href="/hackbook/hackbook.pdf">Click to download HackBookEasyPeasy (original pdf)</a><a hidden class="anchor" aria-hidden="true" href="#a-hrefhackbookhackbookpdfclick-to-download-hackbookeasypeasy-original-pdfa">#</a></h2>
<h3 id="easypeasyway">EasyPeasyWay<a hidden class="anchor" aria-hidden="true" href="#easypeasyway">#</a></h3>
<h4 id="httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome"><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a><a hidden class="anchor" aria-hidden="true" href="#httpssitesgooglecomsitehackbookeasypeasyhomehttpssitesgooglecomsitehackbookeasypeasyhome">#</a></h4>
<p>HackBookEasyPeasy EasyPeasyWay <a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a> I am Allen Carr. I am also not Allen Carr. So yes I am not the author. I am the hack-author.</p>
<p>I hacked Allen Carrs book and his method of de-addiction to adapt it for PMO. Why? Because his method helped me in getting rid of cigarettes, alcohol and then PMO. Why did I hack his work? Because he is dead now. And the institution that he had
formed does not list Internet pornography as one of the addictions that it provides services for. I don&rsquo;t gain monetarily or otherwise. Above all - you wont find me in this book. Myself and Allen will appear and disappear in this book to provide you with an unique and effective method to get your mind de-addicted.</p>
<h4 id="important-advice-for-you"><strong>IMPORTANT ADVICE FOR YOU!</strong> <a class="anchor" href="#important-advice-for-you">
<span class="spanForHeader"></span>
</a></h4><h4 id="do-not-jump-chapters"><strong>DO NOT JUMP CHAPTERS!</strong> <a class="anchor" href="#do-not-jump-chapters">
<span class="spanForHeader"></span>
</a></h4><h4 id="the-numbers-to-unlock-the-combo-lock-should-be-used-in-the-given-sequence"><strong>THE NUMBERS TO UNLOCK THE COMBO LOCK SHOULD BE USED IN THE GIVEN SEQUENCE!</strong> <a class="anchor" href="#the-numbers-to-unlock-the-combo-lock-should-be-used-in-the-given-sequence">
<span class="spanForHeader"></span>
</a></h4><p>The common thread running through Allen Carr&rsquo;s work is the removal of fear. Indeed, his genius lies in eliminating the phobias and anxieties which prevent people from being able to enjoy life to the full, as his best-selling books vividly demonstrate. His method is solid and has high success rates. It helped cure me of not one but three addictions. There is a network of clinics that uses his methods that span the globe and has a phenomenal reputation for success in helping people to quit addictions (except PMO). Their success rate is over 95% with money-back guarantees.</p>
<h4 id="important-advice-for-you"><strong>IMPORTANT ADVICE FOR YOU!</strong><a hidden class="anchor" aria-hidden="true" href="#important-advice-for-you">#</a></h4>
<h4 id="do-not-jump-chapters"><strong>DO NOT JUMP CHAPTERS!</strong><a hidden class="anchor" aria-hidden="true" href="#do-not-jump-chapters">#</a></h4>
<h4 id="the-numbers-to-unlock-the-combo-lock-should-be-used-in-the-given-sequence"><strong>THE NUMBERS TO UNLOCK THE COMBO LOCK SHOULD BE USED IN THE GIVEN SEQUENCE!</strong><a hidden class="anchor" aria-hidden="true" href="#the-numbers-to-unlock-the-combo-lock-should-be-used-in-the-given-sequence">#</a></h4>
<p>The common thread running through Allen Carr&rsquo;s work is the removal of fear. Indeed, his genius lies in eliminating the phobias and anxieties which prevent people from being able to enjoy life to the full, as his best-selling books vividly demonstrate. His method is solid and has high success rates. It helped cure me of not one but three addictions. There is a network of clinics that uses his methods that span the globe and has a phenomenal reputation for success in helping people to quit addictions (except PMO). Their success rate is over 95% with money-back guarantees.</p>
<p>Hackbook : A book based and hacked from another book. The original author is credited fully.</p>
<h4 id="important-advice-for-you-1"><strong>IMPORTANT ADVICE FOR YOU!</strong> <a class="anchor" href="#important-advice-for-you-1">
<span class="spanForHeader"></span>
</a></h4><h4 id="do-not-jump-chapters-1"><strong>DO NOT JUMP CHAPTERS!</strong> <a class="anchor" href="#do-not-jump-chapters-1">
<span class="spanForHeader"></span>
</a></h4><h4 id="the-numbers-to-unlock-the-combo-lock-should-be-used-in-the-given-sequence-1"><strong>THE NUMBERS TO UNLOCK THE COMBO LOCK SHOULD BE USED IN THE GIVEN SEQUENCE!</strong> <a class="anchor" href="#the-numbers-to-unlock-the-combo-lock-should-be-used-in-the-given-sequence-1">
<span class="spanForHeader"></span>
</a></h4><p>Dr. Albert Ellis&rsquo; autobiography - &ldquo;All Out!&rdquo;</p>
<h4 id="important-advice-for-you-1"><strong>IMPORTANT ADVICE FOR YOU!</strong><a hidden class="anchor" aria-hidden="true" href="#important-advice-for-you-1">#</a></h4>
<h4 id="do-not-jump-chapters-1"><strong>DO NOT JUMP CHAPTERS!</strong><a hidden class="anchor" aria-hidden="true" href="#do-not-jump-chapters-1">#</a></h4>
<h4 id="the-numbers-to-unlock-the-combo-lock-should-be-used-in-the-given-sequence-1"><strong>THE NUMBERS TO UNLOCK THE COMBO LOCK SHOULD BE USED IN THE GIVEN SEQUENCE!</strong><a hidden class="anchor" aria-hidden="true" href="#the-numbers-to-unlock-the-combo-lock-should-be-used-in-the-given-sequence-1">#</a></h4>
<p>Dr. Albert Ellis&rsquo; autobiography - &ldquo;All Out!&rdquo;</p>
<p>“I used to wrongly think that most of them (addicts) were aided by self-help groups like AA, by therapy, or some other real support. But no. The facts show that more people surrender their addictions on their own-without any notable help from others. How? Mainly by seeing, acknowledging, and emphasizing how hard it is not to stop and how much easier it is-in the long run- to suffer through the withdrawal process.”</p>
</div>
</div>
<div id="nextprev">
<a href="/blog/pluralization-issues/"><div id="prevart">Previous:<br>Pluralization issues (Blogs instead of Blog)</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Preface This hackbook will enable you to stop PMO, immediately, painlessly, and permanently, without the need for Willpower or feeling any sense of deprivation or sacrifice. It will not judge you. It will not embarrass you. It will not put pressure on you to undergo painful measures.
<meta name="description" content="Preface This hackbook will enable you to stop PMO, immediately, painlessly, and permanently, without the need for Willpower or feeling any sense of deprivation or sacrifice. It will not judge you. It will not embarrass you. It will not put pressure on you to undergo painful measures.
That goes against everything you&rsquo;ve ever been told about PMO. But ask yourself what you&rsquo;ve been told before worked for you? If it had, you wouldn&rsquo;t be reading this site."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ That goes against everything you&rsquo;ve ever been told about PMO. But ask your
<header><h1 id="tag_01-01 Preface">01-01 Preface</h1></header>
<article>
<h2 id="preface">Preface <a class="anchor" href="#preface">
<span class="spanForHeader"></span>
</a></h2><p>This hackbook will enable you to stop PMO, immediately, painlessly, and permanently, without the need for Willpower or feeling any sense of deprivation or sacrifice. It will not judge you. It will not embarrass you. It will not put pressure on you to undergo painful measures.</p>
<div class="post-content"><h2 id="preface">Preface<a hidden class="anchor" aria-hidden="true" href="#preface">#</a></h2>
<p>This hackbook will enable you to stop PMO, immediately, painlessly, and permanently, without the need for Willpower or feeling any sense of deprivation or sacrifice. It will not judge you. It will not embarrass you. It will not put pressure on you to undergo painful measures.</p>
<p>That goes against everything you&rsquo;ve ever been told about PMO. But ask yourself what you&rsquo;ve been told before worked for you? If it had, you wouldn&rsquo;t be reading this site.</p>
<ul>
<li>Instantaneous</li>
@ -49,6 +49,7 @@ porn and or masturbation&#160;<a href="#fnref:2" class="footnote-backref" role="
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/00-00-hackbookeasypeasy/"><div id="prevart">Previous:<br>00-00 HackBook EasyPeasy</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Warning Perhaps you are somewhat apprehensive about reading this book. Perhaps, like the majority of PMO addicts, the mere thought of stopping fills you with panic and although you have every intention of stopping one day, it is not today.
<meta name="description" content="Warning Perhaps you are somewhat apprehensive about reading this book. Perhaps, like the majority of PMO addicts, the mere thought of stopping fills you with panic and although you have every intention of stopping one day, it is not today.
If you are expecting me to inform you of the terrible health issues that PMO addicts risk, that they are susceptible to be affected by PIED (porn induced erectile disfunction), unreliable arousals, fading penetration, loss of interest in real partners,loss of control over themselves, loss of relationships, that it is a filthy, disgusting habit and that YOU are a stupid, spineless, weak-willed jellyfish, then I must disappoint you."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ If you are expecting me to inform you of the terrible health issues that PMO add
<header><h1 id="tag_01-02 Warning">01-02 Warning</h1></header>
<article>
<h2 id="warning">Warning <a class="anchor" href="#warning">
<span class="spanForHeader"></span>
</a></h2><p>Perhaps you are somewhat apprehensive about reading this book. Perhaps, like the majority of PMO addicts, the mere thought of stopping fills you with panic and although you have every intention of stopping one day, it is not today.</p>
<div class="post-content"><h2 id="warning">Warning<a hidden class="anchor" aria-hidden="true" href="#warning">#</a></h2>
<p>Perhaps you are somewhat apprehensive about reading this book. Perhaps, like the majority of PMO addicts, the mere thought of stopping fills you with panic and although you have every intention of stopping one day, it is not today.</p>
<p>If you are expecting me to inform you of the terrible health issues that PMO addicts risk, that they are susceptible to be affected by PIED (porn induced erectile disfunction), unreliable arousals, fading penetration, loss of interest in real partners,loss of control over themselves, loss of relationships, that it is a filthy, disgusting habit and that <em>YOU</em> are a stupid, spineless, weak-willed jellyfish, then I must disappoint you. Those tactics never helped me to quit and if they were going to help you, you would already have quit.</p>
<p>Our Method, which I shall refer to as EASYPEASY doesn&rsquo;t work that way. Some of the things that I am about to say, you might find difficult to believe. However by the time you&rsquo;ve finished reading the book, you&rsquo;ll not only believe them, but wonder how you could ever have been brainwashed into believing otherwise.</p>
<p>There is a common misapprehension that we choose to watch porn. PMO addicts ( yes addicts) no more choose to do that than alcoholics choose to become alcoholics, or heroin addicts choose to become heroin addicts. It is true that we choose to boot up the laptop, fire up the browser and visit our favourite online harem<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup> tube sites. I occasionally choose to go to the cinema, but I certainly didn&rsquo;t choose to spend my whole life in the cinema theatre. The curiosity and my nature took me there but I would not have done that if I had known it would addict me and cause me my health, happiness and relationships. Only if I had heard about PIED on my first visit to that porn site?</p>
@ -37,6 +37,7 @@ If you are expecting me to inform you of the terrible health issues that PMO add
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/01-01-preface/"><div id="prevart">Previous:<br>01-01 Preface</div></a>

View file

@ -6,7 +6,8 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Fear ¶ Fear that we will have to survive an indeterminate period of misery, deprivation and unsatisfied craving in order to be free. Fear that a night all by yourself or the eve of a test or exam will be miserable fighting uncontrollable impulses. Fear that we&rsquo;ll never be able to concentrate, handle stress or be as confident without our little crutch. Fear that our personality and character will change."/>
<meta name="description" content="Fear Fear that we will have to survive an indeterminate period of misery, deprivation and unsatisfied craving in order to be free. Fear that a night all by yourself or the eve of a test or exam will be miserable fighting uncontrollable impulses. Fear that we&rsquo;ll never be able to concentrate, handle stress or be as confident without our little crutch. Fear that our personality and character will change.
But most of all, the fear of &lsquo;once an addict always an addict,&rsquo; that we will never be completely free and spend the rest of our lives at odd times craving the occasional porn induced orgasm."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +18,9 @@
<header><h1 id="tag_01-03 Fear">01-03 Fear</h1></header>
<article>
<h2 id="fear">Fear <a class="anchor" href="#fear">
<span class="spanForHeader"></span>
</a></h2><p>Fear that we will have to survive an indeterminate period of misery, deprivation and unsatisfied craving in order to be free. Fear that a night all by yourself or the eve of a test or exam will be miserable fighting uncontrollable impulses. Fear that we&rsquo;ll never be able to concentrate, handle stress or be as confident without our little crutch. Fear that our personality and character will change.</p>
<div class="post-content"><h2 id="fear">Fear<a hidden class="anchor" aria-hidden="true" href="#fear">#</a></h2>
<p>Fear that we will have to survive an indeterminate period of misery, deprivation and unsatisfied craving in order to be free. Fear that a night all by yourself or the eve of a test or exam will be miserable fighting uncontrollable impulses. Fear that we&rsquo;ll never be able to concentrate, handle stress or be as confident without our little crutch. Fear that our personality and character will change.</p>
<p>But most of all, the fear of &lsquo;once an addict always an addict,&rsquo; that we will never be completely free and spend the rest of our lives at odd times craving the occasional porn induced orgasm. If, as I did, you have already tried all the conventional ways to quit and been through the misery of what I describe as the willpower method of stopping, you will not only be affected by that fear, but convinced you can never quit.</p>
<p>If you are apprehensive, panic-stricken or feel that the time is not right for you to give up, then let me assure you that your apprehension or panic is caused by fear. That fear is not relieved by PMO but was indeed created by PMO. You didn&rsquo;t decide to fall into the porn trap. But like all traps, it is designed to ensure that you remain trapped. Ask yourself, when you viewed those first porn pictures and videos, did you decide to come back to view them as long as you have? So when are you going to quit? Tomorrow? Next year? Stop kidding yourself! The trap is designed to hold you for life. Why else do you think all these other PMO addicts don&rsquo;t quit before it kills their lives?</p>
<p>As you will soon be reading, the feedbacks I got has revealed information that has exceeded my wildest aspirations of the effectiveness of my method. It has also revealed two aspects of the method that have caused me concern. The second I will be covering later.</p>
@ -42,6 +43,7 @@
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/01-02-warning/"><div id="prevart">Previous:<br>01-02 Warning</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Introduction &lsquo;I&rsquo;M GOING TO CURE THE WORLD OF PMO&rsquo; I was talking to my mentor. He thought that I had flipped. Understandable if you consider that he had watched me fail on numerous attempts to quit. The most recent had been two years previously. I&rsquo;d actually survived six months of sheer purgatory before I finally succumbed and found myself clicking on stacked up tabs of porn sites. I&rsquo;m not ashamed to admit that I cried like a baby."/>
<meta name="description" content="Introduction &lsquo;I&rsquo;M GOING TO CURE THE WORLD OF PMO&rsquo; I was talking to my mentor. He thought that I had flipped. Understandable if you consider that he had watched me fail on numerous attempts to quit. The most recent had been two years previously. I&rsquo;d actually survived six months of sheer purgatory before I finally succumbed and found myself clicking on stacked up tabs of porn sites. I&rsquo;m not ashamed to admit that I cried like a baby."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,12 +17,11 @@
<header><h1 id="tag_02-01 Introduction">02-01 Introduction</h1></header>
<article>
<h2 id="introduction">Introduction <a class="anchor" href="#introduction">
<span class="spanForHeader"></span>
</a></h2><div style="text-align: center;">
<h2 id="im-going-to-cure-the-world-of-pmo">&lsquo;I&rsquo;M GOING TO CURE THE WORLD OF PMO&rsquo; <a class="anchor" href="#im-going-to-cure-the-world-of-pmo">
<span class="spanForHeader"></span>
</a></h2></div>
<div class="post-content"><h2 id="introduction">Introduction<a hidden class="anchor" aria-hidden="true" href="#introduction">#</a></h2>
<div style="text-align: center;">
<h2 id="im-going-to-cure-the-world-of-pmo">&lsquo;I&rsquo;M GOING TO CURE THE WORLD OF PMO&rsquo;<a hidden class="anchor" aria-hidden="true" href="#im-going-to-cure-the-world-of-pmo">#</a></h2>
</div>
<p>I was talking to my mentor. He thought that I had flipped. Understandable if you consider that he had watched me fail on numerous attempts to quit. The most recent had been two years previously. I&rsquo;d actually survived six months of sheer purgatory before I finally succumbed and found myself clicking on stacked up tabs of porn sites. I&rsquo;m not ashamed to admit that I cried like a baby. I was crying because I knew that I was condemned to be an addict for life. I&rsquo;d put so much effort into that attempt and suffered so much misery that I knew I would never have the strength to go through that ordeal again. I&rsquo;m not a violent man, but if some patronizing non-PMOer had been stupid enough at that moment to suggest to me that all users can find it easy to quit, immediately and permanently, I would not have been responsible for my actions. However, I&rsquo;m convinced that any jury in the world, comprised of PMOers only, would have pardoned me on the grounds of justifiable homicide.</p>
<p>Perhaps you too find it impossible to believe that any PMOer can find it easy to quit. If so, I beg you not to cast this book into the rubbish bin. Please trust me. I assure you that you can find it
easy to quit.</p>
@ -56,6 +55,7 @@ the world would also see the light and adopt my method.</li>
</ul>
<p>I thought my chief antagonist would be the porn industry. Amazingly, my chief stumbling blocks were the very institutions that I thought would be my greatest allies: the control/regulated safe sex advocates in the noFap forum,the media and the established medical profession.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/01-03-fear/"><div id="prevart">Previous:<br>01-03 Fear</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Sister Kenny You&rsquo;ve probably seen the film Sister Kenny. In case you haven&rsquo;t, it was about the time when infantile paralysis or polio was the scourge of our children. I vividly remember that the words engendered the same fear in me as the word cancer does today. The effect of polio was not only to paralyze the legs and arms but to distort the limbs. The established medical treatment was to put those limbs in irons and thus prevent the distortion."/>
<meta name="description" content="Sister Kenny You&rsquo;ve probably seen the film Sister Kenny. In case you haven&rsquo;t, it was about the time when infantile paralysis or polio was the scourge of our children. I vividly remember that the words engendered the same fear in me as the word cancer does today. The effect of polio was not only to paralyze the legs and arms but to distort the limbs. The established medical treatment was to put those limbs in irons and thus prevent the distortion."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_02-02 Sister Kenny">02-02 Sister Kenny</h1></header>
<article>
<h2 id="sister-kenny">Sister Kenny <a class="anchor" href="#sister-kenny">
<span class="spanForHeader"></span>
</a></h2><p>You&rsquo;ve probably seen the film Sister Kenny. In case you haven&rsquo;t, it was about the time when infantile paralysis or polio was the scourge of our children. I vividly remember that the words engendered the same fear in me as the word cancer does today. The effect of polio was not only to paralyze the legs and arms but to distort the limbs. The established medical treatment was to put those limbs in irons and thus prevent the distortion. The result was paralysis for life.</p>
<div class="post-content"><h2 id="sister-kenny">Sister Kenny<a hidden class="anchor" aria-hidden="true" href="#sister-kenny">#</a></h2>
<p>You&rsquo;ve probably seen the film Sister Kenny. In case you haven&rsquo;t, it was about the time when infantile paralysis or polio was the scourge of our children. I vividly remember that the words engendered the same fear in me as the word cancer does today. The effect of polio was not only to paralyze the legs and arms but to distort the limbs. The established medical treatment was to put those limbs in irons and thus prevent the distortion. The result was paralysis for life.</p>
<p>Sister Kenny believed the irons inhibited recovery and proved a thousand times over that the muscles could be re-educated so that the child could walk again. However, Sister Kenny wasn&rsquo;t a doctor, she was merely a nurse. How dare she dabble in a province that was confined to qualified doctors? It didn&rsquo;t seem to matter that Sister Kenny had found the solution to the problem and had proved her solution to be effective. The children that were treated by Sister Kenny knew she was right, so did their parents, yet the established medical profession not only refused to adopt her methods but actually prevented her from practicing. It took Sister Kenny twenty years before the medical profession would accept the obvious.</p>
<p>I (Allen Carr) first saw that film years before I (Allen Carr) discovered EASYWAY, The film was very interesting and no doubt there was an element of truth. However, it was equally obvious that Hollywood had used a large portion of poetic license. Sister Kenny couldn&rsquo;t possibly have discovered something that the combined knowledge of medical science had failed to discover. Surely the established medical specialists weren&rsquo;t the dinosaurs they were being portrayed as? How could it possibly have taken them twenty years to accept the facts that were staring them in the face?</p>
<p>They say that fact is stranger than fiction, I apologize for accusing the makers of Sister Kenny for using poetic license. Even in this so-called enlightened age of modern communications, even having access to modern communications, I&rsquo;ve failed to get my message across.</p>
@ -48,6 +48,7 @@
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/02-01-introduction/"><div id="prevart">Previous:<br>02-01 Introduction</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The Worst PMO Addict I Have Yet to Meet Perhaps I should begin by describing my competence for writing this book. No, I am not a doctor or a psychiatrist; my qualifications are far more appropriate. I spent thirty years of my life as a confirmed fapper. In the later years I used porn on a daily bases to get orgasm(s).During my life I had made a great number of attempts to stop."/>
<meta name="description" content="The Worst PMO Addict I Have Yet to Meet Perhaps I should begin by describing my competence for writing this book. No, I am not a doctor or a psychiatrist; my qualifications are far more appropriate. I spent thirty years of my life as a confirmed fapper. In the later years I used porn on a daily bases to get orgasm(s).During my life I had made a great number of attempts to stop."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-01 The Worst PMO Addict I Have Yet to Meet">03-01 The Worst PMO Addict I Have Yet to Meet</h1></header>
<article>
<h2 id="the-worst-pmo-addict-i-have-yet-to-meet">The Worst PMO Addict I Have Yet to Meet <a class="anchor" href="#the-worst-pmo-addict-i-have-yet-to-meet">
<span class="spanForHeader"></span>
</a></h2><p>Perhaps I should begin by describing my competence for writing this book. No, I am not a doctor or a psychiatrist; my qualifications are far more appropriate. I spent thirty years of my life as a confirmed fapper. In the later years I used porn on a daily bases to get orgasm(s).During my life I had made a great number of attempts to stop. I never got past a full week of abstinence, and I was still climbing up the wall, with an “annoying alarm clock beeping” in my head called craving. With most PMOers, on the health side, it&rsquo;s a question of “ I&rsquo;ll stop before it happens to me.” I had reached the stage where I knew it has caused PIED, hypofrontality (inability to control and execute action towards a goal), irritability, lack of energy, soulless eyes, mental dryness, stress and pain in the lower back, genital irritations. It bothered me, but it still didn&rsquo;t stop me.</p>
<div class="post-content"><h2 id="the-worst-pmo-addict-i-have-yet-to-meet">The Worst PMO Addict I Have Yet to Meet<a hidden class="anchor" aria-hidden="true" href="#the-worst-pmo-addict-i-have-yet-to-meet">#</a></h2>
<p>Perhaps I should begin by describing my competence for writing this book. No, I am not a doctor or a psychiatrist; my qualifications are far more appropriate. I spent thirty years of my life as a confirmed fapper. In the later years I used porn on a daily bases to get orgasm(s).During my life I had made a great number of attempts to stop. I never got past a full week of abstinence, and I was still climbing up the wall, with an “annoying alarm clock beeping” in my head called craving. With most PMOers, on the health side, it&rsquo;s a question of “ I&rsquo;ll stop before it happens to me.” I had reached the stage where I knew it has caused PIED, hypofrontality (inability to control and execute action towards a goal), irritability, lack of energy, soulless eyes, mental dryness, stress and pain in the lower back, genital irritations. It bothered me, but it still didn&rsquo;t stop me.</p>
<p>I felt lack of enthusiasm to go to gym or just a walk even if its sunny outside or simple weight lifting at home either. I had reached the stage where I gave up even trying to stop. I found excuses in substitute methods (controlled use, safe porn, porn-diet and etc. discussed later) as advocated by sexologists, forum users and medical pros - who have no idea of its effect on brain chemistry and who are themselves fooled by their &rsquo;little monster&rsquo; (not devil or satan - we will talk about monsters later) . The novelty trap and shock value provided by internet porn delivered at home with a low risk high reward deal is something that they cant even think of. They are still in the static playboy era. And the younger ones have buried their heads under the sand so they can still continue to PMO.</p>
<p>The worst part is it was not so much that I enjoyed the PMO. It was just doing it routinely, a chore - like slipping down the water slides, in fact there are brain water slides greased well by the neurochemicals (DeltaFosB proteins made by dopamine which store emotion scripts for easy recall, will be discussing later). A simple cue such as a commercial, or a day to day stress that got relieved temporarily by PMO is all it takes to complete the ride down the waterslide. Some time in their lives most PMOers have suffered from the illusion that they enjoy the ride, the novelty, the rush and of course the orgasm, but I never had that illusion.</p>
<p>I have most times detested the porn, even when I liked the orgasm. But at all times I thought a release from PMO helped me to relax. It gave me courage and confidence, and I was always miserable when I tried to stop, never being able to visualize an enjoyable life without PMO. And so my PMO habit which had started before my marriage stayed with me during and after my marriage was over. I had experienced PIED but I blocked it out and found excuses , “it happens to every man”. Well it does of course - but &lsquo;it&rsquo; happened to me again and again. My penis, I found it difficult to get hard - when I am with real woman. Could it be because I had habituated it to work in limp mode? Later I found that it was hard for me to get hard even with porn.</p>
@ -49,6 +49,7 @@ Do not take anything for granted. Question not only what I tell you but also you
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/02-02-sister-kenny/"><div id="prevart">Previous:<br>02-02 Sister Kenny</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The Easy Method The object of this book is to get you into the frame of mind in which, instead of the normal method of stopping whereby you start off with the feeling that you are climbing Mount Everest and spend the next few weeks craving and feeling deprived, you start right away with a feeling of elation, as if you had been cured of a terrible disease. From then on, the further you go through life the more you will look at this period of time and wonder how you ever had to use any porn in the first place."/>
<meta name="description" content="The Easy Method The object of this book is to get you into the frame of mind in which, instead of the normal method of stopping whereby you start off with the feeling that you are climbing Mount Everest and spend the next few weeks craving and feeling deprived, you start right away with a feeling of elation, as if you had been cured of a terrible disease. From then on, the further you go through life the more you will look at this period of time and wonder how you ever had to use any porn in the first place."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-02 The Easy Method">03-02 The Easy Method</h1></header>
<article>
<h2 id="the-easy-method">The Easy Method <a class="anchor" href="#the-easy-method">
<span class="spanForHeader"></span>
</a></h2><p>The object of this book is to get you into the frame of mind in which, instead of the normal method of stopping whereby you start off with the feeling that you are climbing Mount Everest and spend the next few weeks craving and feeling deprived, you start right away with a feeling of elation, as if you had been cured of a terrible disease. From then on, the further you go through life the more you will look at this period of time and wonder how you ever had to use any porn in the first place. You will look at your dorm mate PMOer with pity as opposed to envy.</p>
<div class="post-content"><h2 id="the-easy-method">The Easy Method<a hidden class="anchor" aria-hidden="true" href="#the-easy-method">#</a></h2>
<p>The object of this book is to get you into the frame of mind in which, instead of the normal method of stopping whereby you start off with the feeling that you are climbing Mount Everest and spend the next few weeks craving and feeling deprived, you start right away with a feeling of elation, as if you had been cured of a terrible disease. From then on, the further you go through life the more you will look at this period of time and wonder how you ever had to use any porn in the first place. You will look at your dorm mate PMOer with pity as opposed to envy.</p>
<p>Provided that you are not a non-PMOer (who had never got addicted) or an ex-PMOer (who had quit or is in the fasting days of the porn-diet), it is essential to not quit until you have finished the book completely. This may appear to be a contradiction. Later I shall be explaining that porn do absolutely nothing for you at all. In fact, one of the many conundrums about internet porn is that when we are actually masturbating to a porn clip, we look at it and wonder why we are doing it. It is only when we have been deprived that the craving for PMO becomes precious.</p>
<p>However, let us accept that, whether you like it or not, you believe you are hooked. When you believe you are hooked, you can never be completely relaxed or concentrate properly unless you are using PMO. So do not attempt to stop PMO before you have finished the whole book. This instruction to continue to masturbate using porn until you have completed the book has caused me more frustration than any other. As you read further your desire to masturbate to porn will gradually be reduced. Do not go off half-cocked; this could be fatal. Remember, all you have to do is to follow the instructions in the right order. When I first started writing on forums many of the readers also stopped purely because I had done it. They thought, “if he can do it, anybody can.”</p>
<p>Over the years, I managed to persuade the ones that hadn&rsquo;t stopped to realize just how nice it is to be free! I gave my hackbook for free upon request. I worked on the basis that, even if it were the most boring book ever written, they would still read it, if only because it had been written by an ex-PMOer. I was surprised and hurt to learn that,they hadn&rsquo;t bothered to finish the book.</p>
@ -48,6 +48,7 @@
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-01-the-worst-pmo-addict-i-have-yet-to-meet/"><div id="prevart">Previous:<br>03-01 The Worst PMO Addict I Have Yet to Meet</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Why Is It Difficult to Stop? As I explained earlier, I got interested in this subject because of my own addiction. When I finally stopped it was like magic. When I had previously tried to stop there were weeks of black depression. There would be odd days when I was comparatively cheerful but the next day back with the depression. It was like clawing your way out of a slippery pit, you feel you are near the top, you see the sunshine and then find yourself sliding down again."/>
<meta name="description" content="Why Is It Difficult to Stop? As I explained earlier, I got interested in this subject because of my own addiction. When I finally stopped it was like magic. When I had previously tried to stop there were weeks of black depression. There would be odd days when I was comparatively cheerful but the next day back with the depression. It was like clawing your way out of a slippery pit, you feel you are near the top, you see the sunshine and then find yourself sliding down again."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-03 Why Is It Difficult to Stop?">03-03 Why Is It Difficult to Stop?</h1></header>
<article>
<h2 id="why-is-it-difficult-to-stop">Why Is It Difficult to Stop? <a class="anchor" href="#why-is-it-difficult-to-stop">
<span class="spanForHeader"></span>
</a></h2><p>As I explained earlier, I got interested in this subject because of my own addiction. When I finally stopped it was like magic. When I had previously tried to stop there were weeks of black depression. There would be odd days when I was comparatively cheerful but the next day back with the depression. It was like clawing your way out of a slippery pit, you feel you are near the top, you see the sunshine and then find yourself sliding down again. Eventually you open your browser and as you masturbate you feel awful and you try to work out why you have to do it.</p>
<div class="post-content"><h2 id="why-is-it-difficult-to-stop">Why Is It Difficult to Stop?<a hidden class="anchor" aria-hidden="true" href="#why-is-it-difficult-to-stop">#</a></h2>
<p>As I explained earlier, I got interested in this subject because of my own addiction. When I finally stopped it was like magic. When I had previously tried to stop there were weeks of black depression. There would be odd days when I was comparatively cheerful but the next day back with the depression. It was like clawing your way out of a slippery pit, you feel you are near the top, you see the sunshine and then find yourself sliding down again. Eventually you open your browser and as you masturbate you feel awful and you try to work out why you have to do it.</p>
<p>One of the questions I always ask online is: “do you want to stop PMO?” In a way it is a stupid question. All users (including members who dispute total abstinence) would love to stop PMO. If you ask to the most confirmed PMOer: “if you could go back to the time before you became hooked, with the knowledge you have now, would you have started PMO?”</p>
<p>“NO WAY,” would be the reply.</p>
<p>Say to the confirmed PMOer - someone who defends internet porn and who doesn&rsquo;t think that it cause injury to the brain (PIED, hypofrontality or the decreases in the dopamine receptors and etc.) - “do you encourage your children to use PMO?”</p>
@ -65,6 +65,7 @@ man and woman from performance based anxieties.&#160;<a href="#fnref:3" class="f
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-02-the-easy-method/"><div id="prevart">Previous:<br>03-02 The Easy Method</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The Sinister Trap Internet porn is the most subtle, sinister trap that man and nature have combined to devise. What gets us into it in the first place? The free samples from the professionals and the amateurs (celebrities and commons) who like to share. Some of us are even warned earlier that it&rsquo;s an awful and disgusting habit with short term pleasures and long term costs but we cannot believe that they are not enjoying it."/>
<meta name="description" content="The Sinister Trap Internet porn is the most subtle, sinister trap that man and nature have combined to devise. What gets us into it in the first place? The free samples from the professionals and the amateurs (celebrities and commons) who like to share. Some of us are even warned earlier that it&rsquo;s an awful and disgusting habit with short term pleasures and long term costs but we cannot believe that they are not enjoying it."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-04 The Sinister Trap">03-04 The Sinister Trap</h1></header>
<article>
<h2 id="the-sinister-trap">The Sinister Trap <a class="anchor" href="#the-sinister-trap">
<span class="spanForHeader"></span>
</a></h2><p>Internet porn is the most subtle, sinister trap that man and nature have combined to devise. What gets us into it in the first place? The free samples from the professionals and the amateurs (celebrities and commons) who like to share. Some of us are even warned earlier that it&rsquo;s an awful and disgusting habit with short term pleasures and long term costs but we cannot believe that they are not enjoying it. One of the many pathetic aspects of PMO (after knowing its dangers) is how hard we have to work in order to become hooked.</p>
<div class="post-content"><h2 id="the-sinister-trap">The Sinister Trap<a hidden class="anchor" aria-hidden="true" href="#the-sinister-trap">#</a></h2>
<p>Internet porn is the most subtle, sinister trap that man and nature have combined to devise. What gets us into it in the first place? The free samples from the professionals and the amateurs (celebrities and commons) who like to share. Some of us are even warned earlier that it&rsquo;s an awful and disgusting habit with short term pleasures and long term costs but we cannot believe that they are not enjoying it. One of the many pathetic aspects of PMO (after knowing its dangers) is how hard we have to work in order to become hooked.</p>
<p>It is the only trap in nature which has does not require a lot of hard work to set up. The thing that springs the trap is not that all porn clips feature young, high quality, sexy models; its that most of the thumbnails on any porn web page are ugly looking, unattractive, amateurish, home-made clips of unknown models. If the first timers first look at a tube page was only filled with angelic beauties, professional models and high quality then the alarm bells would ring. And as intelligent human beings, we could then understand why half the adult population was systematically addicted to watching something that is cutting down their very same potential to do what they are viewing. In many known and yet unknown ways porn cuts down sexual performance and the feeling of satisfaction.</p>
<p>But because that first “peek” has “stains and holes,” a mishmash of low quality clips of not-so-hot models, our young minds are reassured that we will never become hooked, and we think that because we are not enjoying them we can stop whenever we want to. It is the only drug in nature that prevents you from achieving your aim. Our curiosity brings us to its door steps. You dare not even click on all of the thumbnails because some of them will make you feel sick and throw up! If you were to accidentally click on an “I-did-not-see-that” clip - all you want to do is get away from the site and close your laptop.</p>
<p>With women, the aim is to be the sophisticated modern young lady. We have all seen them acting up and looking absolutely ridiculous. By the time the boys have learnt to look tough and the girls have learnt to look sophisticated, they wish they had never started in the first place. I wonder whether women ever look sophisticated when they discuss the top 10 porn sites, or whether this is a figment of our imaginations created by internet porn companies.</p>
@ -29,6 +29,7 @@
<p>Even those users who kick the habit (most do, one or more times during their lives) can lead perfectly happy lives yet suddenly become hooked again. The whole business of PMO is like wandering into a giant maze. As soon as we enter the maze our minds become misted and clouded, and we spend the rest of our lives trying to escape. Many of us eventually do, only to find that we get trapped again at a later date. I spent thirty-three years trying to escape from that maze. Like all PMOers, I couldn&rsquo;t understand it. However, due to a combination of unusual circumstances, none of which reflect any credit on me, I wanted to know why previously it had been so desperately difficult to stop and yet, when I finally did, it was not only easy but enjoyable.</p>
<p>Since stopping PMO my hobby has been to resolve the many conundrums associated with porn. It is a complex and fascinating puzzle and - like a Rubik&rsquo;s Cube - practically impossible to solve. However, like all complicated puzzles, if you know the solution, it is easy! I have the solution to stopping porn easily. I will lead you out of the maze and ensure that you never wander into it again. All you have to do is follow the instructions. If you take a wrong turn, the rest of the instructions will be pointless. Let me emphasize that anybody can find it easy to stop but first we need to establish the facts. No, I do not mean the scare facts. I know you are already aware of them. There is already enough information on the evils of PMO. If that was going to stop you, you would already have stopped. I mean, why do we find it difficult to stop? In order to answer this question we need to know the real reason why we are still doing PMO.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-03-why-is-it-difficult-to-stop/"><div id="prevart">Previous:<br>03-03 Why Is It Difficult to Stop?</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Why Do We Carry on With PMO We all start PMOing for many reasons, usually social pressures or our biological curiosity, but once we feel we are becoming hooked, why do we carry on using porn? No regular PMOer knows why he or she looks at porn. If PMOers knew the true reason, they would stop doing it. The true answer is the same for all PMOers but the variety of replies is infinite, I find this part of the consultation the most amusing and at the same time the most pathetic."/>
<meta name="description" content="Why Do We Carry on With PMO We all start PMOing for many reasons, usually social pressures or our biological curiosity, but once we feel we are becoming hooked, why do we carry on using porn? No regular PMOer knows why he or she looks at porn. If PMOers knew the true reason, they would stop doing it. The true answer is the same for all PMOers but the variety of replies is infinite, I find this part of the consultation the most amusing and at the same time the most pathetic."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-05 Why Do We Carry on With PMO">03-05 Why Do We Carry on With PMO</h1></header>
<article>
<h2 id="why-do-we-carry-on-with-pmo">Why Do We Carry on With PMO <a class="anchor" href="#why-do-we-carry-on-with-pmo">
<span class="spanForHeader"></span>
</a></h2><p>We all start PMOing for many reasons, usually social pressures or our biological curiosity, but once we feel we are becoming hooked, why do we carry on using porn? No regular PMOer knows why he or she looks at porn. If PMOers knew the true reason, they would stop doing it. The true answer is the same for all PMOers but the variety of replies is infinite, I find this part of the consultation the most amusing and at the same time the most pathetic.</p>
<div class="post-content"><h2 id="why-do-we-carry-on-with-pmo">Why Do We Carry on With PMO<a hidden class="anchor" aria-hidden="true" href="#why-do-we-carry-on-with-pmo">#</a></h2>
<p>We all start PMOing for many reasons, usually social pressures or our biological curiosity, but once we feel we are becoming hooked, why do we carry on using porn? No regular PMOer knows why he or she looks at porn. If PMOers knew the true reason, they would stop doing it. The true answer is the same for all PMOers but the variety of replies is infinite, I find this part of the consultation the most amusing and at the same time the most pathetic.</p>
<p>All PMOers know in their heart of hearts that they are fools. They know that they had no need to use porn or internet porn before they became hooked. Most of them can remember that their first peek was a mix of revulsion and novel curiosity. They then filter out and get “skilled” at “locating” and “bookmarking” the right porn sites. They know that they had to work hard in order to become hooked.</p>
<p>The most annoying part is that they sense that non-addicts - most women, older guys, people living in countries where hi-speed internet porn is not available “on tap” - are not missing anything and that they are laughing at them.</p>
<p>However, PMOers are intelligent, rational human beings. They know that they are taking enormous future risks and so they spend a lot of time rationalizing their habit. The actual reason why PMOers continue is a subtle combination of the factors that I will elaborate in the next two chapters. They are:</p>
@ -28,6 +28,7 @@
<li><strong>BRAINWASHING</strong></li>
</ol>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-04-the-sinister-trap/"><div id="prevart">Previous:<br>03-04 The Sinister Trap</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Internet Porn Erotic novelty of the internet porn is a mental drug and internet porn beats anything that is known to mankind and its streaming straight to your home for free ! We are not even talking VR virtual reality here. Porn triggers the flooding of dopamine in our brain. Dopamine amps up the brain reward circuitry to produce experiences and feels of cravings and pleasure by locking themselves into receptors."/>
<meta name="description" content="Internet Porn Erotic novelty of the internet porn is a mental drug and internet porn beats anything that is known to mankind and its streaming straight to your home for free ! We are not even talking VR virtual reality here. Porn triggers the flooding of dopamine in our brain. Dopamine amps up the brain reward circuitry to produce experiences and feels of cravings and pleasure by locking themselves into receptors."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,15 +17,14 @@
<header><h1 id="tag_03-06 Internet Porn">03-06 Internet Porn</h1></header>
<article>
<h2 id="internet-porn">Internet Porn <a class="anchor" href="#internet-porn">
<span class="spanForHeader"></span>
</a></h2><p>Erotic novelty of the internet porn is a mental drug and internet porn beats anything that is known to mankind and its streaming straight to your home for free ! We are not even talking VR virtual reality here. Porn triggers the flooding of dopamine in our brain. Dopamine amps up the brain reward circuitry to produce experiences and feels of cravings and pleasure by locking themselves into receptors. More dopamine more wanting. Less dopamine no wanting. New experiences, tasty food - more dopamine - more wanting. Sex and sex related stuff gives the biggest injection of dopamine in the reward circuits. Dopamine is not the final pleasure stuff, if it were you would feel happy when you are done with it, but it is only a brain chemical that encourages seeking and action in you. The real pleasure is produced by opioids. More dopamine more opioids more
<div class="post-content"><h2 id="internet-porn">Internet Porn<a hidden class="anchor" aria-hidden="true" href="#internet-porn">#</a></h2>
<p>Erotic novelty of the internet porn is a mental drug and internet porn beats anything that is known to mankind and its streaming straight to your home for free ! We are not even talking VR virtual reality here. Porn triggers the flooding of dopamine in our brain. Dopamine amps up the brain reward circuitry to produce experiences and feels of cravings and pleasure by locking themselves into receptors. More dopamine more wanting. Less dopamine no wanting. New experiences, tasty food - more dopamine - more wanting. Sex and sex related stuff gives the biggest injection of dopamine in the reward circuits. Dopamine is not the final pleasure stuff, if it were you would feel happy when you are done with it, but it is only a brain chemical that encourages seeking and action in you. The real pleasure is produced by opioids. More dopamine more opioids more
action more happy feelings.</p>
<p>So the first time you see porn - dopamine injects itself - you act - you orgasm. All of which will now be stored as a script in your brain for easy access next time. I call this a water slide. Next time at the cue - a sexy commercial or alone time or stress or feeling a little down - you are ready to take a ride on the water slide. One more thing is that every time to repeat this you are greasing it as well - so it is active, alive and more easier to slide the next time.</p>
<p>As time passes you are most probably not excited as before of the same clip - the reason will be explained shortly - but of similar type, genre, shock-level, our dopamine seeps into the brain but this time lesser than before. Now you feel less arousal, lesser motivation. This low motivation feeling in itself will trigger a feeling of lower satisfaction as our minds engage in constant rating. Then you seek more motivation. Then you ask for more novelty. Then you click on that amateurish, ugly looking, low quality, but high shock valued clip thumbnail which you had confidently said you wont on your first time.</p>
<h2 id="my-own-online-harem">My Own Online Harem! <a class="anchor" href="#my-own-online-harem">
<span class="spanForHeader"></span>
</a></h2><p>This cycle of novelty, escalation, satiation, desensitization etc. is not the same as the old porn magazine? Neither can you do that in real life with your partner. Maybe if you own a harem? One of the pros of owning a harem is novelty and the cons are desensitization, escalation and of course the cost.</p>
<h2 id="my-own-online-harem">My Own Online Harem!<a hidden class="anchor" aria-hidden="true" href="#my-own-online-harem">#</a></h2>
<p>This cycle of novelty, escalation, satiation, desensitization etc. is not the same as the old porn magazine? Neither can you do that in real life with your partner. Maybe if you own a harem? One of the pros of owning a harem is novelty and the cons are desensitization, escalation and of course the cost.</p>
<p>Going back to the earlier discussion - in this cycle as you crossed the red line you also trigger emotions such as guilt, disgust, embarrassment, anxiety and fear - which in turn raise dopamine levels as well. Now the brain may mistakenly associate feelings of anxiety and fear as sexual arousal. This perpetual cycle is only broken by natural causes - fortunately sooner or later. With its free access and privacy it provides boundless harem-like novelty. The dopamine can be theoretically kept very high for a very very long time. I can be satisfied with one lobster once in awhile. But Internet porn is different. It is even worse than drugs. Dont let me make you nervous. I will shortly show you how to be free from this slavery.</p>
<p>Now our human body has a self-correcting system by which the number of dopamine and opioid receptors are cut short when frequent and daily flooding of dopamine is detected. Unfortunately - these receptors are also needed for receiving dopamine and to keep us even and balanced to handle the inevitable and normal day-to-day stresses. But this natural nominal amount of dopamine will not be absorbed efficiently with decreased receptors and you will feel mores tressed and irritated than normal.</p>
<blockquote>
@ -37,14 +36,12 @@ action more happy feelings.</p>
<p>A fleeting feeling of security is all that is needed to get through a rough spot in life - but will your brain be able to catch that drop of de-stressor that a non-PMOers brain is able to catch and
use?</p>
<p>This dopamine flooding, like a quick-acting drug, falls quickly to induce withdrawal pangs. I must at this point dispel a common illusion that PMOers have about withdrawal pangs. They think that withdrawal pangs are the terrible trauma they suffer when they try or are forced to stop PMOing. These are, in fact, mainly mental; the user is feeling deprived of his pleasure or prop. I will explain more about this later.</p>
<h2 id="the-little-monster">The Little Monster <a class="anchor" href="#the-little-monster">
<span class="spanForHeader"></span>
</a></h2><p>The actual pangs of withdrawal from PMO are so subtle that most users have lived and died without even realizing they are like drug addicts. When we use the term porn addict&rsquo; we think we just &lsquo;got into the habit&rsquo;. Most PMOers have a horror of drugs, yet that&rsquo;s exactly what they are - drug addicts. Fortunately it is an easy drug to kick, but you need first to accept that you are addicted. There is no physical pain in the withdrawal from PMO. It is merely an empty, restless feeling, the feeling of something missing, which is why many think it is something to do with their hands. If it is prolonged, the user becomes nervous, insecure, agitated, lacking in confidence and irritable. It is like hunger - for a poison, INTERNET PORN.</p>
<h2 id="the-little-monster">The Little Monster<a hidden class="anchor" aria-hidden="true" href="#the-little-monster">#</a></h2>
<p>The actual pangs of withdrawal from PMO are so subtle that most users have lived and died without even realizing they are like drug addicts. When we use the term porn addict&rsquo; we think we just &lsquo;got into the habit&rsquo;. Most PMOers have a horror of drugs, yet that&rsquo;s exactly what they are - drug addicts. Fortunately it is an easy drug to kick, but you need first to accept that you are addicted. There is no physical pain in the withdrawal from PMO. It is merely an empty, restless feeling, the feeling of something missing, which is why many think it is something to do with their hands. If it is prolonged, the user becomes nervous, insecure, agitated, lacking in confidence and irritable. It is like hunger - for a poison, INTERNET PORN.</p>
<p>Within seconds of engaging in PMO the dopamine is supplied and the craving ends, resulting in the feeling of fulfilment and pleasure that the action gives to the PMOer. In the early days, when we first start PMOing, the withdrawal pangs and their relief are so slight that we are not even aware that they exist. When we begin to masturbate regularly to internet porn we think it is because we&rsquo;ve either come to enjoy them or got into the &lsquo;habit&rsquo;. The truth is we&rsquo;re already hooked; we do not realize it, but that little monster is already inside our stomach and every now and again we have to feed it.</p>
<p>All PMOers start seeking porn for stupid reasons. Nobody has to. The only reason why anybody continues PMOing, whether they be a casual or a heavy user, is to feed that little monster. The whole business of porn and PMO is a series of confusing conundrums. All sufferers of PMO know at heart that they are fools and have been trapped by something evil. However, I think the most pathetic aspect about this is that the enjoyment that the PMOer gets from a session is the pleasure of trying to get back to the state of peace, tranquillity and confidence that his body had before he became hooked in the first place.</p>
<h2 id="the-annoying-burglar-alarm">The Annoying Burglar Alarm <a class="anchor" href="#the-annoying-burglar-alarm">
<span class="spanForHeader"></span>
</a></h2><p>You know that feeling when a neighbours burglar alarm has been ringing all day, or there has been some other minor, persistent aggravation. Then the noise suddenly stops - that marvellous feeling of peace and tranquillity is experienced. It is not really peace but the ending of the aggravation. Before we start the next PMO session, our bodies are complete. We then force our brains to pump dopamine into the body using PMO, and when we are done orgasming and the dopamine starts to leave, we suffer withdrawal pangs - not physical pain, just an empty feeling. We are not even aware that it exists, but it is like a dripping tap inside our bodies. Our rational minds do not understand it. They do not need to. All we know is that we want porn and when we masturbate the craving goes, and for the moment we are content and confident again just as we were before we
<h2 id="the-annoying-burglar-alarm">The Annoying Burglar Alarm<a hidden class="anchor" aria-hidden="true" href="#the-annoying-burglar-alarm">#</a></h2>
<p>You know that feeling when a neighbours burglar alarm has been ringing all day, or there has been some other minor, persistent aggravation. Then the noise suddenly stops - that marvellous feeling of peace and tranquillity is experienced. It is not really peace but the ending of the aggravation. Before we start the next PMO session, our bodies are complete. We then force our brains to pump dopamine into the body using PMO, and when we are done orgasming and the dopamine starts to leave, we suffer withdrawal pangs - not physical pain, just an empty feeling. We are not even aware that it exists, but it is like a dripping tap inside our bodies. Our rational minds do not understand it. They do not need to. All we know is that we want porn and when we masturbate the craving goes, and for the moment we are content and confident again just as we were before we
became addicted. However, the satisfaction is only temporary because in order to relieve the craving you have to get more porn. As soon as you orgasm the craving starts again and so the chain goes on. It is a chain for life - <strong>UNLESS YOU BREAK IT</strong>.</p>
<p>The whole business of PMO is like wearing tight shoes just to obtain the pleasure you feel when you take them off. There are three main reasons why PMOers cannot see things that way:</p>
<ol>
@ -55,9 +52,8 @@ became addicted. However, the satisfaction is only temporary because in order to
<p>It is this &lsquo;back to front&rsquo; reverse process that makes all drugs difficult to kick. Picture the panic state of a heroin addict who has no heroin. Now picture the utter joy when that addict can finally plunge a needle into his vein. Can you visualize someone actually getting pleasure by injecting themselves, or does the mere thought fill you with horror? Non-heroin addicts don&rsquo;t suffer that panic feeling.</p>
<p>The heroin doesn&rsquo;t relieve it. On the contrary, it causes it. Non-PMOers - say a 14 year old in 2008 - didn&rsquo;t suffer the empty feeling of needing internet porn or start to panic when they are off- line. Non-PMOers cannot understand how PMOers can possibly obtain pleasure from two dimensional videos with muted sounds and abnormal body proportions. And do you know something? PMOers themselves cannot understand why they do it after some time either.</p>
<p>We talk about internet porn being relaxing or giving satisfaction. But how can you be satisfied unless you were dissatisfied in the first place? Why don&rsquo;t non-PMOer suffer from this dissatisfied state and why, after a no-sex date, when the non-PMOers are completely relaxed, are PMOers completely unrelaxed until they have satisfied their &rsquo;little monster&rsquo;?</p>
<h2 id="a-pleasure-or-crutch">A Pleasure or Crutch? <a class="anchor" href="#a-pleasure-or-crutch">
<span class="spanForHeader"></span>
</a></h2><p>Forgive me if I dwell on this subject for a moment. The main reason that PMOers find it difficult to quit is that they believe that they are giving up a genuine pleasure or crutch. It is absolutely essential to understand that you are giving up nothing whatsoever. The best way to understand the subtleties of the PMO trap is to compare it with eating. If we are in the habit of eating regular meals, we are not aware of being hungry between meals. Only if the meal is delayed are we aware of being hungry, and even then, there is no physical pain, just an empty, insecure feeling which we know as: &lsquo;I need to eat.&rsquo; And the process of satisfying our hunger is a very pleasant pastime.</p>
<h2 id="a-pleasure-or-crutch">A Pleasure or Crutch?<a hidden class="anchor" aria-hidden="true" href="#a-pleasure-or-crutch">#</a></h2>
<p>Forgive me if I dwell on this subject for a moment. The main reason that PMOers find it difficult to quit is that they believe that they are giving up a genuine pleasure or crutch. It is absolutely essential to understand that you are giving up nothing whatsoever. The best way to understand the subtleties of the PMO trap is to compare it with eating. If we are in the habit of eating regular meals, we are not aware of being hungry between meals. Only if the meal is delayed are we aware of being hungry, and even then, there is no physical pain, just an empty, insecure feeling which we know as: &lsquo;I need to eat.&rsquo; And the process of satisfying our hunger is a very pleasant pastime.</p>
<p>PMOing appears to be almost identical. The empty, insecure feeling which we know as: &lsquo;wanting or needing an PMO orgasm is identical to a hunger for food, although one will not satisfy the other. Like hunger, there is no physical pain and the feeling is so imperceptible that we are not even aware of it between PMO sessions. It&rsquo;s only if we want to masturbate and aren&rsquo;t able to reach internet for porn that we become aware of any discomfort. But when we do PMO we feel satisfied.</p>
<p>It is this similarity to eating which helps to fool PMOers into believing that they receive some genuine pleasure. Some PMOers find it very difficult to grasp that there is no pleasure or crutch, whatsoever to PMO. Some argue: “How can you say there is no crutch? When I orgasm up then I&rsquo;ll feel less nervous than before.”</p>
<p>Although eating and PMOing appear to be very similar. In fact they are exact opposites:</p>
@ -66,13 +62,11 @@ became addicted. However, the satisfaction is only temporary because in order to
<li>Food does genuinely taste good, and eating is a genuinely pleasant experience that we can enjoy throughout our lives, whereas PMOing involves self-sabotaging the happiness receptors and thus destroying your chances to cope and to feel happy.</li>
<li>Eating doesn&rsquo;t create hunger and genuinely relieves it, whereas the first PMO starts the craving for dopamine and each subsequent one, far from relieving it, ensures that you suffer it for the rest of life.</li>
</ol>
<h2 id="pmo-is-a-habit">PMO is a Habit? <a class="anchor" href="#pmo-is-a-habit">
<span class="spanForHeader"></span>
</a></h2><p>This is an opportune moment to dispel another common myth about PMO - that it is a habit. Is eating a habit? If you think so, try breaking it completely. No, to describe eating as a habit would be the same as describing breathing as a habit. Both are essential for survival. It is true that different people are in the habit of satisfying their hunger at different times and with varying types of food. But eating itself is not a habit. Neither is PMO. The only reason any PMOer fires up the browser is to try to end the empty, insecure feeling that the previous orgasm and the PMO session created. It is true that different PMOers are in the habit of trying to relieve their withdrawal pangs at different times, but PMO itself is not a habit.</p>
<h2 id="pmo-is-a-habit">PMO is a Habit?<a hidden class="anchor" aria-hidden="true" href="#pmo-is-a-habit">#</a></h2>
<p>This is an opportune moment to dispel another common myth about PMO - that it is a habit. Is eating a habit? If you think so, try breaking it completely. No, to describe eating as a habit would be the same as describing breathing as a habit. Both are essential for survival. It is true that different people are in the habit of satisfying their hunger at different times and with varying types of food. But eating itself is not a habit. Neither is PMO. The only reason any PMOer fires up the browser is to try to end the empty, insecure feeling that the previous orgasm and the PMO session created. It is true that different PMOers are in the habit of trying to relieve their withdrawal pangs at different times, but PMO itself is not a habit.</p>
<p>On the internet they frequently refer to PMO as a habit and in this hackbook, for convenience, I also refer to the &lsquo;habit&rsquo;. However, be constantly aware that it is not habit, on the contrary it is no more nor less than DRUG ADDICTION! When we start to PMO we have to force ourselves to learn to cope with it. Before we know it, we are escalating<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup> - we have to then have more bizarre and more shocking porn. The thrill is in the hunting&hellip; not in the killing. If we don&rsquo;t then panic sets in and as we go through life we tend to novelty-seek more and more. Worse is when this seeking of higher shock level get into our real life. Have you heard about people suffering from PIED, that too in solo? How about wet dreams and fantasies where you are not even there but only involving others? There is no performance stress but I am not even getting hard. Great!</p>
<h2 id="crossing-the-red-line">Crossing The Red Line <a class="anchor" href="#crossing-the-red-line">
<span class="spanForHeader"></span>
</a></h2><p>This is because, as with any other drug, the body tends to develop immunity to the effects of the same old porn clips and our brain wants more or something else. After quite a short period of watching the same clip it ceases to relieve completely the withdrawal pangs that the previous PMO session had created. You want to stay on the safe side of your own red line but your brain is asking you to click on that forbidden fruit clip. There is a tug of war occurring in this supposed porn paradise.</p>
<h2 id="crossing-the-red-line">Crossing The Red Line<a hidden class="anchor" aria-hidden="true" href="#crossing-the-red-line">#</a></h2>
<p>This is because, as with any other drug, the body tends to develop immunity to the effects of the same old porn clips and our brain wants more or something else. After quite a short period of watching the same clip it ceases to relieve completely the withdrawal pangs that the previous PMO session had created. You want to stay on the safe side of your own red line but your brain is asking you to click on that forbidden fruit clip. There is a tug of war occurring in this supposed porn paradise.</p>
<p>You feel better than you did before starting this PMO session but you are in fact more nervous and less relaxed than you would be as a non-PMOer, like someone who is living in Loma Linda or in an Amish village, even though you are actually PMOing and living in your supposed “porn paradise.” This position is even more ridiculous than wearing tight shoes because as you go through life an increasing amount of the discomfort remains even when the shoes are removed.</p>
<p>Once the orgasm is achieved, the dopamine rapidly begins to leave the brain, causing a mood dip. Which explains why the PMOer wants to edge<sup id="fnref:2"><a href="#fn:2" class="footnote-ref" role="doc-noteref">2</a></sup> and switch through multiple browser windows as they seek and search. As I said, the habit doesn&rsquo;t exist. The real reason why every user goes on using internet porn is because of that little porn monster inside his stomach. Every now and again he has to feed it. The PMOer himself will decide when he does that and it tends to be on four types of occasion or a combination of them.</p>
<p>These occasions are:</p>
@ -82,19 +76,16 @@ became addicted. However, the satisfaction is only temporary because in order to
</ul>
<p>What magic drug can suddenly reverse the very effect it had minutes before? If you think about it, what other types of occasion are there in our lives; apart from sleep? The truth is that PMO neither relieves boredom and stress nor promotes concentration and relaxation. It is all just illusion. Apart from being a drug, PMO is also a destroyer of happiness and virility.</p>
<p>In case you have ideas of toning down to other more realistic or soft genres of porn and such, I should make it quite clear that the content of this book applies to all porn, yes, that includes, print, webcams, pay-per-views, chat, live shows etc. that is on high speed internet where novelty and shock is the nature of the game. Imagination goes farther than reality. The human body is the most sophisticated object on our planet. No species, even the lowest amoeba or worm, can survive without knowing the difference between food and poison.</p>
<h2 id="brain-reward-circuit-mechanics">Brain Reward Circuit Mechanics <a class="anchor" href="#brain-reward-circuit-mechanics">
<span class="spanForHeader"></span>
</a></h2><p>Through a process of natural selection over thousand of years, our minds and bodies have developed techniques for rewarding actions that multiply and sustain humanity. Yet our minds and bodies are not ready for the supernormal stimulus that is bigger, brighter, colourful, edgier and more shocking than the one we have now. We are attracted proportional to the degree of how far the outlier is from our individual normal. It can be two dimensional clip - and a muted one at that - we will get aroused. Look at the same clip again and again and you wont be. You just moved your red line close to the outlier and in no time you will enclose it in your normal consciousness. It is natural and it is so that you can multiply and grow this human race. In real life there are checks and balances in place so you take a break and go away do something else. With internet porn you there are no such checks and balances and you are living in a virtual harem!</p>
<h2 id="brain-reward-circuit-mechanics">Brain Reward Circuit Mechanics<a hidden class="anchor" aria-hidden="true" href="#brain-reward-circuit-mechanics">#</a></h2>
<p>Through a process of natural selection over thousand of years, our minds and bodies have developed techniques for rewarding actions that multiply and sustain humanity. Yet our minds and bodies are not ready for the supernormal stimulus that is bigger, brighter, colourful, edgier and more shocking than the one we have now. We are attracted proportional to the degree of how far the outlier is from our individual normal. It can be two dimensional clip - and a muted one at that - we will get aroused. Look at the same clip again and again and you wont be. You just moved your red line close to the outlier and in no time you will enclose it in your normal consciousness. It is natural and it is so that you can multiply and grow this human race. In real life there are checks and balances in place so you take a break and go away do something else. With internet porn you there are no such checks and balances and you are living in a virtual harem!</p>
<p>When we took a peep at internet porn the first time, a few images were titillating but most were disgusting, causing you to avert your eyes away. Like you would if had accidentally glanced a feeding mothers breast. And some of us are even revolted with what they saw when the star reminded them of someone dear to their heart or a scene which recalled their own instance of being the victim. Some dont feel like it to browse and masturbate at the same time. It may be hard to believe for you but the non-PMOs, who dont PMO after their first time, are the lucky ones. They actually decided that it was not their cup of tea. It must be hard for you to believe but stay with me.</p>
<p>How many of us dont visit brothels - even when you are far from home? Why not? Its not the social stigma? How many of us did not bring home a bottle on your way back from work - even after a hard day? Why not? You deserve it after that big deal you made? You just decided, after your first instance, that its not your cup of tea. That&rsquo;s all.</p>
<h2 id="are-pmoers-mentally-weak">Are PMOers Mentally Weak? <a class="anchor" href="#are-pmoers-mentally-weak">
<span class="spanForHeader"></span>
</a></h2><p>It is a fallacy that physically weak and mentally weak-willed people become PMOers. The lucky ones are those who find that first instance repulsive and they are cured for life. Or, alternatively, they are not mentally prepared to go through the severe learning process of fighting the obstructions of self-talking themselves to get hooked, fear of getting caught, not technical enough to create an online cache, operate privacy settings in the browser etc.</p>
<h2 id="are-pmoers-mentally-weak">Are PMOers Mentally Weak?<a hidden class="anchor" aria-hidden="true" href="#are-pmoers-mentally-weak">#</a></h2>
<p>It is a fallacy that physically weak and mentally weak-willed people become PMOers. The lucky ones are those who find that first instance repulsive and they are cured for life. Or, alternatively, they are not mentally prepared to go through the severe learning process of fighting the obstructions of self-talking themselves to get hooked, fear of getting caught, not technical enough to create an online cache, operate privacy settings in the browser etc.</p>
<p>To me this is the most tragic part of this whole business. How hard we worked to become hooked, and this is why it is difficult to stop teenagers. Because they are skilled in seeking and finding material, they know online privacy options and can clean their tracks - if they still feel some stigma and they (wrongfully) believe they can stop whenever they want to. Why do they not learn from us? Then again, why did we not learn from our PMOers and addicts?</p>
<p>Many PMOers believe they enjoy online internet porn. It is an illusion. What we are actually doing when we jump from genre to genre is to keep our novelty monkey within the red line of safe porn genres to get our dopamine fix, like heroin addicts who think that they enjoy injecting themselves. The withdrawal pangs from heroin are relatively severe and all they are really enjoying is the ritual of relieving those pangs.</p>
<h2 id="the-high-from-the-dance-around-the-red-line">The High From The Dance Around The Red Line <a class="anchor" href="#the-high-from-the-dance-around-the-red-line">
<span class="spanForHeader"></span>
</a></h2><p>Even with that one clip on which he lingers longer - the PMOer constantly teaches himself to filter out the bad and ugly portions of a porn clip. Even if it is solo, you still do the filtering on the body parts that appeal to you the most. In fact some even take pleasure in this game to find an excuse to declare that they like soft stuff and are not addicted to supranormal stimuli. Sometimes even this constant dance around the red line in itself produces a sort of high as well.</p>
<h2 id="the-high-from-the-dance-around-the-red-line">The High From The Dance Around The Red Line<a hidden class="anchor" aria-hidden="true" href="#the-high-from-the-dance-around-the-red-line">#</a></h2>
<p>Even with that one clip on which he lingers longer - the PMOer constantly teaches himself to filter out the bad and ugly portions of a porn clip. Even if it is solo, you still do the filtering on the body parts that appeal to you the most. In fact some even take pleasure in this game to find an excuse to declare that they like soft stuff and are not addicted to supranormal stimuli. Sometimes even this constant dance around the red line in itself produces a sort of high as well.</p>
<p>Ask a user who believes that he sticks to a certain actor or genre - only because he likes something about the star or the theme (if any) of the clip: “If you cannot get your normal brand of porn and can only obtain a poor or unsafe brand, do you stop masturbating?” No way. A PMOer will masturbate to anything rather than abstain and it doesn&rsquo;t matter if he has to switch to escalating themes, different sex-orientation-themes, look-alike actresses, dangerous settings shocking relationships etc. To begin with they taste awful but if you persevere you will learn to like them. Most PMOers will also try to seek masturbation even after having real sex (unfulfilment, porn-induced unrealistic expectations etc.), or after a long, stressful work day, fever, colds, flu, sore throats and even when admitted in hospitals.</p>
<p>Enjoyment has nothing to do with it after the initial few minutes. If sex is wanted then it makes no sense to be with your laptop. During my conversation some PMOers find it alarming to realize they are drug addicts and think it will make it even more difficult to stop. In fact, it is all good news for two important reasons:</p>
<ol>
@ -102,14 +93,12 @@ became addicted. However, the satisfaction is only temporary because in order to
<li>Although internet porn is the most powerful trigger for novelty and sex based dopamine flooding - because of the speed with which you become hooked, you are never badly hooked. The actual withdrawal pangs are so mild that most PMOers have lived and died without ever realizing that they have suffered them.</li>
</ol>
<p>You will quite rightly ask why it is that many PMOers find it so difficult to stop, go through months of torture and spend the rest of their lives pining for it at odd times. The answer is the second reason why we use Internet porn - the brainwashing. The brain-chemical addiction is easy to cope with. Most PMOers go days without online porn - when they are on business trips or travel etc. The withdrawal pangs dont affect them. Their little porn monster knows that you will open your laptop as soon as you return to hotel room or your den. Ah, you can even survive this obnoxious client and your megalomaniac manager - just knowing that the fix is there for your take. It doesn&rsquo;t bother the PMOers.</p>
<h2 id="the-smokers-analogy">The Smokers Analogy <a class="anchor" href="#the-smokers-analogy">
<span class="spanForHeader"></span>
</a></h2><p>A good analogy is the situation of smokers - if they went ten hours during the day without a cigarette they&rsquo;d be tearing their hair out. Many smokers will buy a new car nowadays and refrain from smoking in it. Many will visit theatres, supermarkets, churches, etc. and not being able to smoke doesn&rsquo;t bother them. Even on the trains there have been no riots. Smokers are almost pleased for someone or something to force them to stop smoking.</p>
<h2 id="the-smokers-analogy">The Smokers Analogy<a hidden class="anchor" aria-hidden="true" href="#the-smokers-analogy">#</a></h2>
<p>A good analogy is the situation of smokers - if they went ten hours during the day without a cigarette they&rsquo;d be tearing their hair out. Many smokers will buy a new car nowadays and refrain from smoking in it. Many will visit theatres, supermarkets, churches, etc. and not being able to smoke doesn&rsquo;t bother them. Even on the trains there have been no riots. Smokers are almost pleased for someone or something to force them to stop smoking.</p>
<p>PMOers will automatically refrain from using internet porn in the home of their parents while visiting for family get togethers etc. with little discomfort to themselves. In fact, most PMOers have extended periods during which they abstain without effort. Even in my case I would quite happily go a week or so without a PMO incident. In the later years as a PMOer I actually used to look forward to these days when I could stop choking my penis (what a ridiculous &lsquo;habit&rsquo;).</p>
<p>The brain chemical addiction (little monster) is easy to cope with, even when you are still addicted, and there are thousands of PMOers who remain casual users all their lives. They are just as heavily addicted as the heavy PMOer. There are even heavy PMOers who have kicked the &lsquo;habit&rsquo; but will have an occasional peek, and that keeps them addicted. You are greasing the water slide of the brain only to see you slide down at the next dip in your mood.</p>
<h2 id="the-big-monster---the-brainwashing">The Big Monster - The Brainwashing <a class="anchor" href="#the-big-monster---the-brainwashing">
<span class="spanForHeader"></span>
</a></h2><p>You are smart enough to know (aside, I will explain shortly why PMOers are in fact a strong willed and hard working bunch) that not all porn workers get a W-2 with 401k and stock options. Only a very rare actor and that too for a very short period of time of their career may be.</p>
<h2 id="the-big-monster---the-brainwashing">The Big Monster - The Brainwashing<a hidden class="anchor" aria-hidden="true" href="#the-big-monster---the-brainwashing">#</a></h2>
<p>You are smart enough to know (aside, I will explain shortly why PMOers are in fact a strong willed and hard working bunch) that not all porn workers get a W-2 with 401k and stock options. Only a very rare actor and that too for a very short period of time of their career may be.</p>
<p>Not all the amateurs are amateurs on these tube sites, oversized body parts and overcharged scenarios are the norm, aided by a bit of the viagran help.</p>
<p>As I say, the actual porn addiction is not the main problem. It just acts as a catalyst to keep our minds confused over the real problem: the brainwashing. It may be of consolation to lifelong and heavy PMOers to know that it is just as easy for them to stop as casual PMOers. In a peculiar way. it is easier. The further you go along with the &lsquo;habit&rsquo;, the more it drags you down and the greater the gain when you stop.</p>
<p>It may be of further consolation for you to know that the rumours that occasionally circulate that the neural pathways created are there for life, and so at the right (or wrong) time and with strong stimuli you will be sliding again down the water slide of internet porn and masturbation to permanently destroy your real life sex are untrue.</p>
@ -128,6 +117,7 @@ became addicted. However, the satisfaction is only temporary because in order to
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-05-why-do-we-carry-on-with-pmo/"><div id="prevart">Previous:<br>03-05 Why Do We Carry on With PMO</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Brainwashing and the Primitive Mechanism How or why do we start PMOing in the first place? To understand this fully you need to examine the powerful effect of the supernormal stimulus. We all tend to think we are intelligent, dominant human beings determining our paths through life. We act and act frequently when our brain reward circuit are rewarded. Nobel laureate Nikolaas Tinbergen coined the term “supranormal stimulus.” He said mammals could be tricked into preferring fake eggs and mates."/>
<meta name="description" content="Brainwashing and the Primitive Mechanism How or why do we start PMOing in the first place? To understand this fully you need to examine the powerful effect of the supernormal stimulus. We all tend to think we are intelligent, dominant human beings determining our paths through life. We act and act frequently when our brain reward circuit are rewarded. Nobel laureate Nikolaas Tinbergen coined the term “supranormal stimulus.” He said mammals could be tricked into preferring fake eggs and mates."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,29 +17,26 @@
<header><h1 id="tag_03-07 Brainwashing and the Primitive Mechanism">03-07 Brainwashing and the Primitive Mechanism</h1></header>
<article>
<h2 id="brainwashing-and-the-primitive-mechanism">Brainwashing and the Primitive Mechanism <a class="anchor" href="#brainwashing-and-the-primitive-mechanism">
<span class="spanForHeader"></span>
</a></h2><p>How or why do we start PMOing in the first place? To understand this fully you need to examine the powerful effect of the supernormal stimulus. We all tend to think we are intelligent, dominant human beings determining our paths through life. We act and act frequently when our brain reward circuit are rewarded. Nobel laureate Nikolaas Tinbergen coined the term “supranormal stimulus.” He said mammals could be tricked into preferring fake eggs and mates. Female birds, for example, struggled to sit on larger-than life, vividly spotted plaster eggs while their own pale, dappled eggs perished untended.</p>
<div class="post-content"><h2 id="brainwashing-and-the-primitive-mechanism">Brainwashing and the Primitive Mechanism<a hidden class="anchor" aria-hidden="true" href="#brainwashing-and-the-primitive-mechanism">#</a></h2>
<p>How or why do we start PMOing in the first place? To understand this fully you need to examine the powerful effect of the supernormal stimulus. We all tend to think we are intelligent, dominant human beings determining our paths through life. We act and act frequently when our brain reward circuit are rewarded. Nobel laureate Nikolaas Tinbergen coined the term “supranormal stimulus.” He said mammals could be tricked into preferring fake eggs and mates. Female birds, for example, struggled to sit on larger-than life, vividly spotted plaster eggs while their own pale, dappled eggs perished untended.</p>
<p>The stimulation here in internet porn is not it brings stimulating actors and themes to your home - it is a genie at your bidding to create a harem in your mind. You can switch between genres and theme, home-made and viewer rated, commented and discussed, so rapid and so easy. We absolutely are not ready for the high speed internet porn and our brains are not designed to handle this supranormal stimuli.</p>
<p>We can have an information overload from the same internet but our reward circuits are not going to squirt dopamine at the levels when porn overload is involved. We are evolutionarily programmed to seek and access sex related stuff. And we wrongly appraise the stimulus mostly based on this reward circuit action. If all you wanted is to masturbate why cant you just use one clip and get the business done?</p>
<p>Here is another question - next time after a long day or some stressful incident can you consciously embellish your self-talk with “Do you know what I would really enjoy today? The marvellous warm glow of dopamine rush going to my online harem.” You will find that even people who dislike PMO will join you.</p>
<h2 id="past-misguided-advice">Past Misguided Advice <a class="anchor" href="#past-misguided-advice">
<span class="spanForHeader"></span>
</a></h2><p>There was much misguided advice given in the past and one is that masturbating will lead to blindness. And there are some other scare tactics that clearly over-did it. It is right that those notions were overthrown by science. But now the mainstream threw the baby out with the bath water. TV programs, pop music, literature and movies all subtly show shambolic characters using porn or masturbation. They knowingly or unknowingly mix porn, sex, internet porn, masturbation and orgasm.</p>
<h2 id="past-misguided-advice">Past Misguided Advice<a hidden class="anchor" aria-hidden="true" href="#past-misguided-advice">#</a></h2>
<p>There was much misguided advice given in the past and one is that masturbating will lead to blindness. And there are some other scare tactics that clearly over-did it. It is right that those notions were overthrown by science. But now the mainstream threw the baby out with the bath water. TV programs, pop music, literature and movies all subtly show shambolic characters using porn or masturbation. They knowingly or unknowingly mix porn, sex, internet porn, masturbation and orgasm.</p>
<p>From our earliest years our subconscious minds are bombarded daily with information telling us that sex is good and that the most precious thing on this earth is to achieve orgasm. Girls are taught to achieve it and claim it&rsquo;s because they were wrongly suppressed of their sexual side for a very long time and still are. You think I exaggerate? Watch any TV or movie plot and you will see the mix-up of the amative (touch, smell, voice etc.) and the propagative (orgasmic) sides of sex. The impact of this does not register on our conscious minds but the sleeping partner, the subconscious mind, has time to absorb it. What the message is really saying is, “The most precious thing on this earth, my last thought and action, will be the goal of orgasm.” If you dont have an orgasm then you are an old man with zero libido.</p>
<p>Our children are being bombarded by sex and porn clips and many dont even know how to protect them from it all. Large hoardings and magazine adverts are loaded with sexual innuendo. Some of the pop videos are extremely suggestive - again they hide behind free speech. Dont be vexed and feel powerless about it. Make it a game and find you which of the components they are using - is it novelty, shock value, color, size, taboo etc. If the kids are pre-teen some of these can be disclosed to them and it would make an excellent show-and-tell game.</p>
<p>A while back there was a wave of leaked private videos of celebrities on the internet. If the youngster is too smitten by their favourite star, even if the conscious mind blames the leak on the blood thirsty internet paparazzi, the &lsquo;sleeping partner&rsquo; is patiently digesting the notion that, “yes, even my shambolic hero does it and if I dont, I wont look the part.”</p>
<h2 id="the-scientific-reasoning">The Scientific Reasoning <a class="anchor" href="#the-scientific-reasoning">
<span class="spanForHeader"></span>
</a></h2><p>True, there is publicity the other way - the PIED scares, the loss of motivation, preferring virtual porn to real girls, YBOP<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>, Reboot<sup id="fnref:2"><a href="#fn:2" class="footnote-ref" role="doc-noteref">2</a></sup> forums, underground PUA<sup id="fnref:3"><a href="#fn:3" class="footnote-ref" role="doc-noteref">3</a></sup>, the no FAP movement - but these do not actually stop people PMOing. Logically they should, but the fact is they do not. They would not even prevent youngsters from starting no matter how much the YBOP guys try. All the years that I remained a PMOer, I can honestly say, even if I had read all of them before, I would never have become a quitter. The truth is that it doesn&rsquo;t make the slightest bit of difference. The trap is the same today as when you fell into it.</p>
<h2 id="the-scientific-reasoning">The Scientific Reasoning<a hidden class="anchor" aria-hidden="true" href="#the-scientific-reasoning">#</a></h2>
<p>True, there is publicity the other way - the PIED scares, the loss of motivation, preferring virtual porn to real girls, YBOP<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>, Reboot<sup id="fnref:2"><a href="#fn:2" class="footnote-ref" role="doc-noteref">2</a></sup> forums, underground PUA<sup id="fnref:3"><a href="#fn:3" class="footnote-ref" role="doc-noteref">3</a></sup>, the no FAP movement - but these do not actually stop people PMOing. Logically they should, but the fact is they do not. They would not even prevent youngsters from starting no matter how much the YBOP guys try. All the years that I remained a PMOer, I can honestly say, even if I had read all of them before, I would never have become a quitter. The truth is that it doesn&rsquo;t make the slightest bit of difference. The trap is the same today as when you fell into it.</p>
<p>Ironically, the most powerful force in this melee of confusion is the PMOer himself. It is a fallacy that they are weak-willed or are physically weak specimens. You have to be physically strong in order to cope with an addiction after you know it is. This is one of the reasons why PMOers refuse to accept the overwhelming statistics that prove that internet porn with its novelty cripples your brain. Add to that the sexologists who are doing half-baked studies and declare PMO is not an issue - they just help to add to the confusion.</p>
<p>Everyone knows a friend who PMOed every day - he started with the static to internet porn, always horny in real life, chasing girls and you never doubted him to have sex problems of course. You want to believe him. He never complained about any ED right? Guys and girls like them refuse even to consider the hundreds of ex-addicts and non-PMOers who painfully recount their difficulties. It is the “little monster” brain chemical addiction and the “big monster” - illusions and delusions. In this hackbook, I&rsquo;ve put together almost all the sorts of brainwashing a PMOer can suffer from. There will always be a few out there that I haven&rsquo;t touched upon.</p>
<p>Even more painful is they think of themselves as unsuccessful losers and insufferable introverts. A possible fact is that a PMO friend could have been more interesting in person if he hadnt put himself down for seeking self-pleasure.</p>
<p>If you do a small survey among your online forum members, friends and colleagues, you will find that most PMOers are, in fact, strong-willed people. They tend to be self-employed, business executives or in certain specialized professions, such as doctors<sup id="fnref:4"><a href="#fn:4" class="footnote-ref" role="doc-noteref">4</a></sup>, lawyers, policemen, teachers, salesmen, nurses, secretaries, housewives with children, etc. In other words, anybody leading a stressful existence. Yes, I did include women and mothers. Its the brain and its the same for them too. The main delusion of the PMOer is that porn helps to masturbate to orgasm and that relieves stress. This tends to be associated with the dominant type, the type that takes on responsibility and stress and, of course, that is the type that we admire and therefore tend to copy. Another group that tends to get hooked are people in monotonous jobs because the other main reason for PMOing is boredom. However, the idea that internet porn relieves boredom is also an illusion, I am afraid.</p>
<p>As a society we get all uptight about glue-sniffing, heroin addiction, etc. Actual deaths from glue-sniffing do not amount to ten per annum, and deaths from heroin are less than a hundred a year in this country. There is another drug, internet porn, on which over 45 per cent of us become hooked at some time in our lives and the majority spend the rest of their lives regretting it. Some even dont know that their ED is due to this.</p>
<h2 id="the-willpower-method">The Willpower Method <a class="anchor" href="#the-willpower-method">
<span class="spanForHeader"></span>
</a></h2><p>PMOers who quit using the Willpower method blame their own lack of willpower and ruin their peace and happiness. It is one thing to fail in self-discipline and another to self-loathe. There is no law that requires you to get fully hard all the time before sex, and to be properly aroused, and that you must be able to satisfy a woman. We are working on an addiction and not a habit. Habit is something you like to do- for example, golf - at no point you are arguing with yourself to stop golfing? But you do so with your porn addiction. The real question is: why?</p>
<h2 id="the-willpower-method">The Willpower Method<a hidden class="anchor" aria-hidden="true" href="#the-willpower-method">#</a></h2>
<p>PMOers who quit using the Willpower method blame their own lack of willpower and ruin their peace and happiness. It is one thing to fail in self-discipline and another to self-loathe. There is no law that requires you to get fully hard all the time before sex, and to be properly aroused, and that you must be able to satisfy a woman. We are working on an addiction and not a habit. Habit is something you like to do- for example, golf - at no point you are arguing with yourself to stop golfing? But you do so with your porn addiction. The real question is: why?</p>
<p>Constant exposure to internet porn re-wires your brain. You need to start building resistance to this brainwashing, just as if you were buying a car from a second-hand car dealer. You would be nodding politely but you would not believe a word the man was saying. So dont believe everything they say either - that you must have sex as much as you can and you must have it exceptional good. And that in the absence of real sex you claim it by the substitute called internet porn - which is only a component of the good old porn.</p>
<p>And dont play safe porn game either - because your “little porn monster” invented that scheme to lure you. Even the content - amateur? Really? Is there a certification authority that certifies it? Tube sites and porn producers gather site visitor profiles and cater to their needs. If they see a trend in crowd sourced collection of a particular genre they will focus on that and get content out ASAP. The statistics of what genre users like is collected to the level of how long and which portion the users were preferring. Do not be fooled by their educational intent or the safe female oriented clips (for you ladies). Start asking yourself:</p>
<ul>
@ -49,21 +46,18 @@
<p><strong>NO, OF COURSE YOU DON&rsquo;T.</strong></p>
<p>I find this brainwashing aspect the most difficult of all to explain. Why is it that an otherwise rational, intelligent human being becomes a complete imbecile about his own addiction? It pains me to confess that out of the thousands of people that I have assisted in kicking the habit, I (not Allen Carr) was the biggest idiot of all.</p>
<p>At the age of thirteen, although I was doing well at school and games, I was still an insufferable introvert. I read books from the library that were not within my main study list. However, I can see that I was attracted to erotica. I started masturbating to TV programs, song and dance sequences etc. I must have to have it every day. The tired feeling I felt was misappropriated by my little porn monster as work stress. I didnt know my “I-must-masturbate-as-I-am-entitled” attitude was the one that created the stress in the first place. Then I got pictures and GIFs via email on my laptop - the first step towards electronic porn. The colour and texture of the images were amazing for me at that time - wont be now for sure. Then came dial-up but still they were predominantly static pictures. Then came downloadable videos. Its a pain to download and watch now - but it was heaven sent then as we were coming out of the static porn era! Oh, the streaming tube sites havent arrived yet.</p>
<h2 id="when-real-sex-is-not-enough-anymore">When Real Sex Is Not Enough Anymore <a class="anchor" href="#when-real-sex-is-not-enough-anymore">
<span class="spanForHeader"></span>
</a></h2><p>I even remember opening up my laptop after having real sex (an activity I did due to stress induced by my own irrational rigid self demands to make her orgasm) and I was wanting more. Obviously the prospect of orgasm providing fulfilment rarely happens after prolonged porn use. So, my mind was reaching out to porn.</p>
<h2 id="when-real-sex-is-not-enough-anymore">When Real Sex Is Not Enough Anymore<a hidden class="anchor" aria-hidden="true" href="#when-real-sex-is-not-enough-anymore">#</a></h2>
<p>I even remember opening up my laptop after having real sex (an activity I did due to stress induced by my own irrational rigid self demands to make her orgasm) and I was wanting more. Obviously the prospect of orgasm providing fulfilment rarely happens after prolonged porn use. So, my mind was reaching out to porn.</p>
<p>At the age of forty, I was visiting my online harem daily, drinking socially (whatever that means) and smoking sometimes but not so often. I had wrongly subscribed to misguided ideas of moderation and entitlement. I had reached the stage where I couldn&rsquo;t get through a single day without reaching out to porn in the night. With most PMOers, the triggers are the normal stresses of life, like answering the telephone or socializing.</p>
<p>When I experienced PIED - I knew it was killing my virility. There was no way I could kid myself otherwise. I am smart enough not to project the porn fantasies on to real life. But it was like pacifying a dog straining at its leash. But why I couldn&rsquo;t see what it was doing to me mentally, I could not understand. It was almost jumping up and biting me on the nose. The ridiculous thing is that most PMOers suffer the delusion at some time in their life that they enjoy internet porn because it is normal and healthy. I never suffered that delusion, I PMOed because I thought enjoying sex is a birthright and I am only doing a normal thing.</p>
<p>Since it was easier at most times for me to get internet porn than a partner I thought I am doing the normal thing. Now I am a non-PMOer, the most difficult part is trying to believe that those days actually happened. It&rsquo;s like awakening from a nightmare and that is about the size of it. Internet porn is a supranormal drug. It is weakening your de-stressing mechanisms, your virility and your energy. The worst aspect of PMO isn&rsquo;t the injury to your health or manliness, it is the warping of the mind. You search for any plausible excuse to go on.</p>
<p>I remember at one stage switching to static images, a failed attempt to cut down on internet porn, in the belief that it was less harmful and I could reign in my habit. I failed to see the novelty and the shock demands from my little monster to just get more dopamine. Did I stay within my boundaries? I favorited 2 dimensional photos and my harem collection saw pictures and videos of mild type porn rotating in and out like musical chair. When their music stopped they exited. I didnt understand the novelty-seeking, shock-seeking nature of my brain.</p>
<h2 id="pied-and-my-excuses">PIED And My Excuses <a class="anchor" href="#pied-and-my-excuses">
<span class="spanForHeader"></span>
</a></h2><p>Once I figured I had PIED, as it had occurred multiple times with two different partners, I switched to more and more sophisticated masturbation. I practised with different artificial vaginas. They are sold as strength training. However, the combo of internet porn and toys needs deft hands, which is off-putting. Besides, by this time I was at the stage of orgasming with a limp member. All I wanted is an orgasm so I did not care about arousal, getting hard and all that. I had a long distance married girlfriend - who likes to share and talk about her sex life in very explicit manner. It turned me on so much that Id masturbate to orgasm when I am on the phone with her. She knew it and would play with me by cutting off abruptly - to keep me hanging there - making me wanting more when she calls the next time. She had no trouble because I was fully willing to be the subject of playing such games, as long as it led to orgasm. A girl knows when a guy is seeking orgasm and it is his only goal. The only redeeming factor about me was my intelligence and empathy which kept her and my other partners coming back to me.</p>
<h2 id="pied-and-my-excuses">PIED And My Excuses<a hidden class="anchor" aria-hidden="true" href="#pied-and-my-excuses">#</a></h2>
<p>Once I figured I had PIED, as it had occurred multiple times with two different partners, I switched to more and more sophisticated masturbation. I practised with different artificial vaginas. They are sold as strength training. However, the combo of internet porn and toys needs deft hands, which is off-putting. Besides, by this time I was at the stage of orgasming with a limp member. All I wanted is an orgasm so I did not care about arousal, getting hard and all that. I had a long distance married girlfriend - who likes to share and talk about her sex life in very explicit manner. It turned me on so much that Id masturbate to orgasm when I am on the phone with her. She knew it and would play with me by cutting off abruptly - to keep me hanging there - making me wanting more when she calls the next time. She had no trouble because I was fully willing to be the subject of playing such games, as long as it led to orgasm. A girl knows when a guy is seeking orgasm and it is his only goal. The only redeeming factor about me was my intelligence and empathy which kept her and my other partners coming back to me.</p>
<p>Most PMOers swear that they only watch static and soft porn and so they are OK. They are actually straining at the leash and thus fighting with their willpower to resist temptations. If they do this too often and for too long they will debit their willpower considerably and fail in other life projects where willpower is of much great value, like in daily exercise, dieting etc. Continuous failure in those areas will make them feel miserable and guilty and very soon they will find themselves back to their entitled relief. If not, they will vent their anger and depression onto their loved ones.</p>
<p>The answer is that once you have become addicted to internet porn, the brainwashing is increased. Your subconscious mind knows that the little monster has to be fed and you block everything else from your mind. As I have already stated, it is fear that keeps people quitting, the fear of that empty, insecure feeling that you get when you stop supplying the brain with dopamine flooding. Just because you are not aware of it doesn&rsquo;t mean it isn&rsquo;t there. You don&rsquo;t have to understand it any more than a cat needs to understand where the under-floor hot-water pipes are. It just knows that if it sits in a certain place it gets the feeling of warmth.</p>
<h2 id="the-passivity-of-our-mind">The Passivity Of Our Mind <a class="anchor" href="#the-passivity-of-our-mind">
<span class="spanForHeader"></span>
</a></h2><p>It is the passivity of our minds and dependency on authority leading to brainwashing that is the main difficulty in giving up PMO. The brainwashing of our upbringing in society reinforced with the brainwashing from our own addiction and, most powerful of all, the brainwashing of our friends, relatives and colleagues. Did you notice that up to now I&rsquo;ve frequently referred to &lsquo;giving up&rsquo; PMO, I used the expression at the beginning of the previous paragraph. This is a classic example of the brainwashing. The expression implies a genuine sacrifice. The beautiful truth is that there is absolutely nothing to give up. On the contrary, you will be freeing yourself from a terrible disease and achieving marvellous positive gains. We are going to start removing this brainwashing now. From this point on, no longer will we refer to &lsquo;giving up&rsquo;, but to stopping, quitting or the true position: <strong>ESCAPING!</strong></p>
<h2 id="the-passivity-of-our-mind">The Passivity Of Our Mind<a hidden class="anchor" aria-hidden="true" href="#the-passivity-of-our-mind">#</a></h2>
<p>It is the passivity of our minds and dependency on authority leading to brainwashing that is the main difficulty in giving up PMO. The brainwashing of our upbringing in society reinforced with the brainwashing from our own addiction and, most powerful of all, the brainwashing of our friends, relatives and colleagues. Did you notice that up to now I&rsquo;ve frequently referred to &lsquo;giving up&rsquo; PMO, I used the expression at the beginning of the previous paragraph. This is a classic example of the brainwashing. The expression implies a genuine sacrifice. The beautiful truth is that there is absolutely nothing to give up. On the contrary, you will be freeing yourself from a terrible disease and achieving marvellous positive gains. We are going to start removing this brainwashing now. From this point on, no longer will we refer to &lsquo;giving up&rsquo;, but to stopping, quitting or the true position: <strong>ESCAPING!</strong></p>
<p>The only thing that persuades us to PMO in the first place is all the other people doing it. We feel we are missing out. We work so hard to become hooked, yet nobody ever finds out what they have been missing. But every time we see another new video clip it reassures us that there must be something in it, otherwise people wouldn&rsquo;t be doing it - and it wouldn&rsquo;t be such big business all over the world. Even when he has kicked the habit, the ex-PMOer feels he is being deprived when a discussion on a sexy entertainer, singer or even a porn star comes up at a party or other social function. She or he must be good to have all my friends talk about them, no? Do they have hot pictures of her in my tube site? He feels safe. He can have just one peek that night. And, before he knows it, he is hooked again.</p>
<p>This brainwashing is extremely powerful and you need to be aware of its effects. I have heard scare stories about wicked men giving heroin mixed candies to kids at schoolyards. The concept of addiction and being compelled to go on taking the drug, filled me with horror. Even to this day, in spite of the fact that I am fairly convinced that &lsquo;pot&rsquo; is not addictive, I would not dare take one puff of marijuana. How ironic that I should have ended up a porn junky. Technology will continue to grow and we will have even faster tube sites and more faster access methods. The industry is investing millions in Virtual Reality so it will become the next best thing. The point is, do we know where we are going? Are we equipped with an under armour of defence so we can enjoy the benefits of technology yet at the same time protect ourselves from its bad effects?</p>
<p>We are about to remove the brainwashing. It is not the non-PMOer who is being deprived but the poor user who is forfeiting a lifetime of:</p>
@ -97,6 +91,7 @@
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-06-internet-porn/"><div id="prevart">Previous:<br>03-06 Internet Porn</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Relieving Withdrawal Pangs As I explained earlier, PMOers think they do it for enjoyment, relaxation or some sort of education. In fact, this an illusion. The actual reason is the relief of withdrawal pangs. In the early days we use the porn as a curious and novel thing or even educational or as a rebel. We can take it or leave it. However, the subtle chain has started. Our subconscious mind begins to learn that internet porn and masturbation taken at certain times tends to be pleasurable."/>
<meta name="description" content="Relieving Withdrawal Pangs As I explained earlier, PMOers think they do it for enjoyment, relaxation or some sort of education. In fact, this an illusion. The actual reason is the relief of withdrawal pangs. In the early days we use the porn as a curious and novel thing or even educational or as a rebel. We can take it or leave it. However, the subtle chain has started. Our subconscious mind begins to learn that internet porn and masturbation taken at certain times tends to be pleasurable."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-08 Relieving Withdrawal Pangs">03-08 Relieving Withdrawal Pangs</h1></header>
<article>
<h2 id="relieving-withdrawal-pangs">Relieving Withdrawal Pangs <a class="anchor" href="#relieving-withdrawal-pangs">
<span class="spanForHeader"></span>
</a></h2><p>As I explained earlier, PMOers think they do it for enjoyment, relaxation or some sort of education. In fact, this an illusion. The actual reason is the relief of withdrawal pangs. In the early days we use the porn as a curious and novel thing or even educational or as a rebel. We can take it or leave it. However, the subtle chain has started. Our subconscious mind begins to learn that internet porn and masturbation taken at certain times tends to be pleasurable. The more we become hooked on the drug, the greater the need to relieve the withdrawal pangs and the further the PMO drags you down and the more you are fooled into believing it is doing the opposite. It all happens so slowly, so gradually, you are not even aware of it. Each day you feel no different from the day before. Most young PMOers don&rsquo;t even realize they are hooked until they actually try to stop and even then many won&rsquo;t admit to it. A few stalwarts just keep their heads in the sand all their lives,trying to convince themselves and other people that they enjoy it.</p>
<div class="post-content"><h2 id="relieving-withdrawal-pangs">Relieving Withdrawal Pangs<a hidden class="anchor" aria-hidden="true" href="#relieving-withdrawal-pangs">#</a></h2>
<p>As I explained earlier, PMOers think they do it for enjoyment, relaxation or some sort of education. In fact, this an illusion. The actual reason is the relief of withdrawal pangs. In the early days we use the porn as a curious and novel thing or even educational or as a rebel. We can take it or leave it. However, the subtle chain has started. Our subconscious mind begins to learn that internet porn and masturbation taken at certain times tends to be pleasurable. The more we become hooked on the drug, the greater the need to relieve the withdrawal pangs and the further the PMO drags you down and the more you are fooled into believing it is doing the opposite. It all happens so slowly, so gradually, you are not even aware of it. Each day you feel no different from the day before. Most young PMOers don&rsquo;t even realize they are hooked until they actually try to stop and even then many won&rsquo;t admit to it. A few stalwarts just keep their heads in the sand all their lives,trying to convince themselves and other people that they enjoy it.</p>
<p>Listen to this conversation a therapist had with hundreds of teenagers.</p>
<blockquote>
<p>TH: “You realize that internet porn is a drug and that the only reason why you are using is that you cannot stop.”</p>
@ -41,6 +41,7 @@
</blockquote>
<p>As already stated, PMOers tend to relieve their withdrawal pangs at times of stress, boredom, concentration, relaxation or a combination of these. This point is explained in greater detail in the next few chapters.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-07-brainwashing-and-the-primitive-mechanism/"><div id="prevart">Previous:<br>03-07 Brainwashing and the Primitive Mechanism</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Stress I am referring not only to the great tragedies of life but also to the minor stresses, the socializing, the telephone call, the anxieties of the housewife with noisy young children and so on. Let us use the telephone conversation as an example. For most people the telephone is slightly stressful, particularly for the businessman. Most calls aren&rsquo;t from satisfied customers or your boss congratulating you. There&rsquo;s usually some sort of aggravation - something going wrong or somebody making demands."/>
<meta name="description" content="Stress I am referring not only to the great tragedies of life but also to the minor stresses, the socializing, the telephone call, the anxieties of the housewife with noisy young children and so on. Let us use the telephone conversation as an example. For most people the telephone is slightly stressful, particularly for the businessman. Most calls aren&rsquo;t from satisfied customers or your boss congratulating you. There&rsquo;s usually some sort of aggravation - something going wrong or somebody making demands."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-09 Stress">03-09 Stress</h1></header>
<article>
<h2 id="stress">Stress <a class="anchor" href="#stress">
<span class="spanForHeader"></span>
</a></h2><p>I am referring not only to the great tragedies of life but also to the minor stresses, the socializing, the telephone call, the anxieties of the housewife with noisy young children and so on. Let us use the telephone conversation as an example. For most people the telephone is slightly stressful, particularly for the businessman. Most calls aren&rsquo;t from satisfied customers or your boss congratulating you. There&rsquo;s usually some sort of aggravation - something going wrong or somebody making demands. Then he or she comes home to the mundane family life of kids screaming and wife&rsquo;s emotional demands on you. His already PMO weakened de-stressors are in no way ready to take the aggravation. At that time the PMOer, if he isn&rsquo;t already doing so, will fantasize the relief of internet porn that he promised himself that night. He will even allow himself to “take one step more” into the forbidden area that he had previously self-excluded. He doesn&rsquo;t know why he does this but he does know that for some reason it appears to help.</p>
<div class="post-content"><h2 id="stress">Stress<a hidden class="anchor" aria-hidden="true" href="#stress">#</a></h2>
<p>I am referring not only to the great tragedies of life but also to the minor stresses, the socializing, the telephone call, the anxieties of the housewife with noisy young children and so on. Let us use the telephone conversation as an example. For most people the telephone is slightly stressful, particularly for the businessman. Most calls aren&rsquo;t from satisfied customers or your boss congratulating you. There&rsquo;s usually some sort of aggravation - something going wrong or somebody making demands. Then he or she comes home to the mundane family life of kids screaming and wife&rsquo;s emotional demands on you. His already PMO weakened de-stressors are in no way ready to take the aggravation. At that time the PMOer, if he isn&rsquo;t already doing so, will fantasize the relief of internet porn that he promised himself that night. He will even allow himself to “take one step more” into the forbidden area that he had previously self-excluded. He doesn&rsquo;t know why he does this but he does know that for some reason it appears to help.</p>
<p>What has actually happened is this: without being conscious of it, he has already been suffering aggravation (i.e. the withdrawal pangs). By partially relieving that aggravation at the same time as normal stress, the total stress is reduced and the PMOer gets a boost. At this point the boost is not, in fact, an illusion. The Internet porn user will feel better than before. However, even when using porn to masturbate he or she is more tense than if he were a non-PMOer because the more you go into the drug, the more it knocks you down and the less it restores you when you masturbate. I promised no shock treatment. In the example I am about to give, I am not trying to shock you, I am merely emphasizing that PMO destroy your nerves rather than relax them.</p>
<p>Try to imagine getting to the stage where you cannot get aroused even with a very sexy and attractive partner. Just for a moment pause and try to visualize life where one very lovely and charming woman has to compete and fail with all the virtual porn stars who are in your &lsquo;harem&rsquo; to get your attention! Try to imagine the frame of mind of a man who, issued with that warning, actually continues PMOing and then dies without ever having had real sex with this charming and willing real woman. I had read real life stories like that from men and dismissed them as weirdos. In fact, I used to wish a doctor would tell me that this weird condition would happen if I continue PMO; then I would have stopped. Yet I was already fully expecting that PIED and hypofrontality where I am guaranteed to lose in a brain war. I didn&rsquo;t think of myself as an impotent, just a heavy PMOer. Now, lets talk about the stress that this is putting on me.</p>
<p>Such weird stories as the above are not fakes. That is what this awful novelty porn drug does to you. As you go through life, it systematically takes away your nerve and courage. The more it takes your courage away, the more you are deluded into believing the porn is doing the opposite.</p>
@ -27,6 +27,7 @@
<p>By the time the PMOer reaches the stage at which it has killed his virility, he believes the PMO is his new girlfriend and cannot face life without it. Get it clear in your head that Internet porn is not relieving your nerves; it is slowly but steadily destroying them. One of the great gains of breaking the habit is the return of your natural confidence and self-assurance.</p>
<p>There is no need to self-rate based on your ability to get hard or to satisfy a woman. However, you do know deep inside that this is slavery. It is not freedom. And that freedom cannot be achieved by continuing to grease - repeating the same behaviour and energizing the water slide neural pathways of your brain in ways that undercut your happiness in general and not to mention your libido.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-08-relieving-withdrawal-pangs/"><div id="prevart">Previous:<br>03-08 Relieving Withdrawal Pangs</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Boredom As soon as you get into your bed - and if you are like many people you are already on your favorite tube site - you will probably have already forgotten about it until I reminded you. It has become second nature. Another fallacy about PMOing is that it relieves boredom. Boredom is a frame of mind. The only time that happens is when you have been deprived for a long time or are trying to cut down, or during those first few PMO sessions after a failed attempt to stop."/>
<meta name="description" content="Boredom As soon as you get into your bed - and if you are like many people you are already on your favorite tube site - you will probably have already forgotten about it until I reminded you. It has become second nature. Another fallacy about PMOing is that it relieves boredom. Boredom is a frame of mind. The only time that happens is when you have been deprived for a long time or are trying to cut down, or during those first few PMO sessions after a failed attempt to stop."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,13 +17,14 @@
<header><h1 id="tag_03-10 Boredom">03-10 Boredom</h1></header>
<article>
<h2 id="boredom">Boredom <a class="anchor" href="#boredom">
<span class="spanForHeader"></span>
</a></h2><p>As soon as you get into your bed - and if you are like many people you are already on your favorite tube site - you will probably have already forgotten about it until I reminded you. It has become second nature. Another fallacy about PMOing is that it relieves boredom. Boredom is a frame of mind. The only time that happens is when you have been deprived for a long time or are trying to cut down, or during those first few PMO sessions after a failed attempt to stop.</p>
<div class="post-content"><h2 id="boredom">Boredom<a hidden class="anchor" aria-hidden="true" href="#boredom">#</a></h2>
<p>As soon as you get into your bed - and if you are like many people you are already on your favorite tube site - you will probably have already forgotten about it until I reminded you. It has become second nature. Another fallacy about PMOing is that it relieves boredom. Boredom is a frame of mind. The only time that happens is when you have been deprived for a long time or are trying to cut down, or during those first few PMO sessions after a failed attempt to stop.</p>
<p>The true situation is this: when you are addicted to internet porns supranormal novelty and then you decide to abstain from internet porn, there is something missing. If you have something to occupy your mind that isn&rsquo;t stressful, you can go for long periods without being bothered by the absence of the drug. However, when you are bored there&rsquo;s nothing to take your mind off it, so you feed the monster. When you are indulging yourself (i.e. not trying to stop or cut down), even firing up your incognito browser becomes subconscious. The PMOer can perform this ritual automatically. If any PMOer tries to remember the session during the last week, he can only remember a small proportion of them - e.g. the very last one or after a long abstinence.</p>
<p>The truth is that PMOing tend to increase boredom indirectly because orgasms make you feel lethargic and instead of undertaking some energetic activity, PMOers tend to prefer lounge around, bored, relieving their withdrawal pangs. This is why countering the brainwashing is so important. Because it&rsquo;s a fact that PMOers tend to masturbate when they are bored and that we&rsquo;re wired to interpret PMO as interesting. It doesn&rsquo;t occur to us to question the fact how a two dimensional supranormal stimulus relieves boredom.</p>
<p>We&rsquo;ve also been brainwashed into believing that sex - even a bad sex - aids relaxation. It is a fact that when under stress or sad, couples want to have sex. In the absence of discrimination between amative and propagative sex, the goal is set to achieve orgasms by hook or by crook. Next time you do this watch how you both want to get away from each other as soon as its over. It is obvious that if they had just decided to cuddle, speak, hug and touch each other and go to sleep without the mandatory orgasms, the couple would have felt relieved. Well, if in the process, they wanted to have the propagative part then by all means they can but that is a topic not meant to be discussed in this book.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-09-stress/"><div id="prevart">Previous:<br>03-09 Stress</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Concentration Sex and masturbation do not help concentration. That is just another illusion. When you are trying to concentrate, you automatically try to avoid distractions. So when a PMOer wants to concentrate he doesn&rsquo;t even have to think about it. He automatically PMOs, partially ending the craving, gets on with the matter in hand and has already forgotten that he just PMOed. Sex in general do not help concentration. After years of masturbation your brain changes affect abilities such as assessing, planning and impulse control."/>
<meta name="description" content="Concentration Sex and masturbation do not help concentration. That is just another illusion. When you are trying to concentrate, you automatically try to avoid distractions. So when a PMOer wants to concentrate he doesn&rsquo;t even have to think about it. He automatically PMOs, partially ending the craving, gets on with the matter in hand and has already forgotten that he just PMOed. Sex in general do not help concentration. After years of masturbation your brain changes affect abilities such as assessing, planning and impulse control."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-11 Concentration">03-11 Concentration</h1></header>
<article>
<h2 id="concentration">Concentration <a class="anchor" href="#concentration">
<span class="spanForHeader"></span>
</a></h2><p>Sex and masturbation do not help concentration. That is just another illusion. When you are trying to concentrate, you automatically try to avoid distractions. So when a PMOer wants to concentrate he doesn&rsquo;t even have to think about it. He automatically PMOs, partially ending the craving, gets on with the matter in hand and has already forgotten that he just PMOed. Sex in general do not help concentration. After years of masturbation your brain changes affect abilities such as assessing, planning and impulse control. The PMOer is already suffering: that little monster wants his fix.</p>
<div class="post-content"><h2 id="concentration">Concentration<a hidden class="anchor" aria-hidden="true" href="#concentration">#</a></h2>
<p>Sex and masturbation do not help concentration. That is just another illusion. When you are trying to concentrate, you automatically try to avoid distractions. So when a PMOer wants to concentrate he doesn&rsquo;t even have to think about it. He automatically PMOs, partially ending the craving, gets on with the matter in hand and has already forgotten that he just PMOed. Sex in general do not help concentration. After years of masturbation your brain changes affect abilities such as assessing, planning and impulse control. The PMOer is already suffering: that little monster wants his fix.</p>
<p>You are also stressed to provide novelty for the next PMO session as the same stuff will not generate enough dopamine and opioids. You have to “roam the internet streets” for novelty - all the while fighting the pull to cross the line towards shock. This creates more stress. After you orgasm, you feel unfulfilled as well.</p>
<p>Concentration is also affected adversely for another reason. Your dopamine receptors have already started to get reduced by building up natural tolerance to these large surges, reducing the benefit of the smaller dopamine boosts from natural de-stressors.</p>
<p>In fact, your concentration and inspiration will be greatly improved as this process is reversed. For some it will be the concentration aspect that prevents them from succeeding when using the willpower method. They could put up with the irritability and bad temper but when they really needed to concentrate on something difficult they have to have that porn fix. I can well remember the panic I felt when I discovered that the hotel has no internet connection and I had this huge presentation the day after.</p>
@ -27,6 +27,7 @@
<p>When you are a PMOer nothing gets blamed on the cause. PMOers never have EDs; they just have an occasional down time. The moment you stop using, everything that goes wrong in your life is blamed on the fact that you&rsquo;ve stopped. Now when you have a mental block, instead of just getting on with it, you start to say, “if only I could check out my favourites now, it would solve my problem.” You then start to question your decision to quit and escape from this slavery.</p>
<p>If you believe that PMOing is a genuine aid to concentration, worrying about it will guarantee that you won&rsquo;t be able to concentrate. It&rsquo;s the doubting, not the physical withdrawal pangs, that causes the problem. Always remember: it is PMOer who suffers pangs and not non-PMOers. When I quit I went overnight from using everyday to zero without any apparent loss of concentration.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-10-boredom/"><div id="prevart">Previous:<br>03-10 Boredom</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Relaxation Most PMOers think that PMO helps to relax them. The truth is that internet porn used in PMO acts like a chemical stimulant. The frantic search to get the fix in those dark alleys of the internet and the internal struggle to reign in the dog straining at its leash for more shocking clips does not sound much like an activity of relaxation to me.
<meta name="description" content="Relaxation Most PMOers think that PMO helps to relax them. The truth is that internet porn used in PMO acts like a chemical stimulant. The frantic search to get the fix in those dark alleys of the internet and the internal struggle to reign in the dog straining at its leash for more shocking clips does not sound much like an activity of relaxation to me.
One of the favourite PMO sessions for most is the one after a trip to a new place or after along day."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ One of the favourite PMO sessions for most is the one after a trip to a new plac
<header><h1 id="tag_03-12 Relaxation">03-12 Relaxation</h1></header>
<article>
<h2 id="relaxation">Relaxation <a class="anchor" href="#relaxation">
<span class="spanForHeader"></span>
</a></h2><p>Most PMOers think that PMO helps to relax them. The truth is that internet porn used in PMO acts like a chemical stimulant. The frantic search to get the fix in those “dark alleys of the internet” and the internal struggle to reign in the dog straining at its leash for more shocking clips does not sound much like an activity of relaxation to me.</p>
<div class="post-content"><h2 id="relaxation">Relaxation<a hidden class="anchor" aria-hidden="true" href="#relaxation">#</a></h2>
<p>Most PMOers think that PMO helps to relax them. The truth is that internet porn used in PMO acts like a chemical stimulant. The frantic search to get the fix in those “dark alleys of the internet” and the internal struggle to reign in the dog straining at its leash for more shocking clips does not sound much like an activity of relaxation to me.</p>
<p>One of the favourite PMO sessions for most is the one after a trip to a new place or after along day. As the night rolls in we stop working; we sit down and relax, relieve our hunger and thirst and are then completely satisfied. However, the poor PMOer cannot relax, as he has another hunger to satisfy. He thinks of the PMO as the icing on the cake but it is the &rsquo;little monster&rsquo; that needs feeding.</p>
<p>The truth is that the addict can never be completely relaxed and as you go through life it gets worse. The most stressed people on this planet aren&rsquo;t non-PMOers but those young men and women who have a need to hunt (with the misunderstood goal of orgasm) and their ignorance of and/or low opinion of amative sex. Women who have subscribed to “I must orgasm” teachings are not even aware of the victim they have made of themselves. At this point any sex that leads to climax and orgasm cease to relieve even partially the symptoms that they have created.</p>
<p>I can remember when I was bringing up a family. If my child would do something wrong I would quickly lose my temper to an extent that was out of all proportion to what he had done.</p>
@ -33,6 +33,7 @@ One of the favourite PMO sessions for most is the one after a trip to a new plac
<p>Why are non-PMOers completely relaxed then? Why are PMOers not able to relax without a fix for a day or two? If you read about the experience of a PMOer taking the abstinence oath and quitting and you notice his struggle with the temptations. You can clearly see that they are not relaxed at all when they are not allowed to have the only pleasure they are “entitled to enjoy.” They&rsquo;ve forgotten what it feels like to be completely relaxed. That&rsquo;s one of the many joys you have to come. The whole business of PMOing can be likened to a fly being caught in a pitcher plant. To begin with, the fly is eating the nectar. At some imperceptible stage the plant begins to eat the fly.</p>
<p>Isn&rsquo;t it time you climbed out of that plant?</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-11-concentration/"><div id="prevart">Previous:<br>03-11 Concentration</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Social Night PMOing This is a misinformation that seems to make sense but then it does not. In order to have control of eating, will you eat at home before leaving to go to a restaurant or a party? This is what you are doing when you PMO before your social night. You will look tired and will not be up to your best. If you have dating jitters then work on it beforehand and then go with the flow even with some butterflies in your stomach."/>
<meta name="description" content="Social Night PMOing This is a misinformation that seems to make sense but then it does not. In order to have control of eating, will you eat at home before leaving to go to a restaurant or a party? This is what you are doing when you PMO before your social night. You will look tired and will not be up to your best. If you have dating jitters then work on it beforehand and then go with the flow even with some butterflies in your stomach."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-13 Social Night PMOing">03-13 Social Night PMOing</h1></header>
<article>
<h2 id="social-night-pmoing">Social Night PMOing <a class="anchor" href="#social-night-pmoing">
<span class="spanForHeader"></span>
</a></h2><p>This is a misinformation that seems to make sense but then it does not. In order to have control of eating, will you eat at home before leaving to go to a restaurant or a party? This is what you are doing when you PMO before your social night. You will look tired and will not be up to your best. If you have dating jitters then work on it beforehand and then go with the flow even with some butterflies in your stomach. I like a bit of the anxiety in me to keep me going. Tiring yourself mentally and physically with an orgasm is not going to help you, unless of course you are going to see a prostitute. The goal is entirely different in that angle.</p>
<div class="post-content"><h2 id="social-night-pmoing">Social Night PMOing<a hidden class="anchor" aria-hidden="true" href="#social-night-pmoing">#</a></h2>
<p>This is a misinformation that seems to make sense but then it does not. In order to have control of eating, will you eat at home before leaving to go to a restaurant or a party? This is what you are doing when you PMO before your social night. You will look tired and will not be up to your best. If you have dating jitters then work on it beforehand and then go with the flow even with some butterflies in your stomach. I like a bit of the anxiety in me to keep me going. Tiring yourself mentally and physically with an orgasm is not going to help you, unless of course you are going to see a prostitute. The goal is entirely different in that angle.</p>
<p>The widespread adoption of pick-up techniques has put pressure on guys to perform, to attract and to score. You can get knowledge but you should know how to use it. I can guarantee that 100% of the other guys hanging at that bar know exactly what you know. It comes down to the how of how you use it when you get the chance. Even before that, there is one very critical thing about any knowledge pertaining to human interactions, that knowledge should never force your actions. This is important.</p>
<p>I once masturbated and then poured wine to quiet the butterflies in my stomach before a date. I looked tired after just one hour into the date, the loud noise of the bar, dehydration, excessive self-consciousness (PUA teachings) etc. made my time unenjoyable. Somehow the girl and her friend liked it all. However, I do think it would have been better if I had gone without any props. I ended up being successful by claiming my &lsquo;goal(s)&rsquo; - which I consider unfortunate and as random luck.</p>
<p>The PMO session I had before the date triggered a dopamine flooding and its withdrawal hit around the time I was with the date. I had to over-do my conversation to compensate the ineffective dopamine effects after that earlier orgasm. I am also sure that I was suffering from hypofrontality - where my impulses were failing my controls. That gushing moment, an extra decibel in the tone etc. would easily have given my nervousness to the girls - only if I was not protected by the loud noise in the bar. Why do you want to take chances?</p>
@ -30,6 +30,7 @@
<p>You can bet that this unfortunate guy is going to PMO after he reaches home. It is often after nights like these, when we wake to feel the uneasy emptiness, are often the special ones, the ones that we think we&rsquo;ll miss the most when we are contemplating stopping PMOing. We think that life will never be quite as enjoyable again. In fact, it is the same principle at work: these PMO sessions simply provide relief from withdrawal pangs and at certain times we have greater need to relieve them than at others. You had ended up greasing the neural waterslides in your brain and made it ready to slide again on the next cue.</p>
<p>Let us make it quite clear. It is not the internet porn and the harem dwellers that are special; it is the occasion. Once we have removed the need for the PMO, such occasions will become more enjoyable and the stressful situations less stressful. This will be explained in greater detail in the next chapter.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-12-relaxation/"><div id="prevart">Previous:<br>03-12 Relaxation</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="What Am I Giving Up? ABSOLUTELY NOTHING! The thing that makes it difficult for us to give up is fear. The fear that we are being deprived of our pleasure or prop. The fear that certain pleasant situations will never be quite the same again. The fear of being unable to cope with stressful situations. In other words, the effect of brainwashing is to delude us into believing that sex and by extension orgasm, is a must for all human beings."/>
<meta name="description" content="What Am I Giving Up? ABSOLUTELY NOTHING! The thing that makes it difficult for us to give up is fear. The fear that we are being deprived of our pleasure or prop. The fear that certain pleasant situations will never be quite the same again. The fear of being unable to cope with stressful situations. In other words, the effect of brainwashing is to delude us into believing that sex and by extension orgasm, is a must for all human beings."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-14 What Am I Giving Up?">03-14 What Am I Giving Up?</h1></header>
<article>
<h2 id="what-am-i-giving-up">What Am I Giving Up? <a class="anchor" href="#what-am-i-giving-up">
<span class="spanForHeader"></span>
</a></h2><p>ABSOLUTELY NOTHING! The thing that makes it difficult for us to give up is fear. The fear that we are being deprived of our pleasure or prop. The fear that certain pleasant situations will never be quite the same again. The fear of being unable to cope with stressful situations. In other words, the effect of brainwashing is to delude us into believing that sex and by extension orgasm, is a must for all human beings. Or that there is something inherent in Internet porn that we need and that when we stop PMOing we will be self-denying ourselves and there will be a void.</p>
<div class="post-content"><h2 id="what-am-i-giving-up">What Am I Giving Up?<a hidden class="anchor" aria-hidden="true" href="#what-am-i-giving-up">#</a></h2>
<p>ABSOLUTELY NOTHING! The thing that makes it difficult for us to give up is fear. The fear that we are being deprived of our pleasure or prop. The fear that certain pleasant situations will never be quite the same again. The fear of being unable to cope with stressful situations. In other words, the effect of brainwashing is to delude us into believing that sex and by extension orgasm, is a must for all human beings. Or that there is something inherent in Internet porn that we need and that when we stop PMOing we will be self-denying ourselves and there will be a void.</p>
<blockquote>
<p>Get it clear in your mind:</p>
</blockquote>
@ -40,14 +40,12 @@
</blockquote>
<p>These bodies of ours are the most sophisticated objects on this planet. Whether you believe in a creator, a process of natural selection or a combination of both, whatever being or system devised these bodies of ours, it is a thousand times more effective than man! Man cannot create the smallest living cell, let alone the miracle of eyesight, reproduction, our circulatory system or our brains. We dont have our systems upgraded yet to properly assess the supranormal stimulus such as rich high density food or high speed internet novelty porn with multiple active windows.</p>
<p>If the creator or process had intended us to handle novelty triggering stimuli, we would have been provided with some other brain reward circuits. Our bodies are, in fact, provided with fail-safe warning devices and we ignore these at our peril. Excessive edging results in body pain, irritation, and inflammation. In women, excessive flooding of dopamine and stress enzymes such as prostaglandin-E2 can cause difficulty to orgasm and PME.</p>
<h2 id="there-is-nothing-to-give-up">There Is Nothing To Give Up <a class="anchor" href="#there-is-nothing-to-give-up">
<span class="spanForHeader"></span>
</a></h2><p>The beautiful truth is - there is nothing to give up. Once you purge that little monster from your body and the brainwashing (the big monster) from your mind, you will neither want to masturbate often nor need internet porn for it. PMO destroys your sense of self-control. I dont think PMOers are self-destructive to continue even after knowing the ill-effects of internet porn. They clearly dont have suicidal tendencies. They dont enjoy this slavery themselves. Many of them do it in spite of the fact that they know it causes self-sabotage. You see there must be many unknowns and the medical community has no idea of even questioning and determining someone as an internet porn addict yet. So a lot of reported symptoms are wrongly tagged under other causes. It is not that PMOers are generally stupid people; it is just that they are miserable without the PMO. They are caught between the devil and the deep blue sea. They either have to abstain and be miserable because they cannot PMO or be miserable because they are destroying themselves through PMO and feel guilty and despise themselves for it. When they feel that lower back pain or get PIED, their minds are torn between accepting responsibility and looking the other way.</p>
<h2 id="there-is-nothing-to-give-up">There Is Nothing To Give Up<a hidden class="anchor" aria-hidden="true" href="#there-is-nothing-to-give-up">#</a></h2>
<p>The beautiful truth is - there is nothing to give up. Once you purge that little monster from your body and the brainwashing (the big monster) from your mind, you will neither want to masturbate often nor need internet porn for it. PMO destroys your sense of self-control. I dont think PMOers are self-destructive to continue even after knowing the ill-effects of internet porn. They clearly dont have suicidal tendencies. They dont enjoy this slavery themselves. Many of them do it in spite of the fact that they know it causes self-sabotage. You see there must be many unknowns and the medical community has no idea of even questioning and determining someone as an internet porn addict yet. So a lot of reported symptoms are wrongly tagged under other causes. It is not that PMOers are generally stupid people; it is just that they are miserable without the PMO. They are caught between the devil and the deep blue sea. They either have to abstain and be miserable because they cannot PMO or be miserable because they are destroying themselves through PMO and feel guilty and despise themselves for it. When they feel that lower back pain or get PIED, their minds are torn between accepting responsibility and looking the other way.</p>
<p>The problem I have is to make a convincing point as Id have done for, let us say&hellip; smokers? All of us have seen smokers who develop excuses to sneak off for a crafty puff. It is easy to see the true addiction in action. Addicts do not do it because they enjoy it. They do it because they are miserable without it.</p>
<p>Because many of us started out our first sexual experience that ended in an orgasm and we acquired the belief that we cannot enjoy sex without an orgasm. And for men, porn is sold as an aid towards sex, sometimes even as an education to be confident during the act of sex. It used to be static, but now we have supranormal internet porn. But this is nonsense. Internet porn takes away your confidence.</p>
<h2 id="women-and-porn">Women And Porn <a class="anchor" href="#women-and-porn">
<span class="spanForHeader"></span>
</a></h2><p>The greatest evidence of the fear that porn instils is in its effect on women. Practically all women are fastidious about their personal appearance. They wouldn&rsquo;t dream of appearing at a social function not immaculately turned out and smelling beautiful. So why would they fall for internet porn? The traps were set as either a control trap (I can give up when I want) or an educational trap, or a freedom trap (I am entitled). Feminism has freed women from all the bad patriarchal rules of the past but they still need to be aware of supranormal stimulus such as internet porn.</p>
<h2 id="women-and-porn">Women And Porn<a hidden class="anchor" aria-hidden="true" href="#women-and-porn">#</a></h2>
<p>The greatest evidence of the fear that porn instils is in its effect on women. Practically all women are fastidious about their personal appearance. They wouldn&rsquo;t dream of appearing at a social function not immaculately turned out and smelling beautiful. So why would they fall for internet porn? The traps were set as either a control trap (I can give up when I want) or an educational trap, or a freedom trap (I am entitled). Feminism has freed women from all the bad patriarchal rules of the past but they still need to be aware of supranormal stimulus such as internet porn.</p>
<p>Porn and internet porn does not help your sex life; it destroys it totally. Having to hide your internet footprints, trying to delete your history, fearing accidental exposure to your boyfriend or kids, body pains, doubtful symptoms, fighting self doubts, arguing with yourself about your responsibilities in the ill effects of your addiction&hellip; well, why do you want to put yourself in such a bad situation?</p>
<p>Not only is there nothing to give up but there are marvellous positive gains to be had. When PMOers contemplate quitting they tend to concentrate on health and virility. These are obviously valid and important issues but I personally believe the greatest gains from stopping are psychological:</p>
<ol>
@ -56,9 +54,8 @@
<li>Not to have to go through life suffering the awful black shadows at the back of your mind, knowing you are being despised by half of the population and, worst of all, despising yourself.</li>
</ol>
<p>Not only is life better as a non-PMOer but it is infinitely more enjoyable. I do not only mean you will be healthier. I mean you will be happier and enjoy life far more. The marvellous gains from being a non-PMOer are discussed in the next few chapters. Some PMOers find it difficult to appreciate the concept of the &lsquo;void&rsquo; and the following analogy may assist you.</p>
<h2 id="void-the-void-the-beautiful-void">Void, the Void, the Beautiful Void! <a class="anchor" href="#void-the-void-the-beautiful-void">
<span class="spanForHeader"></span>
</a></h2><p>Imagine having a cold sore on your face. I&rsquo;ve got this marvellous ointment. I say to you, “try this stuff.” You rub the ointment on and the sore disappears immediately. A week later it reappears. You ask, “do you have any more of that ointment?” I say, “sure, keep the tube. You might need it again.” You apply the ointment once again. Hey presto, the sore disappears again. But every time the sore returns, it gets larger and more painful and the interval gets shorter and shorter. Eventually the sore covers your whole face and is excruciatingly painful. It is now returning every half hour. You know that the ointment will remove it temporarily, but you are very worried. Will the sore eventually spread over your whole body? Will the interval disappear completely? You go to your doctor. He can&rsquo;t cure it. You try other things but nothing helps except this magical ointment.</p>
<h2 id="void-the-void-the-beautiful-void">Void, the Void, the Beautiful Void!<a hidden class="anchor" aria-hidden="true" href="#void-the-void-the-beautiful-void">#</a></h2>
<p>Imagine having a cold sore on your face. I&rsquo;ve got this marvellous ointment. I say to you, “try this stuff.” You rub the ointment on and the sore disappears immediately. A week later it reappears. You ask, “do you have any more of that ointment?” I say, “sure, keep the tube. You might need it again.” You apply the ointment once again. Hey presto, the sore disappears again. But every time the sore returns, it gets larger and more painful and the interval gets shorter and shorter. Eventually the sore covers your whole face and is excruciatingly painful. It is now returning every half hour. You know that the ointment will remove it temporarily, but you are very worried. Will the sore eventually spread over your whole body? Will the interval disappear completely? You go to your doctor. He can&rsquo;t cure it. You try other things but nothing helps except this magical ointment.</p>
<p>By now you are completely dependent on the ointment. You never go out without ensuring that you have a tube of the ointment with you. If you go abroad, you make sure that you take several tubes with you. Now, in addition to your worries about your health, I&rsquo;m charging you $100 per tube. You have no choice but to pay.</p>
<p>You then read in the medical column of your newspaper that this isn&rsquo;t happening just to you; many other people have been suffering from the same problem. In fact, pharmacists have discovered that the ointment doesn&rsquo;t actually cure the sore. All that it does is to take the sore beneath the surface of the skin. It is the ointment that has caused the sore to grow. All you have to do to get rid of the sore is to stop using the ointment. The sore will eventually disappear in due course.</p>
<p>Would you continue to use the ointment? Would it take willpower not to use the ointment? If you didn&rsquo;t believe the medical article, there might be a few days of apprehension, but once you realized that the sore was beginning to get better, the need or desire to use the ointment would go, Would you be miserable? Of course you wouldn&rsquo;t. You had an awful problem which you thought was insoluble. Now you&rsquo;ve found the solution. Even if it took a year for that sore to disappear completely, each day, as it improved, you&rsquo;d think. “isn&rsquo;t it marvellous? I&rsquo;m not going to die!” This was the magic that happened to me on my final PMO day. Let me make one point quite clear in the analogy of the sore and the ointment.</p>
@ -67,6 +64,7 @@
<p>At the same time I could see all these other “happy” PMOers - the ones who are blinded by their cunning little porn monsters - were going through the same nightmare that I was. Not as bad as mine yet all putting up phony arguments to try to justify their stupidity.</p>
<p><strong>IT&rsquo;S SO NICE TO BE FREE!</strong></p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-13-social-night-pmoing/"><div id="prevart">Previous:<br>03-13 Social Night PMOing</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Self-Imposed Slavery Usually when PMOers try to stop the main reasons given are health, religion and partner stigma. Part of the brainwashing of this awful drug is the sheer slavery. Man fought hard in the last century to abolish slavery and yet the PMOer spends his life suffering self-imposed slavery. He seems to be oblivious to the fact that when he is allowed to PMO he wishes that he were a non-PMOer."/>
<meta name="description" content="Self-Imposed Slavery Usually when PMOers try to stop the main reasons given are health, religion and partner stigma. Part of the brainwashing of this awful drug is the sheer slavery. Man fought hard in the last century to abolish slavery and yet the PMOer spends his life suffering self-imposed slavery. He seems to be oblivious to the fact that when he is allowed to PMO he wishes that he were a non-PMOer."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,14 +17,15 @@
<header><h1 id="tag_03-15 Self-Imposed Slavery">03-15 Self-Imposed Slavery</h1></header>
<article>
<h2 id="self-imposed-slavery">Self-Imposed Slavery <a class="anchor" href="#self-imposed-slavery">
<span class="spanForHeader"></span>
</a></h2><p>Usually when PMOers try to stop the main reasons given are health, religion and partner stigma. Part of the brainwashing of this awful drug is the sheer slavery. Man fought hard in the last century to abolish slavery and yet the PMOer spends his life suffering self-imposed slavery. He seems to be oblivious to the fact that when he is allowed to PMO he wishes that he were a non-PMOer. With most of the masturbation we do in our lives, not only do we not enjoy them but we aren&rsquo;t even aware that we are masturbating. It is only after a period of abstinence that we actually suffer the delusion of enjoying PMO (e.g. the first day after a 4 day abstinence with the intent of rebooting etc.). The only time that the porn becomes precious is when we are &rsquo;trying&rsquo; to cut down or abstain or when abstinence is forced on us (e.g. when on a business trips, holiday trips to locations where the Internet is not available and so on).</p>
<div class="post-content"><h2 id="self-imposed-slavery">Self-Imposed Slavery<a hidden class="anchor" aria-hidden="true" href="#self-imposed-slavery">#</a></h2>
<p>Usually when PMOers try to stop the main reasons given are health, religion and partner stigma. Part of the brainwashing of this awful drug is the sheer slavery. Man fought hard in the last century to abolish slavery and yet the PMOer spends his life suffering self-imposed slavery. He seems to be oblivious to the fact that when he is allowed to PMO he wishes that he were a non-PMOer. With most of the masturbation we do in our lives, not only do we not enjoy them but we aren&rsquo;t even aware that we are masturbating. It is only after a period of abstinence that we actually suffer the delusion of enjoying PMO (e.g. the first day after a 4 day abstinence with the intent of rebooting etc.). The only time that the porn becomes precious is when we are &rsquo;trying&rsquo; to cut down or abstain or when abstinence is forced on us (e.g. when on a business trips, holiday trips to locations where the Internet is not available and so on).</p>
<p>The confirmed PMOer should bear in mind that more studies and even more people are coming out and talking about the ill effects of internet porn. This trend will get “worse and worse.” Today, it is non-medical people talking. Tomorrow, it will be in your doctors list of diagnostic tests to perform. Gone are the days when the PMOer can hide behind “just a bit of downtime due to work stress” in his or her sex life. Your partner is going to ask you why you are on your laptop at this time too late into the night. The poor PMOer, who was already feeling wretched, wants the ground to open up and swallow him.</p>
<p>I remember every time my partner stayed up late it was an ordeal waiting to open up my laptop. When on business trips the dinner with the clients and colleagues dragged on or was I just going through the natural ups and downs in human interactions? What was I doing? I was thinking, “let&rsquo;s get on with it, so that I can get over with this and go to my room for some porn.” I have thought many times, “am I not lucky? I have got my little reward. The poor non-PMOer with no internet access somewhere in an Amish village hasn&rsquo;t got a reward.” The &lsquo;poor&rsquo; non-PMOer doesn&rsquo;t need a reward. We were not designed to go through life systematically flooding our brains with dopamine and opioids. The pathetic thing is that even when masturbating with internet porn the PMOer doesn&rsquo;t achieve those feelings of peace, confidence and tranquillity that the non-PMOer has experienced for the whole of his non-PMO life. The non-PMOer isn&rsquo;t sitting in the family room, feeling agitated and wishing his life away. He can enjoy the whole of his life.</p>
<p>No, this wasn&rsquo;t a fourteen-year-old schoolboy but a forty-year-old professional. How pathetic. I wouldn&rsquo;t admit to myself that I wasn&rsquo;t enjoying it. I was looking for the right clip and/or pictures to reach orgasm or better, edge forever. I don&rsquo;t know what I am supposed to be &lsquo;watching&rsquo; sometimes. That is the confusing part. The &rsquo;edging&rsquo; and then the orgasm floods my brain. Yet this was supposed to be my way of relaxing and enjoying my “favourite hobby.”</p>
<p>To me, one of the tremendous joys of being a non-PMOer is to be freed from that slavery. To be able to enjoy the whole of my life and not spend half of it craving for more and more internet porn and then, when I get to fire up my browser, wishing I didn&rsquo;t have to do it. PMOers should bear in mind that when they see or meet non-PMOers, it is not the self-righteous non-PMOer who is depriving them but their very own “little monster.”</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-14-what-am-i-giving-up/"><div id="prevart">Previous:<br>03-14 What Am I Giving Up?</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="I Will Save X Hours a Week I cannot repeat too often that it is brainwashing that makes it difficult to stop PMOing. So, the more brainwashing we can dispel before we start, the easier you will find it to achieve your goal. Occasionally I get into arguments with people whom I call “confirmed PMOers.” By my definition a confirmed PMOer is somebody who doesn&rsquo;t believe PMO has any negative effect on his health (PME, PIED and hypofrontality etc."/>
<meta name="description" content="I Will Save X Hours a Week I cannot repeat too often that it is brainwashing that makes it difficult to stop PMOing. So, the more brainwashing we can dispel before we start, the easier you will find it to achieve your goal. Occasionally I get into arguments with people whom I call “confirmed PMOers.” By my definition a confirmed PMOer is somebody who doesn&rsquo;t believe PMO has any negative effect on his health (PME, PIED and hypofrontality etc."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-16 I Will Save X Hours a Week">03-16 I Will Save X Hours a Week</h1></header>
<article>
<h2 id="i-will-save-x-hours-a-week">I Will Save X Hours a Week <a class="anchor" href="#i-will-save-x-hours-a-week">
<span class="spanForHeader"></span>
</a></h2><p>I cannot repeat too often that it is brainwashing that makes it difficult to stop PMOing. So, the
<div class="post-content"><h2 id="i-will-save-x-hours-a-week">I Will Save X Hours a Week<a hidden class="anchor" aria-hidden="true" href="#i-will-save-x-hours-a-week">#</a></h2>
<p>I cannot repeat too often that it is brainwashing that makes it difficult to stop PMOing. So, the
more brainwashing we can dispel before we start, the easier you will find it to achieve your goal.
Occasionally I get into arguments with people whom I call “confirmed PMOers.” By my definition
a confirmed PMOer is somebody who doesn&rsquo;t believe PMO has any negative effect on his health
@ -48,6 +48,7 @@ pleasure.”</em></p>
<p>During the withdrawal period you may be tempted to have just one final look. It will help you to resist the temptation if you remind yourself it will cost you one years worth of your peak annual salary (or whatever your estimate is)! I could be making that offer on television and radio programmes yet I bet no-one will take it.</p>
<p>If you are mentoring someone online for his PMO addiction tell him that he knows someone who has refused a job offer that pays his current annual salary and also gives him a full months of PTO. When he ask who that idiot is, tell him, “you!” I know it&rsquo;s rude but you may sometimes need to get your point across in a less-than-polite way.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-15-self-imposed-slavery/"><div id="prevart">Previous:<br>03-15 Self-Imposed Slavery</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Health This is the area where the brainwashing is the greatest. PMOers, especially the young and single, think they are aware of the health risks. They are not. Even in my case, when I was expecting my head to explode any moment and honestly believed I was prepared to accept the consequences, I was still kidding myself. I didn&rsquo;t in those days have an app that started a red beeper to flash and sound every time my internet router hits a porn site, followed by a warning voice saying, “OK, this is the one!"/>
<meta name="description" content="Health This is the area where the brainwashing is the greatest. PMOers, especially the young and single, think they are aware of the health risks. They are not. Even in my case, when I was expecting my head to explode any moment and honestly believed I was prepared to accept the consequences, I was still kidding myself. I didn&rsquo;t in those days have an app that started a red beeper to flash and sound every time my internet router hits a porn site, followed by a warning voice saying, “OK, this is the one!"/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-17 Health">03-17 Health</h1></header>
<article>
<h2 id="health">Health <a class="anchor" href="#health">
<span class="spanForHeader"></span>
</a></h2><p>This is the area where the brainwashing is the greatest. PMOers, especially the young and single, think they are aware of the health risks. They are not. Even in my case, when I was expecting my head to explode any moment and honestly believed I was prepared to accept the consequences, I was still kidding myself. I didn&rsquo;t in those days have an app that started a red beeper to flash and sound every time my internet router hits a porn site, followed by a warning voice saying, “OK, this is the one!” Fortunately you do get a warning, and this is it. That warning would say, “Up to now you have got away with it but if you stay another minute your head will explode,” do you think I would have PMOed?</p>
<div class="post-content"><h2 id="health">Health<a hidden class="anchor" aria-hidden="true" href="#health">#</a></h2>
<p>This is the area where the brainwashing is the greatest. PMOers, especially the young and single, think they are aware of the health risks. They are not. Even in my case, when I was expecting my head to explode any moment and honestly believed I was prepared to accept the consequences, I was still kidding myself. I didn&rsquo;t in those days have an app that started a red beeper to flash and sound every time my internet router hits a porn site, followed by a warning voice saying, “OK, this is the one!” Fortunately you do get a warning, and this is it. That warning would say, “Up to now you have got away with it but if you stay another minute your head will explode,” do you think I would have PMOed?</p>
<p>If you are in doubt about the answer just try walking up to a cliff, stand on the edge with your eyes closed and imagine you then have the choice of either quitting PMO or walking up blindfolded before your next PMO.</p>
<p>There is no doubt what your choice would be. I had been doing what every internet porn PMOer does all his life: closing my mind and keeping my head in the sand, hoping that I would wake up one morning and just not want to PMO any more. PMOers cannot allow themselves to think of the health risks. If they do, even the illusion of enjoying the &lsquo;habit&rsquo; goes.</p>
<p>This explains why a shock treatment is so ineffective in the first stages of quitting. It is only non-users who can bring themselves to read the destructive brain changes. It also explains why PMOers, influenced by their little monster, wrongly recall that filthy room mate who PMOed everyday and was still remaining horny 24 hours a day they will ignore the thousands of people who are brought “down” in their prime because of this poisonous habit.</p>
@ -122,6 +122,7 @@
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-16-i-will-save-x-hours-a-week/"><div id="prevart">Previous:<br>03-16 I Will Save X Hours a Week</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Energy Most PMOers are aware of the effect that this progressive process of PMO, leading to novelty and escalation seeking, has on their brains reward circuits and their sexual system. However, they are not so aware of the effect it has on their energy level.
<meta name="description" content="Energy Most PMOers are aware of the effect that this progressive process of PMO, leading to novelty and escalation seeking, has on their brains reward circuits and their sexual system. However, they are not so aware of the effect it has on their energy level.
One of the subtleties of the PMO trap is that the effects it has on us, both physical and mental, happen so gradually and imperceptibly that we are not aware of them and regard them as normal."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ One of the subtleties of the PMO trap is that the effects it has on us, both phy
<header><h1 id="tag_03-18 Energy">03-18 Energy</h1></header>
<article>
<h2 id="energy">Energy <a class="anchor" href="#energy">
<span class="spanForHeader"></span>
</a></h2><p>Most PMOers are aware of the effect that this progressive process of PMO, leading to novelty and escalation seeking, has on their brains reward circuits and their sexual system. However, they are not so aware of the effect it has on their energy level.</p>
<div class="post-content"><h2 id="energy">Energy<a hidden class="anchor" aria-hidden="true" href="#energy">#</a></h2>
<p>Most PMOers are aware of the effect that this progressive process of PMO, leading to novelty and escalation seeking, has on their brains reward circuits and their sexual system. However, they are not so aware of the effect it has on their energy level.</p>
<p>One of the subtleties of the PMO trap is that the effects it has on us, both physical and mental, happen so gradually and imperceptibly that we are not aware of them and regard them as normal. It is very similar to the effects of bad eating habits. The pot-belly appears so gradually that it causes us no alarm. We look at people who are grossly overweight and wonder how they could possibly have allowed themselves to reach that state.</p>
<p>But supposing it happened overnight. You went to bed weighing 140 lbs, trim, rippling with muscles and not an ounce of fat on your body. You awoke weighing 180 lbs, fat, bloated and pot-bellied. Instead of waking up feeling fully rested and full of energy, you wake up feeling miserable, lethargic and you can hardly open your eyes. You would be panic-stricken, wondering what awful disease you had contracted overnight. Yet the disease is exactly the same.</p>
<p>The fact that it took you twenty years to reach that state is irrelevant. So it is with PMOing. If I could immediately transfer you into your mind and body to give you a direct comparison on how you would feel having stopped internet porn for just three weeks, that is all I would need to do to persuade you to quit. You would think: “Will I really feel this good?” Or what it really amounts to: “Had I really sunk that low?” I emphasize that I don&rsquo;t just mean that you would feel healthier and have more energy but how you would also feel more confident and relaxed and better able to concentrate.</p>
@ -30,6 +30,7 @@ One of the subtleties of the PMO trap is that the effects it has on us, both phy
<p>Shortly after I stopped PMO, I was relieved that this foggy and muggy feeling left me. For example, I can keep a steady gaze with my eyes on just about anything for a longer time. If I am looking into someones eyes it is even longer. However something truly marvellous and unexpected also happened. I started waking at seven o&rsquo;clock in the morning feeling completely rested and full of energy, actually wanting to exercise, jog and swim. I have read about a forty-eight year old who couldn&rsquo;t run a step or swim a stroke. The only sporting activities were confined to such dynamic pursuits as green bowling, affectionately referred to as “the old man&rsquo;s game,” and golf, for which he had to use a motorized cart. But after quitting PMO he started going to gym - not that it is necessary that everyone would - but still. Almost all us know that it&rsquo;s great to have energy and when you feel physically and mentally strong, it feels great to be alive.</p>
<p>That is the point with PMOing - you are always debiting your energy. And in that process tampering with your brain codes of the reward circuit. Which again is going to make you miserable and vulnerable to stress and strain attacks. Unfortunately when you feel down with all of this you will seek a cigarette or alcohol or again porn. Unlike quitting smoking, where the return of your physical and mental health is only gradual, quitting PMO gives you excellent results from day one. Starting with energy. Then your mental programming to close the water slides takes a bit of time. You need to kill the Little Monster - which will be explained in later chapters. Recovering your RC is nothing like as slow as the slide into the pit and if you are going through the trauma of the willpower method of quitting, any health or energy gains will be obliterated by the depression you will be going through. Unfortunately, I cannot immediately transfer you into your mind and body in three weeks&rsquo; time. But you can! You know instinctively that what I am telling you is correct. All you need to do is: USE YOUR IMAGINATION!</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-17-health/"><div id="prevart">Previous:<br>03-17 Health</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="It Relaxes Me and Gives Me Confidence This is the worst fallacy of all about PMOing and for me it ranks with the ending of the slavery, the greatest benefit from quitting - is not to have to go through life with the permanent feelings of insecurity that PMOers suffer from.
<meta name="description" content="It Relaxes Me and Gives Me Confidence This is the worst fallacy of all about PMOing and for me it ranks with the ending of the slavery, the greatest benefit from quitting - is not to have to go through life with the permanent feelings of insecurity that PMOers suffer from.
PMOers find it very difficult to believe that masturbation to internet porn actually causes those insecure feelings you get when you are out late at night after a contentious day at home or work."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ PMOers find it very difficult to believe that masturbation to internet porn actu
<header><h1 id="tag_03-19 It Relaxes Me and Gives Me Confidence">03-19 It Relaxes Me and Gives Me Confidence</h1></header>
<article>
<h2 id="it-relaxes-me-and-gives-me-confidence">It Relaxes Me and Gives Me Confidence <a class="anchor" href="#it-relaxes-me-and-gives-me-confidence">
<span class="spanForHeader"></span>
</a></h2><p>This is the worst fallacy of all about PMOing and for me it ranks with the ending of the slavery, the greatest benefit from quitting - is not to have to go through life with the permanent feelings of insecurity that PMOers suffer from.</p>
<div class="post-content"><h2 id="it-relaxes-me-and-gives-me-confidence">It Relaxes Me and Gives Me Confidence<a hidden class="anchor" aria-hidden="true" href="#it-relaxes-me-and-gives-me-confidence">#</a></h2>
<p>This is the worst fallacy of all about PMOing and for me it ranks with the ending of the slavery, the greatest benefit from quitting - is not to have to go through life with the permanent feelings of insecurity that PMOers suffer from.</p>
<p>PMOers find it very difficult to believe that masturbation to internet porn actually causes those insecure feelings you get when you are out late at night after a contentious day at home or work. Non-PMOers do not suffer from that feeling. It is the porn that causes it. I only became aware of many of the advantages of stopping months afterwards, as a result of my consultations with other PMOers.</p>
<p>I refused to see my PMO as causing so much of the mental tug of war in my mind that I am foolishly working hard to have nominal levels of confidence in my day to day life. Forget about getting an erection, I am talking about focusing, taking challenges, fighting, choosing, deciding - actions that define our lives. Especially when we are often forced to act when the facts are not clear. Come to think of it, facts were and will never be clear and hence it is to our great advantage anyway to act.</p>
<p>Also of note is in dating area as well, the fire to go forward is being misappropriated to this high reward zero pain porn. If you have read some top PUA books and forums, what do they say? Go on a diet<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>? Yes of course when you have the good hunger your internal juices and your brain will do the rest. Copping out is not an option at all. Playing the numbers is not tiresome by no means. All PUA advice in a nut-shell is this - try more numbers. Even if your approach is wrong you will be right twice a day like a broken clock. But if your mind is fighting a tug of war with effortless easy access to a harem of online women, how would you get back on your feet when that girl ignores you? Oh, if it was a public outright rejection I am running, not walking, to my porn girlfriend.</p>
@ -34,6 +34,7 @@ PMOers find it very difficult to believe that masturbation to internet porn actu
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-18-energy/"><div id="prevart">Previous:<br>03-18 Energy</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Those Sinister Black Shadows Another of the great joys of quitting porn is to be free of those sinister black shadows at the back of our minds. All PMOers know they are fools to close their minds on the ill-effects of PMO. For most of our lives PMO is automatic but the black shadows are always lurking in our subconscious minds, just beneath the surface. There are several marvellous advantages to achieve from quitting PMO."/>
<meta name="description" content="Those Sinister Black Shadows Another of the great joys of quitting porn is to be free of those sinister black shadows at the back of our minds. All PMOers know they are fools to close their minds on the ill-effects of PMO. For most of our lives PMO is automatic but the black shadows are always lurking in our subconscious minds, just beneath the surface. There are several marvellous advantages to achieve from quitting PMO."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,13 +17,14 @@
<header><h1 id="tag_03-20 Those Sinister Black Shadows">03-20 Those Sinister Black Shadows</h1></header>
<article>
<h2 id="those-sinister-black-shadows">Those Sinister Black Shadows <a class="anchor" href="#those-sinister-black-shadows">
<span class="spanForHeader"></span>
</a></h2><p>Another of the great joys of quitting porn is to be free of those sinister black shadows at the back of our minds. All PMOers know they are fools to close their minds on the ill-effects of PMO. For most of our lives PMO is automatic but the black shadows are always lurking in our subconscious minds, just beneath the surface. There are several marvellous advantages to achieve from quitting PMO. Some of them I was consciously aware of throughout my life, such as the health risks, the waste of time and the sheer stupidity of making love to a two dimensional image. However, such was my fear of quitting, so obsessed was I in resisting all the attempts of do-gooders and anyone else who tried to persuade me to quit, that all my imagination and energy was directed to finding any flimsy excuse that would allow me to continue to PMO.</p>
<div class="post-content"><h2 id="those-sinister-black-shadows">Those Sinister Black Shadows<a hidden class="anchor" aria-hidden="true" href="#those-sinister-black-shadows">#</a></h2>
<p>Another of the great joys of quitting porn is to be free of those sinister black shadows at the back of our minds. All PMOers know they are fools to close their minds on the ill-effects of PMO. For most of our lives PMO is automatic but the black shadows are always lurking in our subconscious minds, just beneath the surface. There are several marvellous advantages to achieve from quitting PMO. Some of them I was consciously aware of throughout my life, such as the health risks, the waste of time and the sheer stupidity of making love to a two dimensional image. However, such was my fear of quitting, so obsessed was I in resisting all the attempts of do-gooders and anyone else who tried to persuade me to quit, that all my imagination and energy was directed to finding any flimsy excuse that would allow me to continue to PMO.</p>
<p>Amazingly, my most ingenious thoughts occurred when I was actually trying to quit. They were of course inspired by the fear and misery I suffered when attempting to quit by using willpower. No way could I block my mind from the health and sexual aspects. But now that I am free it amazes me how I successfully blocked my mind from even more important advantages to be gained from quitting. I&rsquo;ve already mentioned the sheer slavery - spending half of our lives being allowed to PMO, doing it automatically and wishing we had never started, the other half feeling miserable and deprived because the knowledge of the destructive effects of internet porn won&rsquo;t allow us to PMO. In the last chapter I&rsquo;ve referred to the incredible joy of having energy again. But for me the greatest joy of being free was not the health, the time, the energy, or the ending of the slavery, it was the removal of those sinister black shadows, the removal of feeling despised by and feeling apologetic to myself and to other quitters, and most of all to be able to respect yourself.</p>
<p>Most PMOers aren&rsquo;t the weak-willed, spineless jellyfish that both society and themselves tend to believe. In every other aspect of my life I was in control. I loathed myself for being dependent on an evil crutch that I knew was ruining my life. I cannot tell you of the utter joy of being free of those sinister black shadows, the dependency and the self-despising. I can&rsquo;t tell you how nice it is to be able to look at all other users, whether they be young, old, casual or heavy, not with a feeling of envy, but with a feeling of pity for them and elation for yourself that you are no longer the slave of that insidious trap. The other day I felt pity for the guy on a TV show who was so excited to get to watch porn - another case of society slipping one in your drink under the pretence of comedy.</p>
<p>The last two chapters have dealt with the considerable advantages of being a non-PMOer. I feel it necessary to give a balanced account, so the next chapter lists the advantages of being a PMOer.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-19-it-relaxes-me-and-gives-me-confidence/"><div id="prevart">Previous:<br>03-19 It Relaxes Me and Gives Me Confidence</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The Willpower Method of Stopping It is an accepted fact in our society that it is very difficult to stop PMO. Even books and forums advising you how to do so usually start off by telling you how difficult it is. The truth is that it is ridiculously easy. Yes, I can understand you questioning that statement but just consider it. If your aim is to run a mile in under four minutes, that&rsquo;s difficult."/>
<meta name="description" content="The Willpower Method of Stopping It is an accepted fact in our society that it is very difficult to stop PMO. Even books and forums advising you how to do so usually start off by telling you how difficult it is. The truth is that it is ridiculously easy. Yes, I can understand you questioning that statement but just consider it. If your aim is to run a mile in under four minutes, that&rsquo;s difficult."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-21 The Willpower Method of Stopping">03-21 The Willpower Method of Stopping</h1></header>
<article>
<h2 id="the-willpower-method-of-stopping">The Willpower Method of Stopping <a class="anchor" href="#the-willpower-method-of-stopping">
<span class="spanForHeader"></span>
</a></h2><p>It is an accepted fact in our society that it is very difficult to stop PMO. Even books and forums advising you how to do so usually start off by telling you how difficult it is. The truth is that it is ridiculously easy. Yes, I can understand you questioning that statement but just consider it. If your aim is to run a mile in under four minutes, that&rsquo;s difficult. You may have to undergo years of hard training and even then you may be physically incapable of doing it. (Much of our achievement lies in the mind. Isn&rsquo;t it strange how difficult it was until Roger Bannister actually did it but nowadays it is commonplace?).</p>
<div class="post-content"><h2 id="the-willpower-method-of-stopping">The Willpower Method of Stopping<a hidden class="anchor" aria-hidden="true" href="#the-willpower-method-of-stopping">#</a></h2>
<p>It is an accepted fact in our society that it is very difficult to stop PMO. Even books and forums advising you how to do so usually start off by telling you how difficult it is. The truth is that it is ridiculously easy. Yes, I can understand you questioning that statement but just consider it. If your aim is to run a mile in under four minutes, that&rsquo;s difficult. You may have to undergo years of hard training and even then you may be physically incapable of doing it. (Much of our achievement lies in the mind. Isn&rsquo;t it strange how difficult it was until Roger Bannister actually did it but nowadays it is commonplace?).</p>
<p>However, in order to stop PMOing all you have to do is not watch internet porn and or masturbate any more. No one forces you to masturbate (apart from yourself) and unlike food or drink, you don&rsquo;t need it to survive. So if you want to stop doing it, why should it be difficult? In fact, it isn&rsquo;t. It is PMOers who make it difficult by using the Willpower Method. I define the Willpower Method as any method that forces the PMOer to feel he is making some sort of sacrifice. Let us just consider the Willpower Method.</p>
<p>We do not decide to become PMOers. We merely experiment with porn magazines or websites and because they are awful, yes that is right awful - except for our desired clip, we are convinced that we can stop whenever we want to. In the main, we watch those first few clips only when we want to and that is usually on special occasions. Before we realize it, we are not only visiting those sites regularly and masturbating when we want to, we are masturbating to them every day. PMO has become a part of our lives. We then ensure that we always have an internet connection wherever we go. We believe that we are entitled to love, sex and orgasms - and also that porn helps to relieve stress. It doesn&rsquo;t seem to occur to us that the same clip and actors do not provide us the same degree of arousal and that we are either escalating or fighting against the red line we have put around ourselves to avoid harmful “bad porn.” In fact, masturbation and internet porn neither improves our sex life nor does it relieve stress, it&rsquo;s just that PMOers believe they can&rsquo;t enjoy life or handle stress without an orgasm - even mind induced porn orgasms. Because that is what many times we are doing.</p>
<p>It usually takes us a long time to realize that we are hooked because we suffer from the illusion that PMOers masturbate because they enjoy porn - not because they have to have porn - a need. While we are not “enjoying” porn (which we can never do unless novelty, shock or escalation is added), we suffer from the illusion that we can stop whenever we want to. This is a confidence trap. I dont enjoy porn, so I am sure I can stop when I want to. Only that you never seem to want to stop though.</p>
@ -75,6 +75,7 @@
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-20-those-sinister-black-shadows/"><div id="prevart">Previous:<br>03-20 Those Sinister Black Shadows</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Beware of Cutting Down Many PMOers resort to cutting down either as a stepping-stone towards stopping or as an attempt to control the little monster. Many recommend cutting down or a porn diet1 as a pick-me-up. Obviously, the less you PMO the better off you are but as a stepping-stone to stopping, cutting down is fatal. It is these attempts to cut down that keep us trapped all our lives."/>
<meta name="description" content="Beware of Cutting Down Many PMOers resort to cutting down either as a stepping-stone towards stopping or as an attempt to control the little monster. Many recommend cutting down or a porn diet1 as a pick-me-up. Obviously, the less you PMO the better off you are but as a stepping-stone to stopping, cutting down is fatal. It is these attempts to cut down that keep us trapped all our lives."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-22 Beware of Cutting Down">03-22 Beware of Cutting Down</h1></header>
<article>
<h2 id="beware-of-cutting-down">Beware of Cutting Down <a class="anchor" href="#beware-of-cutting-down">
<span class="spanForHeader"></span>
</a></h2><p>Many PMOers resort to cutting down either as a stepping-stone towards stopping or as an attempt to control the little monster. Many recommend cutting down or a porn diet<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup> as a pick-me-up. Obviously, the less you PMO the better off you are but as a stepping-stone to stopping, cutting down is fatal. It is these attempts to cut down that keep us trapped all our lives.</p>
<div class="post-content"><h2 id="beware-of-cutting-down">Beware of Cutting Down<a hidden class="anchor" aria-hidden="true" href="#beware-of-cutting-down">#</a></h2>
<p>Many PMOers resort to cutting down either as a stepping-stone towards stopping or as an attempt to control the little monster. Many recommend cutting down or a porn diet<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup> as a pick-me-up. Obviously, the less you PMO the better off you are but as a stepping-stone to stopping, cutting down is fatal. It is these attempts to cut down that keep us trapped all our lives.</p>
<p>Usually cutting down follows failed attempts to stop. After a few hours or days of abstinence the PMOer says to himself something like:</p>
<blockquote>
<p><em>“I cannot face the thought of going to sleep without visiting my online harem, so from now on I will just PMO once in four days or I will purge my collection of bad porn. If I can follow this porn diet, I can either hold it there or cut down further.”</em></p>
@ -53,9 +53,8 @@
</ol>
<p>The other important point that cutting down demonstrates is that there is no such thing as the odd or occasional harem visit. Internet porn is a chain reaction that will last the rest of your life unless you make a positive effort to break it:</p>
<div style="text-align: center;">
<h3 id="remember-cutting-down-will-drag-you-down"><strong>REMEMBER: CUTTING DOWN WILL DRAG YOU DOWN.</strong> <a class="anchor" href="#remember-cutting-down-will-drag-you-down">
<span class="spanForHeader"></span>
</a></h3></div><div class="footnotes" role="doc-endnotes">
<h3 id="remember-cutting-down-will-drag-you-down"><strong>REMEMBER: CUTTING DOWN WILL DRAG YOU DOWN.</strong><a hidden class="anchor" aria-hidden="true" href="#remember-cutting-down-will-drag-you-down">#</a></h3>
</div><div class="footnotes" role="doc-endnotes">
<hr>
<ol>
<li id="fn:1">
@ -67,6 +66,7 @@
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-21-the-willpower-method-of-stopping/"><div id="prevart">Previous:<br>03-21 The Willpower Method of Stopping</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Just One Peek Just one peek is a myth you must get out of your mind:
<meta name="description" content="Just One Peek Just one peek is a myth you must get out of your mind:
It is just one peek that gets us started in the first place. It is just one peek to tide us over a difficult patch or on a special occasion that defeats most of our attempts to stop. It is just one peek that, when PMOers have succeeded in breaking the addiction, sends them back into the trap."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ It is just one peek that gets us started in the first place. It is just one peek
<header><h1 id="tag_03-23 Just One Peek">03-23 Just One Peek</h1></header>
<article>
<h2 id="just-one-peek">Just One Peek <a class="anchor" href="#just-one-peek">
<span class="spanForHeader"></span>
</a></h2><p>“Just one peek” is a myth you must get out of your mind:</p>
<div class="post-content"><h2 id="just-one-peek">Just One Peek<a hidden class="anchor" aria-hidden="true" href="#just-one-peek">#</a></h2>
<p>“Just one peek” is a myth you must get out of your mind:</p>
<ul>
<li>It is just one peek that gets us started in the first place.</li>
<li>It is just one peek to tide us over a difficult patch or on a special occasion that defeats most of our attempts to stop.</li>
@ -51,6 +51,7 @@ It is just one peek that gets us started in the first place. It is just one peek
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-22-beware-of-cutting-down/"><div id="prevart">Previous:<br>03-22 Beware of Cutting Down</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Casual PMOers, Teenagers, Non PMOers Heavy PMOers tend to envy the casual porn user. We&rsquo;ve all met these characters: Oh, I can go all week without a PMO, it really doesn&rsquo;t bother me. We think: I wish I were like that! I know this is hard to believe but no PMOer enjoys being a PMOer. Never forget:
<meta name="description" content="Casual PMOers, Teenagers, Non PMOers Heavy PMOers tend to envy the casual porn user. We&rsquo;ve all met these characters: Oh, I can go all week without a PMO, it really doesn&rsquo;t bother me. We think: I wish I were like that! I know this is hard to believe but no PMOer enjoys being a PMOer. Never forget:
No PMOer ever decided to become a PMOer casual or otherwise, therefore: All PMOers feel stupid, therefore: All PMOers have to lie to themselves and other people in a vain attempt to justify their stupidity."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ No PMOer ever decided to become a PMOer casual or otherwise, therefore: All PMOe
<header><h1 id="tag_03-24 Casual PMOers, Teenagers, Non PMOers">03-24 Casual PMOers, Teenagers, Non PMOers</h1></header>
<article>
<h2 id="casual-pmoers-teenagers-non-pmoers">Casual PMOers, Teenagers, Non PMOers <a class="anchor" href="#casual-pmoers-teenagers-non-pmoers">
<span class="spanForHeader"></span>
</a></h2><p>Heavy PMOers tend to envy the casual porn user. We&rsquo;ve all met these characters: “Oh, I can go all week without a PMO, it really doesn&rsquo;t bother me.” We think: “I wish I were like that!” I know this is hard to believe but no PMOer enjoys being a PMOer. Never forget:</p>
<div class="post-content"><h2 id="casual-pmoers-teenagers-non-pmoers">Casual PMOers, Teenagers, Non PMOers<a hidden class="anchor" aria-hidden="true" href="#casual-pmoers-teenagers-non-pmoers">#</a></h2>
<p>Heavy PMOers tend to envy the casual porn user. We&rsquo;ve all met these characters: “Oh, I can go all week without a PMO, it really doesn&rsquo;t bother me.” We think: “I wish I were like that!” I know this is hard to believe but no PMOer enjoys being a PMOer. Never forget:</p>
<ul>
<li>No PMOer ever decided to become a PMOer casual or otherwise, therefore:</li>
<li>All PMOers feel stupid, therefore:</li>
@ -38,32 +38,25 @@ No PMOer ever decided to become a PMOer casual or otherwise, therefore: All PMOe
</ol>
<p>I used to think of my non-casual PMOing as a weakness. I couldn&rsquo;t understand why my friends could limit their “intake.” I knew I was a very strong-willed person. It never occurred to me that most PMOers are incapable of chain-PMOing - you need a very strong imagination and also extraordinarily strong penis stamina in order to do it. Some of these once-a-week PMOers that heavy PMOers tend to envy do it less frequently because physically their constitution cannot do more, or because they cannot afford to PMO more, or because their job, or society, or their own hatred of being hooked won&rsquo;t allow them to PMO more.</p>
<p>It may be of advantage at this stage to provide a few definitions:</p>
<h3 id="the-non-pmoer">THE NON-PMOer <a class="anchor" href="#the-non-pmoer">
<span class="spanForHeader"></span>
</a></h3><p>Someone who has never fallen for the trap but should not be complacent. He is a non-PMOer only by luck or the grace of goodness. All PMOers were convinced that they would never become hooked and some non-PMOers keep trying an occasional session.</p>
<h3 id="the-casual-pmoer">THE CASUAL PMOer <a class="anchor" href="#the-casual-pmoer">
<span class="spanForHeader"></span>
</a></h3><p>There are two basic classifications of casual PMOers:</p>
<h3 id="the-non-pmoer">THE NON-PMOer<a hidden class="anchor" aria-hidden="true" href="#the-non-pmoer">#</a></h3>
<p>Someone who has never fallen for the trap but should not be complacent. He is a non-PMOer only by luck or the grace of goodness. All PMOers were convinced that they would never become hooked and some non-PMOers keep trying an occasional session.</p>
<h3 id="the-casual-pmoer">THE CASUAL PMOer<a hidden class="anchor" aria-hidden="true" href="#the-casual-pmoer">#</a></h3>
<p>There are two basic classifications of casual PMOers:</p>
<ol>
<li>The PMOer who has fallen for the trap but doesn&rsquo;t realize it. Do not envy such PMOers. They are merely sampling the nectar at the mouth of the pitcher plant and in all probability will soon be heavy users. Remember, just as all alcoholics started off as casual drinkers, so all PMOers started off as casual PMOers.</li>
<li>The PMOer who was previously a heavy PMOer and thinks he cannot stop. These PMOers are the saddest of all. They fall into various categories, each of which needs separate comment.</li>
</ol>
<h3 id="the-oncea--day-pmoer">THE ONCEA- DAY PMOer <a class="anchor" href="#the-oncea--day-pmoer">
<span class="spanForHeader"></span>
</a></h3><p>If he enjoys his entitlement to orgasm, why does he use internet porn to orgasm only once a day? If he can take it or leave it, why does he bother to PMO at all? Remember, the habit is really banging your head against the brick wall only to make it relaxing when you stop. The once-a-day PMOer is relieving his withdrawal pangs for less than one hour each day. The rest of the day, although he doesn&rsquo;t realize it, he is banging his head against the wall and does so for most of his life. He is PMOing only once a day because either he cannot take the risk of getting caught or screwing up his brain health. It is easy to convince the heavy PMOer that he doesn&rsquo;t enjoy it but you try convincing a casual PMOer. Anybody who has gone through an attempt to cut down will know it is the worst torture of all and almost guaranteed to keep you hooked for the rest of your life.</p>
<h3 id="the-rejected-pmoer">THE REJECTED PMOer <a class="anchor" href="#the-rejected-pmoer">
<span class="spanForHeader"></span>
</a></h3><p>This PMOer demands the right to his/her orgasm(s) every day. And of course his sex partner is not always up to it. So he goes on the internet for porn initially. Once he takes “the ride” to fix “the void” he is trapped on this most exciting water slide of novelty, shock, supranormal images etc. He is in fact dichotomously happy with the partners rejection it gives him something of an excuse. If internet porn is giving so much to you, why even bother to have a partner at all? Set him or her free. He is not even enjoying the PMO when he has to carry his partner in his mind. At some point he is using his real life partner to hand him an excuse to go out into the valleys of the dark side of the internet.</p>
<h3 id="the-porn-diet-pmoer">THE PORN DIET PMOer <a class="anchor" href="#the-porn-diet-pmoer">
<span class="spanForHeader"></span>
</a></h3><p>(Or, “I can stop whenever I want to. I have done it thousands of times”). If he thinks dieting helps with his moods to get out to get women, why is he even on the diet of once every four days? How can one predict the future, what if the happenstance of meeting occurred just an hour after your scheduled PMO session? Also, if he thinks this occasional “cleaning the plumbing” is good to relieve tension and relax why not plumb every day? It has been proven that masturbation is not required to keep the genitals healthy. Internet porn is not required at all. Even if that may be the case, any PUA guru who has read about the brain chemistry and its plasticity will never recommend watching super stimulus porn. The truth is he is still hooked. Although he gets rid of the physical addiction, he is left with the main problem - the brainwashing. He hopes each time that he will stop for good and soon falls for the same trap again.</p>
<h3 id="the-oncea--day-pmoer">THE ONCEA- DAY PMOer<a hidden class="anchor" aria-hidden="true" href="#the-oncea--day-pmoer">#</a></h3>
<p>If he enjoys his entitlement to orgasm, why does he use internet porn to orgasm only once a day? If he can take it or leave it, why does he bother to PMO at all? Remember, the habit is really banging your head against the brick wall only to make it relaxing when you stop. The once-a-day PMOer is relieving his withdrawal pangs for less than one hour each day. The rest of the day, although he doesn&rsquo;t realize it, he is banging his head against the wall and does so for most of his life. He is PMOing only once a day because either he cannot take the risk of getting caught or screwing up his brain health. It is easy to convince the heavy PMOer that he doesn&rsquo;t enjoy it but you try convincing a casual PMOer. Anybody who has gone through an attempt to cut down will know it is the worst torture of all and almost guaranteed to keep you hooked for the rest of your life.</p>
<h3 id="the-rejected-pmoer">THE REJECTED PMOer<a hidden class="anchor" aria-hidden="true" href="#the-rejected-pmoer">#</a></h3>
<p>This PMOer demands the right to his/her orgasm(s) every day. And of course his sex partner is not always up to it. So he goes on the internet for porn initially. Once he takes “the ride” to fix “the void” he is trapped on this most exciting water slide of novelty, shock, supranormal images etc. He is in fact dichotomously happy with the partners rejection it gives him something of an excuse. If internet porn is giving so much to you, why even bother to have a partner at all? Set him or her free. He is not even enjoying the PMO when he has to carry his partner in his mind. At some point he is using his real life partner to hand him an excuse to go out into the valleys of the dark side of the internet.</p>
<h3 id="the-porn-diet-pmoer">THE PORN DIET PMOer<a hidden class="anchor" aria-hidden="true" href="#the-porn-diet-pmoer">#</a></h3>
<p>(Or, “I can stop whenever I want to. I have done it thousands of times”). If he thinks dieting helps with his moods to get out to get women, why is he even on the diet of once every four days? How can one predict the future, what if the happenstance of meeting occurred just an hour after your scheduled PMO session? Also, if he thinks this occasional “cleaning the plumbing” is good to relieve tension and relax why not plumb every day? It has been proven that masturbation is not required to keep the genitals healthy. Internet porn is not required at all. Even if that may be the case, any PUA guru who has read about the brain chemistry and its plasticity will never recommend watching super stimulus porn. The truth is he is still hooked. Although he gets rid of the physical addiction, he is left with the main problem - the brainwashing. He hopes each time that he will stop for good and soon falls for the same trap again.</p>
<p>Many PMOers actually envy these stoppers and starters. They think, “how lucky to be able to control it like that, to do PMO when you want to and stop when you want to,” What they always overlook is that these stoppers and starters aren&rsquo;t controlling it. When they are PMOers, they wish they weren&rsquo;t. They go through the hassle of stopping, then begin to feel deprived and fall for the trap again, then wish they hadn&rsquo;t. They get the worst of both worlds. If you think about it, this is true in the lives of the PMOers. When we are allowed to PMO we either take it as entitled or wish we didn&rsquo;t. It&rsquo;s only when we can&rsquo;t have PMO that it appears to be so precious. The forbidden fruit syndrome. This is the awful dilemma of PMOers. They can never win because they are moping for a myth, an illusion. There is one way they can win and that is to stop PMOing and stop moping!</p>
<h3 id="the-i-only-pmo-to-static--tame--home-made-porn-pmoer">THE I-ONLY-PMO-TO-STATIC / TAME / HOME-MADE-PORN PMOer <a class="anchor" href="#the-i-only-pmo-to-static--tame--home-made-porn-pmoer">
<span class="spanForHeader"></span>
</a></h3><p>Yes, we all do it to start with but isn&rsquo;t it amazing how the average shock value of these clips seems rapidly to increase and before we know it we seem to be feeling deprived (tolerance)? The novelty is lacking in with static porn and we pay the mascot for a cup of grease and take the ride down the porn water slide towards the dark spirals of resentment and guilt. The worst thing you can do is to use your partner&rsquo;s pictures (with approval, of course) for masturbation. Why? Because you are re-wiring your brain for the seeking, searching and variety induced dopamine flushes. The porn water slides in the brain is the DeltaFosB built-up due to the dopamine surges induced by internet porn. But you will find yourself having weak and unreliable erections when you are with her in real time. Another genre in this category is amateur or home made porn. Most are fakes and you know it. And you are not going to settle down and finish on the very first one that hits your eyes&hellip; you are going to continue to seek and search. Remember its not only the orgasms but the search-and-seek, the wandering, that gives the porn slide the surge, the ride. The porn content, whether amateur or professional or whatever is not the issue, it is the brain flushes of dopamine during the search-and-seek - the building up of brain tolerance and satiation. Porn destroys normal brain operations. Masturbation confuses the muscle-brain. Orgasms floods the brain and so it should be, better the risks involved in having one.</p>
<h3 id="the-i-have-stopped-but-i-have-an-occasional-peek-pmoer">THE I-HAVE-STOPPED-BUT-I-HAVE-AN-OCCASIONAL-PEEK PMOer <a class="anchor" href="#the-i-have-stopped-but-i-have-an-occasional-peek-pmoer">
<span class="spanForHeader"></span>
</a></h3><p>In a way such peeking PMOers are the most pathetic of all. Either they go through their lives believing they are being deprived or, more often, the occasional peek becomes two. They remain on the slippery slope and it goes only one way - DOWNWARDS. Sooner or later they are back to being heavy PMOers. They have fallen again for the very trap that they fell into in the first place.</p>
<h3 id="the-i-only-pmo-to-static--tame--home-made-porn-pmoer">THE I-ONLY-PMO-TO-STATIC / TAME / HOME-MADE-PORN PMOer<a hidden class="anchor" aria-hidden="true" href="#the-i-only-pmo-to-static--tame--home-made-porn-pmoer">#</a></h3>
<p>Yes, we all do it to start with but isn&rsquo;t it amazing how the average shock value of these clips seems rapidly to increase and before we know it we seem to be feeling deprived (tolerance)? The novelty is lacking in with static porn and we pay the mascot for a cup of grease and take the ride down the porn water slide towards the dark spirals of resentment and guilt. The worst thing you can do is to use your partner&rsquo;s pictures (with approval, of course) for masturbation. Why? Because you are re-wiring your brain for the seeking, searching and variety induced dopamine flushes. The porn water slides in the brain is the DeltaFosB built-up due to the dopamine surges induced by internet porn. But you will find yourself having weak and unreliable erections when you are with her in real time. Another genre in this category is amateur or home made porn. Most are fakes and you know it. And you are not going to settle down and finish on the very first one that hits your eyes&hellip; you are going to continue to seek and search. Remember its not only the orgasms but the search-and-seek, the wandering, that gives the porn slide the surge, the ride. The porn content, whether amateur or professional or whatever is not the issue, it is the brain flushes of dopamine during the search-and-seek - the building up of brain tolerance and satiation. Porn destroys normal brain operations. Masturbation confuses the muscle-brain. Orgasms floods the brain and so it should be, better the risks involved in having one.</p>
<h3 id="the-i-have-stopped-but-i-have-an-occasional-peek-pmoer">THE I-HAVE-STOPPED-BUT-I-HAVE-AN-OCCASIONAL-PEEK PMOer<a hidden class="anchor" aria-hidden="true" href="#the-i-have-stopped-but-i-have-an-occasional-peek-pmoer">#</a></h3>
<p>In a way such peeking PMOers are the most pathetic of all. Either they go through their lives believing they are being deprived or, more often, the occasional peek becomes two. They remain on the slippery slope and it goes only one way - DOWNWARDS. Sooner or later they are back to being heavy PMOers. They have fallen again for the very trap that they fell into in the first place.</p>
<p>There are two other categories of casual PMOers. The first is the type who masturbates to images or clips of the latest celebrity sex tapes that hit the news. Or something they carried home from their accidental viewing at school or work. These people are really non-PMOers. It&rsquo;s just that they feel they are missing out. They want to be part of the action. We all start off like this. Next time watch how, after a while, the celebrity sex tape, the same star of your fantasy is not doing it to you any more. The more unattainable the target of your fantasy is, the more frustrating the withdrawal of the orgasm is.</p>
<p>The second category is recently getting attention. The type can best be described by outlining a case shared online. A woman who is a professional, had been using internet porn stories for many years and had never PMOed more or less than one time every night. She was, incidentally, a very strong-willed lady. Most PMOers would wonder why she wanted to stop in the first place. They would gladly point out to her that there is no worries of PIED, or PE in her case as she is a women. She is using not even static images and the stories are far tamer than any they use on a daily basis.</p>
<p>They make the mistake of assuming that casual PMOers are happier and more in control. In control they may be but happy they are not. In this case, she is not satisfied with her partner, not interested in real sex, highly irritable with her daily stress and strains. Her nearest-and-dearest could not find out what is bothering her. Even if she convinced herself not to be afraid of her use of internet porn by rationalizing, she still finds herself not being able to enjoy real relationships which almost invariably involve ups and downs. Her brains RC<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup> is not able to make use of the normal de-stress brain chemicals as she is flooding dopamine into her brain on an everyday basis. The down regulation<sup id="fnref:2"><a href="#fn:2" class="footnote-ref" role="doc-noteref">2</a></sup> of her brain receptors has rendered her melancholic most times. Like me, she had a great fear of internet porns dark side of the treatment of women- before her first time. Like me, she eventually fell victim to the massive social brainwash and tried that first porn site. Like me, she can remember the foul clips of violence staged as entertainment. Unlike me, who capitulated and became a chain-PMOer very quickly, she resisted the slide.</p>
@ -76,9 +69,8 @@ No PMOer ever decided to become a PMOer casual or otherwise, therefore: All PMOe
</blockquote>
<p>In addition to his other troubles, this poor man has no idea that he treating himself to a poison. First he is suffering the “forbidden fruit syndrome.” Next he is forcing his brain to flush dopamine. His dopamine receptors are not as cut down comparatively either. But he is sliding and greasing the porn slides, seeking and searching for edging, novelty, variety, shock-value, anxiety-value (“I must treat myself so that I can survive the next three days”) etc. You probably have visions of a pathetic imbecile. Not so. This man was over six feet tall and an ex-sergeant in the Marines. He was a former athlete and didn&rsquo;t want to become an addict to anything. However, when he returned from the war he was trained as a techie in a veterans rehab program. When he entered the civil work force he was a well paid IT professional in a bank and was given a laptop (one of the ways to ensure you take work home). It was the year that famous socialites leaked their porn videos online. There was much talk about it. And he got hooked. He has spent the rest of his life paying through the nose and it has ruined him physically and mentally. If he were an animal, our society would have put him out of his misery, yet we still allow mentally and physically healthy young teenagers to become hooked. You may think the above case and my notes are exaggerated. It is extreme but not unique. There are literally thousands of similar stories. That man poured his heart out to me but you can be sure that many of his friends and acquaintances envied him for being a once-a-week man. If you think this couldn&rsquo;t happen to you, STOP KIDDING YOURSELF.</p>
<div style="text-align: center;">
<h3 id="it-is-already-happening"><strong>IT IS ALREADY HAPPENING.</strong> <a class="anchor" href="#it-is-already-happening">
<span class="spanForHeader"></span>
</a></h3></div>
<h3 id="it-is-already-happening"><strong>IT IS ALREADY HAPPENING.</strong><a hidden class="anchor" aria-hidden="true" href="#it-is-already-happening">#</a></h3>
</div>
<p>In any event, PMOers like other addicts are notorious liars, even to themselves. They have to be. Most casual PMOers indulge far more times and on far more occasions than they will admit to. I have had many conversations with so-called twice-a-week PMOers during which they have done it more than three times that week. If you read the Reddit or No-Fap forums of casual PMOers, they are either counting the days or waiting to fail. You do not need to envy casual PMOers. You do not need to PMO. Life is infinitely sweeter without PMO. One log says&hellip;</p>
<blockquote>
<p><em>“It started with a simple challenge to not touch my penis for a day. And being unable. I don&rsquo;t think about masturbation anymore. It doesn&rsquo;t cross my mind. That is possible, I promise you. And the riches that await those who are able - they&rsquo;re incredible.”</em></p>
@ -98,6 +90,7 @@ No PMOer ever decided to become a PMOer casual or otherwise, therefore: All PMOe
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-23-just-one-peek/"><div id="prevart">Previous:<br>03-23 Just One Peek</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The YouTube PMOer The YouTube PMOer should be grouped with casual PMOers but the effects of a YouTube PMOer are so insidious that it merits a separate chapter. It can lead to the breakdown of personal self control. In one case it nearly caused a split for a No-Fap forum user.
<meta name="description" content="The YouTube PMOer The YouTube PMOer should be grouped with casual PMOers but the effects of a YouTube PMOer are so insidious that it merits a separate chapter. It can lead to the breakdown of personal self control. In one case it nearly caused a split for a No-Fap forum user.
“I was three weeks into one of my failed attempts to stop. The attempt had been triggered off by my wife&rsquo;s worry about my unreliable hard-ons and lack of interest."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@
<header><h1 id="tag_03-25 The YouTube PMOer">03-25 The YouTube PMOer</h1></header>
<article>
<h2 id="the-youtube-pmoer">The YouTube PMOer <a class="anchor" href="#the-youtube-pmoer">
<span class="spanForHeader"></span>
</a></h2><p>The YouTube PMOer should be grouped with casual PMOers but the effects of a YouTube PMOer are so insidious that it merits a separate chapter. It can lead to the breakdown of personal self control. In one case it nearly caused a split for a No-Fap forum user.</p>
<div class="post-content"><h2 id="the-youtube-pmoer">The YouTube PMOer<a hidden class="anchor" aria-hidden="true" href="#the-youtube-pmoer">#</a></h2>
<p>The YouTube PMOer should be grouped with casual PMOers but the effects of a YouTube PMOer are so insidious that it merits a separate chapter. It can lead to the breakdown of personal self control. In one case it nearly caused a split for a No-Fap forum user.</p>
<blockquote>
<p><em>“I was three weeks into one of my failed attempts to stop. The attempt had been triggered off by my wife&rsquo;s worry about my unreliable hard-ons and lack of interest. I had told her that it was not her and it was just job pressure. She said, &lsquo;I know you had handled the work pressure before but how would you feel if you were me and had to watch someone you love systematically destroying themselves? It was an argument that I found irresistible, hence the attempt to stop. She knows that I am not cheating - but this in a way is as worse as that (sic). The attempt ended after three weeks after a heated argument with an old friend. It did not register until years afterwards that my devious mind had deliberately triggered off the argument. I felt justly aggrieved at the time but I do not believe that it was coincidence, as I had never argued with this particular friend before, nor have I since. It was clearly the little monster at work. Anyway, I had my excuse. I desperately needed a release of orgasm and it doesnt matter how. As it happens she was not in the mood right away and I was in an “entitlement” hurry. So I convinced myself that it is OK if I restrict myself by avoiding a porn site and just stay this side of the red line and watch only YouTube videos. But she came around as the night unfolded and wanted to make love. But I was tired and not with all my horsepower. I then invented a headache. I could not bear to think of the disappointment this would cause my wife. Then gradually I returned to the old ways, only YouTube became my new harem destination. I remember being quite pleased at the time. I thought, &lsquo;well, at least it is cutting my consumption down; Eventually she accused me of continuing to ignore her in the bed. I had not realized it but she described the times I had caused an argument and stormed out of the house. At other times I had taken two hours to purchase some minor item and faked a sprain or something. I had made feeble excuses to cop out of the whole wooing her and etc. when I have a reliable online harem it is even more hard.”</em></p>
</blockquote>
@ -29,9 +29,9 @@
<p>Columbo has this frustrating practice of closing the door after finishing his interrogation, having assured the suspect that he is in the clear and before the satisfied look has disappeared from the murderer&rsquo;s face, Columbo reappears with: “just one small point, sir, which I&rsquo;m sure you can explain&hellip;” The suspect stammers and from that point on we know and he knows that Columbo will gradually wear him down. No matter how heinous the crime, from that point on my sympathies were with the murderer.</p>
<p>It was almost as if I were the criminal and that&rsquo;s exactly how those bouts made me feel. The tension of not being allowed to cross the red line to get my porn fix that I “rightly deserve because I am hard working man and why shouldnt I when every man does it?” entitlement, click, click, clicking on videos that come close to the right one. Longing for the porn tube videos. And then finishing the deed - just a limp rub out, wondering where the pleasure was. The fear of crossing the line losing control. The relief of returning to the bed, immediately followed by the fear that she would toss around and ask for sex. As the “safe” YouTube videos started not to do it for me - desensitization and lack of novelty and the certain knowledge that sooner or later I was bound to visit my favourite online harem. The final humiliation and shame when that certainty became a fact, followed by the immediate return to chain-PMOing.</p>
<div style="text-align: center;">
<h4 id="oh-the-joys-of-being-a-pmo-er"><strong>OH THE JOYS OF BEING A PMO-er!</strong> <a class="anchor" href="#oh-the-joys-of-being-a-pmo-er">
<span class="spanForHeader"></span>
</a></h4></div>
<h4 id="oh-the-joys-of-being-a-pmo-er"><strong>OH THE JOYS OF BEING A PMO-er!</strong><a hidden class="anchor" aria-hidden="true" href="#oh-the-joys-of-being-a-pmo-er">#</a></h4>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-24-casual-pmoers-teenagers-non-pmoers/"><div id="prevart">Previous:<br>03-24 Casual PMOers, Teenagers, Non PMOers</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="A Social Habit? Health of mind and body are the main reason why we should want to stop but then they always have been. We do not actually need scientific research and knowledge in brain chemistry to tell us that internet porn is addictive and can potentially shatter our lives. These bodies of ours are the most sophisticated objects on the planet and any PMOer knows instantly, from the first session, that the stimulus can go to excess and it can turn poisonous."/>
<meta name="description" content="A Social Habit? Health of mind and body are the main reason why we should want to stop but then they always have been. We do not actually need scientific research and knowledge in brain chemistry to tell us that internet porn is addictive and can potentially shatter our lives. These bodies of ours are the most sophisticated objects on the planet and any PMOer knows instantly, from the first session, that the stimulus can go to excess and it can turn poisonous."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,18 +17,18 @@
<header><h1 id="tag_03-26 A Social Habit?">03-26 A Social Habit?</h1></header>
<article>
<h2 id="a-social-habit">A Social Habit? <a class="anchor" href="#a-social-habit">
<span class="spanForHeader"></span>
</a></h2><p>Health of mind and body are the main reason why we should want to stop but then they always have been. We do not actually need scientific research and knowledge in brain chemistry to tell us that internet porn is addictive and can potentially shatter our lives. These bodies of ours are the most sophisticated objects on the planet and any PMOer knows instantly, from the first session, that the stimulus can go to excess and it can turn poisonous.</p>
<div class="post-content"><h2 id="a-social-habit">A Social Habit?<a hidden class="anchor" aria-hidden="true" href="#a-social-habit">#</a></h2>
<p>Health of mind and body are the main reason why we should want to stop but then they always have been. We do not actually need scientific research and knowledge in brain chemistry to tell us that internet porn is addictive and can potentially shatter our lives. These bodies of ours are the most sophisticated objects on the planet and any PMOer knows instantly, from the first session, that the stimulus can go to excess and it can turn poisonous.</p>
<p>The only reason why we ever get involved with internet porn is the PMOs overlap with their evolutionary brain programming. Porn is available for free and it gets streamed 24 hours a day. No risk and no traces and with very high brain rewards. Porn was once considered as harmless but that was when the images were static and involved a trip to the local store for a VHS tape.</p>
<p>Today it is generally considered even by PMOers themselves to be a supra-stimulus and addiction forming. In the old days, the strong man did not admit he masturbated. Jerk is a derogatory term. In every pub or club bar the majority of men would be proudly wanting to take a woman home and have real sex. Today the position is completely reversed for the internet porn addicts. Today&rsquo;s man realizes that he is starting to feel that he doesn&rsquo;t need a woman. This scares him. He bands together online and starts discussing experiences, devise strategies and explore options. Today&rsquo;s strong man does not want to depend on drugs. With the social revolution all PMOers nowadays are giving serious thought to stopping internet porn and masturbation. Today&rsquo;s PMOers consider PMO as an useless and harmful activity.</p>
<p>The most significant trend that I have noticed in forums is the increasing emphasis on the anti-social aspect of PMOing. The days when a man boasted of having sex and orgasms every day is slowly getting replaced with, “why do I need to be a slave for this porn monster when I know it is controlling my wand (and mind)?”</p>
<p>The only reason why people continue to PMO after getting educated is because they have failed to stop or are too frightened to try. There are even talks about no porn, no masturbation and no orgasms - with or without partners. Karezza is discussed widely and people are trying it out. Many aforementioned failures are “fail forwards” and thus somewhat benefiting the people who practice them. Once you start in the no-PMO route you will find your best fit that applies to your life. I strongly encourage devising your own plan on orgasms after understanding and practising the separation of the amative and the propagative parts of sex. I am sure whichever route you take you will see the value of preserving the “seed” by limiting the number of times you flush your brain with chemicals by orgasming. You will then never see porn, sex and orgasms as a pleasure or as a crutch for your emotional ups and downs.</p>
<p>I was reading a Reddit forum by non-PMOers dedicated to quitting not only porn but also masturbation. As I read along I thought. “This is good, I see so many have taken to quitting masturbation and I think that is the right way to quit PMO.” However, I found most of the notes pointing to them to try with the Willpower Method. There was a lot of self-pitying as well. Except a few&hellip; almost all were not feeling elated and not having the, “yippee I am free from slavery” attitude. Eventually someone broke down - as I unfortunately expected to happen. And the result was a domino effect. All those other PMOers had been sitting there thinking, “surely I can&rsquo;t be the only PMOer here.” However, they were “failing forward” albeit with a lot of self-torturing as they shut down their browsers but did not shut down the desire and the need. This method is the reverse as - we shut down the desire and the need first before shutting down the browser screen. As every day more and more PMOers leave the sinking ship, so those left on it become terrified they&rsquo;ll be the last.</p>
<div style="text-align: center;">
<h4 id="dont-let-it-be-you"><strong>DON&rsquo;T LET IT BE YOU!</strong> <a class="anchor" href="#dont-let-it-be-you">
<span class="spanForHeader"></span>
</a></h4></div>
<h4 id="dont-let-it-be-you"><strong>DON&rsquo;T LET IT BE YOU!</strong><a hidden class="anchor" aria-hidden="true" href="#dont-let-it-be-you">#</a></h4>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-25-the-youtube-pmoer/"><div id="prevart">Previous:<br>03-25 The YouTube PMOer</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Timing Apart from the obvious point that as it is doing you no good, now is the right time to stop. I believe timing is important. Our society treats internet porn flippantly as a slightly distasteful habit that can not injure your health. It is not. It is drug addiction, a disease and a destroyer of relationships in society. The worst thing that happens in most PMOers lives is getting hooked on that awful addiction."/>
<meta name="description" content="Timing Apart from the obvious point that as it is doing you no good, now is the right time to stop. I believe timing is important. Our society treats internet porn flippantly as a slightly distasteful habit that can not injure your health. It is not. It is drug addiction, a disease and a destroyer of relationships in society. The worst thing that happens in most PMOers lives is getting hooked on that awful addiction."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,15 +17,14 @@
<header><h1 id="tag_03-27 Timing">03-27 Timing</h1></header>
<article>
<h2 id="timing">Timing <a class="anchor" href="#timing">
<span class="spanForHeader"></span>
</a></h2><p>Apart from the obvious point that as it is doing you no good, now is the right time to stop. I believe timing is important. Our society treats internet porn flippantly as a slightly distasteful habit that can not injure your health. It is not. It is drug addiction, a disease and a destroyer of relationships in society. The worst thing that happens in most PMOers lives is getting hooked on that awful addiction. If they stay hooked, horrendous things happen. Timing is important to give yourself the right to a proper cure.</p>
<div class="post-content"><h2 id="timing">Timing<a hidden class="anchor" aria-hidden="true" href="#timing">#</a></h2>
<p>Apart from the obvious point that as it is doing you no good, now is the right time to stop. I believe timing is important. Our society treats internet porn flippantly as a slightly distasteful habit that can not injure your health. It is not. It is drug addiction, a disease and a destroyer of relationships in society. The worst thing that happens in most PMOers lives is getting hooked on that awful addiction. If they stay hooked, horrendous things happen. Timing is important to give yourself the right to a proper cure.</p>
<p>First of all, identify the times or occasions when PMO appears to be important to you. If you are a businessman and use it for the illusion of relief of stress, pick a relatively slack period; a good idea is to choose your annual holiday. If you PMO mainly during boring or relaxing periods, weekends etc. do the opposite. In any event, take the matter seriously and make the attempt the most important thing in your life.</p>
<p>Look ahead for a period of about three weeks and try to anticipate any event that might lead to failure. Occasions like a conference trip, partner out of town etc. need not deter you, providing you anticipate them in advance and do not feel you will be deprived. Do not attempt to cut down in the meantime as this will only create the illusion that being denied is enjoyable. In fact, it helps to force yourself to watch and have as many PMO sessions as possible. While you are having the last session and that last time, be conscious of the disappointment due to satiation, unfulfilled expectations (porn can never satisfy you), any bodily pain or pain in the genitals, the withdrawal effects, the peevishness and the melancholy. Think how marvellous it will be when you allow yourself to stop doing it.</p>
<div style="text-align: center;">
<h4 id="whatever-you-do-dont-fall-into-the-trap-of-just-saying-not-now-later-and-putting-it-out-of-your-mind-work-out-your-timetable-now-and-look-forward-to-it">WHATEVER YOU DO, DON&rsquo;T FALL INTO THE TRAP OF JUST SAYING, “NOT NOW. LATER,” AND PUTTING IT OUT OF YOUR MIND. WORK OUT YOUR TIMETABLE NOW AND LOOK FORWARD TO IT. <a class="anchor" href="#whatever-you-do-dont-fall-into-the-trap-of-just-saying-not-now-later-and-putting-it-out-of-your-mind-work-out-your-timetable-now-and-look-forward-to-it">
<span class="spanForHeader"></span>
</a></h4></div>
<h4 id="whatever-you-do-dont-fall-into-the-trap-of-just-saying-not-now-later-and-putting-it-out-of-your-mind-work-out-your-timetable-now-and-look-forward-to-it">WHATEVER YOU DO, DON&rsquo;T FALL INTO THE TRAP OF JUST SAYING, “NOT NOW. LATER,” AND PUTTING IT OUT OF YOUR MIND. WORK OUT YOUR TIMETABLE NOW AND LOOK FORWARD TO IT.<a hidden class="anchor" aria-hidden="true" href="#whatever-you-do-dont-fall-into-the-trap-of-just-saying-not-now-later-and-putting-it-out-of-your-mind-work-out-your-timetable-now-and-look-forward-to-it">#</a></h4>
</div>
<p>Remember you aren&rsquo;t giving anything up. On the contrary: you are about to receive marvellous positive gains.</p>
<p>For years the medical profession viewed porn is harmless without knowing the difference between the tame static porn of yesteryear and the latest VR streaming porn. The problem is this; although every PMOer uses internet porn purely to relieve the brain chemical craving for dopamine, it is not the addiction to the brain chemical itself that hooks the PMOer but the self-brainwashing that results from that addiction. An intelligent person will fall for a confidence trick. But only a fool will go on falling for it once he realizes that it&rsquo;s a confidence trick. Fortunately, most PMOers aren&rsquo;t fools; they only think they are. Each individual PMOer has his own private brainwashing. That is why there appears to be such a wide range of different types of PMOer, which only serves to compound the mysteries.</p>
<p>With the benefit of the original book that used this method to stop smoking, which dealt with nicotine addiction (one of the most quickest and addictive drug known to man) and bearing in mind that the personal logs that I collected from Reddit, NoFap and YBOP blogs and forums, I was agreeably surprised to realize that the philosophy propounded in the original book was still sound. The accumulated knowledge that was acquired by the original author Alan Carr and by myself the hack-author is how to communicate that knowledge to each individual PMOer. The fact that I know every PMOer can not only find it easy to stop but can actually enjoy the process is not only pointless but exceedingly frustrating unless I can make the PMOer realize it. The original author of the quit smoking book explains some controversial advice:</p>
@ -48,6 +47,7 @@
<p>I know it&rsquo;s a cliché to say, “if you haven&rsquo;t got your health, you&rsquo;ve got nothing,” but it&rsquo;s absolutely true. I used to think that physical fitness fanatics like Gary Player were a pain. I used to claim there&rsquo;s more to life than feeling fit; there&rsquo;s sex, booze and tobacco. That&rsquo;s nonsense. When you feel physically and mentally strong you can enjoy the highs and handle the lows. We confuse responsibility with stress. Responsibility becomes stressful only when you don&rsquo;t feel strong enough to handle it. The Richard Burtons of this world are physically and mentally strong. What destroys them is not the stresses of life or their jobs, or old age but the lying crutches they turn to which are just illusions. Sadly in his case and for millions like him those lying crutches kill.</p>
<p>Look at it this way. You&rsquo;ve already decided that you are not going to stay in the trap the rest of your life. Therefore at some time in your life whether you find it easy or difficult, you will have to go through the process of getting free. PMOing is not a habit or pleasure. It is drug addiction and a disease. We&rsquo;ve already established that far from being easier to stop tomorrow, it will get progressively harder. With a disease that&rsquo;s going to get progressively worse, the time to get rid of it is NOW - or as near to now as you can manage. Just think how quickly each week of our lives comes and goes. That&rsquo;s all it takes. Just think how nice it will he to enjoy the rest of your life without that ever-increasing black shadow hanging over you. And if you follow all my instructions, you won&rsquo;t even have to wait five days. You won&rsquo;t only find it easy after closing down your bowser: <strong>YOU&rsquo;LL ENJOY IT!</strong></p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-26-a-social-habit/"><div id="prevart">Previous:<br>03-26 A Social Habit?</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Will I Miss the Fun? No! Once that little porn monster is dead and your body stops craving dopamine and the porn water slides in your brain start to fade due to lack of greasing, any remaining brainwashing will vanish and you will find yourself both physically and mentally better equipped not only to cope with the stresses and strains of life but to enjoy the good times to the full."/>
<meta name="description" content="Will I Miss the Fun? No! Once that little porn monster is dead and your body stops craving dopamine and the porn water slides in your brain start to fade due to lack of greasing, any remaining brainwashing will vanish and you will find yourself both physically and mentally better equipped not only to cope with the stresses and strains of life but to enjoy the good times to the full."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-28 Will I Miss the Fun?">03-28 Will I Miss the Fun?</h1></header>
<article>
<h2 id="will-i-miss-the-fun">Will I Miss the Fun? <a class="anchor" href="#will-i-miss-the-fun">
<span class="spanForHeader"></span>
</a></h2><p>No! Once that little porn monster is dead and your body stops craving dopamine and the porn water slides in your brain start to fade due to lack of greasing, any remaining brainwashing will vanish and you will find yourself both physically and mentally better equipped not only to cope with the stresses and strains of life but to enjoy the good times to the full.</p>
<div class="post-content"><h2 id="will-i-miss-the-fun">Will I Miss the Fun?<a hidden class="anchor" aria-hidden="true" href="#will-i-miss-the-fun">#</a></h2>
<p>No! Once that little porn monster is dead and your body stops craving dopamine and the porn water slides in your brain start to fade due to lack of greasing, any remaining brainwashing will vanish and you will find yourself both physically and mentally better equipped not only to cope with the stresses and strains of life but to enjoy the good times to the full.</p>
<p>There is only one danger and that is the influence of those who still use sex as their lying crutch and damned pleasure. “The other man&rsquo;s grass is always greener,” is commonplace in many aspects of our lives and is easily understandable. Why is it in the case of PMOing, where the disadvantages are so enormous as compared with even the illusory advantages, that the ex-PMOer tend to envy the man or woman who appears to demand sex and use porn for pleasure and a crutch?</p>
<p>With all the brainwashing of our childhood it is quite understandable that we fall into the trap. Why is it that, once we realize what a mug&rsquo;s game it is and many of us manage to kick the habit, we walk straight back into the same trap? It is the influence of society&rsquo;s brainwashing of porn being conflated with sex and presented as normal. The ex-PMOer has a pang! The insecure void feelings of them being single, which in itself is not a crime anyway, causes anxiety and cues them to PMO water slide. This is indeed a curious anomaly, particularly if you consider this piece of observation: not only is every non-PMOer in the world happy to be a non-PMOer but every PMOer in the world, even with his warped, addicted, brainwashed mind suffering the delusion that he enjoys it or it relaxes him, wishes he had never become hooked in the first place. So why do some ex-PMOers envy the PMOer on these occasions? There are two reasons.</p>
<ol>
@ -42,6 +42,7 @@ Get out of the habit of envying PMOers and start seeing them as the miserable, p
</blockquote>
<p>You wouldn&rsquo;t envy a heroin addict. Like all drug addiction, yours won&rsquo;t get better. Each year it will get worse and worse. If you don&rsquo;t enjoy being a PMOer today, you&rsquo;ll enjoy it even less tomorrow. Don&rsquo;t envy other PMOers. Pity them. Believe me: THEY NEED YOUR PITY.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-27-timing/"><div id="prevart">Previous:<br>03-27 Timing</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Can I Compartmentalize? This is another myth about PMOing spread mainly by PMOers who, when attempting to stop on the Willpower Method, substitute mental gymnastics - they propose to act -Jekyll and Hyde: “Porn is for my alter ego side and real life romance is for my relationship side.” Nothing is further from the truth. The porn waterslides - the deltaFosBs and all the brain changes are going to overrun the real life romance and will make it less desirable."/>
<meta name="description" content="Can I Compartmentalize? This is another myth about PMOing spread mainly by PMOers who, when attempting to stop on the Willpower Method, substitute mental gymnastics - they propose to act -Jekyll and Hyde: “Porn is for my alter ego side and real life romance is for my relationship side.” Nothing is further from the truth. The porn waterslides - the deltaFosBs and all the brain changes are going to overrun the real life romance and will make it less desirable."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-29 Can I Compartmentalize?">03-29 Can I Compartmentalize?</h1></header>
<article>
<h2 id="can-i-compartmentalize">Can I Compartmentalize? <a class="anchor" href="#can-i-compartmentalize">
<span class="spanForHeader"></span>
</a></h2><p>This is another myth about PMOing spread mainly by PMOers who, when attempting to stop on the Willpower Method, substitute mental gymnastics - they propose to act -Jekyll and Hyde: “Porn is for my alter ego side and real life romance is for my relationship side.” Nothing is further from the truth. The porn waterslides - the deltaFosBs and all the brain changes are going to overrun the real life romance and will make it less desirable. Mr Hyde is most definitely going to overrule Dr. Jekylls instructions.</p>
<div class="post-content"><h2 id="can-i-compartmentalize">Can I Compartmentalize?<a hidden class="anchor" aria-hidden="true" href="#can-i-compartmentalize">#</a></h2>
<p>This is another myth about PMOing spread mainly by PMOers who, when attempting to stop on the Willpower Method, substitute mental gymnastics - they propose to act -Jekyll and Hyde: “Porn is for my alter ego side and real life romance is for my relationship side.” Nothing is further from the truth. The porn waterslides - the deltaFosBs and all the brain changes are going to overrun the real life romance and will make it less desirable. Mr Hyde is most definitely going to overrule Dr. Jekylls instructions.</p>
<p>If you use internet porn, you may be training yourself for the role of voyeur or to need the option of clicking to something more arousing at the least drop in your dopamine levels, or to search and search for just the right scene for maximum effect. Also, you may be masturbating in a hunched-over position or watching your smartphone in bed nightly. You will eventually desire those cues more than the real life action. The thing that goes against real sex is the lack of novelty, variety, harem like 24/7 quick delivery etc. and so it stands no chance compared to your online harem. The younger you were when you started on PMO the longer to rewire and break down those porn water slides and get back those real water slides if there were any from the past or create new ones. Also powerful and lasting are the associated memories from when you were young.</p>
<p>Every time you take a ride on the porn water slide you are greasing it - keeping the nerves fresh. When you park next to a fast food restaurant the smell of the fries floats from the pan into your nostrils and the sale was already made. Likewise, the porn water slides in your brain are there for you to get sucked in and they are open 24 hours a day. Each of these cues, or triggers, can now light up your reward circuit with the promise of sex&hellip; only it isn&rsquo;t sex. Nevertheless, nerve cells may solidify these associations with sexual arousal by sprouting new branches to strengthen the connections. The more you use porn the stronger the nerve connections can become, with the result that you may ultimately need to be a voyeur, need to click to new material, need to climax to porn to get to sleep, or need to search for the perfect ending just to get the job done.</p>
<p>As with any substance or behavioural drug, after a while the body becomes immune and the “drug” ceases to relieve the withdrawal pangs completely. As soon as we close a session, the addict wants another one very soon and he has a permanent hunger. The natural inclination is eventually to escalate just to get the dopamine rush. However, most PMOers are prevented from doing this for one, or both, of two reasons.</p>
@ -31,6 +31,7 @@
<p>As I have said, the compartment myth is due to one of many tricks that the little monster plays with your mind. In fact, these tricks do not make it easier to stop, they make it harder. The PMOer is therefore left with a permanent hunger that he can never satisfy. This is why many PMOers turn to cigarettes, heavy drinking or even harder drugs in order to satisfy the void.</p>
<p>I had suggested watching porn with one of my partners. But eventually I noticed it did not enhance my arousal at all. The sex was not better. I realized that it actually diminished my attraction towards her. We humans are rating animals - we always self rate and other rate. I am sure she rated me against the male porn start too. Why take chances? Do you want Brad Pitt in your bedroom, even if he is in a poster? No one man or woman can match a harem where each experience is acted, scripted and directed by professionals and at the ready 24 hours a day.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-28-will-i-miss-the-fun/"><div id="prevart">Previous:<br>03-28 Will I Miss the Fun?</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Avoid False Incentives Many PMOers, while trying to stop on the Willpower Method, attempt to increase their motivation by building up false incentives. There are many examples of this, a typical one is, “I will reward myself with a gift after no-PMO for a month.” This appears to be a logical and sensible approach but in fact it is false because any self-respecting PMOer would rather continue PMOing every day than receive a “self given gift."/>
<meta name="description" content="Avoid False Incentives Many PMOers, while trying to stop on the Willpower Method, attempt to increase their motivation by building up false incentives. There are many examples of this, a typical one is, “I will reward myself with a gift after no-PMO for a month.” This appears to be a logical and sensible approach but in fact it is false because any self-respecting PMOer would rather continue PMOing every day than receive a “self given gift."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-30 Avoid False Incentives">03-30 Avoid False Incentives</h1></header>
<article>
<h2 id="avoid-false-incentives">Avoid False Incentives <a class="anchor" href="#avoid-false-incentives">
<span class="spanForHeader"></span>
</a></h2><p>Many PMOers, while trying to stop on the Willpower Method, attempt to increase their motivation by building up false incentives. There are many examples of this, a typical one is, “I will reward myself with a gift after no-PMO for a month.” This appears to be a logical and sensible approach but in fact it is false because any self-respecting PMOer would rather continue PMOing every day than receive a “self given gift.” In any case there is a doubt in the PMOers mind because not only will she have to abstain for thirty days but will she even enjoy the days without a PMO? Her only pleasure or crutch is taken away! All this does is to increase the size of the sacrifice that the PMOer feels she is making, which makes it even more precious in her mind.</p>
<div class="post-content"><h2 id="avoid-false-incentives">Avoid False Incentives<a hidden class="anchor" aria-hidden="true" href="#avoid-false-incentives">#</a></h2>
<p>Many PMOers, while trying to stop on the Willpower Method, attempt to increase their motivation by building up false incentives. There are many examples of this, a typical one is, “I will reward myself with a gift after no-PMO for a month.” This appears to be a logical and sensible approach but in fact it is false because any self-respecting PMOer would rather continue PMOing every day than receive a “self given gift.” In any case there is a doubt in the PMOers mind because not only will she have to abstain for thirty days but will she even enjoy the days without a PMO? Her only pleasure or crutch is taken away! All this does is to increase the size of the sacrifice that the PMOer feels she is making, which makes it even more precious in her mind.</p>
<p>Other examples: “I&rsquo;ll stop PMO so that I will force myself to get a social life and seek more sex in real life” OR “Ill stop so some magical energy will help me to leap above the competitors and get this woman I pursue” OR “I commit to not waste my energy and enthusiasm in PMO, so I can grow enough hunger in myself.” These are true and can be effective and you may end up getting what you want. But think about it for a second - if you do get what you had wanted, once the novelty has gone you will feel deprived - if you didnt then you will feel miserable and either way sooner or later you will fall for the trap again.</p>
<p>Another typical example is online or forum pacts. These have the advantage of eliminating temptation for certain periods. However, they generally fail for the following reasons:</p>
<ol>
@ -29,12 +29,12 @@
<li>Another classic example of false incentives is the guru promise. When I was younger it would make me feel angry if youd call me a saint. It is a cuss word. Stopping will give you happiness as you are not engaged in the tug of war and your brain is starting to re-wire and regain impulse controls and all that. However you must keep in mind that none of this will make you a sex god or win a lotto. No one, except you, cares if you stop PMO. You are not a weak person either if you are doing PMO three times a day and have PIED. And you are not a strong person if you are an addict and dont have PIED.</li>
</ol>
<p>Stop kidding yourself. If the job offer that I mentioned before, of 10 months work for 12 months salary a year won&rsquo;t stop him. Or if the risks of cutting down your brains capacity to cope with just any normal day-to-day stress and strains or if putting yourself at odds with having a reliable erection, or if the lifetime of mental and physical torture and slavery did not stop him or her - the above said few phoney incentives will not make the slightest bit of difference. They will only make the sacrifice appear worse. Instead concentrate on the other side:</p>
<h2 id="what-am-i-getting-out-of-it-why-do-i-need-to-pmo">“What am I getting out of it? Why do I need to PMO?” <a class="anchor" href="#what-am-i-getting-out-of-it-why-do-i-need-to-pmo">
<span class="spanForHeader"></span>
</a></h2><p>Keep looking at the other side of the tug of war. What is PMOing doing for me? ABSOLUTELY NOTHING. Why do I need to do it? YOU DON&rsquo;T! YOU ARE ONLY PUNISHING YOURSELF. Try looking at it from the Pascals Wager perspective. You have almost nothing to lose (a rub-out with half arousals) for sure, chances of big profits (a full and reliable arousal, mental well being and happiness) and no chance of losing big (unreliable full arousals, premature ejaculations, fading penetrations, loss of general impulse controls, lower tolerance for frustrations and anger).</p>
<h2 id="what-am-i-getting-out-of-it-why-do-i-need-to-pmo">“What am I getting out of it? Why do I need to PMO?”<a hidden class="anchor" aria-hidden="true" href="#what-am-i-getting-out-of-it-why-do-i-need-to-pmo">#</a></h2>
<p>Keep looking at the other side of the tug of war. What is PMOing doing for me? ABSOLUTELY NOTHING. Why do I need to do it? YOU DON&rsquo;T! YOU ARE ONLY PUNISHING YOURSELF. Try looking at it from the Pascals Wager perspective. You have almost nothing to lose (a rub-out with half arousals) for sure, chances of big profits (a full and reliable arousal, mental well being and happiness) and no chance of losing big (unreliable full arousals, premature ejaculations, fading penetrations, loss of general impulse controls, lower tolerance for frustrations and anger).</p>
<p>Why not declare your quitting to friends and family? Well, it will make you a proud ex-addict, ex-PMOer, not an elated and happy non-PMOer. It will scare your partner a bit since they may see this as an effort to have more sex, sort of a new-age thing. They may also fear to lose you if this turns you into sex machine. It is hard to explain to them unless they are open minded.</p>
<p>Any attempt to get others to help you in your quitting gives more power to the little monster of addiction. Pushing it from your mind and totally ignoring it has the effect of trying NOT to think of it. As soon as you spot the thoughts, when you hit the cues (home alone) or just absent minded thoughts - just say to yourself: “Great, I dont have to do it like a slave animal. I am free. I am happy to know the differences in sex.” This will cut the life of the thought and will deny oxygen to it and will stop it from burning towards urges and cravings.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-29-can-i-compartmentalize/"><div id="prevart">Previous:<br>03-29 Can I Compartmentalize?</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The Easy Way to Stop This chapter contains instructions about the easy way to stop PMO. Providing you follow the instructions, you will find that stopping ranges from relatively easy to enjoyable! But remember the definition of a brunette: a girl who didn&rsquo;t read the instructions on the bottle. It is ridiculously easy to stop PMO. All you have to do is two things:
<meta name="description" content="The Easy Way to Stop This chapter contains instructions about the easy way to stop PMO. Providing you follow the instructions, you will find that stopping ranges from relatively easy to enjoyable! But remember the definition of a brunette: a girl who didn&rsquo;t read the instructions on the bottle. It is ridiculously easy to stop PMO. All you have to do is two things:
Make the decision that you are never going to PMO again."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ Make the decision that you are never going to PMO again."/>
<header><h1 id="tag_03-31 The Easy Way to Stop">03-31 The Easy Way to Stop</h1></header>
<article>
<h2 id="the-easy-way-to-stop">The Easy Way to Stop <a class="anchor" href="#the-easy-way-to-stop">
<span class="spanForHeader"></span>
</a></h2><p>This chapter contains instructions about the easy way to stop PMO. Providing you follow the instructions, you will find that stopping ranges from relatively easy to enjoyable! But remember the definition of a brunette: “a girl who didn&rsquo;t read the instructions on the bottle.” It is ridiculously easy to stop PMO. All you have to do is two things:</p>
<div class="post-content"><h2 id="the-easy-way-to-stop">The Easy Way to Stop<a hidden class="anchor" aria-hidden="true" href="#the-easy-way-to-stop">#</a></h2>
<p>This chapter contains instructions about the easy way to stop PMO. Providing you follow the instructions, you will find that stopping ranges from relatively easy to enjoyable! But remember the definition of a brunette: “a girl who didn&rsquo;t read the instructions on the bottle.” It is ridiculously easy to stop PMO. All you have to do is two things:</p>
<ol>
<li>Make the decision that you are never going to PMO again.</li>
<li>Don&rsquo;t mope about it. Rejoice.</li>
@ -34,9 +34,8 @@ Make the decision that you are never going to PMO again."/>
<p>Basically I said to myself, “Scores of people are stopping now and leading perfectly happy lives. I didn&rsquo;t need to do it before I started and I can remember having to work hard to get used to this filth. So why do I need to do it now?” In any event I didn&rsquo;t enjoy PMO, I hated the whole filthy ritual and I didn&rsquo;t want to spend the rest of my life being the slave of this disgusting porn addiction.</p>
<p>I then said to myself:</p>
<div style="text-align: center;">
<h3 id="whether-you-like-it-or-not-you-have-completed-your-last-pmo-visit">“WHETHER YOU LIKE IT OR NOT. YOU HAVE COMPLETED YOUR LAST PMO VISIT” <a class="anchor" href="#whether-you-like-it-or-not-you-have-completed-your-last-pmo-visit">
<span class="spanForHeader"></span>
</a></h3></div>
<h3 id="whether-you-like-it-or-not-you-have-completed-your-last-pmo-visit">“WHETHER YOU LIKE IT OR NOT. YOU HAVE COMPLETED YOUR LAST PMO VISIT”<a hidden class="anchor" aria-hidden="true" href="#whether-you-like-it-or-not-you-have-completed-your-last-pmo-visit">#</a></h3>
</div>
<p>I knew, right from that point, that I would never PMO again. I wasn&rsquo;t expecting it to be easy; in fact, just the reverse. I fully believed that I was in for months of black depression and that I would spend the rest of my life having the occasional pang. Instead it has been absolute bliss right from the start.</p>
<p>It took me a long time to work out why it had been so easy and why this time I hadn&rsquo;t suffered those terrifying withdrawal pangs. The reason is that they do not exist. It is the doubt and uncertainty that causes the pangs. The beautiful truth is: IT IS EASY TO STOP PMO. It is only the indecision and moping about it that makes it difficult. Even while they are addicted to porn, PMOers can go for relatively long periods at certain times in their lives without bothering about it. It is only when you want it but can&rsquo;t have one that you suffer.</p>
<p>Therefore the key to making it easy is to make stopping certain and final. Not to hope but to know you have kicked it, having made the decision. Never to doubt or question it. In fact, just the reverse - always to rejoice about it. If you can be certain from the start, it will be easy. But how can you be certain from the start unless you know it is going to be easy? This is why the rest of the book is necessary. There are certain essential points and it is necessary to get them clear in your mind before you start:</p>
@ -63,6 +62,7 @@ Make the decision that you are never going to PMO again."/>
</ol>
<p>Sexual dysfunction has a lot to do with your brain and your mind frame. Internet Porn rewires your brains reward circuit and gives your mind a doubting mind frame. This self doubt will undoubtedly cause your sexual dysfunctions. Having all the desire in your upper part but putting up no arousal in your lower part is the worst thing to happen to your mind frame. Libido going hand in hand with romance is the elixir of youth that you can have until you die. You will keep the probabilities high by quitting. But that is not the only or the major gain in all this. It is your freedom from slavery.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-30-avoid-false-incentives/"><div id="prevart">Previous:<br>03-30 Avoid False Incentives</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The Withdrawal Period For up to three weeks after your last PMO session you may be subjected to withdrawal pangs. These consist of two quite separate factors:
<meta name="description" content="The Withdrawal Period For up to three weeks after your last PMO session you may be subjected to withdrawal pangs. These consist of two quite separate factors:
The withdrawal pangs of dopamine, that empty, insecure feeling, like a hunger, which PMOers identify as a craving or “something I must to do” feeling. The psychological trigger of certain external stimuli such as a commercial, online browsing, a telephone conversation etc. It is the failure to understand and to differentiate between these two distinct factors that makes it so difficult for PMOers to achieve success on the Willpower Method and it&rsquo;s also the reason why many who do achieve it fall into the trap again."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ The withdrawal pangs of dopamine, that empty, insecure feeling, like a hunger, w
<header><h1 id="tag_03-32 The Withdrawal Period">03-32 The Withdrawal Period</h1></header>
<article>
<h2 id="the-withdrawal-period">The Withdrawal Period <a class="anchor" href="#the-withdrawal-period">
<span class="spanForHeader"></span>
</a></h2><p>For up to three weeks after your last PMO session you may be subjected to withdrawal pangs. These consist of two quite separate factors:</p>
<div class="post-content"><h2 id="the-withdrawal-period">The Withdrawal Period<a hidden class="anchor" aria-hidden="true" href="#the-withdrawal-period">#</a></h2>
<p>For up to three weeks after your last PMO session you may be subjected to withdrawal pangs. These consist of two quite separate factors:</p>
<ol>
<li>The withdrawal pangs of dopamine, that empty, insecure feeling, like a hunger, which PMOers identify as a craving or “something I must to do” feeling.</li>
<li>The psychological trigger of certain external stimuli such as a commercial, online browsing, a telephone conversation etc.</li>
@ -47,6 +47,7 @@ The withdrawal pangs of dopamine, that empty, insecure feeling, like a hunger, w
<p>Remember that you had very powerful reasons for stopping in the first place. Remind yourself of the costs and ask yourself whether you really want to risk too much of those fearful malfunctions of your equipage which is not the greatest loss if you ask me - but the most important loss of mental happiness and well being - of not living under a spell. This is called referenting or spotting of the minimizing efforts of the monster about the hazards. Above all, remember that the feeling is only temporary and each moment is a moment nearer to your goal.</p>
<p>Some PMOers fear that they will have to spend the rest of their lives reversing the &lsquo;automatic triggers&rsquo;. In other words, they believe that they will have to go through life kidding themselves that they don&rsquo;t really need PMO by the use of psychology. This is not so. Remember that the optimist sees the bottle as half full and the pessimist sees it as half empty. In the case of PMO, the bottle is empty and the PMOer sees it as full. There are just no advantages with internet porn and PMO. It is the PMOer who has been brainwashed. Once you start telling yourself that you don&rsquo;t need to orgasm using PMO, in a very short time you won&rsquo;t even need to say it because the beautiful truth is&hellip; you do not need to PMO. It&rsquo;s the last thing you need to do; make sure it&rsquo;s not the last thing you do.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-31-the-easy-way-to-stop/"><div id="prevart">Previous:<br>03-31 The Easy Way to Stop</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Just One Peek This is the undoing of many PMOers who try to stop on the Willpower Method. They will go through three or four days and then have the odd peek or a PMO or two to tide them over. They do not realize the devastating effect this has on their morale.
<meta name="description" content="Just One Peek This is the undoing of many PMOers who try to stop on the Willpower Method. They will go through three or four days and then have the odd peek or a PMO or two to tide them over. They do not realize the devastating effect this has on their morale.
For most PMOers that first peek at the tube site harem was not as good as sex with a real person."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ For most PMOers that first peek at the tube site harem was not as good as sex wi
<header><h1 id="tag_03-33 Just One Peek">03-33 Just One Peek</h1></header>
<article>
<h2 id="just-one-peek">Just One Peek <a class="anchor" href="#just-one-peek">
<span class="spanForHeader"></span>
</a></h2><p>This is the undoing of many PMOers who try to stop on the Willpower Method. They will go through three or four days and then have the odd peek or a PMO or two to tide them over. They do not realize the devastating effect this has on their morale.</p>
<div class="post-content"><h2 id="just-one-peek">Just One Peek<a hidden class="anchor" aria-hidden="true" href="#just-one-peek">#</a></h2>
<p>This is the undoing of many PMOers who try to stop on the Willpower Method. They will go through three or four days and then have the odd peek or a PMO or two to tide them over. They do not realize the devastating effect this has on their morale.</p>
<p>For most PMOers that first peek at the tube site harem was not as good as sex with a real person. The clips that are clean are far in between. This gives their conscious minds a boost. They think, “Good. That wasn&rsquo;t entirely all that enjoyable. I am losing the urge to PMO and I am not that much into the shocking stuff.” In fact, the reverse is the case. Get it clear in your mind - enjoyment of orgasm wasn&rsquo;t the reason why you hit porn. If PMOers were there for orgasm alone, they&rsquo;d never watch more than one clip. The only reason why you PMO was to feed that little monster. Just think: you had starved him for four days. How precious that one peek must have been to him. You are not aware of it in your conscious mind but the fix your body received will be communicated to your subconscious mind and all your sound preparation will be undermined. There will be a little voice at the back of your mind saying, “In spite of all the logic they are precious. I want another one.”</p>
<p>That little peek has two damaging effects:</p>
<ol>
@ -28,9 +28,9 @@ For most PMOers that first peek at the tube site harem was not as good as sex wi
<li>What&rsquo;s worse, it keeps the big monster alive in your mind. If you had the “last peek”, it will be easier to have the next one.</li>
</ol>
<p>Above all, remember:</p>
<h2 id="just-one-peek-is-how-people-get-into-pmo-addiction-in-the-first-place">“Just one peek” is how people get into PMO addiction in the first place. <a class="anchor" href="#just-one-peek-is-how-people-get-into-pmo-addiction-in-the-first-place">
<span class="spanForHeader"></span>
</a></h2>
<h2 id="just-one-peek-is-how-people-get-into-pmo-addiction-in-the-first-place">“Just one peek” is how people get into PMO addiction in the first place.<a hidden class="anchor" aria-hidden="true" href="#just-one-peek-is-how-people-get-into-pmo-addiction-in-the-first-place">#</a></h2>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-32-the-withdrawal-period/"><div id="prevart">Previous:<br>03-32 The Withdrawal Period</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Will It Be Harder for Me? The combinations of factors that will determine how easily each individual PMOer will quit are infinite. To start with, each of us has his own character, type of work, personal circumstances, timing, etc. Certain professions may make it harder than others but providing the brainwashing is removed it doesn&rsquo;t have to be so. A few individual examples will help.
<meta name="description" content="Will It Be Harder for Me? The combinations of factors that will determine how easily each individual PMOer will quit are infinite. To start with, each of us has his own character, type of work, personal circumstances, timing, etc. Certain professions may make it harder than others but providing the brainwashing is removed it doesn&rsquo;t have to be so. A few individual examples will help.
It tends to be particularly difficult for members of the medical profession."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ It tends to be particularly difficult for members of the medical profession."/>
<header><h1 id="tag_03-34 Will It Be Harder for Me?">03-34 Will It Be Harder for Me?</h1></header>
<article>
<h2 id="will-it-be-harder-for-me">Will It Be Harder for Me? <a class="anchor" href="#will-it-be-harder-for-me">
<span class="spanForHeader"></span>
</a></h2><p>The combinations of factors that will determine how easily each individual PMOer will quit are infinite. To start with, each of us has his own character, type of work, personal circumstances, timing, etc. Certain professions may make it harder than others but providing the brainwashing is removed it doesn&rsquo;t have to be so. A few individual examples will help.</p>
<div class="post-content"><h2 id="will-it-be-harder-for-me">Will It Be Harder for Me?<a hidden class="anchor" aria-hidden="true" href="#will-it-be-harder-for-me">#</a></h2>
<p>The combinations of factors that will determine how easily each individual PMOer will quit are infinite. To start with, each of us has his own character, type of work, personal circumstances, timing, etc. Certain professions may make it harder than others but providing the brainwashing is removed it doesn&rsquo;t have to be so. A few individual examples will help.</p>
<p>It tends to be particularly difficult for members of the medical profession. We think it should be easier for doctors because they are more aware of the effects of ill- health and are seeing daily evidence of it. Although this supplies more forceful reasons for stopping, it doesn&rsquo;t make it any easier to do. The reasons are these:</p>
<ol>
<li>The constant awareness of the health risks creates fear which is one of the conditions under which we need to relieve our withdrawal pangs.</li>
@ -31,6 +31,7 @@ It tends to be particularly difficult for members of the medical profession."/>
<p>Another difficult situation is boredom, particularly when it is combined with periods of stress. Typical examples are students and single parents. The work is stressful, yet much of the work is monotonous. During an attempt to stop on the Willpower Method the single person has long periods in which to mope about his or her “loss” which increases the feeling of depression. Again this can be easily overcome if your frame of mind is correct. Do not worry that you are continually reminded that you have stopped PMOing. Use such moments to rejoice in the fact that you are ridding yourself of the evil monster.</p>
<p>If you have a positive frame of mind these pangs can become moments of pleasure. Remember any PMOer, regardless of age, sex, intelligence or profession, can find it easy and enjoyable to stop provided <em><strong>YOU FOLLOW ALL THE INSTRUCTIONS</strong></em>.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-33-just-one-peek/"><div id="prevart">Previous:<br>03-33 Just One Peek</div></a>

View file

@ -18,7 +18,8 @@ There are two main reasons for failure. The first is the influence of external s
<header><h1 id="tag_03-35 The Main Reasons for Failure">03-35 The Main Reasons for Failure</h1></header>
<article>
<p>The Main Reasons for Failure</p>
<div class="post-content"><p>The Main Reasons for Failure</p>
<p>There are two main reasons for failure. The first is the influence of external stimuli - a commercial, online news articles, internet browsing etc. At a weak moment or even during a social occasion somebody will get intimate with their partner. I have already dealt with this topic at length. Use that moment to remind yourself that there is no such thing as one visit or one peek. Rejoice in the fact that you have broken the chain of mental slavery. Remember that the PMOer envies you, and feel sorry for him. Believe me, he needs your pity. The other main reason for failure is having a bad day. Get it clear in your mind before you start that, whether you are a PMOer or a non-PMOer, there are good days and bad days. It rains for both the pope and the murderer.</p>
<p>Life is a matter of relativity and you cannot have ups without having downs. The problem with the Willpower Method of stopping is that as soon as the PMOer has a bad day he starts moping for his harem visit and all that does is make a bad day worse. The non-PMOer is better equipped, not only physically but also mentally, to cope with the stresses and strains of life. If you have a bad day during the withdrawal period just take it on the chin. Remind yourself that you had bad days when you were addicted (otherwise you wouldn&rsquo;t have decided to stop). Instead of moping about it, say to yourself something like, “OK, today&rsquo;s not so good but masturbating is not going to cure it. Tomorrow will be better and at least I have got a marvellous bonus at the moment. I have kicked that awful PMO habit.”</p>
<p>When you are a PMOer you have to block your mind to the bad side of PMO. PMOer never have brain fog just “a bit down.” When you are having lifes inevitable troubles you want to PMO but are you happy and cheerful? Of course you aren&rsquo;t. Once you stop, the tendency is to blame everything that goes wrong in your life on the fact that you have stopped.</p>
@ -26,6 +27,7 @@ There are two main reasons for failure. The first is the influence of external s
<div style="text-align: center;">
<p><em><strong>Remember: A positive mental approach is essential - always.</strong></em></p>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-34-will-it-be-harder-for-me/"><div id="prevart">Previous:<br>03-34 Will It Be Harder for Me?</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Substitutes Substitutes include restricting to porn magazines, static internet images, going on a porn-diet1 etc. DO NOT USE ANY OF THEM. They make it harder, not easier. If you do get a pang and use a substitute it will prolong the pang and make it harder. What you are really saying is, “I need to PMO to fill the void.” It will be like giving in to a hijacker or the tantrums of a child."/>
<meta name="description" content="Substitutes Substitutes include restricting to porn magazines, static internet images, going on a porn-diet1 etc. DO NOT USE ANY OF THEM. They make it harder, not easier. If you do get a pang and use a substitute it will prolong the pang and make it harder. What you are really saying is, “I need to PMO to fill the void.” It will be like giving in to a hijacker or the tantrums of a child."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-36 Substitutes">03-36 Substitutes</h1></header>
<article>
<h2 id="substitutes">Substitutes <a class="anchor" href="#substitutes">
<span class="spanForHeader"></span>
</a></h2><p>Substitutes include restricting to porn magazines, static internet images, going on a porn-diet<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup> etc. <strong>DO NOT USE ANY OF THEM</strong>. They make it harder, not easier. If you do get a pang and use a substitute it will prolong the pang and make it harder. What you are really saying is, “I need to PMO to fill the void.” It will be like giving in to a hijacker or the tantrums of a child. It will just keep the pangs coming and prolong the torture. In any event the substitutes will not relieve the pangs. Your craving is for amino acids in the brain. All it will do is keep you thinking about PMOing. Remember these points:</p>
<div class="post-content"><h2 id="substitutes">Substitutes<a hidden class="anchor" aria-hidden="true" href="#substitutes">#</a></h2>
<p>Substitutes include restricting to porn magazines, static internet images, going on a porn-diet<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup> etc. <strong>DO NOT USE ANY OF THEM</strong>. They make it harder, not easier. If you do get a pang and use a substitute it will prolong the pang and make it harder. What you are really saying is, “I need to PMO to fill the void.” It will be like giving in to a hijacker or the tantrums of a child. It will just keep the pangs coming and prolong the torture. In any event the substitutes will not relieve the pangs. Your craving is for amino acids in the brain. All it will do is keep you thinking about PMOing. Remember these points:</p>
<ol>
<li>There is no substitute for PMO.</li>
<li>You do not need porn or PMO. It is not food; it is poison. When the pangs come remind yourself that it is PMOers who suffer withdrawal pangs, not non-PMOers. See them as another evil of the drug. See them as the death of a monster.</li>
@ -48,6 +48,7 @@ when you were a PMOer. Just think, how can you possibly cure an addict of addict
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-35-the-main-reasons-for-failure/"><div id="prevart">Previous:<br>03-35 The Main Reasons for Failure</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Should I Avoid Temptation Situations? I have been direct in my advice so far and would ask you to treat this advice as instruction rather than suggestion. I am explicit and direct, first because there are sound, practical reasons for my advice and second, because those reasons have been backed up by thousands of case studies. On the question of whether or not to try to avoid temptation during the withdrawal period, I regret that I cannot be direct."/>
<meta name="description" content="Should I Avoid Temptation Situations? I have been direct in my advice so far and would ask you to treat this advice as instruction rather than suggestion. I am explicit and direct, first because there are sound, practical reasons for my advice and second, because those reasons have been backed up by thousands of case studies. On the question of whether or not to try to avoid temptation during the withdrawal period, I regret that I cannot be direct."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,18 +17,16 @@
<header><h1 id="tag_03-37 Should I Avoid Temptation Situations?">03-37 Should I Avoid Temptation Situations?</h1></header>
<article>
<h2 id="should-i-avoid-temptation-situations">Should I Avoid Temptation Situations? <a class="anchor" href="#should-i-avoid-temptation-situations">
<span class="spanForHeader"></span>
</a></h2><p>I have been direct in my advice so far and would ask you to treat this advice as instruction rather than suggestion. I am explicit and direct, first because there are sound, practical reasons for my advice and second, because those reasons have been backed up by thousands of case studies. On the question of whether or not to try to avoid temptation during the withdrawal period, I regret that I cannot be direct. Each PMOer will need to decide for himself. I can, however, make what I hope
<div class="post-content"><h2 id="should-i-avoid-temptation-situations">Should I Avoid Temptation Situations?<a hidden class="anchor" aria-hidden="true" href="#should-i-avoid-temptation-situations">#</a></h2>
<p>I have been direct in my advice so far and would ask you to treat this advice as instruction rather than suggestion. I am explicit and direct, first because there are sound, practical reasons for my advice and second, because those reasons have been backed up by thousands of case studies. On the question of whether or not to try to avoid temptation during the withdrawal period, I regret that I cannot be direct. Each PMOer will need to decide for himself. I can, however, make what I hope
will be helpful suggestions, I repeat that it is fear that keeps us to PMO all our lives and this fear consists of two distinct phases:</p>
<h3 id="phase-1-how-can-i-survive-without-pmo">Phase 1: How can I survive without PMO? <a class="anchor" href="#phase-1-how-can-i-survive-without-pmo">
<span class="spanForHeader"></span>
</a></h3><p>This fear is that panicky feeling the PMOer gets when they are alone in a single phase or have an asexual, uninterested or unavailable partner. The fear isn&rsquo;t caused by withdrawal pangs but is the psychological fear of dependency - you cannot survive without sex and orgasm. It actually reaches its height when you are on the verge of quitting (I wont use giving up); at that time your withdrawal pangs are at their lowest. It is the fear of the unknown, the sort of fear that people have when they are learning to dive.</p>
<h3 id="phase-1-how-can-i-survive-without-pmo">Phase 1: How can I survive without PMO?<a hidden class="anchor" aria-hidden="true" href="#phase-1-how-can-i-survive-without-pmo">#</a></h3>
<p>This fear is that panicky feeling the PMOer gets when they are alone in a single phase or have an asexual, uninterested or unavailable partner. The fear isn&rsquo;t caused by withdrawal pangs but is the psychological fear of dependency - you cannot survive without sex and orgasm. It actually reaches its height when you are on the verge of quitting (I wont use giving up); at that time your withdrawal pangs are at their lowest. It is the fear of the unknown, the sort of fear that people have when they are learning to dive.</p>
<p>The diving board is 1 foot high but seems to be 6 feet high. The water is 6 feet deep but appears to be 1 foot deep. It takes courage to launch yourself. You are convinced you are going to smash your head. The launching is the hardest part. If you can find the courage to do it, the rest is easy. This explains why many otherwise strong-willed PMOers either have never attempted to stop or can survive only a few days when they do. In fact, there are some PMOers on a porn diet who when they decide to stop, actually binge and escalate to harsher clips more quickly than if they had not decided to stop. The decision causes panic, which is stressful. This is one of the occasions when the brain triggers the instruction, “take a trip to your own personal harem.” But now you can&rsquo;t take one. You are being deprived - more stress.</p>
<p>The trigger starts again quickly when the fuse blows and you fire up the browser. Don&rsquo;t worry. That panic is just psychological. It is the fear that you are dependent. The beautiful truth is that you are not, even when you are still addicted. Do not panic. Just trust me and launch yourself.</p>
<h3 id="phase-2-longer-term-fear">Phase 2: Longer Term Fear <a class="anchor" href="#phase-2-longer-term-fear">
<span class="spanForHeader"></span>
</a></h3><p>The second phase of fear is longer-term. It involves the fear that certain situations in the future will not be enjoyable or that you will not be able to cope with a trauma without PMO. Don&rsquo;t worry. If you can launch yourself you will find the opposite to be the case. The avoidance of temptation itself falls into two main categories:</p>
<h3 id="phase-2-longer-term-fear">Phase 2: Longer Term Fear<a hidden class="anchor" aria-hidden="true" href="#phase-2-longer-term-fear">#</a></h3>
<p>The second phase of fear is longer-term. It involves the fear that certain situations in the future will not be enjoyable or that you will not be able to cope with a trauma without PMO. Don&rsquo;t worry. If you can launch yourself you will find the opposite to be the case. The avoidance of temptation itself falls into two main categories:</p>
<ol>
<li>“I will subscribe to a porn-diet of once in 4 days. I will feel more confident knowing that I can go online if it gets hard. It is OK if I fail I can just add up additional days to my next cycle.”</li>
</ol>
@ -43,6 +41,7 @@ will be helpful suggestions, I repeat that it is fear that keeps us to PMO all o
</ol>
<p>My advice is: yes, try to avoid stressful situations. There is no sense in putting undue pressure on yourself. In the case of social events - to a bar or dance floor - my advice is the reverse. No, go out and enjoy yourself straight away. You do not need sex - the propagative side of sex - even while you are still addicted to porn. Go to a party and rejoice in the fact that you do not have to have sex and propagative sex. It will quickly prove to you the beautiful truth that life is so much better without the pressure of sex. Just think how much better it will be when the little monster has left you, together with all those needy thoughts.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-36-substitutes/"><div id="prevart">Previous:<br>03-36 Substitutes</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The Moment of Revelation The moment of revelation usually takes place about three weeks after stopping. The sky appears to become brighter and it is the moment when the brainwashing ends completely. When instead of telling yourself you do not need to PMO, you suddenly realize that the last thread is broken and you can enjoy the rest of your life without ever needing PMO again. It is also usually from this point that you start looking at other PMOers as objects of pity."/>
<meta name="description" content="The Moment of Revelation The moment of revelation usually takes place about three weeks after stopping. The sky appears to become brighter and it is the moment when the brainwashing ends completely. When instead of telling yourself you do not need to PMO, you suddenly realize that the last thread is broken and you can enjoy the rest of your life without ever needing PMO again. It is also usually from this point that you start looking at other PMOers as objects of pity."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-38 The Moment of Revelation">03-38 The Moment of Revelation</h1></header>
<article>
<h2 id="the-moment-of-revelation">The Moment of Revelation <a class="anchor" href="#the-moment-of-revelation">
<span class="spanForHeader"></span>
</a></h2><p>The moment of revelation usually takes place about three weeks after stopping. The sky appears to become brighter and it is the moment when the brainwashing ends completely. When instead of telling yourself you do not need to PMO, you suddenly realize that the last thread is broken and you can enjoy the rest of your life without ever needing PMO again. It is also usually from this point that you start looking at other PMOers as objects of pity.</p>
<div class="post-content"><h2 id="the-moment-of-revelation">The Moment of Revelation<a hidden class="anchor" aria-hidden="true" href="#the-moment-of-revelation">#</a></h2>
<p>The moment of revelation usually takes place about three weeks after stopping. The sky appears to become brighter and it is the moment when the brainwashing ends completely. When instead of telling yourself you do not need to PMO, you suddenly realize that the last thread is broken and you can enjoy the rest of your life without ever needing PMO again. It is also usually from this point that you start looking at other PMOers as objects of pity.</p>
<p>PMOers using the Willpower Method do not normally experience this moment because although they are glad to be ex-PMOers they continue through life believing they are making a sacrifice. The more you were addicted, the more marvellous this moment is and it lasts a lifetime. I consider I have been very fortunate in this life and had some wonderful moments but the most wonderful of all was that moment of revelation. With all the other highlights of my life, although I can remember they were happy times, I can never recapture the actual feeling. I can never get over the joy of not having to PMO any more. If ever I am feeling low and need a boost nowadays, I just think how lovely it is not to be hooked on that awful addiction. Half the people who contact me after they have stopped visiting the online harems say exactly the same thing: that it was the most marvellous event of their lives. Ah! What pleasure you have to come! With additional feedback, both from forums and personal interactions, I have learned that in most cases the moment of revelation occurs not after three weeks, as stated above, but within a few days.</p>
<p>In my own case it happened before I was finished on my last harem visit. I am sure many of the readers here, before theyd even got to the end of the chapters would say something like: “You needn&rsquo;t say another word. I can see it all so clearly, I know I&rsquo;ll never PMO again.” From the messages I receive I&rsquo;m also aware that it frequently happens.</p>
<p>Ideally if you follow all the instructions and understand the psychology completely, it should happen to you immediately.</p>
@ -31,6 +31,7 @@
<p>I have noticed from my previous attempts using the Willpower Method and from feedback from others, that around the three-week period is when most serious attempts to stop fail. I believe that what usually happens is that after about three weeks you sense that you have lost the desire to PMO. You need to prove this to yourself and so you hop on your browser to visit your harem. It feels weird. You&rsquo;ve proved you have kicked it. But you&rsquo;ve also greased the DeltaFosB porn water slides thanks to the fresh dopamine rush into your brain and this dopamine rush is what your body has been craving for three weeks. As soon as you finish the deed the dopamine starts to leave your body. Now a little voice is saying, “You haven&rsquo;t kicked it. You want another one.”</p>
<p>You don&rsquo;t scurry back straight away because you don&rsquo;t want to get hooked again. You allow a safe period to pass. When you are next tempted you are able to say to yourself: “But I didn&rsquo;t get hooked again, so there&rsquo;s no harm in having another one.” You are already on your way down the slippery slope. The key to the problem is not to wait for the moment of revelation but to realize that once you close the browser it is finished. You&rsquo;ve already done all you need to do. You&rsquo;ve cut off the supply of oxygen to your little monster. No force on earth can prevent you from being free unless you mope about it or wait for revelation. Go and enjoy life; cope with it right from the start. That way you&rsquo;ll soon experience the moment.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-37-should-i-avoid-temptation-situations/"><div id="prevart">Previous:<br>03-37 Should I Avoid Temptation Situations?</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The Final Visit Having decided on your timing, you are now ready to visit your harem one last time. Before you do so, check on the two essentials:
<meta name="description" content="The Final Visit Having decided on your timing, you are now ready to visit your harem one last time. Before you do so, check on the two essentials:
Do you feel certain of success? Have you a feeling of doom and gloom or a sense of excitement that you are about to achieve something marvelous? If you have any doubts, re-read the book first. Remember that you never decided to fall into the porn trap."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ Do you feel certain of success? Have you a feeling of doom and gloom or a sense
<header><h1 id="tag_03-39 The Final Visit">03-39 The Final Visit</h1></header>
<article>
<h2 id="the-final-visit">The Final Visit <a class="anchor" href="#the-final-visit">
<span class="spanForHeader"></span>
</a></h2><p>Having decided on your timing, you are now ready to visit your harem one last time. Before you do so, check on the two essentials:</p>
<div class="post-content"><h2 id="the-final-visit">The Final Visit<a hidden class="anchor" aria-hidden="true" href="#the-final-visit">#</a></h2>
<p>Having decided on your timing, you are now ready to visit your harem one last time. Before you do so, check on the two essentials:</p>
<ol>
<li>Do you feel certain of success?</li>
<li>Have you a feeling of doom and gloom or a sense of excitement that you are about to achieve something marvelous?</li>
@ -63,6 +63,7 @@ sites in my life again.”<sup id="fnref:1"><a href="#fn:1" class="footnote-ref"
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-38-the-moment-of-revelation/"><div id="prevart">Previous:<br>03-38 The Moment of Revelation</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="A Final Warning No PMOer, given the chance of going back to the time before he became hooked with the knowledge he has now, would opt to start. Many of the them who consult me are convinced that if I could only help them stop, they would never dream of PMOing again, and yet thousands of PMOers successfully kick the habit for many years and lead perfectly happy lives, only to get trapped once again."/>
<meta name="description" content="A Final Warning No PMOer, given the chance of going back to the time before he became hooked with the knowledge he has now, would opt to start. Many of the them who consult me are convinced that if I could only help them stop, they would never dream of PMOing again, and yet thousands of PMOers successfully kick the habit for many years and lead perfectly happy lives, only to get trapped once again."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,12 +17,13 @@
<header><h1 id="tag_03-40 A Final Warning">03-40 A Final Warning</h1></header>
<article>
<h2 id="a-final-warning">A Final Warning <a class="anchor" href="#a-final-warning">
<span class="spanForHeader"></span>
</a></h2><p>No PMOer, given the chance of going back to the time before he became hooked with the knowledge he has now, would opt to start. Many of the them who consult me are convinced that if I could only help them stop, they would never dream of PMOing again, and yet thousands of PMOers successfully kick the habit for many years and lead perfectly happy lives, only to get trapped once again. I trust that this book will help you to find it relatively easy to stop. But be warned: PMOers who find it easy to stop find it easy to start again, DO NOT FALL FOR THIS TRAP.</p>
<div class="post-content"><h2 id="a-final-warning">A Final Warning<a hidden class="anchor" aria-hidden="true" href="#a-final-warning">#</a></h2>
<p>No PMOer, given the chance of going back to the time before he became hooked with the knowledge he has now, would opt to start. Many of the them who consult me are convinced that if I could only help them stop, they would never dream of PMOing again, and yet thousands of PMOers successfully kick the habit for many years and lead perfectly happy lives, only to get trapped once again. I trust that this book will help you to find it relatively easy to stop. But be warned: PMOers who find it easy to stop find it easy to start again, DO NOT FALL FOR THIS TRAP.</p>
<p>No matter how long you have stopped or how confident you are that you will never become hooked again, make it a rule of life not to PMO for any reason. Resist the allusions and innuendoes in the media, and remember they are pushing their image of openness by bringing porn into mainstream without realizing how porn, internet porn etc. are killers of relationships and of the personal sense of well being for a huge number of men and some women.</p>
<p>Remember, that first peek or visit will do nothing for you. You will have no withdrawal pangs to relieve and it will make you feel awful. What it will do is to put the pleasure of dopamine rush into your mind and brain, and a little voice at the back of your mind will be saying, “you want another one.” Then you have got the choice of being miserable for a while or starting the whole filthy chain again.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-39-the-final-visit/"><div id="prevart">Previous:<br>03-39 The Final Visit</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Feedback This method will be pooh-poohed by the so-called experts - as I have kept it thin, deliberately, on the science side of porn addiction. This hackbook is based on a very successful technique used by Alan Carr for quitting smoking, alcohol and gambling. I have personally broken away from the prisons of cigarette, alcohol and internet porn with this technique. Id like to add here that Ive tried some of the best programmes - such as CBT, DEADS and AVERT before arriving at the EasyWay."/>
<meta name="description" content="Feedback This method will be pooh-poohed by the so-called experts - as I have kept it thin, deliberately, on the science side of porn addiction. This hackbook is based on a very successful technique used by Alan Carr for quitting smoking, alcohol and gambling. I have personally broken away from the prisons of cigarette, alcohol and internet porn with this technique. Id like to add here that Ive tried some of the best programmes - such as CBT, DEADS and AVERT before arriving at the EasyWay."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-41 Feedback">03-41 Feedback</h1></header>
<article>
<h2 id="feedback">Feedback <a class="anchor" href="#feedback">
<span class="spanForHeader"></span>
</a></h2><p>This method will be pooh-poohed by the so-called experts - as I have kept it thin, deliberately, on the science side of porn addiction. This hackbook is based on a very successful technique used by Alan Carr for quitting smoking, alcohol and gambling. I have personally broken away from the prisons of cigarette, alcohol and internet porn with this technique. Id like to add here that Ive tried some of the best programmes - such as CBT, DEADS and AVERT before arriving at the EasyWay. I could not close the deal. I was then led to studying about self hypnosis that deals with bad habits. The key idea that sold me on this method is his emphasis on the “feelings of misery and deprivation, misery and sacrifice, misery and guilt.” If you use the Will Power method you will invariably have all or one of these awful feelings that in themselves provide the grease to slide back to the addiction.</p>
<div class="post-content"><h2 id="feedback">Feedback<a hidden class="anchor" aria-hidden="true" href="#feedback">#</a></h2>
<p>This method will be pooh-poohed by the so-called experts - as I have kept it thin, deliberately, on the science side of porn addiction. This hackbook is based on a very successful technique used by Alan Carr for quitting smoking, alcohol and gambling. I have personally broken away from the prisons of cigarette, alcohol and internet porn with this technique. Id like to add here that Ive tried some of the best programmes - such as CBT, DEADS and AVERT before arriving at the EasyWay. I could not close the deal. I was then led to studying about self hypnosis that deals with bad habits. The key idea that sold me on this method is his emphasis on the “feelings of misery and deprivation, misery and sacrifice, misery and guilt.” If you use the Will Power method you will invariably have all or one of these awful feelings that in themselves provide the grease to slide back to the addiction.</p>
<p>I&rsquo;m not a do-gooder. My war - which, I emphasize, is not against PMOers but against the porn trap, I wage for the purely selfish reason that I enjoy it. Every time I hear of a PMOer escaping from the prison I get a feeling of great pleasure, even when it has nothing to do with me. You can imagine also the immense pleasure I obtain from the grateful letters that I have received over time.</p>
<p>There has also been considerable frustration. The frustration is caused mainly by two main categories of PMOer. First, in spite of the warning in the previous chapter, I am disturbed by the number of PMOers who find it easy to stop, yet later get hooked again and find they can&rsquo;t succeed the next time.</p>
<p>Practically the last thing I say to ex-PMOers is: “Remember, you must never visit another online harem again.”</p>
@ -79,9 +79,8 @@
<blockquote>
<p>Find out which one it is. Some people understand and believe everything I say but still start off with a feeling of doom and gloom, as if something terrible were happening. You are doing not only what you&rsquo;d like to do but what every PMOer on the planet would like to do. With any method of stopping, what the ex PMOer is trying to achieve is a certain frame of mind, so that whenever he thinks about PMO he says to himself, “YIPPEE! I&rsquo;M FREE!” If that&rsquo;s your object, why wait? Start off in that frame of mind and never lose it. The rest of the book is designed to make you understand why there is no alternative.</p>
</blockquote>
<h2 id="the-check-list">THE CHECK LIST <a class="anchor" href="#the-check-list">
<span class="spanForHeader"></span>
</a></h2><p>If you follow these simple instructions, you cannot fail:</p>
<h2 id="the-check-list">THE CHECK LIST<a hidden class="anchor" aria-hidden="true" href="#the-check-list">#</a></h2>
<p>If you follow these simple instructions, you cannot fail:</p>
<ol>
<li>Make a solemn vow that you will never, ever, go online to visit your harem OR settle down for static pictures OR make peace with erotic graphics OR anything that contains supra normal stimuli, and stick to your vow.</li>
<li>Get this clear in your mind: there is absolutely nothing to give up. By that I don&rsquo;t mean simply that you will be better off as a non-PMOer (you&rsquo;ve known that all this time); nor do I mean that although there is no rational reason why you PMO, you must get some form of pleasure or crutch from it or you wouldn&rsquo;t do it. What I mean is, there is no genuine pleasure or crutch in PMOing. It is just an illusion, its an addiction like banging your head against a wall to make it pleasant when you stop.</li>
@ -100,6 +99,7 @@
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-40-a-final-warning/"><div id="prevart">Previous:<br>03-40 A Final Warning</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Help the PMOer Left on the Sinking Ship PMOers are panicking nowadays. They sense that there is a change in the way internet porn is perceived by men and women. Internet porns addictive nature is being studied by more and more people. It is now rightly regarded not as the same as old traditional porn. Its easy reach and effortless availability raises alarm even in the hearts of porn supporters."/>
<meta name="description" content="Help the PMOer Left on the Sinking Ship PMOers are panicking nowadays. They sense that there is a change in the way internet porn is perceived by men and women. Internet porns addictive nature is being studied by more and more people. It is now rightly regarded not as the same as old traditional porn. Its easy reach and effortless availability raises alarm even in the hearts of porn supporters. They also sense that their crusade for free speech and free thought is being hijacked by vicious elements."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_03-42 Help the PMOer Left on the Sinking Ship">03-42 Help the PMOer Left on the Sinking Ship</h1></header>
<article>
<h2 id="help-the-pmoer-left-on-the-sinking-ship">Help the PMOer Left on the Sinking Ship <a class="anchor" href="#help-the-pmoer-left-on-the-sinking-ship">
<span class="spanForHeader"></span>
</a></h2><p>PMOers are panicking nowadays. They sense that there is a change in the way internet porn is perceived by men and women. Internet porns addictive nature is being studied by more and more people. It is now rightly regarded not as the same as old traditional porn. Its easy reach and effortless availability raises alarm even in the hearts of porn supporters. They also sense that their crusade for free speech and free thought is being hijacked by vicious elements. The wild wild west nature of the unpoliced internet makes it hard for enforcing age restrictive access to supranormal stimuli. Yet I dont think this whole thing will be coming to an end anytime soon. Thousands of PMOers are now stopping and all porn users are conscious of the new brain studies that point their studied fingers to the similarities of drug and substance addiction. Every time a PMOer leaves the sinking ship, the ones left on it feel more miserable. Every PMOer instinctively knows that it is ridiculous to self sabotage and spend time in front of two dimensional pixels, treat the poor brain to super surges, develop porn brain water slides that will guarantee him unreliable erections and fading penetrations. If you still don&rsquo;t think it is silly, try talking to a porn magazine standing at the centre of the city square and ask yourself what the difference is. Just one. You cannot get the pleasure of warmth and intimacy that way. If you can stop buying alcohol and cigarettes every time you go grocery shopping you can definitely stop visiting your online harems. PMOers cannot find a rational reason for PMOing but if someone else is doing it, they do not feel quite so silly.</p>
<div class="post-content"><h2 id="help-the-pmoer-left-on-the-sinking-ship">Help the PMOer Left on the Sinking Ship<a hidden class="anchor" aria-hidden="true" href="#help-the-pmoer-left-on-the-sinking-ship">#</a></h2>
<p>PMOers are panicking nowadays. They sense that there is a change in the way internet porn is perceived by men and women. Internet porns addictive nature is being studied by more and more people. It is now rightly regarded not as the same as old traditional porn. Its easy reach and effortless availability raises alarm even in the hearts of porn supporters. They also sense that their crusade for free speech and free thought is being hijacked by vicious elements. The wild wild west nature of the unpoliced internet makes it hard for enforcing age restrictive access to supranormal stimuli. Yet I dont think this whole thing will be coming to an end anytime soon. Thousands of PMOers are now stopping and all porn users are conscious of the new brain studies that point their studied fingers to the similarities of drug and substance addiction. Every time a PMOer leaves the sinking ship, the ones left on it feel more miserable. Every PMOer instinctively knows that it is ridiculous to self sabotage and spend time in front of two dimensional pixels, treat the poor brain to super surges, develop porn brain water slides that will guarantee him unreliable erections and fading penetrations. If you still don&rsquo;t think it is silly, try talking to a porn magazine standing at the centre of the city square and ask yourself what the difference is. Just one. You cannot get the pleasure of warmth and intimacy that way. If you can stop buying alcohol and cigarettes every time you go grocery shopping you can definitely stop visiting your online harems. PMOers cannot find a rational reason for PMOing but if someone else is doing it, they do not feel quite so silly.</p>
<p>PMOers blatantly lie about their habit, not only to others and university researchers but worse of all to themselves. They have to. The brainwashing is essential if they are to retain some self-respect. They feel the need to justify their “habit” not only to themselves but to non-PMOers. They are therefore forever advertising the illusory advantages of porn and PMO by more subtler means.</p>
<p>If a PMOer stops using the Willpower Method he still feels deprived and tends to become a moaner. All this does is to confirm to other PMOers how right they are to keep PMOing. If the ex-PMOer succeeds in kicking the habit, he is then grateful that he no longer has to go through life sabotaging himself or wasting energy. But he has no need to justify himself, he doesn&rsquo;t sit there saying how marvellous it is not to be PMOing. He will do that only if he is asked and PMOers won&rsquo;t ask that question. They wouldn&rsquo;t like the answer. Remember: it is fear that keeps them in their addiction and they would rather keep their heads in the sand. The only time they ask that question is when it is time to stop. Help the PMOer. Remove these fears. Tell him how marvellous it is not to have to go through life living in a prison, how lovely it is to wake up in the morning feeling fit and healthy instead of lacking in energy and self loathing, how wonderful it is to be free of slavery, to be able to enjoy the whole of your life, to be rid of those awful black shadows. Or, better still; get him to read this book.</p>
<p>It is essential not to belittle a married PMOer by indicating that he is deliberately ruining his relationship or is in some way a cheat and is unclean. There is a common conception that the ex-PMOer is the worst in this respect. I believe this conception has some substance but I think this is due to the Willpower Method of stopping. Because the ex-PMOer, although he has kicked the habit, retains part of the brainwashing - part of him still believes that he has made a sacrifice. He feels vulnerable and his natural defensive mechanism is to attack the PMOer.</p>
@ -30,6 +30,7 @@
<p>Many are unable to do so and are forced, through no fault of their own, to suffer a guilt complex for the rest of their lives. Many of them succeed and are pleased to do so, thinking, “Fine. I will do this for now and after its over I will be cured anyway.” Then comes the pain and fear of finding work etc. followed by the biggest “high” of their lives - finding a job. The pain and fear are over. Then they feel secure and the old trigger mechanism comes back into operation. Part of the brainwashing is still there and almost before the smell of the new work laptop is gone the PMOer is at the threshold of his favourite online harem. The elation of the occasion blocks the foul feelings from his or her mind. She has no intention of becoming hooked again. But&hellip; “just the one peek.” Too late! She is already hooked again.</p>
<p>The little porn monster has got into her body again. The old craving will start and even if she doesn&rsquo;t become hooked again straight away, post-high depression will probably catch her out. It is strange that although heroin addicts are criminals in law, our society&rsquo;s attitude is quite rightly, “What can we do to help these pathetic individuals?” Let us adopt the same attitude to the poor PMOer. He is not doing it because he wants to but because he thinks he has got to and, unlike the heroin addict, he usually has to suffer years and years of mental and physical torture. We always say a quick death is better than a slow one, so do not envy the poor PMOer. He and she deserves your pity.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-41-feedback/"><div id="prevart">Previous:<br>03-41 Feedback</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Advice to Non-PMOers HELP GET YOUR PMO FRIENDS TO READ THIS BOOK First study the contents of this book and try to put yourself in the place of the PMOer. Do not force him to read this book or try to stop him by telling him he is ruining his health or playing with fire. He already knows this better than you do. PMOers do not continue in it because they enjoy it or because they want to."/>
<meta name="description" content="Advice to Non-PMOers HELP GET YOUR PMO FRIENDS TO READ THIS BOOK First study the contents of this book and try to put yourself in the place of the PMOer. Do not force him to read this book or try to stop him by telling him he is ruining his health or playing with fire. He already knows this better than you do. PMOers do not continue in it because they enjoy it or because they want to."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,22 +17,19 @@
<header><h1 id="tag_03-43 Advice to Non-PMOers">03-43 Advice to Non-PMOers</h1></header>
<article>
<h2 id="advice-to-non-pmoers">Advice to Non-PMOers <a class="anchor" href="#advice-to-non-pmoers">
<span class="spanForHeader"></span>
</a></h2><h3 id="help-get-your-pmo-friends-to-read-this-book">HELP GET YOUR PMO FRIENDS TO READ THIS BOOK <a class="anchor" href="#help-get-your-pmo-friends-to-read-this-book">
<span class="spanForHeader"></span>
</a></h3><p>First study the contents of this book and try to put yourself in the place of the PMOer. Do not force him to read this book or try to stop him by telling him he is ruining his health or playing with fire. He already knows this better than you do. PMOers do not continue in it because they enjoy it or because they want to. They only tell themselves and other people this in order to retain self-respect. They do it because they feel dependent on PMO because they think that it relaxes them and gives them courage and confidence (pleasure or crutch) and that life will never be enjoyable without “sex” - their version of it. If you try to force a PMOer to stop, he feels like a trapped animal and wants to be in his harem even more. This may turn him into a secret PMOer and in his mind the porn will become even more precious (see Chapter 26).</p>
<div class="post-content"><h2 id="advice-to-non-pmoers">Advice to Non-PMOers<a hidden class="anchor" aria-hidden="true" href="#advice-to-non-pmoers">#</a></h2>
<h3 id="help-get-your-pmo-friends-to-read-this-book">HELP GET YOUR PMO FRIENDS TO READ THIS BOOK<a hidden class="anchor" aria-hidden="true" href="#help-get-your-pmo-friends-to-read-this-book">#</a></h3>
<p>First study the contents of this book and try to put yourself in the place of the PMOer. Do not force him to read this book or try to stop him by telling him he is ruining his health or playing with fire. He already knows this better than you do. PMOers do not continue in it because they enjoy it or because they want to. They only tell themselves and other people this in order to retain self-respect. They do it because they feel dependent on PMO because they think that it relaxes them and gives them courage and confidence (pleasure or crutch) and that life will never be enjoyable without “sex” - their version of it. If you try to force a PMOer to stop, he feels like a trapped animal and wants to be in his harem even more. This may turn him into a secret PMOer and in his mind the porn will become even more precious (see Chapter 26).</p>
<p>Instead, concentrate on the other side of the coin. Get him into the company of ex-PMOers (there are many blogs, forums etc. YBOP, No-Fap etc.). Get them to tell the PMOer how they too thought they were hooked for life and how much better life is as a non-PMOer. Once you have got him believing that he can stop then his mind will start to open up. Then start explaining the delusion created by withdrawal pangs. Not only are the “dopamine rushes” not giving him a boost but they are destroying his confidence and making him irritable and tired.</p>
<p>He should now be ready to read this book himself. He will be expecting to read pages and pages about unreliable arousal, fading penetrations, PIED, PE, etc. Explain that the approach is completely different and that references to illness are just a small fraction of the material in the book.</p>
<h3 id="help-during-the-withdrawal-period">HELP DURING THE WITHDRAWAL PERIOD <a class="anchor" href="#help-during-the-withdrawal-period">
<span class="spanForHeader"></span>
</a></h3><p>If you are dealing with a girlfriend or boyfriend - whether the ex-PMOer is suffering or not, assume that she/he is. Do not try to minimize his suffering by telling him it is easy to stop; he can do that himself. Instead keep telling him how proud you are, how much better he is looking, how much sweeter it is to be with him, how much easier he is in general. It is particularly important to keep doing this. When a PMOer makes an attempt to stop, the euphoria of the attempt and the attention he gets from friends and colleagues can help him along. However, they tend to forget quickly, so keep that praise going.</p>
<h3 id="help-during-the-withdrawal-period">HELP DURING THE WITHDRAWAL PERIOD<a hidden class="anchor" aria-hidden="true" href="#help-during-the-withdrawal-period">#</a></h3>
<p>If you are dealing with a girlfriend or boyfriend - whether the ex-PMOer is suffering or not, assume that she/he is. Do not try to minimize his suffering by telling him it is easy to stop; he can do that himself. Instead keep telling him how proud you are, how much better he is looking, how much sweeter it is to be with him, how much easier he is in general. It is particularly important to keep doing this. When a PMOer makes an attempt to stop, the euphoria of the attempt and the attention he gets from friends and colleagues can help him along. However, they tend to forget quickly, so keep that praise going.</p>
<p>Because he is not talking about PMOing, you may think he has forgotten about it and don&rsquo;t want to remind him. Usually the complete opposite is the case with the Willpower Method, as the ex-PMOer tends to be obsessed by nothing else. So do not be frightened to bring the subject up and keep praising him: he will tell you if he doesn&rsquo;t want you to remind him of PMOing.</p>
<p>Go out of your way to relieve him of pressures during the withdrawal period. Try to think of ways of making his life interesting and enjoyable. This can also be a trying period for non-PMOers - that is those of you who have never had this addiction. If one member of a group is irritable, it can cause general misery all round. So anticipate this if the ex-PMOer is feeling irritable. He may well take it out on you but do not retaliate: it is at this time that he needs your praise and sympathy the most. If you are feeling irritable yourself, try not to show it.</p>
<p>One of the tricks an addict will play when trying to give up with the aid of the Willpower Method was to get into a tantrum, hoping that wife or friends would say, “I cannot bear to see you suffering like this. For goodness sake, have your poison.” The PMOer then does not lose face, as he isn&rsquo;t “giving in” - he has been instructed. If the ex-PMOer uses this ploy, on no account encourage him to lapse. Instead say, “if that is what PMO does to you, thank goodness you will soon be free. How marvellous that you had the courage and sense to give up.”</p>
<h3 id="help-end-this-scandal">HELP END THIS SCANDAL <a class="anchor" href="#help-end-this-scandal">
<span class="spanForHeader"></span>
</a></h3><p>In my opinion, internet porn is one of the dangers in a free society, piggy backing on the good willed efforts of personal freedoms. Surely the very basis of civilization, the reason why the human species has advanced so far, is that we are capable of communicating our knowledge and experiences not only to each other but to future generations. Even the lower species find it necessary to warn their offspring of the pitfalls in life.</p>
<h3 id="help-end-this-scandal">HELP END THIS SCANDAL<a hidden class="anchor" aria-hidden="true" href="#help-end-this-scandal">#</a></h3>
<p>In my opinion, internet porn is one of the dangers in a free society, piggy backing on the good willed efforts of personal freedoms. Surely the very basis of civilization, the reason why the human species has advanced so far, is that we are capable of communicating our knowledge and experiences not only to each other but to future generations. Even the lower species find it necessary to warn their offspring of the pitfalls in life.</p>
<p>The producers of porn are not doing this in good faith, in the genuine belief that they help mankind, especially now as the addiction to internet porn is widely studied. Maybe in its initial stages people genuinely believed that porn taught intimacy to men and women but today the authorities know that it is a fallacy. Just watch any tube sites nowadays. They make no claims about education. The only claims they make are about the shock, novelty, escalation quality of their clips.</p>
<p>The sheer hypocrisy is incredible. As a society we get uptight about school bullying and objectification of human body. Compared with internet porn, these problems are mere pimples in our society. Thirty five per cent of the population have been addicted to porn and most of them spend quality time with imaginary and illusory pixel people at the expense of health, virility, energy and time. Tens of thousands of people have their lives ruined every year because they become hooked. Internet high speed porn is by far the biggest killer in relationships and yet the biggest vested interest is our for-profit companies. Internet porn producers dont spend on advertising the filth in mainstream publications - they dont have to. Our biological urges will lead us to the thresholds of their well stocked internet harems. They give free samples just like your local drug dealer. Heck the tube sites dont even stock the wares any more as they encourage visitors to post the content.</p>
<p>How clever that porn companies show the 18+ warning at their home page as the deterrent for under age users. Some even dont bother to do that. Internet porn affect everyone at all ages. “We have warned you of the danger. It is your choice.” Is the attitude they have. Anyway, do they take any steps to verify the age? No. That would discourage their customers. And of course if age verification is legislated they will find another country to host. Or they will pay some elite to write how prohibition resulted in bootlegging and the creation of the Mafia. Conveniently forgotten is the question of why repealing prohibition did not result in the reduction of alcohol related casualty numbers. And the contribution of the failure of law enforcement to control the Mafias growth. So lets not waste time in talking about them.</p>
@ -43,9 +40,8 @@
<p>I remember reading H. G. Wells The Time Machine. The book describes an incident in the distant future in which a man falls into a river. His companions merely sit around the bank like cattle, oblivious to his cries of desperation. I found that incident inhuman and very disturbing. I find the general apathy of our society to the PMO problem very similar. We find characters in movies and TV series talking about or even engaging in porn in a casual way.</p>
<p>Why do we allow society to subject healthy young teenagers, youngsters whose lives are complete before they start to get online, to claim their independence just for the privilege of destroying themselves mentally and physically in a lifetime of slavery, a lifetime of filth and disease? You may feel that I over-dramatize the facts. Not so. There are cases where lives were cut down in his early years of marriage because of PMO. He was a strong man and might still have been alive today. I believe I was within an inch of PIED during my forties, although I would have attributed it to my divorce rather than to PMO. I now spend my life being consulted by people who have been crippled by the disease or are in the last stages. And, if you care to think about it, you probably know of many too.</p>
<p>There is a wind of change in society. A snowball has started that I hope this book will help turn into an avalanche. You too can help by spreading the message.</p>
<h3 id="final-warning">FINAL WARNING <a class="anchor" href="#final-warning">
<span class="spanForHeader"></span>
</a></h3><p>You can now enjoy the rest of your life as a happy non-PMOer. In order to make sure that you do, you need to follow these simple instructions:</p>
<h3 id="final-warning">FINAL WARNING<a hidden class="anchor" aria-hidden="true" href="#final-warning">#</a></h3>
<p>You can now enjoy the rest of your life as a happy non-PMOer. In order to make sure that you do, you need to follow these simple instructions:</p>
<ol>
<li>Keep this page in your bookmarks and refer to it as much as you need.</li>
<li>If you ever start to envy another PMOer, realize that they will be envious of you. You are not being deprived. They are.</li>
@ -55,6 +51,7 @@
<li>If you have any difficulties find and contact a therapist who is knowledgeable in internet porn. You will find a list of these online.</li>
</ol>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-42-help-the-pmoer-left-on-the-sinking-ship/"><div id="prevart">Previous:<br>03-42 Help the PMOer Left on the Sinking Ship</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Should I Tell My SO Should I tell my wife, girlfriend and SO about my PMO? The intention here is that it would help you in quitting. I am of the solid opinion that all these are not needed. It would only reinforce your weakness against PMO.
<meta name="description" content="Should I Tell My SO Should I tell my wife, girlfriend and SO about my PMO? The intention here is that it would help you in quitting. I am of the solid opinion that all these are not needed. It would only reinforce your weakness against PMO.
If you slip, you will feel miserable and guilty if you are following the Willpower Method. Add to that the feeling of deceiving your loved one will definitely push you through the vicious cycle of slip-lapse-relapse."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,14 +18,15 @@ If you slip, you will feel miserable and guilty if you are following the Willpow
<header><h1 id="tag_03-44 Should I Tell My SO">03-44 Should I Tell My SO</h1></header>
<article>
<h2 id="should-i-tell-my-so">Should I Tell My SO <a class="anchor" href="#should-i-tell-my-so">
<span class="spanForHeader"></span>
</a></h2><p>Should I tell my wife, girlfriend and SO about my PMO? The intention here is that it would help you in quitting. I am of the solid opinion that all these are not needed. It would only reinforce your weakness against PMO.</p>
<div class="post-content"><h2 id="should-i-tell-my-so">Should I Tell My SO<a hidden class="anchor" aria-hidden="true" href="#should-i-tell-my-so">#</a></h2>
<p>Should I tell my wife, girlfriend and SO about my PMO? The intention here is that it would help you in quitting. I am of the solid opinion that all these are not needed. It would only reinforce your weakness against PMO.</p>
<p>If you slip, you will feel miserable and guilty if you are following the Willpower Method. Add to that the feeling of deceiving your loved one will definitely push you through the vicious cycle of slip-lapse-relapse.</p>
<p>If you are caught once - just say you are feeling good that you got caught and you are out of the prison. And you dont want to talk about it. Many women cant digest it. Many men wrongly attribute the woman to be of loose morals and hence a bad person. And if the SO breaks up with you (even if for some other reason) you will feel guilty for having screwed up your sex life with PMO OR feeling you “sacrificed” so much if you were successful in quitting - adding to the heart ache.</p>
<p>You will look very weak. They will treat you as a weak person - of course only subconsciously. But you can smell it. Why the stress?</p>
<p>If no one knows about it, then let this thing get buried. No one needs to know.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-43-advice-to-non-pmoers/"><div id="prevart">Previous:<br>03-43 Advice to Non-PMOers</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The Instructions Follow all the instructions. Keep an open mind. Start with a feeling of elation. Ignore all advice and influences that conflict with EasyPeasyway Resist any promise of a temporary fix. Get it clear in your mind: PMO gives you no genuine pleasure or crutch; you are not making a sacrifice; there is nothing to give up and no reason to feel deprived. Don&rsquo;t wait to quit. Do it now!"/>
<meta name="description" content="The Instructions Follow all the instructions. Keep an open mind. Start with a feeling of elation. Ignore all advice and influences that conflict with EasyPeasyway Resist any promise of a temporary fix. Get it clear in your mind: PMO gives you no genuine pleasure or crutch; you are not making a sacrifice; there is nothing to give up and no reason to feel deprived. Don&rsquo;t wait to quit. Do it now!"/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_04-01 The Instructions">04-01 The Instructions</h1></header>
<article>
<h2 id="the-instructions">The Instructions <a class="anchor" href="#the-instructions">
<span class="spanForHeader"></span>
</a></h2><ol>
<div class="post-content"><h2 id="the-instructions">The Instructions<a hidden class="anchor" aria-hidden="true" href="#the-instructions">#</a></h2>
<ol>
<li>Follow all the instructions.</li>
<li>Keep an open mind.</li>
<li>Start with a feeling of elation.</li>
@ -31,9 +31,8 @@
<li>Always remember there&rsquo;s no such thing as &ldquo;Just One Peek&rdquo;.</li>
<li>Never PMO again.</li>
</ol>
<h3 id="affirmations">Affirmations <a class="anchor" href="#affirmations">
<span class="spanForHeader"></span>
</a></h3><ul>
<h3 id="affirmations">Affirmations<a hidden class="anchor" aria-hidden="true" href="#affirmations">#</a></h3>
<ul>
<li>I am free from the slavery of PMO.</li>
<li>It is easy for me to ignore my thoughts about PMO.</li>
<li>Bye bye thoughts, bye bye Urges. Oh, there goes my cravings.</li>
@ -50,6 +49,7 @@ strains of life.</li>
<li>Great, I am free. I am not a slave any more!</li>
</ul>
</div>
<div id="nextprev">
<a href="/library/hackbook/03-44-should-i-tell-my-so/"><div id="prevart">Previous:<br>03-44 Should I Tell My SO</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="REBT Coping Statements “I can stop PMO, even though it appears &lsquo;hard&rsquo; to do so. Its not too hard and no matter how much trouble it takes, its worth it!” “If I keep ignoring and never giving into my powerful urges to PMO, I will make it easier and easier to resist them” “I can fully and unconditionally accept myself- yes, even with all my flaws and failings” “PMO seems to quickly &lsquo;cure&rsquo; my problems but actually makes them worse."/>
<meta name="description" content="REBT Coping Statements “I can stop PMO, even though it appears &lsquo;hard&rsquo; to do so. Its not too hard and no matter how much trouble it takes, its worth it!” “If I keep ignoring and never giving into my powerful urges to PMO, I will make it easier and easier to resist them” “I can fully and unconditionally accept myself- yes, even with all my flaws and failings” “PMO seems to quickly &lsquo;cure&rsquo; my problems but actually makes them worse."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_04-02 REBT Coping Statements">04-02 REBT Coping Statements</h1></header>
<article>
<h2 id="rebt-coping-statements">REBT Coping Statements <a class="anchor" href="#rebt-coping-statements">
<span class="spanForHeader"></span>
</a></h2><ul>
<div class="post-content"><h2 id="rebt-coping-statements">REBT Coping Statements<a hidden class="anchor" aria-hidden="true" href="#rebt-coping-statements">#</a></h2>
<ul>
<li><em>“I can stop PMO, even though it appears &lsquo;hard&rsquo; to do so. Its not too hard and no matter how much trouble it takes, its worth it!”</em></li>
<li><em>“If I keep ignoring and never giving into my powerful urges to PMO, I will make it easier and easier to resist them”</em></li>
<li><em>“I can fully and unconditionally accept myself- yes, even with all my flaws and failings”</em></li>
@ -36,6 +36,7 @@
<li><em>“People dont enrage me by treating me badly. I pigheadedly choose to enrage myself about their bad treatment by demanding and commanding that they act better.”</em></li>
</ul>
</div>
<div id="nextprev">
<a href="/library/hackbook/04-01-the-instructions/"><div id="prevart">Previous:<br>04-01 The Instructions</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Scripts-01 You are relaxed now and because you are so relaxed you begin to feel free from all tensions, anxiety and fear. You now realize that you are more confident and sure of yourself because you have taken the enormous first step toward helping yourself. Great!
<meta name="description" content="Scripts-01 You are relaxed now and because you are so relaxed you begin to feel free from all tensions, anxiety and fear. You now realize that you are more confident and sure of yourself because you have taken the enormous first step toward helping yourself. Great!
You begin to feel this strength from within, motivating you to overcome any and every obstacle that may stand in the way of your happiness, social life and home life."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ You begin to feel this strength from within, motivating you to overcome any and
<header><h1 id="tag_05-01 Scripts-01">05-01 Scripts-01</h1></header>
<article>
<h2 id="scripts-01">Scripts-01 <a class="anchor" href="#scripts-01">
<span class="spanForHeader"></span>
</a></h2><p>You are relaxed now and because you are so relaxed you begin to feel free from all tensions, anxiety and fear. You now realize that you are more confident and sure of yourself because you have taken the enormous first step toward helping yourself. Great!</p>
<div class="post-content"><h2 id="scripts-01">Scripts-01<a hidden class="anchor" aria-hidden="true" href="#scripts-01">#</a></h2>
<p>You are relaxed now and because you are so relaxed you begin to feel free from all tensions, anxiety and fear. You now realize that you are more confident and sure of yourself because you have taken the enormous first step toward helping yourself. Great!</p>
<p>You begin to feel this strength from within, motivating you to overcome any and every obstacle that may stand in the way of your happiness, social life and home life. You are not a slave to PMO any more!</p>
<p>You will find that from this moment on you are developing more self control. You will now face every situation in a calm, relaxed state of mind. Your thinking is very clear and sharp at all times. You are free!</p>
<p>You begin to feel that your self respect and confidence are expanding more and more each and every day in every way. You now realize that in the past addiction was an escape and weakness that you are replacing with confidence, strength and self control. You are becoming a happy person now, with a positive attitude toward life. You are succeeding now and you have all the abilities for success.</p>
@ -30,6 +30,7 @@ You begin to feel this strength from within, motivating you to overcome any and
<p>That consists of breaking the habit pattern and strengthening the self. The habit pattern is only part of yesterday and yesterday&rsquo;s habit pattern with regard to porn is gone. Your damaged ego has been repaired. For this is a dynamic way with dealing with PMOers. And it&rsquo;s a dynamic pattern in dealing with you. For we removed your habit pattern, and porn to you is distasteful, you have no desire for it in any form and should you even accidentally glance it, it will be distasteful to you. Your faith in your own self is strengthened and these suggestions are reinforced which is the fifth point&hellip;</p>
<p>&hellip; over and over again at regular intervals in you life. Now you sink deeper and deeper and deeper&hellip; And your PMO problem vanishes leaving you sound in mind, sound in spirit, sound in body and sound in health.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/04-02-rebt-coping-statements/"><div id="prevart">Previous:<br>04-02 REBT Coping Statements</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Scripts-02 As you go deeper and deeper relaxed all of the sounds fade away in the distance and you pay attention only to the sound of my voice. As you listen carefully to the sound of my voice, we are going to remove a number of suggestions which have been in your mind. We are going to remove them completely and as you listen carefully to them we&rsquo;re simply going to dissolve them&hellip; throw them out of your mind completely and forever&hellip; Nothing disturbs you and nothing bothers you and nothing can distract you in any way from listening to the sound of my voice&hellip; and from completely accepting everything I tell you&hellip; for everything I tell you is the absolute truth to you&hellip; and we&rsquo;re going to remove all suggestions from your mind that have been detrimental to you in the past."/>
<meta name="description" content="Scripts-02 As you go deeper and deeper relaxed all of the sounds fade away in the distance and you pay attention only to the sound of my voice. As you listen carefully to the sound of my voice, we are going to remove a number of suggestions which have been in your mind. We are going to remove them completely and as you listen carefully to them we&rsquo;re simply going to dissolve them&hellip; throw them out of your mind completely and forever&hellip; Nothing disturbs you and nothing bothers you and nothing can distract you in any way from listening to the sound of my voice&hellip; and from completely accepting everything I tell you&hellip; for everything I tell you is the absolute truth to you&hellip; and we&rsquo;re going to remove all suggestions from your mind that have been detrimental to you in the past."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,9 +17,9 @@
<header><h1 id="tag_05-01 Scripts-02">05-01 Scripts-02</h1></header>
<article>
<h2 id="scripts-02">Scripts-02 <a class="anchor" href="#scripts-02">
<span class="spanForHeader"></span>
</a></h2><p>As you go deeper and deeper relaxed all of the sounds fade away in the distance and you pay attention only to the sound of my voice. As you listen carefully to the sound of my voice, we are going to remove a number of suggestions which have been in your mind. We are going to remove them completely and as you listen carefully to them we&rsquo;re simply going to dissolve them&hellip; throw them out of your mind completely and forever&hellip; Nothing disturbs you and nothing bothers you and nothing can distract you in any way from listening to the sound of my voice&hellip; and from completely accepting everything I tell you&hellip; for everything I tell you is the absolute truth to you&hellip; and we&rsquo;re going to remove all suggestions from your mind that have been detrimental to you in the past.</p>
<div class="post-content"><h2 id="scripts-02">Scripts-02<a hidden class="anchor" aria-hidden="true" href="#scripts-02">#</a></h2>
<p>As you go deeper and deeper relaxed all of the sounds fade away in the distance and you pay attention only to the sound of my voice. As you listen carefully to the sound of my voice, we are going to remove a number of suggestions which have been in your mind. We are going to remove them completely and as you listen carefully to them we&rsquo;re simply going to dissolve them&hellip; throw them out of your mind completely and forever&hellip; Nothing disturbs you and nothing bothers you and nothing can distract you in any way from listening to the sound of my voice&hellip; and from completely accepting everything I tell you&hellip; for everything I tell you is the absolute truth to you&hellip; and we&rsquo;re going to remove all suggestions from your mind that have been detrimental to you in the past.</p>
<p>The first suggestion you had in your mind is that somehow or another that porn, an image, an illusion, has been of some use to you. Masturbating to porn is of no use to you and you know it. You&rsquo;re through PMO for any reason. It doesn&rsquo;t make you relax, it doesn&rsquo;t make you sleep well, it doesn&rsquo;t do anything for you. As a matter of fact it ruins your efficiency&hellip; and consequently you&rsquo;re through with it. The fact that porn has ever been beneficial to you in any way is completely removed from your mind. I am going to count to five and that suggestion is completely removed from your mind never to return. One, Two, Three, Four, Five.</p>
<p>The next suggestion that you may have accepted is that porn is a good means of punishing yourself. In the first place, you&rsquo;re through punishing yourself and in the second place you&rsquo;re through using porn as a means to do it. The only reason anyone ever punishes himself is because somewhere deep in his mind he feels guilty and you&rsquo;re through allowing your-self to feel guilty. And so with one count we&rsquo;re going to remove the guilt, whatever it is and from whatever source the punishment, the need for punishment, and that porn could be used as a vehicle to achieve it. One. Two. Three. Four. Five.</p>
<p>Those ideas are all gone. Porn to you is a poison and a lousy inefficient poison at that&hellip; just enough poison to make you sick and ineffective. But then you&rsquo;re through poisoning yourself and you&rsquo;re through using porn and so that need is also removed from your mind. One. Two. Three. Four. Five.</p>
@ -28,6 +28,7 @@
<p>From this moment on you are free, free from the porn, free from it&rsquo;s entangling octopus like tentacles, free from it&rsquo;s degrading self-punishing nature, free from from its ruination, free from it&rsquo;s ability to wreck your life. You&rsquo;re completely free because all the connections in your mind with the porn and it&rsquo;s substitutes have been completely removed. The wires have been pulled out and you are unable to restore them even if you should want to. Just imagine that a big telephone switchboard exists in your head and that we pulled out all of the wires connected to the hole marked &ldquo;porn&rdquo; so that even if something is plugged into it nothing will happen. You don&rsquo;t want it. You can&rsquo;t buy it. You don&rsquo;t need it and if offered you&rsquo;d refuse it. It&rsquo;s disgusting to you. It&rsquo;s awful. Has a terrible effect and makes you sick to your stomach to even think about it. One. Two. Three. Four. Five.</p>
<p>Now you are going to be completely successful in every way and surprised and amazed at the self discipline and confidence that you have in yourself knowing that you&rsquo;ve licked the problem and that it will stay licked. Now sleep. Sleep deeply. And your mind concentrates on the sound of my voice and you go deeper and deeper and deeper. Relax.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/05-01-scripts-01/"><div id="prevart">Previous:<br>05-01 Scripts-01</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Scripts-03 Now as you sink deeper and deeper relaxed all of the sounds fade away in the distance. You pay no attention to any other sound but the sound of my voice. You sink deeper and deeper with every breath you take. Deeper and deeper and deeper, way down, deeper and deeper relaxed.
<meta name="description" content="Scripts-03 Now as you sink deeper and deeper relaxed all of the sounds fade away in the distance. You pay no attention to any other sound but the sound of my voice. You sink deeper and deeper with every breath you take. Deeper and deeper and deeper, way down, deeper and deeper relaxed.
In the past porn may have been to you something that meant life. In your mind you may have accepted a suggestion that porn saves your life from boredom or porn protects you from being injured socially, porn is good for you in some manner or another."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -18,9 +18,9 @@ In the past porn may have been to you something that meant life. In your mind yo
<header><h1 id="tag_05-01 Scripts-03">05-01 Scripts-03</h1></header>
<article>
<h2 id="scripts-03">Scripts-03 <a class="anchor" href="#scripts-03">
<span class="spanForHeader"></span>
</a></h2><p>Now as you sink deeper and deeper relaxed all of the sounds fade away in the distance. You pay no attention to any other sound but the sound of my voice. You sink deeper and deeper with every breath you take. Deeper and deeper and deeper, way down, deeper and deeper relaxed.</p>
<div class="post-content"><h2 id="scripts-03">Scripts-03<a hidden class="anchor" aria-hidden="true" href="#scripts-03">#</a></h2>
<p>Now as you sink deeper and deeper relaxed all of the sounds fade away in the distance. You pay no attention to any other sound but the sound of my voice. You sink deeper and deeper with every breath you take. Deeper and deeper and deeper, way down, deeper and deeper relaxed.</p>
<p>In the past porn may have been to you something that meant life. In your mind you may have accepted a suggestion that porn saves your life from boredom or porn protects you from being injured socially, porn is good for you in some manner or another. But that was yesterday and we are in the future. All that was yesterday, because porn may have protected you from injury in the past socially, it could have even saved your life from boredom.</p>
<p>And those suggestions may have been good suggestions at one time but they have outlived their usefulness and if any of those suggestions are present to any degree in your mind, they are completely removed as of now. And that suggestion takes complete and thorough effect upon your mind, body and spirit.</p>
<p>Now to other people porn means death. It&rsquo;s a way of punishing oneself. It&rsquo;s a poison and some people want to poison themselves. It&rsquo;s a method of slow suicide. Well, you don&rsquo;t need that now. If porn ever meant death and suicide to you and you have a need to punish yourself, that need is now long gone and we remove that suggestion. The truth of the matter is that porn is just porn. It&rsquo;s not life. It&rsquo;s not death. As a matter of fact, it&rsquo;s not anything to you anymore. It&rsquo;s nothing, neutral feelings. It&rsquo;s something that you don&rsquo;t need nor do you want.</p>
@ -28,6 +28,7 @@ In the past porn may have been to you something that meant life. In your mind yo
<p>Because you don&rsquo;t need any of that. Today is the day in which you make yourself successful. Today is the day in which you set goals and strive towards those goals. Today is the day in which you have a nice clean cut appearance, in which you feel vitality and can think straight and reason and make decisions upon good judgement and past experience. Today is the day in which you start loving yourself and appreciating yourself for the really good and intelligent individual that you are. Today is the day in which you turn yourself over and turn your life over to something higher than just you, not only to a higher principle, but to a higher inside power. Let that power run your life. Today is the day that you&rsquo;ll bury your past mistakes and make something out of yourself. Today is the day that you wipe failure out of your book of life and that success becomes really meaningful to you in a very personal way. To be completely succinct about this, today is the day that you throw porn away. You throw it away for good. You don&rsquo;t need it and you&rsquo;ll never need it. You don&rsquo;t want it and you&rsquo;ll never want it. You can&rsquo;t desire it and you don&rsquo;t. You&rsquo;re through with porn. You don&rsquo;t need it, you don&rsquo;t want it, and you can&rsquo;t watch it. It is terrible. It acts terrible. And it makes you feel terrible.</p>
<p>You&rsquo;re going to enjoy life fully in every way and feel happy, live, laugh, love, and be happy for that&rsquo;s what today means to you. Now all these suggestions take complete and thorough effect upon you mind, body and spirit as you sink deeper and deeper relaxed and they seal themselves into your subconscious mind and they reinforce themselves over and over again. I&rsquo;m going to give you a period of silence in which all this takes effect and that period of silence begins now&hellip;</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/05-01-scripts-02/"><div id="prevart">Previous:<br>05-01 Scripts-02</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Scripts-04 To an individual who has had a PMO problem, porn is poison. It&rsquo;s poison in two ways. First of all it&rsquo;s poison because it breaks down the very will power, the very ego, the very faith in oneself that the individual is able to build up. And so it is a psychological poison because having once conquered the porn problem, if you ever allow it to get back into you again then you begin thinking about yourself all the thoughts that you thought about yourself before, namely, well I really am no good anyway, I really didn&rsquo;t lick it and so on."/>
<meta name="description" content="Scripts-04 To an individual who has had a PMO problem, porn is poison. It&rsquo;s poison in two ways. First of all it&rsquo;s poison because it breaks down the very will power, the very ego, the very faith in oneself that the individual is able to build up. And so it is a psychological poison because having once conquered the porn problem, if you ever allow it to get back into you again then you begin thinking about yourself all the thoughts that you thought about yourself before, namely, well I really am no good anyway, I really didn&rsquo;t lick it and so on."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,15 +17,16 @@
<header><h1 id="tag_05-01 Scripts-04">05-01 Scripts-04</h1></header>
<article>
<h2 id="scripts-04">Scripts-04 <a class="anchor" href="#scripts-04">
<span class="spanForHeader"></span>
</a></h2><p>To an individual who has had a PMO problem, porn is poison. It&rsquo;s poison in two ways. First of all it&rsquo;s poison because it breaks down the very will power, the very ego, the very faith in oneself that the individual is able to build up. And so it is a psychological poison because having once conquered the porn problem, if you ever allow it to get back into you again then you begin thinking about yourself all the thoughts that you thought about yourself before, namely, well I really am no good anyway, I really didn&rsquo;t lick it and so on. So it&rsquo;s a psychological poison.</p>
<div class="post-content"><h2 id="scripts-04">Scripts-04<a hidden class="anchor" aria-hidden="true" href="#scripts-04">#</a></h2>
<p>To an individual who has had a PMO problem, porn is poison. It&rsquo;s poison in two ways. First of all it&rsquo;s poison because it breaks down the very will power, the very ego, the very faith in oneself that the individual is able to build up. And so it is a psychological poison because having once conquered the porn problem, if you ever allow it to get back into you again then you begin thinking about yourself all the thoughts that you thought about yourself before, namely, well I really am no good anyway, I really didn&rsquo;t lick it and so on. So it&rsquo;s a psychological poison.</p>
<p>Now in addition to that for anyone who has ever had a porn problem, it&rsquo;s a physical poison. It actually poisons your system. Because you&rsquo;re allergic to porn just like other people are allergic to other things. And so if you&rsquo;re allergic to something, even penicillin, it&rsquo;s poison to you and you must never take it. The same is true with porn. If you&rsquo;re allergic to it, you&rsquo;re through with it. Now you&rsquo;ve been allergic to porn. porn is a poison to you. What&rsquo;s even more fascinating is that usually the reason why one is drawn to porn is not for most of the reasons that most people reiterate, namely that it makes me feel good, I like it, all these things. On the contrary, almost every person who has a porn problem will tell you just the opposite. I don&rsquo;t like it. It&rsquo;s ruining my life. It&rsquo;s terrible.</p>
<p>And if that&rsquo;s true, then why are they drawn to it? For precisely that reason. Because it is a poison and because they in their subconscious mind need to commit suicide and so they do it the slow tortuous way. And so that&rsquo;s why it&rsquo;s so important that the underlying cause of the problem be completely removed so that you don&rsquo;t need to punish yourself again with porn. And that&rsquo;s why we have removed them.</p>
<p>That&rsquo;s why you don&rsquo;t need to punish yourself anymore. Because you realize you&rsquo;re not guilty to begin with. And if you&rsquo;re not guilty you don&rsquo;t have to punish yourself. And since you&rsquo;re through punishing yourself, you&rsquo;re through poisoning yourself. Yes porn is a poison. It&rsquo;s important that you realize that it&rsquo;s a poison and you are leaving poisons alone. Because you don&rsquo;t need poison any more. You don&rsquo;t need to poison yourself. You don&rsquo;t need to punish yourself. You&rsquo;re through with all that.</p>
<p>You&rsquo;re going to appreciate yourself. That&rsquo;s what you&rsquo;re going to do, appreciate yourself for the talents that you have, for the fact that you have life, for all the good that you can do in that life for yourself and others. In talking about porn we frequently say he got his fix. Interesting how drugs and porn go together. You&rsquo;re through with porn. You don&rsquo;t even take a peek at it. You&rsquo;re just beginning to appreciate yourself, to value yourself, your mind and your body and to make them really work for you.</p>
<p>You&rsquo;re going to make yourself happy and you&rsquo;re going to make others happy by staying abstinent, by avoiding completely like the plague any video which you are allergic to and porn especially for you&rsquo;re most allergic to that. You have obtained a great victory in forever placing porn behind you for you have now placed a beautiful future before you. For no matter what may befall you, good, bad, indifferent, it&rsquo;s still better and easier and happier to face the future as an ex-PMOer than a PMOer. Indeed, you&rsquo;re going to have twice the fun as ex-PMOer than you ever had PMOed because when PMOing you never had any fun. You were only using porn to assassinate yourself, to poison yourself, to get rid of yourself, to fix yourself, and to become dead lover. And you almost succeeded in that. But you removed all those thoughts from your mind. You&rsquo;re through punishing yourself. You&rsquo;re through beating yourself down. You&rsquo;re now going to build yourself up. You&rsquo;re through assassinating and you&rsquo;re going to appreciate and as you start appreciating instead of assassinating you&rsquo;re going to build yourself up more and more and more with every breath you take as you go deeper and deeper relaxed, deeper and deeper and deeper. And all these suggestions are going to be reinforced in your mind every single day of your life. Now sleep.</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/05-01-scripts-03/"><div id="prevart">Previous:<br>05-01 Scripts-03</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Scripts-05 “Go inside and try in vain to have the same problem. It was a terrible problem, wasn&rsquo;t it? You want to make changes, haven&rsquo;t you?&hellip; What would it be like when you have made those changes, now? In the future as you look back and see what it was like to have had that problem&hellip; as you think about it now, if you could make this change for yourself so that you could STOP&hellip; having made that change and see yourself now."/>
<meta name="description" content="Scripts-05 “Go inside and try in vain to have the same problem. It was a terrible problem, wasn&rsquo;t it? You want to make changes, haven&rsquo;t you?&hellip; What would it be like when you have made those changes, now? In the future as you look back and see what it was like to have had that problem&hellip; as you think about it now, if you could make this change for yourself so that you could STOP&hellip; having made that change and see yourself now."/>
<meta name="keywords" content="hackbook, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -17,11 +17,12 @@
<header><h1 id="tag_05-01 Scripts-05">05-01 Scripts-05</h1></header>
<article>
<h2 id="scripts-05">Scripts-05 <a class="anchor" href="#scripts-05">
<span class="spanForHeader"></span>
</a></h2><p>“Go inside and try in vain to have the same problem. It was a terrible problem, wasn&rsquo;t it? You want to make changes, haven&rsquo;t you?&hellip; What would it be like when you have made those changes, now? In the future as you look back and see what it was like to have had that problem&hellip; as you think about it now, if you could make this change for yourself so that you could STOP&hellip; having made that change and see yourself now. Do you like the way you look if you could make that change and look back at yourself having made that change now!”</p>
<div class="post-content"><h2 id="scripts-05">Scripts-05<a hidden class="anchor" aria-hidden="true" href="#scripts-05">#</a></h2>
<p>“Go inside and try in vain to have the same problem. It was a terrible problem, wasn&rsquo;t it? You want to make changes, haven&rsquo;t you?&hellip; What would it be like when you have made those changes, now? In the future as you look back and see what it was like to have had that problem&hellip; as you think about it now, if you could make this change for yourself so that you could STOP&hellip; having made that change and see yourself now. Do you like the way you look if you could make that change and look back at yourself having made that change now!”</p>
<p>Credit to <a href="http://www.hypnosis.com/scripts_full.php?id2=48">http://www.hypnosis.com/scripts_full.php?id2=48</a></p>
</div>
<div id="nextprev">
<a href="/library/hackbook/05-01-scripts-04/"><div id="prevart">Previous:<br>05-01 Scripts-04</div></a>

View file

@ -18,11 +18,13 @@ April 2017"/>
<header><h1 id="tag_Fin">Fin</h1></header>
<article>
<div style="text-align: center;">
<div class="post-content"><div style="text-align: center;">
<p><strong><a href="https://sites.google.com/site/hackbookeasypeasy/home">https://sites.google.com/site/hackbookeasypeasy/home</a></strong></p>
</div>
<p>April 2017</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/05-01-scripts-05/"><div id="prevart">Previous:<br>05-01 Scripts-05</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content=" Click to download the original pdf Archive of the original google sites webpage "/>
<meta name="description" content=" Click to download the original pdf Archive of the original google sites webpage "/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
@ -16,11 +16,9 @@
<header><h1 id="tag_Hackbook EasyPeasy - free yourself from pornography">Hackbook EasyPeasy - Free Yourself From Pornography</h1></header>
<article>
<div style="text-align: center;">
<h2 id="imgnew_turninggif-a-hrefhackbookhackbookpdfclick-to-download-the-original-pdfa-imgnew_turninggif"><img src="/img/new_turning.gif" alt=""> <a href="/hackbook/hackbook.pdf">Click to download the original pdf</a> <img src="/img/new_turning.gif" alt=""> <a class="anchor" href="#imgnew_turninggif-a-hrefhackbookhackbookpdfclick-to-download-the-original-pdfa-imgnew_turninggif">
<span class="spanForHeader"></span>
</a></h2><h2 id="imgnew_turninggif-a-target_blank-hrefhttpswebarchiveorgweb20201014165025httpssitesgooglecomsitehackbookeasypeasyarchive-of-the-original-google-sites-webpagea-imgnew_turninggif"><img src="/img/new_turning.gif" alt=""> <a target="_blank" href="https://web.archive.org/web/20201014165025/https://sites.google.com/site/hackbookeasypeasy/">Archive of the original google sites webpage</a> <img src="/img/new_turning.gif" alt=""> <a class="anchor" href="#imgnew_turninggif-a-target_blank-hrefhttpswebarchiveorgweb20201014165025httpssitesgooglecomsitehackbookeasypeasyarchive-of-the-original-google-sites-webpagea-imgnew_turninggif">
<span class="spanForHeader"></span>
</a></h2></div>
<h2 id="imgnew_turninggif-a-hrefhackbookhackbookpdfclick-to-download-the-original-pdfa-imgnew_turninggif"><img src="/img/new_turning.gif" alt=""> <a href="/hackbook/hackbook.pdf">Click to download the original pdf</a> <img src="/img/new_turning.gif" alt=""></h2>
<h2 id="imgnew_turninggif-a-target_blank-hrefhttpswebarchiveorgweb20201014165025httpssitesgooglecomsitehackbookeasypeasyarchive-of-the-original-google-sites-webpagea-imgnew_turninggif"><img src="/img/new_turning.gif" alt=""> <a target="_blank" href="https://web.archive.org/web/20201014165025/https://sites.google.com/site/hackbookeasypeasy/">Archive of the original google sites webpage</a> <img src="/img/new_turning.gif" alt=""></h2>
</div>
<ul>
<li><time datetime="2022-12-19T22:01:36&#43;02:00">2022 Dec 19</time> &ndash; <a href="/library/hackbook/00-00-hackbookeasypeasy/">00-00 HackBook EasyPeasy</a></li>
<li><time datetime="2022-12-19T22:14:52&#43;02:00">2022 Dec 19</time> &ndash; <a href="/library/hackbook/01-01-preface/">01-01 Preface</a></li>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -18,7 +18,8 @@ They do not advocate total rejection of modern technology; instead, they want to
<header><h1 id="tag_Ecofascism an Aberrant Branch of Leftism">Ecofascism an Aberrant Branch of Leftism</h1></header>
<article>
<p>The “ecofascists,” as I understand that term, share, at a minimum, two traits:</p>
<div class="post-content"><p>The “ecofascists,” as I understand that term, share, at a minimum, two traits:</p>
<ol>
<li>They do not advocate total rejection of modern technology; instead, they want to create a society in which technology will be “limited and “wisely” used in such a way as to ensure the ecological health of our planet.</li>
<li>They support, if not white supremacism, then at least white separatism.</li>
@ -49,6 +50,7 @@ They do not advocate total rejection of modern technology; instead, they want to
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/ted-kaczynski/the-road-to-revolution/"><div id="prevart">Previous:<br>The Road to Revolution</div></a>

File diff suppressed because one or more lines are too long

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Introduction The Industrial Revolution and its consequences have been a disaster for the human race. They have greatly increased the life expectancy of those of us who live in “advanced” countries, but they have destabilized society, have made life unfulfilling, have subjected human beings to indignities, have led to widespread psychological suffering (in the Third World to physical suffering as well) and have inflicted severe damage on the natural world."/>
<meta name="description" content="Introduction The Industrial Revolution and its consequences have been a disaster for the human race. They have greatly increased the life expectancy of those of us who live in “advanced” countries, but they have destabilized society, have made life unfulfilling, have subjected human beings to indignities, have led to widespread psychological suffering (in the Third World to physical suffering as well) and have inflicted severe damage on the natural world. The continued development of technology will worsen the situation."/>
<meta name="keywords" content="Ted Kaczynski, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -47,9 +47,9 @@ Table Of Contents:<nav id="TableOfContents">
<li><a href="#the-danger-of-leftism">The Danger of Leftism</a></li>
<li><a href="#final-note">Final Note</a></li>
</ul>
</nav><h2 id="introduction">Introduction <a class="anchor" href="#introduction">
<span class="spanForHeader"></span>
</a></h2><ol>
</nav>
<div class="post-content"><h2 id="introduction">Introduction<a hidden class="anchor" aria-hidden="true" href="#introduction">#</a></h2>
<ol>
<li>
<p>The Industrial Revolution and its consequences have been a disaster for the human race. They have greatly increased the life expectancy of those of us who live in “advanced” countries, but they have destabilized society, have made life unfulfilling, have subjected human beings to indignities, have led to widespread psychological suffering (in the Third World to physical suffering as well) and have inflicted severe damage on the natural world. The continued development of technology will worsen the situation. It will certainly subject human beings to greater indignities and inflict greater damage on the natural world, it will probably lead to greater social disruption and psychological suffering, and it may lead to increased physical suffering even in “advanced” countries.</p>
</li>
@ -66,9 +66,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>In this article we give attention to only some of the negative developments that have grown out of the industrial-technological system. Other such developments we mention only briefly or ignore altogether. This does not mean that we regard these other developments as unimportant. For practical reasons we have to confine our discussion to areas that have received insufficient public attention or in which we have something new to say. For example, since there are well-developed environmental and wilderness movements, we have written very little about environmental degradation or the destruction of wild nature, even though we consider these to be highly important.</p>
</li>
</ol>
<h2 id="the-psychology-of-modern-leftism">The Psychology of Modern Leftism <a class="anchor" href="#the-psychology-of-modern-leftism">
<span class="spanForHeader"></span>
</a></h2><ol start="6">
<h2 id="the-psychology-of-modern-leftism">The Psychology of Modern Leftism<a hidden class="anchor" aria-hidden="true" href="#the-psychology-of-modern-leftism">#</a></h2>
<ol start="6">
<li>
<p>Almost everyone will agree that we live in a deeply troubled society. One of the most widespread manifestations of the craziness of our world is leftism, so a discussion of the psychology of leftism can serve as an introduction to the discussion of the problems of modern society in general.</p>
</li>
@ -82,9 +81,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>The two psychological tendencies that underlie modern leftism we call feelings of inferiority and oversocialization. Feelings of inferiority are characteristic of modern leftism as a whole, while oversocialization is characteristic only of a certain segment of modern leftism; but this segment is highly influential.</p>
</li>
</ol>
<h2 id="feelings-of-inferiority">Feelings of Inferiority <a class="anchor" href="#feelings-of-inferiority">
<span class="spanForHeader"></span>
</a></h2><ol start="10">
<h2 id="feelings-of-inferiority">Feelings of Inferiority<a hidden class="anchor" aria-hidden="true" href="#feelings-of-inferiority">#</a></h2>
<ol start="10">
<li>
<p>By “feelings of inferiority” we mean not only inferiority feelings in the strict sense but a whole spectrum of related traits: low self-esteem, feelings of powerlessness, depressive tendencies, defeatism, guilt, self-hatred, etc. We argue that modern leftists tend to have some such feelings (possibly more or less repressed), and that these feelings are decisive in determining the direction of modern leftism.</p>
</li>
@ -128,9 +126,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>We emphasize that the foregoing does not pretend to be an accurate description of everyone who might be considered a leftist. It is only a rough indication of a general tendency of leftism.</p>
</li>
</ol>
<h2 id="oversocialization">Oversocialization <a class="anchor" href="#oversocialization">
<span class="spanForHeader"></span>
</a></h2><ol start="24">
<h2 id="oversocialization">Oversocialization<a hidden class="anchor" aria-hidden="true" href="#oversocialization">#</a></h2>
<ol start="24">
<li>
<p>Psychologists use the term “socialization” to designate the process by which children are trained to think and act as society demands. A person is said to be well socialized if he believes in and obeys the moral code of his society and fits in well as a functioning part of that society. It may seem senseless to say that many leftists are oversocialized, since the leftist is perceived as a rebel. Nevertheless, the position can be defended. Many leftists are not such rebels as they seem.</p>
</li>
@ -159,9 +156,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>The problems of the leftist are indicative of the problems of our society as a whole. Low self-esteem, depressive tendencies and defeatism are not restricted to the left. Though they are especially noticeable in the left, they are widespread in our society. And todays society tries to socialize us to a greater extent than any previous society. We are even told by experts how to eat, how to exercise, how to make love, how to raise our kids and so forth.</p>
</li>
</ol>
<h2 id="the-power-process">The Power Process <a class="anchor" href="#the-power-process">
<span class="spanForHeader"></span>
</a></h2><ol start="33">
<h2 id="the-power-process">The Power Process<a hidden class="anchor" aria-hidden="true" href="#the-power-process">#</a></h2>
<ol start="33">
<li>
<p>Human beings have a need (probably based in biology) for something that we will call the power process. This is closely related to the need for power (which is widely recognized) but is not quite the same thing. The power process has four elements. The three most clear-cut of these we call goal, effort and attainment of goal. (Everyone needs to have goals whose attainment requires effort, and needs to succeed in attaining at least some of his goals.) The fourth element is more difficult to define and may not be necessary for everyone. We call it autonomy and will discuss it later (paragraphs 4244).</p>
</li>
@ -178,9 +174,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>Thus, in order to avoid serious psychological problems, a human being needs goals whose attainment requires effort, and he must have a reasonable rate of success in attaining his goals.</p>
</li>
</ol>
<h2 id="surrogate-activities">Surrogate Activities <a class="anchor" href="#surrogate-activities">
<span class="spanForHeader"></span>
</a></h2><ol start="38">
<h2 id="surrogate-activities">Surrogate Activities<a hidden class="anchor" aria-hidden="true" href="#surrogate-activities">#</a></h2>
<ol start="38">
<li>
<p>But not every leisured aristocrat becomes bored and demoralized. For example, the emperor Hirohito, instead of sinking into decadent hedonism, devoted himself to marine biology, a field in which he became distinguished. When people do not have to exert themselves to satisfy their physical needs they often set up artificial goals for themselves. In many cases they then pursue these goals with the same energy and emotional involvement that they otherwise would have put into the search for physical necessities. Thus the aristocrats of the Roman Empire had their literary pretensions; many European aristocrats a few centuries ago invested tremendous time and energy in hunting, though they certainly didnt need the meat; other aristocracies have competed for status through elaborate displays of wealth; and a few aristocrats, like Hirohito, have turned to science.</p>
</li>
@ -194,9 +189,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>For many if not most people, surrogate activities are less satistying than the pursuit of real goals (that is, goals that people would want to attain even if their need for the power process were already fulfilled). One indication of this is the fact that, in many or most cases, people who are deeply involved in surrogate activities are never satisfied, never at rest. Thus the money-maker constantly strives for more and more wealth. The scientist no sooner solves one problem than he moves on to the next. The long-distance runner drives himself to run always farther and faster. Many people who pursue surrogate activities will say that they get far more fulfillment from these activities than they do from the “mundane” business of satisfying their biological needs, but that is because in our society the effort required to satisfy the biological needs has been reduced to triviality. More importantly, in our society people do not satisty their biological needs AUTONOMOUSLY but by functioning as parts of an immense social machine. In contrast, people generally have a great deal of autonomy in pursuing their surrogate activities.</p>
</li>
</ol>
<h2 id="autonomy">Autonomy <a class="anchor" href="#autonomy">
<span class="spanForHeader"></span>
</a></h2><ol start="42">
<h2 id="autonomy">Autonomy<a hidden class="anchor" aria-hidden="true" href="#autonomy">#</a></h2>
<ol start="42">
<li>
<p>Autonomy as a part of the power process may not be necessary for every individual. But most people need a greater or lesser degree of autonomy in working toward their goals. Their efforts must be undertaken on their own initiative and must be under their own direction and control. Yet most people do not have to exert this initiative, direction and control as single individuals. It is usually enough to act as a member of a SMALL group. Thus if half a dozen people discuss a goal among themselves and make a successful joint effort to attain that goal, their need for the power process will be served. But if they work under rigid orders handed down from above that leave them no room for autonomous decision and initiative, then their need for the power process will not be served. The same is true when decisions are made on a collective basis if the group making the collective decision is so large that the role of each individual is insignificant.<sup id="fnref:5"><a href="#fn:5" class="footnote-ref" role="doc-noteref">5</a></sup></p>
</li>
@ -207,9 +201,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>But for most people it is through the power process—having a goal, making an AUTONOMOUS effort and attaining the goal—that self-esteem, self-confidence and a sense of power are acquired. When one does not have adequate opportunity to go through the power process the consequences are (depending on the individual and on the way the power process is disrupted) boredom, demoralization, low self-esteem, inferiority feelings, defeatism, depression, anxiety, guilt, frustration, hostility, spouse or child abuse, insatiable hedonism, abnormal sexual behavior, sleep disorders, eating disorders, etc.<sup id="fnref:6"><a href="#fn:6" class="footnote-ref" role="doc-noteref">6</a></sup></p>
</li>
</ol>
<h2 id="sources-of-social-problems">Sources of Social Problems <a class="anchor" href="#sources-of-social-problems">
<span class="spanForHeader"></span>
</a></h2><ol start="45">
<h2 id="sources-of-social-problems">Sources of Social Problems<a hidden class="anchor" aria-hidden="true" href="#sources-of-social-problems">#</a></h2>
<ol start="45">
<li>
<p>Any of the foregoing symptoms can occur in any society, but in modern industrial society they are present on a massive scale. We arent the first to mention that the world today seems to be going crazy. This sort of thing is not normal for human societies. There is good reason to believe that primitive man suffered from less stress and frustration and was better satisfied with his way of life than modern man is. It is true that not all was sweetness and light in primitive societies. Abuse of women was common among the Australian aborigines, transsexuality was fairly common among some of the American Indian tribes. But it does appear that GENERALLY SPEAKING the kinds of problems that we have listed in the preceding paragraph were far less common among primitive peoples than they are in modern society.</p>
</li>
@ -253,9 +246,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>It would be possible to give other examples of societies in which there has been rapid change and/or lack of close community ties without the kind of massive behavioral aberration that is seen in todays industrial society. We contend that the most important cause of social and psychological problems in modern society is the fact that people have insufficient opportunity to go through the power process in a normal way. We dont mean to say that modern society is the only one in which the power process has been disrupted. Probably most if not all civilized societies have interfered with the power process to a greater or lesser extent. But in modern industrial society the problem has become particularly acute. Leftism, at least in its recent (mid- to late-20th century) form, is in part a symptom of deprivation with respect to the power process.</p>
</li>
</ol>
<h2 id="disruption-of-the-power-process-in-modern-society">Disruption of the Power Process in Modern Society <a class="anchor" href="#disruption-of-the-power-process-in-modern-society">
<span class="spanForHeader"></span>
</a></h2><ol start="59">
<h2 id="disruption-of-the-power-process-in-modern-society">Disruption of the Power Process in Modern Society<a hidden class="anchor" aria-hidden="true" href="#disruption-of-the-power-process-in-modern-society">#</a></h2>
<ol start="59">
<li>
<p>We divide human drives into three groups: (1) those drives that can be satisfied with minimal effort; (2) those that can be satisfied but only at the cost of serious effort; (3) those that cannot be adequately satisfied no matter how much effort one makes. The power process is the process of satistying the drives of the second group. The more drives there are in the third group, the more there is frustration, anger, eventually defeatism, depression, etc.</p>
</li>
@ -311,9 +303,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>In response to the arguments of this section someone will say, “Society must find a way to give people the opportunity to go through the power process.” This wont work for those who need autonomy in the power process. For such people the value of the opportunity is destroyed by the very fact that society gives it to them. What they need is to find or make their own opportunities. As long as the system GIVES them their opportunities it still has them on a leash. To attain autonomy they must get off that leash.</p>
</li>
</ol>
<h2 id="how-some-people-adjust">How Some People Adjust <a class="anchor" href="#how-some-people-adjust">
<span class="spanForHeader"></span>
</a></h2><ol start="77">
<h2 id="how-some-people-adjust">How Some People Adjust<a hidden class="anchor" aria-hidden="true" href="#how-some-people-adjust">#</a></h2>
<ol start="77">
<li>
<p>Not everyone in industrial-technological society suffers from psychological problems. Some people even profess to be quite satisfied with society as it is. We now discuss some of the reasons why people differ so greatly in their response to modern society.</p>
</li>
@ -345,9 +336,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>But even if most people in industrial-technological society were well satisfied, we (FC) would still be opposed to that form of society, because (among other reasons) we consider it demeaning to fulfill ones need for the power process through surrogate activities or through identification with an organization, rather than through pursuit of real goals.</p>
</li>
</ol>
<h2 id="the-motives-of-scientists">The Motives of Scientists <a class="anchor" href="#the-motives-of-scientists">
<span class="spanForHeader"></span>
</a></h2><ol start="87">
<h2 id="the-motives-of-scientists">The Motives of Scientists<a hidden class="anchor" aria-hidden="true" href="#the-motives-of-scientists">#</a></h2>
<ol start="87">
<li>
<p>Science and technology provide the most important examples of surrogate activities. Some scientists claim that they are motivated by “curiosity” or by a desire to “benefit humanity.” But it is easy to see that neither of these can be the principal motive of most scientists. As for “curiosity,” that notion is simply absurd. Most scientists work on highly specialized problems that are not the object of any normal curiosity. For example, is an astronomer, a mathematician or an entomologist curious about the properties of isopropyltrimethylmethane? Of course not. Only a chemist is curious about such a thing, and he is curious about it only because chemistry is his surrogate activity. Is the chemist curious about the appropriate classification of a new species of beetle? No. That question is of interest only to the entomologist, and he is interested in it only because entomology is his surrogate activity. If the chemist and the entomologist had to exert themselves seriously to obtain the physical necessities, and if that effort exercised their abilities in an interesting way but in some nonscientific pursuit, then they wouldnt give a damn about isopropyltrimethylmethane or the classification of beetles. Suppose that lack of funds for postgraduate education had led the chemist to become an insurance broker instead of a chemist. In that case he would have been very interested in insurance matters but would have cared nothing about isopropyltrimcthylmethane. In any case it is not normal to put into the satisfaction of mere curiosity the amount of time and effort that scientists put into their work. The “curiosity” explanation for the scientists motive just doesnt stand up.</p>
</li>
@ -367,9 +357,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>Thus science marches on blindly, without regard to the real welfare of the human race or to any other standard, obedient only to the psychological needs of the scientists and of the government officials and corporation executives who provide the funds for research.</p>
</li>
</ol>
<h2 id="the-nature-of-freedom">The Nature of Freedom <a class="anchor" href="#the-nature-of-freedom">
<span class="spanForHeader"></span>
</a></h2><ol start="93">
<h2 id="the-nature-of-freedom">The Nature of Freedom<a hidden class="anchor" aria-hidden="true" href="#the-nature-of-freedom">#</a></h2>
<ol start="93">
<li>
<p>We are going to argue that industrial-technological society cannot be reformed in such a way as to prevent it from progressively narrowing the sphere of human freedom. But because “freedom” is a word that can be interpreted in many ways, we must first make clear what kind of freedom we are concerned with.</p>
</li>
@ -389,9 +378,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>One more point to be made in this section: It should not be assumed that a person has enough freedom just because he SAYS he has enough. Freedom is restricted in part by psychological controls of which people are unconscious, and moreover many peoples ideas of what constitutes freedom are governed more by social convention than by their real needs. For example, its likely that many leftists of the oversocialized type would say that most people, including themselves, are socialized too little rather than too much, yet the oversocialized leftist pays a heavy psychological price for his high level of socialization.</p>
</li>
</ol>
<h2 id="some-principles-of-history">Some Principles of History <a class="anchor" href="#some-principles-of-history">
<span class="spanForHeader"></span>
</a></h2><ol start="99">
<h2 id="some-principles-of-history">Some Principles of History<a hidden class="anchor" aria-hidden="true" href="#some-principles-of-history">#</a></h2>
<ol start="99">
<li>
<p>Think of history as being the sum of two components: an erratic component that consists of unpredictable events that follow no discernible pattern, and a regular component that consists of long-term historical trends. Here we are concerned with the long-term trends.</p>
</li>
@ -429,9 +417,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>Still, one has to use common sense in applying the principles. They are expressed in imprecise language that allows latitude for interpretation, and exceptions to them can be found. So we present these principles not as inviolable laws but as rules of thumb, or guides to thinking, that may provide a partial antidote to naive ideas about the future of society. The principles should be borne constantly in mind, and whenever one reaches a conclusion that conflicts with them one should carefully reexamine ones thinking and retain the conclusion only if one has good, solid reasons for doing so.</p>
</li>
</ol>
<h2 id="industrial-technological-society-cannot-be-reformed">Industrial-Technological Society Cannot Be Reformed <a class="anchor" href="#industrial-technological-society-cannot-be-reformed">
<span class="spanForHeader"></span>
</a></h2><ol start="111">
<h2 id="industrial-technological-society-cannot-be-reformed">Industrial-Technological Society Cannot Be Reformed<a hidden class="anchor" aria-hidden="true" href="#industrial-technological-society-cannot-be-reformed">#</a></h2>
<ol start="111">
<li>
<p>The foregoing principles help to show how hopelessly difficult it would be to reform the industrial system in such a way as to prevent it from progressively narrowing our sphere of freedom. There has been a consistent tendency, going back at least to the Industrial Revolution, for technology to strengthen the system at a high cost in individual freedom and local autonomy. Hence any change designed to protect freedom from technology would be contrary to a fundamental trend in the development of our society. Consequently, such a change either would be a transitory one—soon swamped by the tide of history—or, if large enough to be permanent, would alter the nature of our whole society. This by the first and second principles. Moreover, since society would be altered in a way that could not be predicted in advance (third principle) there would be great risk. Changes large enough to make a lasting difference in favor of freedom would not be initiated because it would be realized that they would gravely disrupt the system. So any attempts at reform would be too timid to be effective. Even if changes large enough to make a lasting difference were initiated, they would be retracted when their disruptive effects became apparent. Thus, permanent changes in favor of freedom could be brought about only by persons prepared to accept radical, dangerous and unpredictable alteration of the entire system. In other words by revolutionaries, not reformers.</p>
</li>
@ -442,9 +429,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>So even on very general grounds it seems highly improbable that any way of changing society could be found that would reconcile freedom with modern technology. In the next few sections we will give more specific reasons for concluding that freedom and technological progress are incompatible.</p>
</li>
</ol>
<h2 id="restriction-of-freedom-is-unavoidable-in-industrial-society">Restriction of Freedom is Unavoidable in Industrial Society <a class="anchor" href="#restriction-of-freedom-is-unavoidable-in-industrial-society">
<span class="spanForHeader"></span>
</a></h2><ol start="114">
<h2 id="restriction-of-freedom-is-unavoidable-in-industrial-society">Restriction of Freedom is Unavoidable in Industrial Society<a hidden class="anchor" aria-hidden="true" href="#restriction-of-freedom-is-unavoidable-in-industrial-society">#</a></h2>
<ol start="114">
<li>
<p>As explained in paragraphs 6567, 7073, modern man is strapped down by a network of rules and regulations, and his fate depends on the actions of persons remote from him whose decisions he cannot influence. This is not accidental or a result of the arbitrariness of arrogant bureaucrats. It is necessary and inevitable in any technologically advanced society. The system HAS TO regulate human behavior closely in order to function. At work, people have to do what they are told to do, when they are told to do it and in the way they are told to do it, otherwise production would be thrown into chaos. Bureaucracies HAVE TO be run according to rigid rules. To allow any substantial personal discretion to lower-level bureaucrats would disrupt the system and lead to charges of unfairness due to differences in the way individual bureaucrats exercised their discretion. It is true that some restrictions on our freedom could be eliminated. but GENERALLY SPEAKING the regulation of our lives by large organizations is necessary for the functioning of industrial-technological society. The result is a sense of powerlessness on the part of the average person. It may be. however. that formal regulations will tend increasingly to be replaced by psychological tools that make us want to do what the system requires of us. (Propaganda,<sup id="fnref1:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup> educational techniques, “mental health” programs, etc.)</p>
</li>
@ -467,9 +453,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>Efforts to make room for a sense of purpose and for autonomy within the system are no better than a joke. For example, one company, instead of having each of its employees assemble only one section of a catalogue, had each assemble a whole catalogue, and this was supposed to give them a sense of purpose and achievement. Some companies have tried to give their employees more autonomy in their work, but for practical reasons this usually can be done only to a very limited extent, and in any case employees are never given autonomy as to ultimate goals—their “autonomous” efforts can never be directed toward goals that they select personally, but only toward their employers goals, such as the survival and growth of the company. Any company would soon go out of business if it permitted its employees to act otherwise. Similarly, in any enterprise within a socialist system, workers must direct their efforts toward the goals of the enterprise, otherwise the enterprise will not serve its purpose as part of the system. Once again, for purely technical reasons it is not possible for most individuals or small groups to have much autonomy in industrial society. Even the small-business owner commonly has only limited autonomy. Apart from the necessity of government regulation, he is restricted by the fact that he must fit into the economic system and conform to its requirements. For instance, when someone develops a new technology, the small-business person often has to use that technology whether he wants to or not, in order to remain competitive.</p>
</li>
</ol>
<h2 id="the-bad-parts-of-technology-cannot-be-separated-from-the-good-parts">The “Bad” Parts of Technology Cannot Be Separated from the “Good” Parts <a class="anchor" href="#the-bad-parts-of-technology-cannot-be-separated-from-the-good-parts">
<span class="spanForHeader"></span>
</a></h2><ol start="121">
<h2 id="the-bad-parts-of-technology-cannot-be-separated-from-the-good-parts">The “Bad” Parts of Technology Cannot Be Separated from the “Good” Parts<a hidden class="anchor" aria-hidden="true" href="#the-bad-parts-of-technology-cannot-be-separated-from-the-good-parts">#</a></h2>
<ol start="121">
<li>
<p>A further reason why industrial society cannot be reformed in favor of freedom is that modern technology is a unified system in which all parts are dependent on one another. You cant get rid of the “bad” parts of technology and retain only the “good” parts. Take modern medicine, for example. Progress in medical science depends on progress in chemistry, physics, biology, computer science and other fields. Advanced medical treatments require expensive, high-tech equipment that can be made available only by a technologically progressive, economically rich society. Clearly you cant have much progress in medicine without the whole technological system and everything that goes with it.</p>
</li>
@ -483,9 +468,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>The usual response to such concerns is to talk about “medical ethics.” But a code of ethics would not serve to protect freedom in the face of medical progress; it would only make matters worse. A code of ethics applicable to genetic engineering would be in effect a means of regulating the genetic constitution of human beings. Somebody (probably the upper middle class, mostly) would decide that such and such applications of genetic engineering were “ethical” and others were not, so that in effect they would be imposing their own values on the genetic constitution of the population at large. Even if a code of ethics were chosen on a completely democratic basis, the majority would be imposing their own values on any minorities who might have a different idea of what constituted an “ethical” use of genetic engineering. The only code of ethics that would truly protect freedom would be one that prohibited ANY genetic engineering of human beings, and you can be sure that no such code will ever be applied in a technological society. No code that reduced genetic engineering to a minor role could stand up for long, because the temptation presented by the immense power of biotechnology would be irresistible, especially since to the majority of people many of its applications will seem obviously and unequivocally good (eliminating physical and mental diseases, giving people the abilities they need to get along in todays world). Inevitably, genetic engineering will be used extensively, but only in ways consistent with the needs of the industrial-technological system.<sup id="fnref:20"><a href="#fn:20" class="footnote-ref" role="doc-noteref">20</a></sup></p>
</li>
</ol>
<h2 id="technology-is-a-more-powerful-social-force-than-the-aspiration-for-freedom">Technology is a More Powerful Social Force than the Aspiration for Freedom <a class="anchor" href="#technology-is-a-more-powerful-social-force-than-the-aspiration-for-freedom">
<span class="spanForHeader"></span>
</a></h2><ol start="125">
<h2 id="technology-is-a-more-powerful-social-force-than-the-aspiration-for-freedom">Technology is a More Powerful Social Force than the Aspiration for Freedom<a hidden class="anchor" aria-hidden="true" href="#technology-is-a-more-powerful-social-force-than-the-aspiration-for-freedom">#</a></h2>
<ol start="125">
<li>
<p>It is not possible to make a LASTING compromise between technology and freedom, because technology is by far the more powerful social force and continually encroaches on freedom through REPEATED compromises. Imagine the case of two neighbors, each of whom at the outset owns the same amount of land, but one of whom is more powerful than the other. The powerful one demands a piece of the others land. The weak one refuses. The powerful one says, “Okay, lets compromise. Give me half of what I asked.” The weak one has little choice but to give in. Some time later the powerful neighbor demands another piece of land, again there is a compromise, and so forth. By forcing a long series of compromises on the weaker man, the powerful one eventually gets all of his land. So it goes in the conflict between technology and freedom.</p>
</li>
@ -520,9 +504,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>In paragraph 125 we used an analogy of a weak neighbor who is left destitute by a strong neighbor who takes all his land by forcing on him a series of compromises. But suppose now that the strong neighbor gets sick, so that he is unable to defend himself. The weak neighbor can force the strong one to give him his land back, or he can kill him. If he lets the strong man survive and only forces him to give the land back, he is a fool, because when the strong man gets well he will again take all the land for himself. The only sensible alternative for the weaker man is to kill the strong one while he has the chance. In the same way, while the industrial system is sick we must destroy it. If we compromise with it and let it recover from its sickness, it will eventually wipe out all of our freedom.</p>
</li>
</ol>
<h2 id="simpler-social-problems-have-proved-intractable">Simpler Social Problems Have Proved Intractable <a class="anchor" href="#simpler-social-problems-have-proved-intractable">
<span class="spanForHeader"></span>
</a></h2><ol start="136">
<h2 id="simpler-social-problems-have-proved-intractable">Simpler Social Problems Have Proved Intractable<a hidden class="anchor" aria-hidden="true" href="#simpler-social-problems-have-proved-intractable">#</a></h2>
<ol start="136">
<li>
<p>If anyone still imagines that it would be possible to reform the system in such a way as to protect freedom from technology, let him consider how clumsily and for the most part unsuccessfully our society has dealt with other social problems that are far more simple and straightforward. Among other things, the system has failed to stop environmental degradation, political corruption, drug trafficking or domestic abuse.</p>
</li>
@ -536,9 +519,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>And note this important difference: It is conceivable that our environmental problems (for example) may some day be settled through a rational, comprehensive plan, but if this happens it will be only because it is in the long-term interest of the system to solve these problems. But it is NOT in the interest of the system to preserve freedom or small-group autonomy. On the contrary, it is in the interest of the system to bring human behavior under control to the greatest possible extent.<sup id="fnref:24"><a href="#fn:24" class="footnote-ref" role="doc-noteref">24</a></sup> Thus, while practical considerations may eventually force the system to take a rational, prudent approach to environmental problems, equally practical considerations will force the system to regulate human behavior ever more closely (preferably by indirect means that will disguise the encroachment on freedom). This isnt just our opinion. Eminent social scientists (e.g., James Q. Wilson) have stressed the importance of “socializing” people more effectively.</p>
</li>
</ol>
<h2 id="revolution-is-easier-than-reform">Revolution is Easier than Reform <a class="anchor" href="#revolution-is-easier-than-reform">
<span class="spanForHeader"></span>
</a></h2><ol start="140">
<h2 id="revolution-is-easier-than-reform">Revolution is Easier than Reform<a hidden class="anchor" aria-hidden="true" href="#revolution-is-easier-than-reform">#</a></h2>
<ol start="140">
<li>
<p>We hope we have convinced the reader that the system cannot be reformed in such a way as to reconcile freedom with technology. The only way out is to dispense with the industrial-technological system altogether. This implies revolution, not necessarily an armed uprising, but certainly a radical and fundamental change in the nature of society.</p>
</li>
@ -549,9 +531,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>Reform is always restrained by the fear of painful consequences if changes go too far. But once a revolutionary fever has taken hold of a society, people are willing to undergo unlimited hardships for the sake of their revolution. This was clearly shown in the French and Russian Revolutions. It may be that in such cases only a minoriry of the population is really committed to the revolution, but this minority is sufficiently large and active so that it becomes the dominant force in society. We will have more to say about revolution in paragraphs 180205).</p>
</li>
</ol>
<h2 id="control-of-human-behavior">Control of Human Behavior <a class="anchor" href="#control-of-human-behavior">
<span class="spanForHeader"></span>
</a></h2><ol start="143">
<h2 id="control-of-human-behavior">Control of Human Behavior<a hidden class="anchor" aria-hidden="true" href="#control-of-human-behavior">#</a></h2>
<ol start="143">
<li>
<p>Since the beginning of civilization, organized societies have had to put pressures on human beings for the sake of the functioning of the social organism. The kinds of pressures vary greatly from one society to another. Some of the pressures are physical (poor diet, excessive labor, environmental pollution), some are psychological (noise, crowding, forcing human behavior into the mold that society requires). In the past, human nature has been approximately constant, or at any rate has varied only within certain bounds. Consequently, societies have been able to push people only up to certain limits. When the limit of human endurance has been passed, things start going wrong: rebellion, or crime, or corruption, or evasion of work, or depression and other mental problems, or an elevated death rate, or a declining birth rate or something else, so that either the society breaks down, or its functioning becomes too inefficient and it is (quickly or gradually, through conquest, attrition or evolution) replaced by some more efficient form of society.<sup id="fnref:25"><a href="#fn:25" class="footnote-ref" role="doc-noteref">25</a></sup></p>
</li>
@ -607,9 +588,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>To those who think that all this sounds like science fiction, we point out that yesterdays science fiction is todays fact. The Industrial Revolution has radically altered mans environment and way of life, and it is only to be expected that as technology is increasingly applied to the human body and mind, man himself will be altered as radically as his environment and way of life have been.</p>
</li>
</ol>
<h2 id="human-race-at-a-crossroads">Human Race at a Crossroads <a class="anchor" href="#human-race-at-a-crossroads">
<span class="spanForHeader"></span>
</a></h2><ol start="161">
<h2 id="human-race-at-a-crossroads">Human Race at a Crossroads<a hidden class="anchor" aria-hidden="true" href="#human-race-at-a-crossroads">#</a></h2>
<ol start="161">
<li>
<p>But we have gotten ahead of our story. It is one thing to develop in the laboratory a series of psychological or biological techniques for manipulating human behavior and quite another to integrate these techniques into a functioning social system. The latter problem is the more difficult of the two. For example, while the techniques of educational psychology doubtless work quite well in the “lab schools” where they are developed, it is not necessarily easy to apply them effectively throughout our educational system. We all know what many of our schools are like. The teachers are too busy taking knives and guns away from the kids to subject them to the latest techniques for making them into computer nerds. Thus, in spite of all its technical advances relating to human behavior, the system to date has not been impressively successful in controlling human beings. The people whose behavior is fairly well under the control of the system are those of the type that might be called “bourgeois.” But there are growing numbers of people who in one way or another are rebels against the system: welfare leeches, youth gangs, cultists, satanists, Nazis, radical environmentalists, militia-men, etc.</p>
</li>
@ -629,9 +609,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>Therefore two tasks confront those who hate the servitude to which the industrial system is reducing the human race. First, we must work to heighten the social stresses within the system so as to increase the likelihood that it will break down or be weakened sufficiently so that a revolution against it becomes possible. Second, it is necessary to develop and propagate an ideology that opposes technology and the industrial system. Such an ideology can become the basis for a revolution against industrial society if and when the system becomes sufficiently weakened. And such an ideology will help to assure that, if and when industrial society breaks down, its remnants will be smashed beyond repair, so that the system cannot be reconstituted. The factories should be destroyed, technical books burned, etc.</p>
</li>
</ol>
<h2 id="human-suffering">Human Suffering <a class="anchor" href="#human-suffering">
<span class="spanForHeader"></span>
</a></h2><ol start="167">
<h2 id="human-suffering">Human Suffering<a hidden class="anchor" aria-hidden="true" href="#human-suffering">#</a></h2>
<ol start="167">
<li>
<p>The industrial system will not break down purely as a result of revolutionary action. It will not be vulnerable to revolutionary attack unless its own internal problems of development lead it into very serious difficulties. So if the system breaks down it will do so either spontaneously, or through a process that is in part spontaneous but helped along by revolutionaries. If the breakdown is sudden, many people will die, since the worlds population has become so overblown that it cannot even feed itself any longer without advanced technology. Even if the breakdown is gradual enough so that reduction of the population can occur more through lowering of the birth rate than through elevation of the death rate, the process of de-industrialization probably will be very chaotic and involve much suffering. It is naive to think it likely that technology can be phased out in a smoothly managed, orderly way, especially since the technophiles will fight stubbornly at every step. Is it therefore cruel to work for the breakdown of the system? Maybe, but maybe not. In the first place, revolutionaries will not be able to break the system down unless it is already in enough trouble so that there would be a good chance of its eventually breaking down by itself anyway; and the bigger the system grows, the more disastrous the consequences of its breakdown will be; so it may be that revolutionaries, by hastening the onset of the breakdown, will be reducing the extent of the disaster.</p>
</li>
@ -645,9 +624,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>“Oh!” say the technophiles, “Science is going to fix all that! We will conquer famine, eliminate psychological suffering, make everybody healthy and happy!” Yeah, sure. Thats what they said 200 years ago. The Industrial Revolution was supposed to eliminate poverty, make everybody happy, etc. The actual result has been quite different. The technophiles are hopelessly naive (or self-deceiving) in their understanding of social problems. They are unaware of (or choose to ignore) the fact that when large changes, even seemingly beneficial ones, are introduced into a society, they lead to a long sequence of other changes, most of which are impossible to predict (paragraph 103). In the mean time there will be great suffering. So it is not at all clear that the survival of industrial society would involve less suffering than the breakdown of that society would. Technology has gotten the human race into a fix from which there is not likely to be any easy escape.</p>
</li>
</ol>
<h2 id="the-future">The Future <a class="anchor" href="#the-future">
<span class="spanForHeader"></span>
</a></h2><ol start="171">
<h2 id="the-future">The Future<a hidden class="anchor" aria-hidden="true" href="#the-future">#</a></h2>
<ol start="171">
<li>
<p>But suppose now that industrial society does survive the next several decades and that the bugs do eventually get worked out of the system, so that it functions smoothly. What kind of system will it be? We will consider several possibilities.</p>
</li>
@ -676,9 +654,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>It would be better to dump the whole stinking system and take the consequences.</p>
</li>
</ol>
<h2 id="strategy">Strategy <a class="anchor" href="#strategy">
<span class="spanForHeader"></span>
</a></h2><ol start="180">
<h2 id="strategy">Strategy<a hidden class="anchor" aria-hidden="true" href="#strategy">#</a></h2>
<ol start="180">
<li>
<p>The technophiles are taking us all on an utterly reckless ride into the unknown. Many people understand something of what technological progress is doing to us, yet take a passive attitude toward it because they think it is inevitable. But we (FC) dont think it is inevitable. We think it can be stopped, and we will give here some indications of how to go about stopping it.</p>
</li>
@ -761,9 +738,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>With regard to revolutionary strategy, the only points on which we absolutely insist are that the single, overriding goal must be the elimination of modern technology, and that no other goal can be allowed to compete with this one. For the rest, revolutionaries should take an empirical approach. If experience indicates that some of the recommendations made in the foregoing paragraphs are not going to give good results, then those recommendations should be discarded.</p>
</li>
</ol>
<h2 id="two-kinds-of-technology">Two Kinds of Technology <a class="anchor" href="#two-kinds-of-technology">
<span class="spanForHeader"></span>
</a></h2><ol start="207">
<h2 id="two-kinds-of-technology">Two Kinds of Technology<a hidden class="anchor" aria-hidden="true" href="#two-kinds-of-technology">#</a></h2>
<ol start="207">
<li>
<p>An argument likely to be raised against our proposed revolution is that it is bound to fail, because (it is claimed) throughout history technology has always progressed, never regressed, hence technological regression is impossible. But this claim is false.</p>
</li>
@ -783,9 +759,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>Would society EVENTUALLY develop again toward an industrial-technological form? Maybe, but there is no use in worrying about it, since we cant predict or control events 500 or 1,000 years in the future. Those problems must be dealt with by the people who will live at that time.</p>
</li>
</ol>
<h2 id="the-danger-of-leftism">The Danger of Leftism <a class="anchor" href="#the-danger-of-leftism">
<span class="spanForHeader"></span>
</a></h2><ol start="213">
<h2 id="the-danger-of-leftism">The Danger of Leftism<a hidden class="anchor" aria-hidden="true" href="#the-danger-of-leftism">#</a></h2>
<ol start="213">
<li>
<p>Because of their need for rebellion and for membership in a movement, leftists or persons of similar psychological type often are attracted to a rebellious or activist movement whose goals and membership are not initially leftist. The resulting influx of leftish types can easily turn a non-leftist movement into a leftist one, so that leftist goals replace or distort the original goals of the movement.</p>
</li>
@ -841,9 +816,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>The more dangerous leftists, that is, those who are most power-hungry, are often characterized by arrogance or by a dogmatic approach to ideology. However, the most dangerous leftists of all may be certain oversocialized types who avoid irritating displays of aggressiveness and refrain from advertising their leftism, but work quietly and unobtrusively to promote collectivist values, “enlightened” psychological techniques for socializing children, dependence of the individual on the system, and so forth. These crypto-leftists (as we may call them) approximate certain bourgeois types as far as practical action is concerned, but differ from them in psychology, ideology and motivation. The ordinary bourgeois tries to bring people under control of the system in order to protect his way of life, or he does so simply because his attitudes are conventional. The crypto-leftist tries to bring people under control of the system because he is a True Believer in a collectivistic ideology. The crypto-leftist is differentiated from the average leftist of the oversocialized type by the fact that his rebellious impulse is weaker and he is more securely socialized. He is differentiated from the ordinary well-socialized bourgeois by the fact that there is some deep lack within him that makes it necessary for him to devote himself to a cause and immerse himself in a collectivity. And maybe his (well-sublimated) drive for power is stronger than that of the average bourgeois.</p>
</li>
</ol>
<h2 id="final-note">Final Note <a class="anchor" href="#final-note">
<span class="spanForHeader"></span>
</a></h2><ol start="231">
<h2 id="final-note">Final Note<a hidden class="anchor" aria-hidden="true" href="#final-note">#</a></h2>
<ol start="231">
<li>
<p>Throughout this article weve made imprecise statements and statements that ought to have had all sorts of qualifications and reservations attached to them; and some of our statements may be flatly false. Lack of sufficient information and the need for brevity made it impossible for us to formulate our assertions more precisely or add all the necessary qualifications. And of course in a discussion of this kind one must rely heavily on intuitive judgment, and that can sometimes be wrong. So we dont claim that this article expresses more than a crude approximation to the truth.</p>
</li>
@ -968,6 +942,7 @@ Table Of Contents:<nav id="TableOfContents">
</ol>
</div>
</div>
<div id="nextprev">
<a href="/blog/recover-lost-anki-streak/"><div id="prevart">Previous:<br>Recover Lost Anki Streak</div></a>

View file

@ -17,7 +17,8 @@
<header><h1 id="tag_Ship of Fools">Ship of Fools</h1></header>
<article>
<p>Once upon a time, the captain and the mates of a ship grew so vain of their seamanship, so full of hubris and so impressed with themselves, that they went mad. They turned the ship north and sailed until they met with icebergs and dangerous floes, and they kept sailing north into more and more perilous waters, solely in order to give themselves opportunities to perform ever-more-brilliant feats of seamanship.</p>
<div class="post-content"><p>Once upon a time, the captain and the mates of a ship grew so vain of their seamanship, so full of hubris and so impressed with themselves, that they went mad. They turned the ship north and sailed until they met with icebergs and dangerous floes, and they kept sailing north into more and more perilous waters, solely in order to give themselves opportunities to perform ever-more-brilliant feats of seamanship.</p>
<p>As the ship reached higher and higher latitudes, the passengers and crew became increasingly uncomfortable. They began quarreling among themselves and complaining of the conditions under which they lived.</p>
<p>“Shiver me timbers,” said an able seaman, “if this aint the worst voyage Ive ever been on. The deck is slick with ice; when Im on lookout the wind cuts through me jacket like a knife; every time I reef the foresail I blamed-near freeze me fingers; and all I get for it is a miserable five shillings a month!”</p>
<p>“You think you have it bad!” said a lady passenger. “I cant sleep at night for the cold. Ladies on this ship dont get as many blankets as the men. It isnt fair!”</p>
@ -65,6 +66,7 @@
<p><a href="/library">Back to the Library</a> - <a href="/library/ted-kaczynski">More from Ted Kaczynski</a></p>
</div>
<hr>
</div>
<div id="nextprev">
<a href="/library/ted-kaczynski/the-long-term-outcome-of-geo-engineering/"><div id="prevart">Previous:<br>The Long Term Outcome of Geo Engineering</div></a>

View file

@ -18,7 +18,8 @@ Nations have a strong incentive to avoid using nuclear weapons, at least on any
<header><h1 id="tag_The Long Term Outcome of Geo Engineering">The Long Term Outcome of Geo Engineering</h1></header>
<article>
<p>In 2009, a correspondent asked me whether I thought nuclear weapons were the most dangerous aspect of modern technology. What follows is my reply, heavily rewritten. The most dangerous aspect of modern technology probably is not nuclear weapons. It could plausibly be argued that the remedies for global warming that are likely to be adopted constitute the most dangerous aspect of modern technology.</p>
<div class="post-content"><p>In 2009, a correspondent asked me whether I thought nuclear weapons were the most dangerous aspect of modern technology. What follows is my reply, heavily rewritten. The most dangerous aspect of modern technology probably is not nuclear weapons. It could plausibly be argued that the remedies for global warming that are likely to be adopted constitute the most dangerous aspect of modern technology.</p>
<p>Nations have a strong incentive to avoid using nuclear weapons, at least on any large scale, because such use would probably be suicidal. This doesnt mean that nuclear war can never happen. On the contrary, the risk of it is very real. But a major nuclear war at least is not a strong probability for the foreseeable future.</p>
<p>On the other hand, it is virtually certain that nations will fail to reduce their emissions of carbon dioxide sufficiently and in time to prevent global warming from becoming disastrous. Instead, global warming will be kept in check through “geo-engineering.” This means that the Earths climate will be artificially managed to keep it within acceptable limits. Of the many tools that have been proposed for management of the Earths climate, three examples may be mentioned here:</p>
<ol>
@ -41,6 +42,7 @@ Nations have a strong incentive to avoid using nuclear weapons, at least on any
<p><a href="/library">Back to the Library</a> - <a href="/library/ted-kaczynski">More from Ted Kaczynski</a></p>
</div>
<hr>
</div>
<div id="nextprev">
<a href="/library/ted-kaczynski/ecofascism-an-aberrant-branch-of-leftism/"><div id="prevart">Previous:<br>Ecofascism an Aberrant Branch of Leftism</div></a>

View file

@ -20,7 +20,8 @@ The necessary preconditions for revolution2 are these: There must be a strong de
<header><h1 id="tag_The Road to Revolution">The Road to Revolution</h1></header>
<article>
<blockquote>
<div class="post-content"><blockquote>
<p>The revolution is not a dinner party…</p>
</blockquote>
<blockquote>
@ -70,6 +71,7 @@ The necessary preconditions for revolution2 are these: There must be a strong de
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/ted-kaczynski/the-truth-about-primitive-life-a-critique-of-anarchoprimitivism/"><div id="prevart">Previous:<br>The Truth About Primitive Life a Critique of Anarchoprimitivism</div></a>

View file

@ -17,7 +17,8 @@
<header><h1 id="tag_When Non-Violence Is Suicide">When Non-Violence Is Suicide</h1></header>
<article>
<p>Its the autumn of 2025 AD. The technoindustrial system fell apart a year ago, but you and your friends are doing alright. Your garden has flourished this past summer and in your cabin you have a good supply of dried vegetables, dried beans and other foodstuffs to get you through the coming winter. Just now youre harvesting your potatoes. With your spades, you and your friends uproot one potato after another and pick the plump tubers out of the soil.</p>
<div class="post-content"><p>Its the autumn of 2025 AD. The technoindustrial system fell apart a year ago, but you and your friends are doing alright. Your garden has flourished this past summer and in your cabin you have a good supply of dried vegetables, dried beans and other foodstuffs to get you through the coming winter. Just now youre harvesting your potatoes. With your spades, you and your friends uproot one potato after another and pick the plump tubers out of the soil.</p>
<p>Suddenly the friend at your elbow nudges you and you look up. Uh-oh. A gang of mean-looking men is coming up your trail. They have guns. They look like trouble, but you stand firm. The leader of the gang walks up to you and says,</p>
<p>“Nice looking potatoes you got there.”</p>
<p>“Yeah,” you reply. “Theyre nice-looking potatoes.”</p>
@ -37,6 +38,7 @@
<p><a href="/library">Back to the Library</a> - <a href="/library/ted-kaczynski">More from Ted Kaczynski</a></p>
</div>
<hr>
</div>
<div id="nextprev">
<a href="/library/ted-kaczynski/why-the-technological-system-will-destroy-itself/"><div id="prevart">Previous:<br>Why the Technological System Will Destroy Itself</div></a>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="I. Our discussion deals with self-propagating systems. By a self-propagating system (self-prop system for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.
<meta name="description" content="I. Our discussion deals with self-propagating systems. By a self-propagating system (self-prop system for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.
The most obvious examples of self-propagating systems are biological organisms."/>
<meta name="keywords" content="Ted Kaczynski, library">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -23,9 +23,9 @@ Table Of Contents:<nav id="TableOfContents">
<li><a href="#i">I.</a></li>
<li><a href="#ii">II.</a></li>
</ul>
</nav><h2 id="i">I. <a class="anchor" href="#i">
<span class="spanForHeader"></span>
</a></h2><p>Our discussion deals with self-propagating systems. By a self-propagating system (self-prop system for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p>
</nav>
<div class="post-content"><h2 id="i">I.<a hidden class="anchor" aria-hidden="true" href="#i">#</a></h2>
<p>Our discussion deals with self-propagating systems. By a self-propagating system (self-prop system for short) we mean a system that tends to promote its own survival and propagation. A system may propagate itself in either or both of two ways: The system may indefinitely increase its own size and/or power, or it may give rise to new systems that possess some of its own traits.</p>
<p>The most obvious examples of self-propagating systems are biological organisms. Groups of biological organisms can also constitute self-prop systems; e.g., wolf packs and hives of honeybees. Particularly important for our purposes are self-prop systems that consist of groups of human beings. For example, nations, corporations, labor unions, and political parties; also some groups that are not clearly delimited and lack formal organization, such as schools of thought, social networks, and subcultures. Just as wolf packs and beehives are self-propagating without any conscious intention on the part of wolves or bees to propagate their packs or their hives, there is no reason why a human group cannot be self-propagating independently of any intention on the part of the individuals who comprise the group.</p>
<p>If A and B are systems of any kind (self-propagating or not), and if A is a functioning component of B, then we will call A a subsystem of B, and we will call B a supersystem of A. For example, in human hunting-and-gathering societies, individuals are members of bands, and bands often are organized into tribes. Individuals, bands, and tribes are all self-prop systems. The individual is a subsystem of the band, the band is a subsystem of the tribe, the tribe is a supersystem of each band that belongs to it, and each band is a supersystem of every individual who belongs to that band. It is also true that each individual is a subsystem of the tribe and that the tribe is a supersystem of every individual who belongs to a band that belongs to the tribe.</p>
<p>The principle of natural selection is operative not only in biology, but in any environment in which self-propagating systems are present. The principle can be stated roughly as follows:</p>
@ -78,9 +78,8 @@ Table Of Contents:<nav id="TableOfContents">
<p>The theory weve outline here provides a plausible explanation for the so-called “Fermi Paradox”. It is believed that there should be numerous planets on which technologically advanced civilizations have evolved, and which are not so remote from us that we could not by this time have detected the radio transmissions of those civilizations. The Fermi Paradox consists in the fact that our astronomers have never been able to detect any radio signals that seem to have originated form an intelligent extraterrestrial source.<sup id="fnref:13"><a href="#fn:13" class="footnote-ref" role="doc-noteref">13</a></sup></p>
<p>According to Ray Kurzweil, one common explanation of the Fermi Paradox is “that a civilization may obliterate itself once it reaches radio capability. This explanation might be acceptable if we were talking about only a few such civilizations, but [if such civilizations have been numerous], it is not credible to believe that every one of them destroyed itself.”<sup id="fnref:14"><a href="#fn:14" class="footnote-ref" role="doc-noteref">14</a></sup></p>
<p>Kurzweil would be right if the self-destruction of a civilization were merely a matter of chance. But there is nothing implausible about the foregoing explanation of the Fermi Paradox if there is a process common to all technologically advanced civilizations that consistently leads them to self-destruction. In this essay we have argued that there is such a process.</p>
<h2 id="ii">II. <a class="anchor" href="#ii">
<span class="spanForHeader"></span>
</a></h2><p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. Thats why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earths resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p>
<h2 id="ii">II.<a hidden class="anchor" aria-hidden="true" href="#ii">#</a></h2>
<p>Our discussion of self-propagating systems merely describes in general and abstract terms what we see going on all around us in concrete form: Organizations, movements, ideologies are locked in an unremitting struggle for power. Those that fail to compete successfully are eliminated or subjugated.<sup id="fnref:15"><a href="#fn:15" class="footnote-ref" role="doc-noteref">15</a></sup> The struggle is almost exclusively for power in the short term; the competitors pay scant attention even to their own long-term survival,<sup id="fnref:16"><a href="#fn:16" class="footnote-ref" role="doc-noteref">16</a></sup> let alone to the welfare of the human race or of the biosphere. Thats why nuclear weapons have not been banned, emissions of carbon dioxide have not been reduced to a safe level, the Earths resources are being exploited at an utterly reckless rate, and no limitation has been placed on development of powerful but dangerous technologies.</p>
<p>The purpose of describing the process in general and abstract terms, as weve done here, is to show that what is happening to our world is not accidental; it is not the result of some chance conjunction of historical circumstances or of some flaw of character peculiar to human beings. Given the nature of self-propagating systems in general, the destructive process that we see today is made inevitable by a combination of two factors: the colossal power of modern technology and the availability of rapid transportation and communication between any two parts of the world.</p>
<p>Recognition of this may help us to avoid wasting time on naïve efforts to solve our current problems. For example, on efforts to teach people to conserve energy and resources. Such efforts accomplish nothing whatever.</p>
<p>It seems amazing that those who advocate energy conservation havent noticed what happens: As soon as some energy is freed up by conservation, the technological world-system gobbles it up and demands more. No matter how much energy is provided, the system always expands rapidly until it is using all available energy, and then it demands still more. The same is true of other resources. The technological world-system infallibly expands until it reaches a limit imposed by an insufficiency of resources, and then it tries to push beyond that limit regardless of consequences.</p>
@ -144,6 +143,7 @@ Table Of Contents:<nav id="TableOfContents">
</ol>
</div>
</div>
<div id="nextprev">
<a href="/library/ted-kaczynski/industrial-society-and-its-future/"><div id="prevart">Previous:<br>Industrial Society and Its Future </div></a>

View file

@ -206,3 +206,22 @@ ol li::marker{
ul li::marker{
color: var(--strong)
}
h1:hover .anchor,
h2:hover .anchor,
h3:hover .anchor,
h4:hover .anchor,
h5:hover .anchor,
h6:hover .anchor {
display: inline-flex;
color: var(--links);
margin-inline-start: 8px;
font-weight: 500;
user-select: none;
}
.post-content a{
box-shadow: 0 1px 0;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
}

File diff suppressed because one or more lines are too long

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content=" Click to download the original pdf Archive of the original google sites webpage "/>
<meta name="description" content=" Click to download the original pdf Archive of the original google sites webpage "/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
@ -16,11 +16,9 @@
<header><h1 id="tag_Hackbook EasyPeasy - free yourself from pornography">Hackbook EasyPeasy - Free Yourself From Pornography</h1></header>
<article>
<div style="text-align: center;">
<h2 id="imgnew_turninggif-a-hrefhackbookhackbookpdfclick-to-download-the-original-pdfa-imgnew_turninggif"><img src="/img/new_turning.gif" alt=""> <a href="/hackbook/hackbook.pdf">Click to download the original pdf</a> <img src="/img/new_turning.gif" alt=""> <a class="anchor" href="#imgnew_turninggif-a-hrefhackbookhackbookpdfclick-to-download-the-original-pdfa-imgnew_turninggif">
<span class="spanForHeader"></span>
</a></h2><h2 id="imgnew_turninggif-a-target_blank-hrefhttpswebarchiveorgweb20201014165025httpssitesgooglecomsitehackbookeasypeasyarchive-of-the-original-google-sites-webpagea-imgnew_turninggif"><img src="/img/new_turning.gif" alt=""> <a target="_blank" href="https://web.archive.org/web/20201014165025/https://sites.google.com/site/hackbookeasypeasy/">Archive of the original google sites webpage</a> <img src="/img/new_turning.gif" alt=""> <a class="anchor" href="#imgnew_turninggif-a-target_blank-hrefhttpswebarchiveorgweb20201014165025httpssitesgooglecomsitehackbookeasypeasyarchive-of-the-original-google-sites-webpagea-imgnew_turninggif">
<span class="spanForHeader"></span>
</a></h2></div>
<h2 id="imgnew_turninggif-a-hrefhackbookhackbookpdfclick-to-download-the-original-pdfa-imgnew_turninggif"><img src="/img/new_turning.gif" alt=""> <a href="/hackbook/hackbook.pdf">Click to download the original pdf</a> <img src="/img/new_turning.gif" alt=""></h2>
<h2 id="imgnew_turninggif-a-target_blank-hrefhttpswebarchiveorgweb20201014165025httpssitesgooglecomsitehackbookeasypeasyarchive-of-the-original-google-sites-webpagea-imgnew_turninggif"><img src="/img/new_turning.gif" alt=""> <a target="_blank" href="https://web.archive.org/web/20201014165025/https://sites.google.com/site/hackbookeasypeasy/">Archive of the original google sites webpage</a> <img src="/img/new_turning.gif" alt=""></h2>
</div>
<ul>
<li><time datetime="2022-12-19T22:01:36&#43;02:00">2022 Dec 19</time> &ndash; <a href="/library/hackbook/00-00-hackbookeasypeasy/">00-00 HackBook EasyPeasy</a></li>
<li><time datetime="2022-12-19T22:14:52&#43;02:00">2022 Dec 19</time> &ndash; <a href="/library/hackbook/01-01-preface/">01-01 Preface</a></li>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -6,9 +6,9 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Obligatory Hello World! trying to see which hugo theme i like best
<meta name="description" content="Obligatory Hello World! trying to see which hugo theme i like best
had some issues with papermod and their css not working so for now i&rsquo;ll use lugo
stuff i like touching grass and nature in general (wannabe farmer) にっぽんese &lsquo;ate manga &lsquo;ate anime luv vinnies and jp youtube simple as i think the css looks pretty alright
stuff i like touching grass and nature in general (wannabe farmer) にっぽんese &lsquo;ate manga &lsquo;ate anime luv vinnies and jp youtube simple as i think the css looks pretty alright
im adding this bit in just to check if the scuffed shell script i made actually works (it&rsquo;s supposed to cd into the ."/>
<meta name="keywords" content="updates">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -20,13 +20,12 @@ im adding this bit in just to check if the scuffed shell script i made actually
<header><h1 id="tag_Hello world">Hello world</h1></header>
<article>
<h2 id="obligatory-hello-world">Obligatory Hello World! <a class="anchor" href="#obligatory-hello-world">
<span class="spanForHeader"></span>
</a></h2><p>trying to see which hugo theme i like best</p>
<div class="post-content"><h2 id="obligatory-hello-world">Obligatory Hello World!<a hidden class="anchor" aria-hidden="true" href="#obligatory-hello-world">#</a></h2>
<p>trying to see which hugo theme i like best</p>
<p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p>
<h3 id="stuff-i-like">stuff i like <a class="anchor" href="#stuff-i-like">
<span class="spanForHeader"></span>
</a></h3><ul>
<h3 id="stuff-i-like">stuff i like<a hidden class="anchor" aria-hidden="true" href="#stuff-i-like">#</a></h3>
<ul>
<li>touching grass and nature in general (wannabe farmer)</li>
<li>にっぽんese
<ul>
@ -39,6 +38,7 @@ im adding this bit in just to check if the scuffed shell script i made actually
<p>i think the css looks pretty alright</p>
<p>im adding this bit in just to check if the scuffed shell script i made actually works (it&rsquo;s supposed to cd into the .git where hugo is, rsync the /public/ folder into var/www [where my site is])</p>
</div>
<div id="nextprev"><a href="/blog/pluralization-issues/"><div id="nextart">Next:<br>Pluralization issues (Blogs instead of Blog)</div></a>
</div>

File diff suppressed because one or more lines are too long

View file

@ -20,7 +20,8 @@ I did this by setting the light theme to be by default for more readability:
<header><h1 id="tag_Updated the Css Again (prefers-color-scheme)">Updated the Css Again (prefers-color-scheme)</h1></header>
<article>
<p>I actually updated the css once more.</p>
<div class="post-content"><p>I actually updated the css once more.</p>
<p>If you&rsquo;re using a dark theme in your browser, the website will follow suit and change to darker colors.</p>
<p>I did this by setting the light theme to be by default for more readability:</p>
<div class="highlight"><pre tabindex="0" style="color:#b0c4de;background-color:#282c34;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-css" data-lang="css"><span style="display:flex;"><span>:<span style="color:#e5c07b">root</span> {
@ -45,6 +46,7 @@ I did this by setting the light theme to be by default for more readability:
</span></span><span style="display:flex;"><span> <span style="color:#c678dd">color</span>: <span style="color:#00b1f7">var</span>(<span style="color:#c7bf54">--</span><span style="color:#c1abea">fg</span>);
</span></span><span style="display:flex;"><span>}
</span></span></code></pre></div>
</div>
<div id="nextprev">
<a href="/library/ted-kaczynski/ship-of-fools/"><div id="prevart">Previous:<br>Ship of Fools</div></a>

View file

@ -17,8 +17,10 @@
<header><h1 id="tag_Yoinked some Css and updated the site">Yoinked some Css and updated the site</h1></header>
<article>
<p>yoinked lukes css and updated the site, its basically his colors for the headers and my cyan anchor links.. very pretty much wow</p>
<div class="post-content"><p>yoinked lukes css and updated the site, its basically his colors for the headers and my cyan anchor links.. very pretty much wow</p>
</div>
<div id="nextprev">
<a href="/library/hackbook/fin/"><div id="prevart">Previous:<br>Fin</div></a>

View file

@ -206,3 +206,22 @@ ol li::marker{
ul li::marker{
color: var(--strong)
}
h1:hover .anchor,
h2:hover .anchor,
h3:hover .anchor,
h4:hover .anchor,
h5:hover .anchor,
h6:hover .anchor {
display: inline-flex;
color: var(--links);
margin-inline-start: 8px;
font-weight: 500;
user-select: none;
}
.post-content a{
box-shadow: 0 1px 0;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
}

View file

@ -21,7 +21,13 @@
<article>
{{ block "main" . }}
{{ if .Params.toc }}Table Of Contents:{{ .TableOfContents }}{{end -}}
{{ .Content }}
{{- if .Content }}
<div class="post-content">
{{- if not (.Param "disableAnchoredHeadings") }}
{{- partial "anchored_headings.html" .Content -}}
{{- else }}{{ .Content }}{{ end }}
</div>
{{- end }}
{{ end }}
{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}

View file

@ -0,0 +1 @@
{{ . | replaceRE "(<h[1-6] id=\"([^\"]+)\".+)(</h[1-6]+>)" "${1}<a hidden class=\"anchor\" aria-hidden=\"true\" href=\"#${2}\">#</a>${3}" | safeHTML }}