Reddit has imposed paid API limits and that compelled developers to shutodwn their clients.
But There is a way you can Keep using your favourite reddit Client.
You should run PowerShell as Administrator (otherwise diskpart
won't be able to received the piped commands)
$vhdx_path = '%USERPROFILE%\AppData\Local\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc\LocalState\ext4.vhdx'
@"
select vdisk file=$vhdx_path
compact vdisk
# I want to sync the local clock but don't have access to any NTP server. | |
# Website https://time.is tells me the time difference of my system clock and I can manually adjust the local clock. | |
# But then I recall that a HTTP response often contains a date header with current time in GMT timezone. | |
# I'll use it to set the system clock with the precision of 1 or 2 seconds. | |
# When I need more accurate time, I can use `datetime` (or `utc_datetime`) from `http://worldtimeapi.org/api/ip.txt` | |
# time from worldtimeapi.org has millisecond precision, you can use it to compare with your system time: | |
date -uIns && time curl -s http://worldtimeapi.org/api/ip.txt | sed -n 's/^utc_datetime://p' | |
date -Ins && time curl -s http://worldtimeapi.org/api/ip.txt | sed -n 's/^datetime://p' |
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/@mattsheffield@mastodon.social/113971810490442290
jQuery('.front-view-content.full-post').css('clear','both')
Online music/voice separator based on neural nets (using best models, including some from Sound Demixing Challenge) https://mvsep.com/
Quality of algorithms comparison https://mvsep.com/en/quality
Details of algorithms https://mvsep.com/en/algorithms
GUI for popular Vocal Remover models that uses Deep Neural Networks.
#!/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() |
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 |