Commit Graph

17 Commits (master)

Author SHA1 Message Date
Mike Gerwitz e4660c296c
post/2019-02-18: Exceptional access: Tie escapes
When I introduced TeX-style ties to `post2html`, a couple parts of this
article were broken.

I ought to check whether other articles are broken, or rather write a
script to list occurrences, but, it's late, and I want to get this
resolved.
2023-12-18 02:42:22 -05:00
Mike Gerwitz c2d85cdda8
2012-10-06-tradmarks-in-free-software.,d: GNUplot=>gnuplot
It's pronounced "new"plot, where "gnu" refers to the animal, pronounce
"new", not GNU, pronounced "guh-new".

I did not know this at the time.

http://www.gnuplot.info/faq/faq.html#x1-70001.2
2021-05-11 20:33:13 -04:00
Mike Gerwitz ee67de0047
LibrePlanet 2021: Adopting Free Software Ideals: Typo fixes
...clearly I didn't proofread.
2021-02-24 22:19:53 -05:00
Mike Gerwitz d70dd4aac8
LibrePlanet 2021: Adopting Free Software Ideals
Information about upcoming talk at LP2021.
2021-02-24 22:14:12 -05:00
Mike Gerwitz 22e90676a7
Writing As a Means to Another End: New post
This is a deeply personal one.
2020-06-30 23:54:11 -04:00
Mike Gerwitz 1f6ea32a45
COVID-19: Update link to current pandemic 2020-03-16 21:15:08 -04:00
Mike Gerwitz ba74826264
Social Responsibility Amid COVID-19 Outbreak 2020-03-16 01:06:33 -04:00
Mike Gerwitz 173c06ddf1
Fix Copyleft vs. Community links 2019-04-07 22:12:41 -04:00
Mike Gerwitz b80ea33a60
lp2019 post: Update abstract
It had to be shortened to 100 words.  This also more accurately reflects what
I will be talking about; it will be a slower pace than I had originally anticipated,
and will focus a bit more on some core philosophical concepts.  But it will still
be interesting to both hackers and non-technical users.
2019-03-05 01:16:37 -05:00
Mike Gerwitz ac37bdef63
2019-02-15-i-will-be-speaking-at-lp2019: Update with location (Stata Center)
Just announced, finally.  I get nervous when I can't visualize my travels. :)
2019-02-21 23:01:24 -05:00
Mike Gerwitz f16c0f0f0e
post: GHCQ's Exceptional Access
Wow.  I had wanted to spend less than an hour on a response, and instead I
wound up writing my largest article since the NSA revelations and
GHS.  Hopefully others find this useful.

I've been sitting on this for weeks because I didn't have the time to finish
final proofreading and changes.  I need to release this before I sit on it
for another couple; I have to start working on my LP2019 talk soon.

* post/2019-02-18-ghcq-exceptional-access-e2ee-decentralization-reproducible.md:
  New post.
* src/papers.rec: Add post to top.
2019-02-18 01:10:57 -05:00
Mike Gerwitz 41888355ed
post: I Will Be Speaking At LibrePlanet 2019 2019-02-15 00:53:27 -05:00
Mike Gerwitz 1e59028e05
post/2013-01-26-re-fsf-wastes-away-another-high-priority-project.md: Remove duplicate word typo 2019-01-17 23:55:14 -05:00
Mike Gerwitz d1165248e8
post/2018-09-06-libreplanet-2019-will-be-march-23-24-in-boston-ma: Fix URL 2019-01-17 01:33:37 -05:00
Mike Gerwitz 9916ad55dc
Generate slug from post filenames
Rather than having Pandoc generate the id, which has the potential to change
over time and cause 404s, let's just generate the slug from the filename so
that the ids will never change.  This also solves the awkward question of
what the filename should be, since it was previously something arbitrary.

This mass rename was accomplished via this simple shell script:

  for p in *.meta; do
    slug=$( recsel -P slug "$p" | xargs basename )
    mv -v "${p/.meta/.md}" "${p:0:10}-$slug.md"
  done

with minor manual tweaks where I saw fit.  Of course, now I have some pretty
long filenames, which is undesirable.

The next step is to compare it with the slugs currently on mikegerwitz.com
and make them match.  That's the next commit, and should be pretty simple.
2019-01-16 23:44:24 -05:00
Mike Gerwitz 643a9858f1
Translate Git Horror Story from AsciiDoc to Markdown
This was a wholly manual effort since Pandoc does not have an AsciiDoc
reader (only writer).  Fortunately, Pandoc's Markdown features enabled me to
keep the style essentially the same.

I made no changes to the original text other than changes to markup, so this
remains faithful to the original.  Any changes to the text will be made in
future commits so that the diff can be clearly observed.

This could use more work (e.g. getting rid of inline links to make the
Markdown file more readable), but otherwise this is in a good enough state
for now.
2018-12-22 23:48:03 -05:00
Mike Gerwitz 64e1341075
Convert posts to markdown files
This was considerable effort, and took a bit more time than I had
hoped.  While newer posts were written with Markdown, previous ones were
writen with my own Markdown-like formatting, but they had enough differences
that it was quite an effort to get things updated.  I also checked the HTML
output of each, though I didn't read every article in detail.

Some of these were more substantial than others; National Uproar, for
example.

These conversions were markup translations: the actual text remains
unchanged, except in one minor instance to add text for the sake of
providing some text to hold a link to a quote.  Any changes to post text
will happen in future commits so that the diffs are clearly visible.
2018-12-22 23:45:26 -05:00