- Markdown style
[](https://youtu.be/nTQUwghvy5Q)
- HTML style
<a href="http://www.youtube.com/watch?feature=player_embedded&v=nTQUwghvy5Q" target="_blank">
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>h5</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.js"></script> | |
<script src="exif.js"></script> | |
<style> | |
#holder { border: 1px dashed #ccc; width: 100px; height: 100px; margin: 20px auto;} | |
#holder.hover { border: 1px dashed #333; } | |
#result .property { width: 100px; } |
//xcr.c | |
//cc -o xcr $(pkg-config --cflags --libs cairo xcb xcb-icccm) xcr.c -lcairo -lxcb -lxcb-icccm | |
#include <stdlib.h> | |
#include <string.h> | |
#include <cairo.h> | |
#include <cairo-xcb.h> | |
#include <xcb/xcb.h> | |
#include <xcb/xcb_image.h> | |
#include <xcb/xcb_aux.h> | |
#include <xcb/xcb_icccm.h> |
(defun workflowy-to-org-mode () | |
(interactive) | |
(let (count) | |
(while (not (eobp)) | |
(setq count 0) | |
(while (looking-at " ") | |
(setq count (1+ count)) | |
(forward-char 1)) | |
(forward-char 1) | |
(delete-region (point-at-bol) (point)) |
In /etc/default/grub
, modify:
noibrs noibpb nopti nospectre_v2 nospectre_v1 l1tf=off nospec_store_bypass_disable no_stf_barrier mds=off tsx=on tsx_async_abort=off mitigations=off
Then sudo update-grub
from https:// make-linux-fast-again.com/ This domain does not seem to be maintained any longer.
for INPUT_PDF_FILE in "$@"; do | |
if [ "$(file -b --mime-type "$INPUT_PDF_FILE")" == "application/pdf" ]; then | |
OUTPUT_PDF_FILE="${INPUT_PDF_FILE%.pdf}.margins" | |
pdflatex -jobname "$OUTPUT_PDF_FILE" "\documentclass{article}\usepackage{pdfpages}\begin{document}\includepdf[pages=-,trim=1cm 0cm 1cm 0cm]{$INPUT_PDF_FILE}\end{document}" | |
else | |
echo "Skipping non-PDF file: $INPUT_PDF_FILE" | |
fi | |
done |
Windows Registry Editor Version 5.00 | |
[HKEY_USERS\.DEFAULT\Control Panel\Input Method\Hot Keys] | |
[HKEY_USERS\.DEFAULT\Control Panel\Input Method\Hot Keys\00000100] | |
"Virtual Key"=hex:33,00,00,00 | |
"Key Modifiers"=hex:02,c0,00,00 | |
"Target IME"=hex:09,04,09,04 | |
[HKEY_USERS\.DEFAULT\Control Panel\Input Method\Hot Keys\00000101] |
while ! rsync --partial --progress -avz -e ssh "user@server:/path/folder.to.copy" "/to.local.path"; do sleep 5; done |
Learn how to send emails through Gmail SMTP with Cloudflare Email Routing in this comprehensive guide.
To proceed with this method, ensure that you have enabled two-factor authentication for your Google account. If you haven't done so already, you can follow the link to set it up → Enable 2FA in your Google account.
Function Convert-WingetTextToObject { | |
<# | |
.SYNOPSIS | |
Converts the text output from winget commands into custom PowerShell objects. | |
.DESCRIPTION | |
Converts the text output from winget commands into custom PowerShell objects. | |
.PARAMETER WingetRawText |