Note: Office only
mso-ansi-font-size: large | larger | <length> | medium | <percentage> | small | smaller | x-large | x-small | xx-large | xx-small
using Org.BouncyCastle.Crypto; | |
using Org.BouncyCastle.Crypto.Parameters; | |
using Org.BouncyCastle.OpenSsl; | |
using Org.BouncyCastle.Security; | |
using System; | |
using System.IO; | |
using System.Security.Cryptography; | |
namespace MyProject.Data.Encryption | |
{ |
## Ubuntu 15.04 – Configure your system to have x11vnc running at startup. ## | |
Hello World, | |
If you are following us, you probably remember that we wrote already a post about this topic | |
(see Ubuntu 14.10 – Configure your sytem to have x11vnc running at startup). | |
Since Ubuntu 15.04 is using systemd, the instructions found in the previous post are not applicable anymore. | |
Some of our readers had issues after upgrading to Ubuntu 15.04. | |
The x11VNC is not running at startup anymore. |
body, .page-header, .page-content, #page-wrapper { | |
background-color: #282828; | |
color: #cdcdcd; | |
} | |
p { | |
color: #f1f1f1; | |
} | |
nav { |
$env:Path += ";C:\Program Files (x86)\Google\Chrome\Application;C:\Program Files\Google\Chrome\Application" | |
$url = "https://reporting.cz"; | |
$file = Join-Path $env:temp export.pdf | |
if (Test-Path $file) { | |
Remove-Item $file | |
} | |
chrome --headless --disable-gpu --print-to-pdf=$file $url |