Migrate aether post from 01380550743
This commit is contained in:
parent
1aea9bc617
commit
dd87011b1b
1 changed files with 190 additions and 0 deletions
190
_posts/2013-09-30-GNU-30th-Celebrating-30-years.html
Normal file
190
_posts/2013-09-30-GNU-30th-Celebrating-30-years.html
Normal file
|
|
@ -0,0 +1,190 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
title: "GNU 30th—Celebrating 30 years"
|
||||||
|
redirect_from:
|
||||||
|
- /01380550743
|
||||||
|
---
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>GNU 30th—Celebrating 30 years</title>
|
||||||
|
<link rel="stylesheet" href="https://media.unpythonic.net/css/bootstrap.min.css">
|
||||||
|
<style>
|
||||||
|
|
||||||
|
|
||||||
|
#mask {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
background-color: #000;
|
||||||
|
opacity: 0.7;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loading {
|
||||||
|
position: fixed;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
width: 58px;
|
||||||
|
height: 60px;
|
||||||
|
background-color: black;
|
||||||
|
background-image: url('https://media.unpythonic.net/img/loading.gif');
|
||||||
|
opacity: 0.9;
|
||||||
|
z-index: 20;
|
||||||
|
display: none;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bigimg {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#maskouter {
|
||||||
|
height: 100%;
|
||||||
|
display: table;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#maskinner {
|
||||||
|
vertical-align: middle;
|
||||||
|
display: table-cell;
|
||||||
|
}
|
||||||
|
|
||||||
|
#imgleft, #imgright {
|
||||||
|
cursor: pointer;
|
||||||
|
position: fixed;
|
||||||
|
top: 50%;
|
||||||
|
width: 64px;
|
||||||
|
height: 64px;
|
||||||
|
border-radius: 4px;
|
||||||
|
background-color: black;
|
||||||
|
z-index: 22;
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
|
||||||
|
#imgleft {
|
||||||
|
left: 0;
|
||||||
|
background-image: url('https://media.unpythonic.net/img/prevbtn.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
#imgleft.disabled, #imgright.disabled { display: none; }
|
||||||
|
|
||||||
|
#imgright {
|
||||||
|
right: 0;
|
||||||
|
background-image: url('https://media.unpythonic.net/img/nextbtn.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
#imgdesc {
|
||||||
|
position: fixed;
|
||||||
|
left: 64px;
|
||||||
|
bottom: 0;
|
||||||
|
background-color: #333;
|
||||||
|
width: 100%;
|
||||||
|
padding-top: 1em;
|
||||||
|
padding-bottom: 1em;
|
||||||
|
padding-left: 2em;
|
||||||
|
border: 1px solid #555;
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#imgdesc .filename {
|
||||||
|
color: #fff;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#imgdesc .description {
|
||||||
|
color: #fff;
|
||||||
|
padding-left: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mask { z-index: 10990; }
|
||||||
|
#loading { z-index: 10991; }
|
||||||
|
#bigimg { z-index: 10992; }
|
||||||
|
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript" src="https://media.unpythonic.net/js/jquery-1.6.4.min.js"></script>
|
||||||
|
<script type="text/javascript" src="https://media.unpythonic.net/js/bootstrap-dropdown.js"></script>
|
||||||
|
<script type="text/javascript" src="https://media.unpythonic.net/js/jquery.mousewheel.js"></script>
|
||||||
|
<script type="text/javascript" src="https://media.unpythonic.net/js/jquery.ba-hashchange.min.js"></script>
|
||||||
|
<script type="text/javascript" src="https://media.unpythonic.net/js/jquery.mobile.custom.min.js"></script>
|
||||||
|
<script type="text/javascript" src="https://media.unpythonic.net/js/gallery.js"></script>
|
||||||
|
<style><!--
|
||||||
|
div.floatimageleft, div.floatimageright {
|
||||||
|
border: 1px solid black;
|
||||||
|
padding: 2px;
|
||||||
|
margin: 1em;
|
||||||
|
}
|
||||||
|
div.floatimageleft { clear: left; float: left; }
|
||||||
|
div.floatimageright { clear: right; float: right; }
|
||||||
|
div.floatimageleft img, div.floatimageright img { border: 0px; }
|
||||||
|
|
||||||
|
div.floatimageleft img.zoom, div.floatimageright img.zoom {
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
--></style>
|
||||||
|
<style><!--
|
||||||
|
div.albumouter {
|
||||||
|
margin-right: 1ex;
|
||||||
|
margin-top: 1ex;
|
||||||
|
vertical-align: baseline;
|
||||||
|
display: -moz-inline-box;
|
||||||
|
display: inline-block;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.album { display: block; clear: both; }
|
||||||
|
|
||||||
|
.album a:link, .album a:hover, .album a:visited
|
||||||
|
{ text-decoration: none; }
|
||||||
|
.album a:hover { color: red; }
|
||||||
|
|
||||||
|
.albumimage {
|
||||||
|
display: block;
|
||||||
|
padding-left: 2px; padding-right: 2px;
|
||||||
|
padding-top: 3px; padding-bottom: 3px;
|
||||||
|
background: #ececec;
|
||||||
|
}
|
||||||
|
|
||||||
|
.albumimage img.zoom {
|
||||||
|
margin-left: 0px; margin-right: 0px;
|
||||||
|
padding-top: 4px; padding-right: 4px; }
|
||||||
|
.albumimage img { border: 0px;
|
||||||
|
display: block; margin-left: auto; margin-right:auto
|
||||||
|
}
|
||||||
|
--></style>
|
||||||
|
|
||||||
|
<!-- no summary found -->
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<a href="https://gnu.org/gnu30/">The GNU project</a> and the Free
|
||||||
|
Software movement are two of the most important computer-related
|
||||||
|
things in my life. At $DAY_JOB we depend critically on many pieces
|
||||||
|
of GNU software (such as gcc). This blog is hosted on a system with
|
||||||
|
a GPL kernel and a GNU userspace, and the blog software itself is
|
||||||
|
covered by the GPL license. My everyday computer is a GNU/Linux
|
||||||
|
system, and my cellphone and tablet have GPL-licensed major
|
||||||
|
components, such as the operating system kernel.
|
||||||
|
|
||||||
|
<p>I personally have contributed thousands of unpaid hours developing
|
||||||
|
GPL-licensed software, which is my way of repaying everyone else who
|
||||||
|
has developed Free software.
|
||||||
|
|
||||||
|
<p>On the other hand, we haven't come as far as one might wish. My
|
||||||
|
everyday computer doesn't function as well without proprietary
|
||||||
|
drivers, and many devices that should be general purpose computers
|
||||||
|
don't ship in a mode that allows their owners to install the
|
||||||
|
software of their choice. Careful choices are still necessary when
|
||||||
|
buying hardware, particularly if you insist on an operating system
|
||||||
|
that consists only of Free software.
|
||||||
|
|
||||||
|
<p>Here's hoping that the next 30 years bring more gains for Free
|
||||||
|
software and the GNU system. Either way, we'll still be here.
|
||||||
|
<br><br><font size=-2>Entry first conceived on 30 September 2013, 14:19 UTC, last modified on 16 October 2013, 14:35 UTC</font>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in a new issue