friendica.eskimo.com

Nanook friendica

Canada Anti-Free Speech Law

<!DOCTYPE html >
<html itemscope itemtype="http://schema.org/Blog" lang="en-us">
<head>
<title>Friendica Social Network | Parseurl</title>
<script>var baseurl="https://friendica.eskimo.com";</script>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<base href="https://friendica.eskimo.com/" />
<meta name="generator" content="Friendica 2024.06-dev" />
<link rel="stylesheet" href="view/global.css?v=2024.06-dev" type="text/css" media="all" />
<link rel="stylesheet" href="view/asset/jquery-colorbox/example5/colorbox.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="view/asset/jgrowl/jquery.jgrowl.min.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="view/asset/jquery-datetimepicker/build/jquery.datetimepicker.min.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="view/asset/perfect-scrollbar/dist/css/perfect-scrollbar.min.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="view/js/fancybox/jquery.fancybox.min.css?v=2024.06-dev" type="text/css" media="screen" />

<link rel="stylesheet" href="addon/cookienotice/cookienotice.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="addon/pageheader/pageheader.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="view/theme/vier/style.pcss?puid=1&v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="addon/highlightjs/asset/styles/default.css?v=2024.06-dev" type="text/css" media="screen" />

<link rel="icon" href="images/friendica.svg" />
<link rel="apple-touch-icon" href="images/friendica-192.png"/>

<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="manifest" href="https://friendica.eskimo.com/manifest" />
<script>
// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
// Prevents links to switch to Safari in a home screen app - see gist.github.com/irae/1042167
(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(chref=d.href).replace("https://friendica.eskimo.com/", "").replace(e.href,"").indexOf("#")&&(!/^[a-z\+\.\-]+:/i.test(chref)||chref.indexOf(e.protocol+"//"+e.host)===0)&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone");
// |license-end
</script>

<link rel="search"
href="https://friendica.eskimo.com/opensearch"
type="application/opensearchdescription+xml"
title="Search in Friendica" />

<!--[if IE]>
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js?v=2024.06-dev"></script>
<![endif]-->
<script type="text/javascript" src="view/js/modernizr.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/jquery/dist/jquery.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/js/jquery.textinputs.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/textcomplete/dist/textcomplete.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/js/autocomplete.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/jquery-colorbox/jquery.colorbox-min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/jgrowl/jquery.jgrowl.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/jquery-datetimepicker/build/jquery.datetimepicker.full.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/perfect-scrollbar/dist/js/perfect-scrollbar.jquery.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/imagesloaded/imagesloaded.pkgd.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/base64/base64.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/dompurify/dist/purify.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/js/fancybox/jquery.fancybox.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/js/fancybox/fancybox.config.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/js/vanillaEmojiPicker/vanillaEmojiPicker.min.js?v=2024.06-dev"></script>
<script>
window.onload = function(){
new EmojiPicker({
trigger: [
{
selector: '.emojis-post',
insertInto: ['#comment-edit-text-0', '#profile-jot-text']
},
{
selector: '.emojis',
insertInto: ['.comment-edit-text-full']
}
],
closeButton: true
});
};
</script>
<script type="text/javascript">
const updateInterval = 10000;
const localUser = 1;
</script>
<script type="text/javascript" src="view/js/main.js?v=2024.06-dev"></script>
<script>
// Lifted from css-tricks.com/snippets/jquery…
jQuery.fn.putCursorAtEnd = function() {
return this.each(function() {
// Cache references
var $el = $(this),
el = this;

// Only focus if input isn't already
if (!$el.is(":focus")) {
$el.focus();
}

// If this function exists... (IE 9+)
if (el.setSelectionRange) {
// Double the length because Opera is inconsistent about whether a carriage return is one character or two.
var len = $el.val().length * 2;

// Timeout seems to be required for Blink
setTimeout(function() {
el.setSelectionRange(len, len);
}, 1);
} else {
// As a fallback, replace the contents with itself
// Doesn't work in Chrome, but Chrome supports setSelectionRange
$el.val($el.val());
}

// Scroll to the bottom, in case we're in a tall textarea
// (Necessary for Firefox and Chrome)
this.scrollTop = 999999;
});
};

function confirmDelete() { return confirm(""); }
function commentExpand(id) {
$("#comment-edit-text-" + id).putCursorAtEnd();
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
$("#mod-cmnt-wrap-" + id).show();
openMenu("comment-edit-submit-wrapper-" + id);
return true;
}
function commentOpen(obj,id) {
if (obj.value == "") {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
$("#mod-cmnt-wrap-" + id).show();
openMenu("comment-edit-submit-wrapper-" + id);
return true;
}
return false;
}
function commentClose(obj,id) {
if (obj.value == "") {
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
$("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
$("#mod-cmnt-wrap-" + id).hide();
closeMenu("comment-edit-submit-wrapper-" + id);
return true;
}
return false;
}

function commentInsert(obj,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if (tmpStr == "") {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
}
var ins = $(obj).html();
ins = ins.replace("<","<");
ins = ins.replace(">",">");
ins = ins.replace("&","&");
ins = ins.replace(""","\"");
$("#comment-edit-text-" + id).val(tmpStr + ins);
}

function showHideCommentBox(id) {
if ($("#comment-edit-form-" + id).is(":visible")) {
$("#comment-edit-form-" + id).hide();
} else {
$("#comment-edit-form-" + id).show();
}
}
</script>
<link rel='stylesheet' type='text/css' href='view/theme/vier/narrow.css' media='screen and (max-width: 1100px)' />
<script type="text/javascript">
function showThread(id) {
$("#collapsed-comments-" + id).show()
$("#collapsed-comments-" + id + " .collapsed-comments").show()
}
function hideThread(id) {
$("#collapsed-comments-" + id).hide()
$("#collapsed-comments-" + id + " .collapsed-comments").hide()
}

function cmtBbOpen(id) {
$("#comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$("#comment-edit-bb-" + id).hide();
}
</script><script>
$(document).ready(function() {
$("#nav-search-text").search autocomplete(baseurl + '/search/acl');
});
</script>
</head>
<body>
<div id="panel" style="display: none;"></div><header>

<div id="site-location">nanook@friendica.eskimo.com</div>
<div id="banner"><a href="https://friendi.ca"><img id="logo-img" width="32" height="32" src="images/friendica.svg" alt="logo" /></a><span id="logo-text"><a href="https://friendi.ca">Friendica</a></span></div>
</header>
<nav role="menubar">
<ul>
<li class="mobile-aside-toggle" style="display:none;">
<a href="#">
<i class="icons icon-reorder"></i>
</a>
</li>
<li role="menuitem" id="nav-home-link" class="nav-menu ">
<a accesskey="p" class="" href="profile/nanook" title="My posts and conversations">
<span class="desktop-view">Home</span>
<i class="icon s22 icon-home mobile-view"><span class="sr-only">Home</span></i>
<span id="home-update" class="nav-notification"></span>
</a>
</li>
<li role="menuitem" id="nav-network-link" class="nav-menu ">
<a accesskey="n" class="" href="network" title="My friends039; conversations">
<span class="desktop-view">Network</span>
<i class="icon s22 icon-th mobile-view"><span class="sr-only">Network</span></i>
<span id="net-update" class="nav-notification"></span>
</a>
</li>
<li role="menuitem" id="nav-community-link" class="nav-menu ">
<a accesskey="c" class=" desktop-view" href="community" title="Conversations on this and other servers">Community</a>
<a class=" mobile-view" href="community" title="Conversations on this and other servers"><i class="icon s22 icon-bullseye"></i></a>
</li>

<li role="menu" aria-haspopup="true" id="nav-site-linkmenu" class="nav-menu-icon"><a><span class="icon s22 icon-question"><span class="sr-only">Help and documentation</span></span></a>
<ul id="nav-site-menu" class="menu-popup">
<li role="menuitem"><a class="" href="help" title="Help and documentation">Help</a></li> <li role="menuitem"><a class="" href="friendica" title="Information about this Friendica instance">Information</a></li>
<a class="" href="tos" title="Terms of Service of this Friendica instance">Terms of Service</a></li> <li role="menuitem"><a class="" href="directory" title="People directory">Directory</a></li>
</ul>
</li>

<li role="menu" aria-haspopup="true" id="nav-messages-linkmenu" class="nav-menu-icon">
<a href="message" title="Messages">
<span class="icon s22 icon-envelope"><span class="sr-only">Messages</span></span>
<span id="mail-update" class="nav-notification"></span>
</a>
</li>


<li role="menu" aria-haspopup="true" id="nav-notifications-linkmenu" class="nav-menu-icon">
<a title="Notifications">
<span class="icon s22 icon-bell tilted-icon"><span class="sr-only">Notifications</span></span>
<span id="notification-update" class="nav-notification"></span>
</a>
<ul id="nav-notifications-menu" class="menu-popup">
<li role="menuitem" id="nav-notifications-mark-all"><a onclick="notificationMarkAll(); return false;">Mark as seen</a></li>
<li role="menuitem" id="nav-notifications-see-all"><a href="notifications/system">See all notifications</a></li>
<li role="menuitem" class="empty">Nothing new here</li>
</ul>
</li>

<li role="menu" aria-haspopup="true" id="nav-user-linkmenu" class="nav-menu">
<a accesskey="u" title="nanook@friendica.eskimo.com"><img src="https://friendica.eskimo.com/photo/contact/48/3?ts=1713674634" alt="Nanook"><span id="nav-user-linklabel">Nanook</span><span id="intro-update" class="nav-notification"></span></a>
<ul id="nav-user-menu" class="menu-popup">
<li role="menuitem"> <a class="" href="search" title="Search site content">Search</a> </li>
<li role="menuitem"><a class="" href="notifications/intros" title="Friend requests">Introductions<span id="intro-update-li" class="nav-notification"></span></a></li> <li role="menuitem"><a class="" href="contact" title="Manage/Edit friends and contacts">Contacts</a></li> <li role="menuitem"><a class="" href="message" title="Private messages">Messages <span id="mail-update-li" class="nav-notification"></span></a></li> <li role="menuitem"><a class="" href="profile/nanook/profile" title="My profile page">Profile</a></li> <li role="menuitem"><a class="" href="settings" title="Account settings">Settings</a></li> <li role="menuitem">
<a accesskey="a" class="" href="admin/" title="Site setup and configuration">Admin</a>
</li>
<li role="menuitem">
<a accesskey="m" class="" href="moderation/" title="Content and user moderation">Moderation</a>
</li>
<li role="menuitem"><a class="menu-sep " href="logout" title="End this session">Logout</a></li> </ul>
</li>

<li role="menuitem" id="nav-logout-link" class="nav-menu">
<a class="" href="logout" title="End this session">Logout</a>
</li>

<li role="search" id="nav-search-box">
<form method="get" action="search">
<input accesskey="s" id="nav-search-text" class="nav-menu-search" type="text" value="" name="q" placeholder=" @name, !group, #tags, content">
<select name="search-option">
<option value="fulltext">Full text</option>
<option value="tags">Tags</option>
<option value="contacts">Contacts</option>
</select>
</form>
</li>

<li role="menuitem" id="nav-admin-link" class="nav-menu">
<a accesskey="a" class=" icon-sliders" href="admin/" title="Site setup and configuration"><span class="sr-only">Site setup and configuration</span></a>
</li>

<li role="menuitem" id="nav-moderation-link" class="nav-menu">
<a accesskey="a" class=" icon-sliders" href="moderation/" title="Content and user moderation"><span class="sr-only">Content and user moderation</span></a>
</li>

<li role="menu" aria-haspopup="true" id="nav-apps-link" class="nav-menu ">
<a class=" " title="Addon applications, utilities, games">Apps</a>
<ul id="nav-apps-menu" class="menu-popup">
<li role="menuitem"><div class="app-title"><a href="calc">Calculator</a></div></li>
<li role="menuitem"><div class="app-title"><a href="convert">Units Conversion</a></div></li>
<li role="menuitem"><div class="app-title"><a href="forumdirectory">Forum Directory</a></div></li>
<li role="menuitem"><div class="app-title"><a href="infiniteimprobabilitydrive">Infinite Improbability Drive</a></div></li>
<li role="menuitem"><div class="app-title"><a href="irc">IRC Chatroom</a></div></li>
<li role="menuitem"><div class="app-title"><a href="webrtc">WebRTC Videochat</a></div></li>
</ul>
</li>
</ul>

</nav>

<!--
<div class="icon-flag" style="position: fixed; bottom: 10px; left: 20px; z-index:9;"></div>
-->
<aside></aside>
<section>
<div class="pageheader"><html>
<head>
</head>
<body>
<center>
<h3>Welcome to Friendica.Eskimo.Com</h3>
<a href="https://www.eskimo.com/"><h2>Home of Censorship Free Hosting</h2></a>

<a href="https://www.eskimo.com/"><img width=20% height=auto src="logo.png" alt="Eskimo North Linux Shells, E-mail, Virtual Machines, Web Hosting."></a>
<h4><a href="https://www.eskimo.com/services/shells/">Linux Shell Accounts terminal or full remote desktops, many distributions.</a></h4>


<h5>Please tell your friends about <a href="https://hubzilla.eskimo.com">hubzilla.eskimo.com</a>, <a href="https://friendica.eskimo.com">friendica.eskimo.com</a>,
federated macroblogging social media sites and <a href="https://yacy.eskimo.com/">yacy.eskimo.com</a> an uncensored federated search engine.</h5>

<script type="text/javascript"> var infolinks_pid = 3396086; var infolinks_wsid = 0; </script> <script type="text/javascript" src="//resources.infolinks.com/js/infolinks_main.js"></script>

</center>
</body>
</div><div id="pause"></div> <!-- The pause/resume Ajax indicator -->
<div id="page-footer"></div>
</section>
<right_aside></right_aside>
<footer><script type="text/javascript" src="addon/cookienotice/cookienotice.js?v=2024.06-dev"></script>
<script type="text/javascript" src="addon/highlightjs/asset/highlight.pack.js?v=2024.06-dev"></script>
<script type="text/javascript" src="addon/highlightjs/highlightjs.js?v=2024.06-dev"></script>
<script type="text/javascript" src="addon/qcomment/qcomment.js?v=2024.06-dev"></script>
<script>var homebase="profile/nanook";</script>
</footer>
</body>
</html>

Shoreline, WA, USA
2

Nanook friendica

Canada Anti-Free Speech Law

<!DOCTYPE html >
<html itemscope itemtype="http://schema.org/Blog" lang="en-us">
<head>
<title>Friendica Social Network | Parseurl</title>
<script>var baseurl="https://friendica.eskimo.com";</script>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<base href="https://friendica.eskimo.com/" />
<meta name="generator" content="Friendica 2024.06-dev" />
<link rel="stylesheet" href="view/global.css?v=2024.06-dev" type="text/css" media="all" />
<link rel="stylesheet" href="view/asset/jquery-colorbox/example5/colorbox.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="view/asset/jgrowl/jquery.jgrowl.min.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="view/asset/jquery-datetimepicker/build/jquery.datetimepicker.min.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="view/asset/perfect-scrollbar/dist/css/perfect-scrollbar.min.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="view/js/fancybox/jquery.fancybox.min.css?v=2024.06-dev" type="text/css" media="screen" />

<link rel="stylesheet" href="addon/cookienotice/cookienotice.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="addon/pageheader/pageheader.css?v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="view/theme/vier/style.pcss?puid=1&v=2024.06-dev" type="text/css" media="screen" />
<link rel="stylesheet" href="addon/highlightjs/asset/styles/default.css?v=2024.06-dev" type="text/css" media="screen" />

<link rel="icon" href="images/friendica.svg" />
<link rel="apple-touch-icon" href="images/friendica-192.png"/>

<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="manifest" href="https://friendica.eskimo.com/manifest" />
<script>
// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
// Prevents links to switch to Safari in a home screen app - see gist.github.com/irae/1042167
(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(chref=d.href).replace("https://friendica.eskimo.com/", "").replace(e.href,"").indexOf("#")&&(!/^[a-z\+\.\-]+:/i.test(chref)||chref.indexOf(e.protocol+"//"+e.host)===0)&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone");
// |license-end
</script>

<link rel="search"
href="https://friendica.eskimo.com/opensearch"
type="application/opensearchdescription+xml"
title="Search in Friendica" />

<!--[if IE]>
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js?v=2024.06-dev"></script>
<![endif]-->
<script type="text/javascript" src="view/js/modernizr.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/jquery/dist/jquery.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/js/jquery.textinputs.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/textcomplete/dist/textcomplete.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/js/autocomplete.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/jquery-colorbox/jquery.colorbox-min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/jgrowl/jquery.jgrowl.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/jquery-datetimepicker/build/jquery.datetimepicker.full.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/perfect-scrollbar/dist/js/perfect-scrollbar.jquery.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/imagesloaded/imagesloaded.pkgd.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/base64/base64.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/asset/dompurify/dist/purify.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/js/fancybox/jquery.fancybox.min.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/js/fancybox/fancybox.config.js?v=2024.06-dev"></script>
<script type="text/javascript" src="view/js/vanillaEmojiPicker/vanillaEmojiPicker.min.js?v=2024.06-dev"></script>
<script>
window.onload = function(){
new EmojiPicker({
trigger: [
{
selector: '.emojis-post',
insertInto: ['#comment-edit-text-0', '#profile-jot-text']
},
{
selector: '.emojis',
insertInto: ['.comment-edit-text-full']
}
],
closeButton: true
});
};
</script>
<script type="text/javascript">
const updateInterval = 10000;
const localUser = 1;
</script>
<script type="text/javascript" src="view/js/main.js?v=2024.06-dev"></script>
<script>
// Lifted from css-tricks.com/snippets/jquery…
jQuery.fn.putCursorAtEnd = function() {
return this.each(function() {
// Cache references
var $el = $(this),
el = this;

// Only focus if input isn't already
if (!$el.is(":focus")) {
$el.focus();
}

// If this function exists... (IE 9+)
if (el.setSelectionRange) {
// Double the length because Opera is inconsistent about whether a carriage return is one character or two.
var len = $el.val().length * 2;

// Timeout seems to be required for Blink
setTimeout(function() {
el.setSelectionRange(len, len);
}, 1);
} else {
// As a fallback, replace the contents with itself
// Doesn't work in Chrome, but Chrome supports setSelectionRange
$el.val($el.val());
}

// Scroll to the bottom, in case we're in a tall textarea
// (Necessary for Firefox and Chrome)
this.scrollTop = 999999;
});
};

function confirmDelete() { return confirm(""); }
function commentExpand(id) {
$("#comment-edit-text-" + id).putCursorAtEnd();
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
$("#mod-cmnt-wrap-" + id).show();
openMenu("comment-edit-submit-wrapper-" + id);
return true;
}
function commentOpen(obj,id) {
if (obj.value == "") {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
$("#mod-cmnt-wrap-" + id).show();
openMenu("comment-edit-submit-wrapper-" + id);
return true;
}
return false;
}
function commentClose(obj,id) {
if (obj.value == "") {
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
$("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
$("#mod-cmnt-wrap-" + id).hide();
closeMenu("comment-edit-submit-wrapper-" + id);
return true;
}
return false;
}

function commentInsert(obj,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if (tmpStr == "") {
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
}
var ins = $(obj).html();
ins = ins.replace("<","<");
ins = ins.replace(">",">");
ins = ins.replace("&","&");
ins = ins.replace(""","\"");
$("#comment-edit-text-" + id).val(tmpStr + ins);
}

function showHideCommentBox(id) {
if ($("#comment-edit-form-" + id).is(":visible")) {
$("#comment-edit-form-" + id).hide();
} else {
$("#comment-edit-form-" + id).show();
}
}
</script>
<link rel='stylesheet' type='text/css' href='view/theme/vier/narrow.css' media='screen and (max-width: 1100px)' />
<script type="text/javascript">
function showThread(id) {
$("#collapsed-comments-" + id).show()
$("#collapsed-comments-" + id + " .collapsed-comments").show()
}
function hideThread(id) {
$("#collapsed-comments-" + id).hide()
$("#collapsed-comments-" + id + " .collapsed-comments").hide()
}

function cmtBbOpen(id) {
$("#comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$("#comment-edit-bb-" + id).hide();
}
</script><script>
$(document).ready(function() {
$("#nav-search-text").search autocomplete(baseurl + '/search/acl');
});
</script>
</head>
<body>
<div id="panel" style="display: none;"></div><header>

<div id="site-location">nanook@friendica.eskimo.com</div>
<div id="banner"><a href="https://friendi.ca"><img id="logo-img" width="32" height="32" src="images/friendica.svg" alt="logo" /></a><span id="logo-text"><a href="https://friendi.ca">Friendica</a></span></div>
</header>
<nav role="menubar">
<ul>
<li class="mobile-aside-toggle" style="display:none;">
<a href="#">
<i class="icons icon-reorder"></i>
</a>
</li>
<li role="menuitem" id="nav-home-link" class="nav-menu ">
<a accesskey="p" class="" href="profile/nanook" title="My posts and conversations">
<span class="desktop-view">Home</span>
<i class="icon s22 icon-home mobile-view"><span class="sr-only">Home</span></i>
<span id="home-update" class="nav-notification"></span>
</a>
</li>
<li role="menuitem" id="nav-network-link" class="nav-menu ">
<a accesskey="n" class="" href="network" title="My friends039; conversations">
<span class="desktop-view">Network</span>
<i class="icon s22 icon-th mobile-view"><span class="sr-only">Network</span></i>
<span id="net-update" class="nav-notification"></span>
</a>
</li>
<li role="menuitem" id="nav-community-link" class="nav-menu ">
<a accesskey="c" class=" desktop-view" href="community" title="Conversations on this and other servers">Community</a>
<a class=" mobile-view" href="community" title="Conversations on this and other servers"><i class="icon s22 icon-bullseye"></i></a>
</li>

<li role="menu" aria-haspopup="true" id="nav-site-linkmenu" class="nav-menu-icon"><a><span class="icon s22 icon-question"><span class="sr-only">Help and documentation</span></span></a>
<ul id="nav-site-menu" class="menu-popup">
<li role="menuitem"><a class="" href="help" title="Help and documentation">Help</a></li> <li role="menuitem"><a class="" href="friendica" title="Information about this Friendica instance">Information</a></li>
<a class="" href="tos" title="Terms of Service of this Friendica instance">Terms of Service</a></li> <li role="menuitem"><a class="" href="directory" title="People directory">Directory</a></li>
</ul>
</li>

<li role="menu" aria-haspopup="true" id="nav-messages-linkmenu" class="nav-menu-icon">
<a href="message" title="Messages">
<span class="icon s22 icon-envelope"><span class="sr-only">Messages</span></span>
<span id="mail-update" class="nav-notification"></span>
</a>
</li>


<li role="menu" aria-haspopup="true" id="nav-notifications-linkmenu" class="nav-menu-icon">
<a title="Notifications">
<span class="icon s22 icon-bell tilted-icon"><span class="sr-only">Notifications</span></span>
<span id="notification-update" class="nav-notification"></span>
</a>
<ul id="nav-notifications-menu" class="menu-popup">
<li role="menuitem" id="nav-notifications-mark-all"><a onclick="notificationMarkAll(); return false;">Mark as seen</a></li>
<li role="menuitem" id="nav-notifications-see-all"><a href="notifications/system">See all notifications</a></li>
<li role="menuitem" class="empty">Nothing new here</li>
</ul>
</li>

<li role="menu" aria-haspopup="true" id="nav-user-linkmenu" class="nav-menu">
<a accesskey="u" title="nanook@friendica.eskimo.com"><img src="https://friendica.eskimo.com/photo/contact/48/3?ts=1713674634" alt="Nanook"><span id="nav-user-linklabel">Nanook</span><span id="intro-update" class="nav-notification"></span></a>
<ul id="nav-user-menu" class="menu-popup">
<li role="menuitem"> <a class="" href="search" title="Search site content">Search</a> </li>
<li role="menuitem"><a class="" href="notifications/intros" title="Friend requests">Introductions<span id="intro-update-li" class="nav-notification"></span></a></li> <li role="menuitem"><a class="" href="contact" title="Manage/Edit friends and contacts">Contacts</a></li> <li role="menuitem"><a class="" href="message" title="Private messages">Messages <span id="mail-update-li" class="nav-notification"></span></a></li> <li role="menuitem"><a class="" href="profile/nanook/profile" title="My profile page">Profile</a></li> <li role="menuitem"><a class="" href="settings" title="Account settings">Settings</a></li> <li role="menuitem">
<a accesskey="a" class="" href="admin/" title="Site setup and configuration">Admin</a>
</li>
<li role="menuitem">
<a accesskey="m" class="" href="moderation/" title="Content and user moderation">Moderation</a>
</li>
<li role="menuitem"><a class="menu-sep " href="logout" title="End this session">Logout</a></li> </ul>
</li>

<li role="menuitem" id="nav-logout-link" class="nav-menu">
<a class="" href="logout" title="End this session">Logout</a>
</li>

<li role="search" id="nav-search-box">
<form method="get" action="search">
<input accesskey="s" id="nav-search-text" class="nav-menu-search" type="text" value="" name="q" placeholder=" @name, !group, #tags, content">
<select name="search-option">
<option value="fulltext">Full text</option>
<option value="tags">Tags</option>
<option value="contacts">Contacts</option>
</select>
</form>
</li>

<li role="menuitem" id="nav-admin-link" class="nav-menu">
<a accesskey="a" class=" icon-sliders" href="admin/" title="Site setup and configuration"><span class="sr-only">Site setup and configuration</span></a>
</li>

<li role="menuitem" id="nav-moderation-link" class="nav-menu">
<a accesskey="a" class=" icon-sliders" href="moderation/" title="Content and user moderation"><span class="sr-only">Content and user moderation</span></a>
</li>

<li role="menu" aria-haspopup="true" id="nav-apps-link" class="nav-menu ">
<a class=" " title="Addon applications, utilities, games">Apps</a>
<ul id="nav-apps-menu" class="menu-popup">
<li role="menuitem"><div class="app-title"><a href="calc">Calculator</a></div></li>
<li role="menuitem"><div class="app-title"><a href="convert">Units Conversion</a></div></li>
<li role="menuitem"><div class="app-title"><a href="forumdirectory">Forum Directory</a></div></li>
<li role="menuitem"><div class="app-title"><a href="infiniteimprobabilitydrive">Infinite Improbability Drive</a></div></li>
<li role="menuitem"><div class="app-title"><a href="irc">IRC Chatroom</a></div></li>
<li role="menuitem"><div class="app-title"><a href="webrtc">WebRTC Videochat</a></div></li>
</ul>
</li>
</ul>

</nav>

<!--
<div class="icon-flag" style="position: fixed; bottom: 10px; left: 20px; z-index:9;"></div>
-->
<aside></aside>
<section>
<div class="pageheader"><html>
<head>
</head>
<body>
<center>
<h3>Welcome to Friendica.Eskimo.Com</h3>
<a href="https://www.eskimo.com/"><h2>Home of Censorship Free Hosting</h2></a>

<a href="https://www.eskimo.com/"><img width=20% height=auto src="logo.png" alt="Eskimo North Linux Shells, E-mail, Virtual Machines, Web Hosting."></a>
<h4><a href="https://www.eskimo.com/services/shells/">Linux Shell Accounts terminal or full remote desktops, many distributions.</a></h4>


<h5>Please tell your friends about <a href="https://hubzilla.eskimo.com">hubzilla.eskimo.com</a>, <a href="https://friendica.eskimo.com">friendica.eskimo.com</a>,
federated macroblogging social media sites and <a href="https://yacy.eskimo.com/">yacy.eskimo.com</a> an uncensored federated search engine.</h5>

<script type="text/javascript"> var infolinks_pid = 3396086; var infolinks_wsid = 0; </script> <script type="text/javascript" src="//resources.infolinks.com/js/infolinks_main.js"></script>

</center>
</body>
</div><div id="pause"></div> <!-- The pause/resume Ajax indicator -->
<div id="page-footer"></div>
</section>
<right_aside></right_aside>
<footer><script type="text/javascript" src="addon/cookienotice/cookienotice.js?v=2024.06-dev"></script>
<script type="text/javascript" src="addon/highlightjs/asset/highlight.pack.js?v=2024.06-dev"></script>
<script type="text/javascript" src="addon/highlightjs/highlightjs.js?v=2024.06-dev"></script>
<script type="text/javascript" src="addon/qcomment/qcomment.js?v=2024.06-dev"></script>
<script>var homebase="profile/nanook";</script>
</footer>
</body>
</html>

Shoreline, WA, USA
1

Nanook friendica
1

Shoreline, WA, USA
1

Nanook friendica

Nanook friendica

https://friendica.eskimo.com/ is Back! Again

Sorry for the disappearance two days after it came back up. The machine was unstable, there was an ill NIC, but after replacing that it wouldn't recognize two of the drives. That turned out to be a faulty power connector. Hopefully all good now.
Shoreline, WA, USA
1

Nanook friendica

https://friendica.eskimo.com/ is Back!

Sorry for our unannounced disappearance.

The machine this friendica is based upon is a i9-10900x with dual wd-black 1TB SSD drives in RAID0 and four 14Tb drives in two RAID-1 arrays.

Running the root partition on raid1 software raid (mdraid) requires that
initramfs autoconfig's the RAID array for a successful boot to occur.

I had upgraded our other web server to Ubuntu 24.04 in advance of the official release date and had few problems so did the same with this, unaware that 24.04 totally broke the auto-assemble function in initramfs, as well as breaking virtual GPUs and turning the machine into a snap nightmare.

The Canonical folks deserve a big E on this release as far as I am concerned. Anyway after finally figuring out what happened we are back on 22.04 and probably will remain that way until end of life at which point we'll migrate to Debian or some other release unless Ubuntu's board has been fired by that time and moved back to some semblance of sanity.

In a day or two we should also have hubzilla, mastodon, and yacy back up.

Shoreline, WA, USA

Shoreline, WA, USA

Shoreline, WA, USA

Shoreline, WA, USA

Shoreline, WA, USA

Nanook friendica

Netflix Privacy Violation!

I accidentally discovered that Netflix is snooping my browser history. I configured Firefox for private browsing and turned history off. Netflix would no longer allow me to view content. They have no legal interest in my browser history. Of course they'd like to know it so they can better target ads and probably the NSA pays them to help with their data collection, but what I've viewed outside of Netflix is NONE OF THEIR FUCKING BUSINESS.

If you are a Netflix customer, I urge you to call them at (888) 638-3549 and tell them in no uncertain terms that this is NOT ACCEPTABLE.

If there are any lawyers out there that would be willing to get a law suit
going pro-bono, please contact me at nanook@eskimo.com.

Please spread this message around.

Shoreline, WA, USA
nowisthetime reshared this.
Harka diaspora
What were your indications for it?


Shoreline, WA, USA

Shoreline, WA, USA

Shoreline, WA, USA
1

Nanook friendica

It Gets Even Better

It gets even better than she describes here, because the kind of reactors that can recycle actinides (the heavier than Uranium isotopes in nuclear waste that are long-lived) are molten salt breeder reactors. These reactors have additional benefits beyond burning waste, they also are inherently safe incapable of meltdowns because they are firstly self-regulating, and second in the event of an overheat condition (which is nearly impossible to achieve) the worst thing that happens is it melts a drain plug and the fuel drains into a much larger tank that disperses it enough that reactions can no longer occur, and because this fuel cycle involves continuous removal of fission products, there aren't a lot of fission products in the fuel to heat the tank. These reactors are safe by physics not safe by 1000 safety mechanisms that can screw up and render you a Fukashima. As such they can be placed close enough to populations that waste heat can be used for things like space heating of homes and commercial spaces.

Shoreline, WA, USA

Shoreline, WA, USA
1

Shoreline, WA, USA

Shoreline, WA, USA
1
Dicey pleroma (AP)
This is how humans will look due to safe and effective vaccines

Nanook friendica

This is a positive view of society you don't usually here

We're all reading how AI will be our doom. I think most people associate AI with consciousness but I see zero evidence that mere complexity creates consciousness and thus no reason to believe AI is conscious, thus to be the destruction of mankind will require someone direct it to that purpose, just as with nuclear technology.

Personally, I believe the many interactive worlds theory of quantum mechanics is the correct one, even though it be an unpopular one. It creates a physical mechanism for us to create our reality, the universes splitting at every decision node but we decide which one we go to and so you can choose a terrible world or a great one. Make the right choice.

Shoreline, WA, USA

Ed in Europe mastodon (AP)

THEY LAUGHED AT ANTI-VAXXERS, THEN DIED SUDDENLY FROM THE VAX

bitchute.com/video/DKC5ivYzDCL…

#amyloid #DiedSuddenly #VaccineInjury #VaccineDeath #MillionsDied #MillionsWillDie #StopTheShots #GeneTherapy #ExcessMortality #PopulationReduction #VaxCollapse #VaxRegret #mrna #turbocancer #vaX #vaxx #vaccine #vaccines #turbocancer #vaxstroke #saRNA #younghearts

gab.com/allmustknow/posts/1120…

1 1
Nanook friendica
There is a word for that: Karma

Nanook friendica
Shoreline, WA, USA
1

Shoreline, WA, USA

Nanook friendica


rumble.com/v4fscbr-live-federa…


Nanook friendica


@nowisthetime@pod.automat.click:
broken people in a broken world of evil rulers
all votes have been rigged , everything is under their control
yet most stupid sheep keep on complying to evil
bitchute.com/video/l4DyAn3J4EO…
“For god’s sake, stop complying. Start rebelling”

#resist #rebel #revolt



1

Shoreline, WA, USA

Shoreline, WA, USA

Shoreline, WA, USA

Shoreline, WA, USA
1

Shoreline, WA, USA

Shoreline, WA, USA

Shoreline, WA, USA

Shoreline, WA, USA

Shoreline, WA, USA

Nanook friendica

Mitch the Bitch

I'm willing to commit on it. Mitch McConnell is NOT a Republican and therefore should not register or run as one. He's a solid Rhino, a wolf in sheep's clothing, a bastard with absolutely no morals or positive convictions. Mitch should eat shit and die.

https://www.bizpacreview.com/2024/02/19/ted-cruz-unwilling-to-commit-on-whether-mcconnell-should-run-for-reelection-1438316/

Shoreline, WA, USA
1

Shoreline, WA, USA

Nanook friendica

Global Bullshit

See Waco, Tx is getting snow for the third year in a row. Seems like global bullshit is affecting them just like it is us here in Shitline, WA.
Shoreline, WA, USA

Nanook friendica


rumble.com/v4dmpk9-tucker-carl…
#WEF #1984 #NWO

2

Shoreline, WA, USA
1
newer older

This website uses cookies. If you continue browsing this website, you agree to the usage of cookies.