Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Astro/blog [RFR] #1190

Merged
merged 25 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
84f16f5
hacked a xml to md script
thilobillerbeck Dec 6, 2023
f9d7573
fix small issue with the xml to md script
thilobillerbeck Dec 6, 2023
7e3439d
end imported md files with a newline
thilobillerbeck Dec 6, 2023
2628c7f
import announcements and stories
thilobillerbeck Dec 6, 2023
7371747
create basic list blog page
thilobillerbeck Dec 6, 2023
9ea3ccc
adjusted styling of blog posts
thilobillerbeck Dec 7, 2023
d82427d
improve codeblock rendering
thilobillerbeck Dec 7, 2023
2f55eab
integrated nixos weekly content
thilobillerbeck Dec 7, 2023
e7d9105
adjusted post styling
thilobillerbeck Dec 8, 2023
22158da
add blog nav
thilobillerbeck Dec 8, 2023
8acd4e1
add single post vie
thilobillerbeck Dec 9, 2023
7995730
post toggle nav, excerpts
thilobillerbeck Dec 9, 2023
4699159
improve post routing
thilobillerbeck Dec 9, 2023
e5fed84
fixed build errors
thilobillerbeck Dec 9, 2023
9c58027
add rss feed
thilobillerbeck Dec 9, 2023
9bfc3e8
fixed several rendering and linking issues
thilobillerbeck Dec 9, 2023
b06e2b7
small fixes
thilobillerbeck Dec 9, 2023
28200d3
add topic related feeds
thilobillerbeck Dec 9, 2023
cc3d684
Merge branch 'main' into astro/blog
thilobillerbeck Dec 9, 2023
1ebd9ce
adapt package lock
thilobillerbeck Dec 9, 2023
9050166
adapt font to roboto-flex
thilobillerbeck Dec 10, 2023
b852246
fix heading leadings in article
thilobillerbeck Dec 10, 2023
949eff0
fix weird button behavior
thilobillerbeck Dec 10, 2023
34bf508
process blog images and include in release, fix learn article view
thilobillerbeck Dec 10, 2023
3a824de
remove object-fit since this does nothing
thilobillerbeck Dec 11, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,11 @@ export default defineConfig({
mdx(),
sitemap(),
],
markdown: {
shikiConfig: {
theme: 'light-plus',
wrap: true,
},
},
compressHTML: true,
});
3,127 changes: 1,151 additions & 1,976 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,23 @@
},
"dependencies": {
"@astrojs/mdx": "^2.0.0",
"@astrojs/rss": "^4.0.1",
"@astrojs/sitemap": "^3.0.3",
"@astrojs/tailwind": "^5.0.3",
"@fontsource-variable/fira-code": "^5.0.16",
"@fontsource-variable/overpass": "^5.0.17",
"@fontsource-variable/roboto-flex": "^5.0.8",
"@tailwindcss/typography": "^0.5.10",
"@xmldom/xmldom": "^0.8.10",
"astro": "^4.0.3",
"astro-heroicons": "^0.3.0",
"astro-icon": "^0.8.2",
"astro-seo": "^0.8.0",
"daisyui": "^3.7.3",
"htmx.org": "^1.9.9",
"tailwindcss": "^3.3.6"
"markdown-it": "^14.0.0",
"sanitize-html": "^2.11.0",
"tailwindcss": "^3.3.6",
"turndown": "^7.1.2"
}
}
Binary file added public/images/newsletter/06-montly-activity.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions scripts/xml-to-md.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { DOMParser, XMLSerializer } from '@xmldom/xmldom'
import { readFileSync, writeFileSync } from 'fs'
import TurndownService from 'turndown'

function generateMDCOntent(collectionName) {
const fileContents = readFileSync(`blog/${collectionName}.xml`, 'utf8')
const doc = new DOMParser().parseFromString(fileContents, 'text/xml')
const els = Array.from(doc.getElementsByTagName('item'))
els.forEach((item) => {
const id = item.getElementsByTagName('title')[0].getAttribute('id')
const title = item.getElementsByTagName('title')[0].textContent.replace(/(\r\n|\n|\r)/gm, "").replace(/ +(?= )/g,'');
const pubDate = new Date(item.getElementsByTagName('pubDate')[0].textContent)
const content = new TurndownService().turndown(new XMLSerializer().serializeToString(item.getElementsByTagName('description')[0]))
writeFileSync(`src/content/blog/${collectionName}/${pubDate.toISOString().substring(0,10)}_${id}.md`, `---
id: ${id}
title:${title}
date: ${pubDate.toISOString()}
category: ${collectionName}
---
${content}
`, { flag: 'ax' })
})
}

generateMDCOntent('stories')
generateMDCOntent('announcements')
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
18 changes: 14 additions & 4 deletions src/components/layout/PageHeader.astro
Original file line number Diff line number Diff line change
@@ -1,23 +1,33 @@
---

const { text = '' } = Astro.props;
interface Props {
text?: string;
subtext?: string;
}

const { text = '', subtext }: Props = Astro.props;

import Container from "./Container.astro";

---
<div class="bg-[url('/divider/header_nixdarkblue.svg')] bg-bottom bg-no-repeat bg-cover py-24 hidden md:block">
<Container class="text-white grid grid-cols-2">
<div class="flex flex-col gap-4">
<Container class="text-white grid grid-cols-3">
<div class="flex flex-col gap-4 col-span-2">
<h1 class="text-5xl font-bold text-left">
{text}
</h1>
{subtext && (
<p class="text text-left">
{subtext}
</p>
)}
</div>
</Container>
</div>

<div class="bg-nixdarkblue text-white md:hidden">
<Container class="px-12 py-16">
<h1 class="text-5xl font-bold text-center">
<h1 class="text-3xl font-bold text-center">
{text}
</h1>
</Container>
Expand Down
4 changes: 2 additions & 2 deletions src/components/ui/Button.astro
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const localClassList = `${colorMap[color]} font-bold ${sizeMap[size]} text-white
---

{href ? (
<span>
<>
<a href={href} class:list={["!text-white !no-underline", localClassList, classList]}>
<slot/>
</a>
Expand All @@ -50,7 +50,7 @@ const localClassList = `${colorMap[color]} font-bold ${sizeMap[size]} text-white
{shaText}
</SHA>
)}
</span>
</>
) : (
<button type={type} class={localClassList}>
<slot/>
Expand Down
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2004-01-16_icse-2004.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: icse-2004
title: Paper “Imposing a Memory Management Discipline on Software Deployment” accepted for presentation at ICSE 2004!
date: 2004-01-16T00:00:00.000Z
category: announcements
---
The first Nix paper.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: patching-paper-accepted-for-cbse-2005
title: Patching paper accepted for CBSE 2005
date: 2005-03-17T00:00:00.000Z
category: announcements
---
The paper “Efficient Upgrading in a Purely Functional Component Deployment Model” has been accepted at [CBSE 2005](https://web.archive.org/web/20090712101213/https://www.sei.cmu.edu/pacc/CBSE2005/). It describes how we can deploy updates to Nix packages efficiently, even if “fundamental” packages like Glibc are updated (which cause a rebuild of all dependent packages), by deploying binary patches between components in the Nix store. Includes techniques such as patch chaining and computing deltas between archive files.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: service-deployment-paper-accepted-for-scm-12-2005
title: Service deployment paper accepted for SCM-12
date: 2005-08-22T00:00:00.000Z
category: announcements
---
The paper “Service Configuration Management” (accepted at the [12th International Workshop on Software Configuration Management](https://web.archive.org/web/20200422192338/https://users.soe.ucsc.edu/~ejw/scm12/)) describes how we can rather easily deploy “services” (e.g., complete webserver configurations such as our [Subversion server](http://svn.nixos.org/)) through Nix by treating the non-component parts (such as configuration files, control scripts and static data) as components that are built by Nix expressions. The result is that all advantages that Nix offers to software deployment also extend to service deployment, such as the ability to easily have multiple configuration side by side, to roll back configurations, and to identify the precise dependencies of a configuration.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: secure-sharing-paper-accepted-for-ase-2005
title: Secure sharing paper accepted for ASE 2005
date: 2005-08-28T00:00:00.000Z
category: announcements
---
The paper “Secure Sharing Between Untrusted Users in a Transparent Source/Binary Deployment Model” has been accepted at [ASE 2005](http://www.ase-conference.org/). This paper describes how a Nix store can be securely shared by multiple users who may not trust each other; i.e., how do we prevent one user from installing a Trojan horse that is subsequently executed by some other user?
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2005-10-16_nix-0.9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nix-0.9
title: Nix 0.9 released
date: 2005-10-16T00:00:00.000Z
category: announcements
---
[Nix 0.9](https://web.archive.org/web/20140913053124/https://releases.nixos.org/nix/nix-0.9/) has been released. This is a new major release that provides quite a few performance improvements and bug fixes, as well as a number of new features. Read the [release notes](https://web.archive.org/web/20140913061858/https://releases.nixos.org/nix/nix-0.9/release-notes/) for details.
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2005-10-21_nix-0.9.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nix-0.9.2
title: Nix 0.9.2 released
date: 2005-10-21T00:00:00.000Z
category: announcements
---
[Nix 0.9.2](https://web.archive.org/web/20140913055759/https://releases.nixos.org/nix/nix-0.9.2/) has been released released. This is a bug fix release that addresses some problems on Mac OS X.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: phd-thesis-defended-2006
title: PhD thesis defended
date: 2006-02-18T00:00:00.000Z
category: announcements
---
[Eelco Dolstra](https://web.archive.org/web/20080205081357/https://people.cs.uu.nl/eelco) defended his [PhD thesis](https://edolstra.github.io/pubs/phd-thesis.pdf) on the purely functional deployment model.
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2006-03-03_nixpkgs-0.9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nixpkgs-0.9
title: Nixpkgs 0.9 released
date: 2006-03-03T00:00:00.000Z
category: announcements
---
[Nixpkgs 0.9](https://web.archive.org/web/20140913055101/https://releases.nixos.org/nixpkgs/nixpkgs-0.9/) has been [released](https://web.archive.org/web/20110820121350/http://mail.cs.uu.nl/pipermail/nix-dev/2006-January/000121.html).
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2006-11-06_nix-0.10.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nix-0.10
title: Nix 0.10 released
date: 2006-11-06T00:00:00.000Z
category: announcements
---
[Nix 0.10](https://web.archive.org/web/20140913062041/https://releases.nixos.org/nix/nix-0.10/) has been released. This release has many improvements and bug fixes; see the [release notes](https://web.archive.org/web/20140913061253/https://releases.nixos.org/nix/nix-0.10/release-notes/) for details.
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2006-11-11_nix-0.10.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nix-0.10.1
title: Nix 0.10.1 released
date: 2006-11-11T00:00:00.000Z
category: announcements
---
[Nix 0.10.1](https://web.archive.org/web/20140913060038/https://releases.nixos.org/nix/nix-0.10.1/) has been released. It fixes two obscure bugs that shouldn’t affect most users.
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2006-11-12_nixpkgs-0.10.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nixpkgs-0.10
title: Nixpkgs 0.10 released
date: 2006-11-12T00:00:00.000Z
category: announcements
---
[Nixpkgs 0.10](https://web.archive.org/web/20140913061226/https://releases.nixos.org/nixpkgs/nixpkgs-0.10/) has been released. See the [release notes](https://web.archive.org/web/20140913060334/https://releases.nixos.org/nixpkgs/nixpkgs-0.10/release-notes/) for details.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: new-build-farm-hardware-at-tud-2007
title: New build farm hardware at TUD
date: 2007-02-23T00:00:00.000Z
category: announcements
---
[![New build farm](https://web.archive.org/web/20200422161704if_/https://farm1.static.flickr.com/185/367433201_9ee5ad0986_m.jpg)](https://www.flickr.com/photos/eelcovisser/367433201/)To quote Eelco Visser: new hardware for buildfarm at Delft University of Technology has arrived.

Here’s what we have: 5 Intel Core 2 Duo DualCore machines with 1GB RAM, 2 Mac minis with 1,83-GHz Intel Core Duo-processor, another Core 2 Duo a UPS to deal with spikes in power supply, a console with integrated monitor and keyboard switches, a rack with room for a couple more machines.

Here’s what we’re going to do with the goodies. The five Intel machines and the two MacMinis (also Intel) are going to be used to crank at building hundreds of software packages. Using virtualisation we should be able to run builds on multiple operating system distributions. [Read more…](https://eelcovisser.org/blog/2007/01/23/bootfarm/)
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2007-02-23_nixos-for-x86_64.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nixos-for-x86_64
title: NixOS for x86_64
date: 2007-02-23T00:00:01.000Z
category: announcements
---
NixOS now works on x86\_64 machines. A 64-bit ISO is [available](/download.html).
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nixos-manual-2007
title: NixOS manual
date: 2007-03-19T00:00:00.000Z
category: announcements
---
There is now some [basic documentation for NixOS](/manual/nixos/unstable/).
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: nixos-progress-report-2007-april
title: NixOS progress report
date: 2007-04-05T00:00:00.000Z
category: announcements
---
[![NixOS screenshot](../../../assets/image/screenshots/nixos-compiz-cube.png)](../../../assets/image/screenshots//nixos-compiz-cube.png) NixOS is now _almost_ usable as a desktop OS ;-). We have an X server, a bunch of Gnome packages, basic wireless support, and of course all the applications in Nixpkgs that we had all along running on other Linux distributions. Here are a few screenshots:

* [X server with Compiz window manager](../../../assets/image/screenshots/nixos-compiz-cube.png).
* [Emacs and a few terminals](../../../assets/image/screenshots/nixos-terminals.png) showing off the (near) absence of /lib, /bin etc.; everything is in the Nix store.
* [Some applications](../../../assets/image/screenshots/nixos-apps.png).
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
id: nixos-progress-report-2007-may
title: NixOS progress report
date: 2007-05-02T00:00:00.000Z
category: announcements
---
[![KDE logo](../../../assets/image/klogo-official-crystal-128x128.png)](https://www.kde.org) We now have [KDE](https://www.kde.org/) running on NixOS ([obligatory screenshot](../../../assets/image/screenshots/nixos-kde.png)). Just kdebase for now (Martin Bravenboer already added kdelibs a long time ago so that we could run the wonderful [KCachegrind](http://kcachegrind.sourceforge.net/cgi-bin/show.cgi)), but it contains all the important stuff (Konqueror, KDesktop, Kicker, Konsole, Control Center, etc.).

In related news, we can safely say that, rumours to the contrary notwithstanding, NixOS is not an [April Fools’ Joke](http://www.osnews.com/comment.php?news_id=17601).
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: hotos-paper-on-nixos
title: HotOS paper on NixOS
date: 2007-06-08T00:00:00.000Z
category: announcements
---
Eelco Dolstra presented the paper [_Purely Functional System Configuration Management_](https://edolstra.github.io/pubs/hotos-final.pdf) at the [11th Workshop on Hot Topics in Operating Systems (HotOS XI)](https://www.usenix.org/events/hotos07/). It gives an overview of the ideas behind [NixOS](/). The [slides](http://people.cs.uu.nl/eelco/talks/hotos-may-2007.pdf) are also available.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: commits-mailing-list-2007
title: Commits mailing list
date: 2007-09-14T00:00:00.000Z
category: announcements
---
There is now a [mailing list](https://web.archive.org/web/20110820121249/http://mail.cs.uu.nl/mailman/listinfo/nix-commits) ([email protected]) that you can subscribe to if you want to receive automatic commit notifications from the Nix Subversion repository.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
id: nixos-progress-report-2007-september
title: NixOS progress report
date: 2007-09-22T00:00:00.000Z
category: announcements
---
[![NixOS screenshot](../../../assets/image/screenshots/nixos-games.png)](../../../assets/image/screenshots/nixos-games.png) [Wine](https://www.winehq.org/) now runs on NixOS! Finally we can run all those [legacy applications](../../../assets/image/screenshots/nixos-games.png)... Thanks to Michael Raskin for adding Wine and a NPTL-enabled Glibc (which Wine seems to need). This is a nice application of purely functional package composition, by the way: Wine didn’t work with the standard Glibc in Nixpkgs, so we just [pass it another Glibc at build time](https://svn.nixos.org/viewvc/nix/nixpkgs/trunk/pkgs/top-level/all-packages.nix?r1=9165&r2=9164&pathrev=9165).

In other news, Nix 0.11 and Nixpkgs 0.11 will be released soon.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
id: openoffice-in-nixpkgs
title: OpenOffice in Nixpkgs
date: 2007-10-10T00:00:00.000Z
category: announcements
---
[![OpenOffice screenshot](../../../assets/image/screenshots/nixos-openoffice.png)](../../../assets/image/screenshots/nixos-openoffice.png) [OpenOffice](https://www.openoffice.org/) is now in Nixpkgs ([screenshot of OpenOffice 2.2.1 running under NixOS](../../../assets/image/screenshots/nixos-openoffice.png), and [another screenshot](https://web.archive.org/web/20160528175628if_/https://www.denbreejen.net/public/nixos/nixos-oo-scrs.png)). Despite being a rather gigantic package (it takes two hours to compile on an Intel Core 2 6700), OpenOffice had only two “impurities” (references to paths outside of the Nix store) in its [build process](https://svn.nixos.org/viewvc/nix/nixpkgs/trunk/pkgs/applications/office/openoffice/) that had to be resolved — a reference to /bin/bash and one to /usr/lib/libjpeg.so.

Armijn Hemel, Wouter den Breejen and Eelco Dolstra contributed to the Nix expression for OpenOffice.
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2007-10-12_nixpkgs-0.11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nixpkgs-0.11
title: Nixpkgs 0.11 released
date: 2007-10-12T00:00:00.000Z
category: announcements
---
[Nixpkgs 0.11](https://web.archive.org/web/20140913055544/https://releases.nixos.org/nixpkgs/nixpkgs-0.11/) has been released. See the [release notes](https://web.archive.org/web/20140913054140/https://releases.nixos.org/nixpkgs/nixpkgs-0.11/release-notes/) for details.
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2008-01-31_nix-0.11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nix-0.11
title: Nix 0.11 released
date: 2008-01-31T00:00:00.000Z
category: announcements
---
[Nix 0.11](https://web.archive.org/web/20140913060613/https://releases.nixos.org/nix/nix-0.11/) has been released. This is a major new release representing over a year of development. The most important improvement is secure multi-user support. It also features many usability enhancements and language extensions, many of them prompted by NixOS, the purely functional Linux distribution based on Nix. See the [release notes](https://web.archive.org/web/20140913055323/https://releases.nixos.org/nix/nix-0.11/release-notes/) for details.
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2008-02-06_new-nixos-isos.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: new-nixos-isos
title: New NixOS ISOs
date: 2008-02-06T00:00:00.000Z
category: announcements
---
[![NixOS installer online help](../../../assets/image/screenshots/nixos-installer-help.png)](../../../assets/image/screenshots/nixos-installer-help.png) New NixOS installation CD images for i686 and x86\_64 are [available](https://web.archive.org/web/20200423231710/https://releases.nixos.org/nixos-0.1pre10083/), which is a good thing as the previous ones were already a few months old. The new images are Nix 0.11-based, contain [Memtest86+](http://www.memtest.org/) as a convenience, should support more SATA drives, and show online help (the [NixOS manual](/manual/nixos/unstable/)) on virtual console 7.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: jacquard-grant-proposal-accepted
title: Jacquard grant proposal accepted!
date: 2008-03-14T00:00:00.000Z
category: announcements
---
The [Jacquard program](https://web.archive.org/web/20130923164506/https://www.nwo.nl/onderzoek-en-resultaten/programmas/Jacquard) of NWO and EZ has granted funding for the Nix-related project “Pull Deployment of Services” (PDS), which is about improving the deployment of software and services in complex heterogenous environments. The grant consists of 368 K€ for a PhD student (4 years) and a postdoc (3 years). If you’re interested in these positions, please have a look at [this page](http://swerl.tudelft.nl/bin/view/Main/PDS), and don’t hesitate to contact [Eelco Visser](http://swerl.tudelft.nl/bin/view/EelcoVisser) or [Eelco Dolstra](https://edolstra.github.io/).
7 changes: 7 additions & 0 deletions src/content/blog/announcements/2008-05-05_ldta-2008-paper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: ldta-2008-paper
title: LDTA 2008 paper
date: 2008-05-05T00:00:00.000Z
category: announcements
---
Eelco Dolstra presented the paper [“Maximal Laziness — An Efficient Interpretation Technique for Purely Functional DSLs”](https://edolstra.github.io/pubs/laziness-ldta2008-final.pdf) at [8th Workshop on Language Description, Tools and Applications (LDTA 2008)](https://web.archive.org/web/20090716235453/http://ldta2008.inf.elte.hu/). It’s about caching of evaluation results in the Nix expression evaluator as a technique to make a simple term-rewriting evaluator efficient. Slides are [here](https://edolstra.github.io/talks/ldta-apr-2008.pdf).
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: website-svn-repositories-moved-2008
title: Website / SVN repositories moved
date: 2008-05-25T00:00:00.000Z
category: announcements
---
The Nix website has moved to [nixos.org](/) (hosted at [TU Delft](http://www.tudelft.nl/)). The Subversion repositories have moved to [svn.nixos.org](http://svn.nixos.org/). See [this mailing list posting](https://web.archive.org/web/20120118052400/http://mail.cs.uu.nl/pipermail/nix-dev/2008-April/000740.html) for information about moving existing SVN working copies.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: website-back-up-2008
title: Website back up
date: 2008-06-06T00:00:00.000Z
category: announcements
---
The Nix website was down for a few days due to cooling problems in the server room causing the machine to overheat. These should be resolved now. Apologies for the inconvenience.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
id: nixos-paper-accepted-at-icfp-2008
title: NixOS paper accepted at ICFP!
date: 2008-07-16T00:00:00.000Z
category: announcements
---
The paper “NixOS: A Purely Functional Linux Distribution” (by Eelco Dolstra and Andres Löh) has been [accepted](https://web.archive.org/web/20170129015859/http://www.icfpconference.org/icfp2008/accepted/accepted.html) for presentation at the [2008 International Conference on Functional Programming](https://web.archive.org/web/20200729214737/http://www.icfpconference.org/icfp2008/) (ICFP). It describes NixOS in much greater detail than last year’s HotOS paper, and argues why the purely functional style and features such as laziness are important for system configuration management. It also provides some measurements on the actual purity of Nix build actions. A [draft of the paper](https://edolstra.github.io/pubs/nixos-icfp2008-submitted.pdf) is available.
Loading