Skip to content

Instantly share code, notes, and snippets.

View oberluz's full-sized avatar

Paul Nader oberluz

  • _VOIS
  • Malaga, Spain
  • 18:31 (UTC -12:00)
View GitHub Profile
@claudiosteuernagel
claudiosteuernagel / nexus_upload_raw_repo.sh
Created December 18, 2020 06:30
Nexus Raw Artifact upload using cURL
#Nexus Raw Artifact upload using cURL
curl --fail -u user:password --upload-file file.zip 'https:/nexus-repository.claudiosteuernagel.com/repository/my-raw-repo/my-directory/file.zip'
@instaBOT
instaBOT / ubuntu-14.04-install-python-3.5.sh
Created October 13, 2016 15:13
Install Python 3.5.x in Ubuntu 14.04. Includes packages 'python3.5' and 'python3.5-dev', and latest 'pip'
#!/usr/bin/env bash
set -eu
sudo add-apt-repository --yes ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install --yes python3.5 python3.5-dev
@azadkuh
azadkuh / qt-unix-signals.md
Last active August 13, 2024 13:29
Catch Unix signals in Qt applications

Unix signals in Qt applications

It's quite easy to catch unix signals in Qt applications. you may like to ignore or accept them.

#include <QCoreApplication>

#include <initializer_list>
#include <signal.h>
#include <unistd.h>