friendica (DFRN) - Link to source

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>

friendica (DFRN) - Link to source

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>

friendica (DFRN) - Link to source

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.

friendica (DFRN) - Link to source

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.

nowisthetime reshared this.

friendica (DFRN) - Link to source

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.

friendica (DFRN) - Link to source

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.

Our Red Hood jacket is a bold statement piece for the modern urban warrior. Crafted from high-quality materials, it features a striking red color that commands attention. With its sleek design and comfortable fit, this jacket is perfect for casual outings or cosplay events. Embrace your inner anti-hero and stand out from the crowd with our Red Hood jacket.

friendica (DFRN) - Link to source

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/



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

friendica (DFRN) - Link to source

Warms My Heart - There Is Hope


Farmers everywhere are protesting the WEF/UN/EU's move to starve 7/8th's of us to death and are meeting with some success. So happy to see. I'll be even happier when Klaus is hanging from a tree, hopefully tarred and feathered with the tar on fire.

friendica (DFRN) - Link to source

Joni Mitchell


Joni Mitchell, just caught her singing at the Gershwin Prize broadcast March of last year. She would have been 79. I have not heard her sing since the 70's, she is fat now, but it sure hasn't hurt her voice, did a rendition of Summertime and The Circle Game, velvety butter-smooth voice, she definitely will never require pitch correction, absolute perfect pitch. Still has her beautiful long blonde hair, but her voice has only improved through the years.

ChatGPT Deutsch: Die Konversationsrevolution in Deutschland

Die Entwicklung der KI hat eine neue Ära der menschlichen Kommunikation eingeleitet. ChatGPT Deutsch hat insbesondere die Kommunikation in Deutsch revolutioniert.

Die deutsche Sprache wird durch künstliche Intelligenz beeinflusst bei chatgptdeutsch.io/

ChatGPT auf Deutsch ermöglicht Benutzern die Interaktion mit einem intelligenten Sprachmodell, das auf dem bahnbrechenden GPT-3.5-Modell von OpenAI basiert. Da ChatGPT Deutsch nicht nur syntaktisch korrekte, sondern auch semantisch sinnvolle Antworten generiert, ist dieser Schritt ein Meilenstein in der deutschen Sprachverarbeitung.

2. Vielfältige Einsatzgebiete

ChatGPT Deutsch wird in zahlreichen Bereichen eingesetzt, darunter Kundenservice, Bildung und persönliche Assistenz. In verschiedenen Szenarien erhöht die Fähigkeit des Modells, komplexe Anfragen zu verstehen und fundierte Antworten zu liefern, die die Effizienz und Genauigkeit erhöhen.

3. Möglichkeiten zur Verbesserung des Sprachlernens

ChatGPT ist eine Wohltat für Menschen, die Deutsch lernen. Die Lernenden können durch die interaktive Interaktion mit dem Modell nicht nur ihre grammatischen Fähigkeiten verbessern, sondern auch ihr Verständnis für den idiomatischen Gebrauch der deutschen Sprache erweitern.

4. Herausforderungen und Überlegungen zur Ethik

Herausforderungen und ethische Bedenken treten mit dem Wachstum der KI auf. Bei der Implementierung dieses revolutionären Tools müssen wichtige Aspekte wie die Privatsphäre, die Voreingenommenheit und die Begrenzung des Missbrauchs von ChatGPT berücksichtigt werden.

5. Ausblick auf die Zukunft

ChatGPT Deutsch ist nur der Beginn eines aufregenden Zeitalters in der Sprachtechnologie. Die fortlaufende Verbesserung dieses Modells wird dazu beitragen, die Benutzererfahrung zu verbessern und es in immer mehr Bereichen anzuwenden.

Insgesamt ermöglicht ChatGPT Deutsch eine detailliertere, präzisere und interaktivere Kommunikation auf Deutsch. Eine vielversprechende Zukunft für die Art und Weise, wie wir mit künstlicher Intelligenz in unserer eigenen Sprache interagieren, wird von dieser Sprachtechnologierevolution erwartet.



@nowisthetime@pod.automat.click:
#National #Geographic #magazine
#Quote
" After being a member for 45 years, I can no longer tolerate your magazine's #propaganda. Please cancel this subscription and refund remaining issue credit.
The Fauci Hagiography issue was bad enough, but the current 02.204 issue's article with Dr Paul Offit's lies on behalf of the Vaccine Industry are the final straw in our willingness to subject ourselves to your product's narrative maintenance at the expense of Truth.

Many doctors, researchers, and actuarial studies are now proving the COVID MRNA vaxes are killing more people than they (may have) saved, many of whom are young healthy athletes dying of heart failures.

History will judge Offit and Fauci as Pharma-bought criminals (see RFK Jr.'s books for the facts on COVID MRNA lack of testing and FDA complicity and coverups of the damages being done).

Yet Offit states "no one is safe until everyone is safe", and wants government power to force genetic-changing experimental products on us all. Your readers deserve better - Goodbye! "