Skip to content

Instantly share code, notes, and snippets.

View foreachthing's full-sized avatar

foreachthing

  • Switzerland
  • 17:24 (UTC +02:00)
View GitHub Profile
@foreachthing
foreachthing / InkscapeBatchConvert.bat
Last active August 30, 2021 19:41 — forked from JohannesDeml/README.md
Batch converter for windows using inkscape and the command line
@Echo off
set "inkscapePath=C:\Program Files\Inkscape\inkscape.exe"
set /a count=0
set validInput1=svg
set validInput2=pdf
set validInput3=eps
set validOutput1=eps
set validOutput2=pdf
@foreachthing
foreachthing / SplitPresentation2PDF.txt
Last active November 19, 2018 07:48
Split PowerPoint Presentation into single PDF files
Option Explicit
Public Sub SplitPresentation2PDF()
Dim CurrentPres As Presentation
Dim strPath As String
Dim strExtension As String
Dim strFileName As String
Dim iNumOfSlides As Long
Dim i As Long