- Use Inkscape to create a single page PDF with a semi-transparent text. This will be stamped on the final PDF document
- Use
pdftk
as follows:
pdftk in.pdf multistamp stamp.pdf output out.pdf
#!/usr/bin/env bash | |
# TODO: wait for no Internet connection to run this script | |
set -x | |
while true | |
do | |
ABC=$(curl -L -I www.abola.pt | grep '^Location' | awk '{print $2}' | grep -o 'loginurl=.*$' | cut -d'=' -f2) |
#!/usr/bin/env bash | |
# Synchronize two photo folders using rsync. | |
# * Handles moves by: | |
# 1. See if a file to be synched is already on target (with the same name) | |
# 2. If file is already on target, compare checksums. | |
# 2a- If checksums match, it was a file move, so delete file from target | |
# 2b- If checksums don't match, we are possibly talking about different files | |
# * Deletions are not synchronized to keep all files on target |
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>me.ntfc</groupId> | |
<artifactId>asciidoc-diagrams-issue</artifactId> | |
<version>1.0-SNAPSHOT</version> |
[TOC]
If when issuing vagrant up
you come across with a VirtualBox Guest Additions problem (version mismatch, or vagrant-vbguest auto-installation fails) try the following:
vagrant ssh
to the machine, and install Guest Additions manualyvagrant ssh
to the machine, run yum install kernel-devel
, and reboot (or install Guest Additions manually)vagrant ssh
to the machine, yum update
and then try to install Guest Additions again% UM_ENg Logo | |
\DeclareRobustCommand{\UMEng}[1][normal]{ | |
% define colors | |
\ifstrequal{#1}{grey}{% | |
% greyscaled logos | |
\definecolor{eng}{rgb}{0.61,0.6,0.6} | |
\definecolor{um}{rgb}{0.61,0.6,0.6} | |
\begin{tikzpicture}[% | |
% bars styling, |
%!TEX root = MSc_VM_Dissertation.tex | |
% define extra colors | |
\definecolor{lightergrey}{rgb}{0.68,0.67,0.68} | |
\definecolor{grey}{rgb}{0.61,0.6,0.6} | |
\newfontfamily\MyTitle[ | |
Ligatures=TeX, | |
Extension=.ttf, | |
Path=Fonts/, |