Found 5 results

Send email with Python and smtplib

Send email with Python and smtplib package is just another quick tutorial from Tufora where we will show you in just a few steps how easy is to use Python for sending emails from your applications. This solution uses no more than five lines of code and can be easily implemented within your Python application anytime being defined as a Python module using import statement or simply directly to your main application code. The code below has been tested using Python 3.7 but it can be easily adapted and used on older or newer versions as long the smtplib module […]

Category: Python | Published: 14/11/2018 | Updated: 22/07/2019

Create custom Docker image

Create custom Docker image is our next short tutorial where we will be showing you in just a few easy steps the basics of how to create a simple custom Docker image from the scratch, how to build it and also how to push this image to your own Docker repository. If you are a beginner then this is the right tutorial where you will learn one of the basic tasks when working with Docker, build your own custom images for your own web applications or websites. Table of contents Context Create Dockerfile Custom Docker image content Build custom Docker […]

Category: Docker | Published: 11/12/2019 | Updated: 15/12/2019

Cookie Policy

Introduction Tufora.com (“we” or “us” or “our”) may use cookies, web beacons, tracking pixels, and other tracking technologies when you visit our website Tufora.com, including any other media form, media channel, mobile website, or mobile application related or connected thereto (collectively, the “Site”) to help customise the Site and improve your experience. We reserve the right to make changes to this Cookie Policy at any time and for any reason. We will alert you about any changes by updating the “Last Updated” date of this Cookie Policy. Any changes or modifications will be effective immediately upon posting the updated Cookie […]

Category: | Published: 13/05/2019 | Updated: 13/05/2019

Generate SSH Key – Linux, Mac and Windows

In this quick tutorial, Generate SSH Key, we will learn more exactly how to generate a SSH Key in Linux or Mac using a terminal window and also in Windows using Putty. Before we start our little journey we should be clear about one thing, all SSH Keys consists of two parts, a Private Key and a Public Key. In this article we’ll generate both these keys and we’ll learn the importance but also the difference between these two. What is a Pivate Key As we said in our introduction a SSH Key contains a Private Key and a Public […]

Category: Security | Published: 09/02/2018 | Updated: 05/11/2018

How to generate CSR in Linux

In this example we will explain how to generate CSR in Linux using shell prompt or terminal window. A CSR is mostly required when you want to secure for example a website or a connection between one or more services that requires a secure connection. Any SSL issuer will always ask you to generate and present a CSR. We’ve chose CentOS for this Certificate Signing Request example as our main operating system. Required packages First step is to make sure that we have openssl and openssl-devel packages installed and updated in order to generate our very first CSR. The package manager […]

Category: Security | Published: 24/01/2018 | Updated: 05/11/2018