Oscar Godson gave us html6spec.com - The Spec That Brings Us Freedom
(on a fine day in 2011 https://github.com/OscarGodson/HTML6).
(on a fine nite in 2013 https://github.com/zaz/HTML6).
Oscar Godson gave us html6spec.com - The Spec That Brings Us Freedom
(on a fine day in 2011 https://github.com/OscarGodson/HTML6).
(on a fine nite in 2013 https://github.com/zaz/HTML6).
it's a bug that only happens when the article starts with a blockquote tag. OSNews is working on a fix (https://mstdn.social/@osnews/113958357150579777)
Fixes (can be applied in browser console):
add something before the blockquote
jQuery('.front-view-content.full-post > blockquote:first-child').parent().prepend('<p> </p>')
a better fix from https://mstdn.social/@[email protected]/113971810490442290
jQuery('.front-view-content.full-post').css('clear','both')
https://rfc3161.ai.moda | |
https://rfc3161.ai.moda/adobe | |
https://rfc3161.ai.moda/microsoft | |
https://rfc3161.ai.moda/apple | |
https://rfc3161.ai.moda/any | |
http://rfc3161.ai.moda | |
http://timestamp.digicert.com | |
http://timestamp.globalsign.com/tsa/r6advanced1 | |
http://rfc3161timestamp.globalsign.com/advanced | |
http://timestamp.sectigo.com |
D:\relocate.xml
) containing instructions to move user profiles%windir%\system32\Sysprep\Sysprep.exe /audit /reboot /unattend:D:\relocate.xml
#!/usr/bin/env python3 | |
import re, zlib, sys | |
def main(argv): | |
print("Salvage text from a broken pdf file") | |
print("Usage: salvage-pdf.py [<input_file.pdf> [<output_file.txt>]]") | |
pdf = argv[1] if len(argv) > 1 else sys.stdin.fileno() | |
input = open(pdf, "rb").read() | |
output = salvage_pdf(input) | |
txt = argv[2] if len(argv) > 2 else sys.stdout.fileno() |
A couple of weeks ago I played (and finished) A Plague Tale, a game by Asobo Studio. I was really captivated by the game, not only by the beautiful graphics but also by the story and the locations in the game. I decided to investigate a bit about the game tech and I was surprised to see it was developed with a custom engine by a relatively small studio. I know there are some companies using custom engines but it's very difficult to find a detailed market study with that kind of information curated and updated. So this article.
Nowadays lots of companies choose engines like Unreal or Unity for their games (or that's what lot of people think) because d
If programming is more than just a means of getting things done for you, then Common Lisp is for you!
Table of Contents
curl -sSL https://gist.githubusercontent.com/ttimasdf/ef739670ac5d627981c5695adf4c8f98/raw/autossh@host1 | \
sudo tee /etc/default/autossh@example
curl -sSL https://gist.githubusercontent.com/ttimasdf/ef739670ac5d627981c5695adf4c8f98/raw/[email protected] | \
sudo tee /etc/systemd/system/[email protected]
sudo useradd -g nogroup -s /bin/false -m tunnel
sudo -u tunnel mkdir -p ~tunnel/.ssh # and copy your private key here