Places to find some (SVG) images / logos

This page provides some nice sites that providing (SVG/cartoon) images or logos.

SVG websites

most SVGs on this site are under the Licensing: Creative Commons BY 4.0

 

 

Create icon fonts in seconds! Just drag & drop SVGs onto the character grid and download your spiffy new font. Cherry on top – IT’S FREE!

Free SVG Image & Icon. All contents are released under Creative Commons CC0.

  • TBA

Cartoons websites

References

Check out the comments section of this post for more sites providing free SVG

 

  • Some commercial sits for nice SVG files

https://www.etsy.com/listing/660288718/split-letter-l-svg-split-monogram-l-svg

Install GIMP on Ubuntu

This post introduces how to install GIMP on Ubuntu.

GIMP (GNU Image Manipulation Program) is a freely distributed software for manipulating images. We can easily optimize the image, convert their type using GIMP. It provides the power and flexibility to designers to transform images into truly unique creations. GIMP is the cross platforms application and available for Linux, Windows, MAC OS, and FreeBSD etc.

For Ubuntu, you can get it for free using your Software Center. Open the Software Center, search for “gimp”, and then install the “GIMP Image Editor”. But below we provide how to install and uninstall GIMP from command line.

Install GIMP

For Ubuntu, you can use the following command to install GIMP on Ubuntu

You are required to add an external apt repository in your system to install Gimp on Ubuntu system. After adding the repository, install Gimp using the following set of commands. It will install or upgrade the latest packages of Gimp on your Ubuntu Linux system.

sudo add-apt-repository ppa:otto-kesselgulasch/gimp
sudo apt-get update
sudo apt-get install gimp

Launch GIMP Application

You can search Gimp using GNOME search box and launch it.

Alternatively, (on Ubuntu and RedHat) you can also launch gimp application using the command line as follows:

$ gimp &

Uninstall GIMP

If you no longer need of Gimp and want to remove from your system, Use the following command to remove all Gimp application and associated data from your system.

$ sudo apt-get autoremove gimp gimp-plugin-registry

Revert to GIMP stable release

Since GIMP 2.9 is unstable development release, there might be bugs and stability issues. You can easily revert to the stable GIMP 2.8.16, the stock version in Ubuntu 16.04 by running the commands below in terminal:

sudo apt install ppa-purge 
sudo ppa-purge ppa:otto-kesselgulasch/gimp-edge

 

References:

How to Install GIMP 2.10 on Ubuntu 18.04 LTS

HomeNewsThemesHowto TipsHow to Install The Latest GIMP 2.9.5 in Ubuntu 16.04

 

How to annotate / add markup to a screenshot on a Mac

This post introduces how to annotate/ add markup to a screenshot on Mac.

Adding markup to a screenshot simply means adding things like text, underlines, circles, boxes, and arrows to the screenshot to further highlight or draw attention to certain details within the image. Markup is useful if you want to make quick notes for designers, make corrections to homework, or mark areas of interest within html code to website developers.

These steps show you how to add markup to screenshots without first saving the screenshot and then having to use image editing software:

  1. Hold the CTRL key while holding the command and SHIFT buttons. Press 3 for capturing the full screen, press 4 for a part of the screen, and press 4 followed by the spacebar for a window. This will hold the screenshot in the clipboard.
  2. Open the Preview application on your Mac and then using the following shortcut to view the image from the clipboard in Preview.
command +   N

3. Use the tools within Preview to make changes such as cropping the image, inserting caption text, and adding coloured shapes.

4. To copy the new edited image to clipboard before pasting into your email or document, press command +  A keys to select the full image and then press the command + C keys.

 

Reference:

PostgreSQL resources

This post provides resources about PostgreSQL DB. (Check here for other DB resources.)

PostgreSQL, often simply Postgres, is an object-relational database management system (ORDBMS) with an emphasis on extensibility and standards compliance. As a database server, its primary functions are to store data securely and return that data in response to requests from other software applications.

PostgreSQL:

PostgreSQL psql Commands:

The primary front-end for PostgreSQL is the psql command-line program, which can be used to enter SQL queries directly, or execute them from a file. In addition, psql provides a number of meta-commands and various shell-like features to facilitate writing scripts and automating a wide variety of tasks; for example tab completion of object names and SQL syntax.

 

PostgreSQL with JSON: