Skip to content

Instantly share code, notes, and snippets.

@Victorcasas
Victorcasas / postman-deb.sh
Created April 25, 2020 04:12 — forked from SanderTheDragon/postman-deb.sh
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
ls Postman*.tar.gz > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "Removing old Postman tarballs"
rm -f $(ls Postman*.tar.gz)
fi
curlExists=$(command -v curl)
@Victorcasas
Victorcasas / gist:c1c5bf48e252ee08a0388cc56c43ae90
Created November 23, 2016 16:08
Macro para excel que ejecutada consulta una access para cargar datos, existiendo la Query ya en access
Option Explicit
Sub RunExistingQuery()
Dim con As Object
Dim rs As Object
Dim AccessFile As String
Dim strQuery As String
Dim i As Integer