Skip to main content

Posts

Showing posts from July, 2018

Setting Up Altera CPLD Development in Linux!

Here is a simple guide to setup your Linux machine to develop Altera's CPLD. Install 32 bit libraries: $ sudo dpkg --add-architecture i386 $ sudo apt-get update $ sudo apt-get install libxft2:i386 libxext6:i386 libncurses5:i386 Download Whole software from altera website. ( Version 15.1) Download IDE, ModelSim , and device here: Altera Download Link Make sure to include your desired CPLD board software in the download. Get the usb blaster working by setting up the permissions by following Intel's Instruction Page . This should get you started with everything.

Generating a PDF file from several images in Linux!

So you wanna build a PDF from pages you have scanned or images you have gathered? Here is the simplest way to do it through the amazing terminal! First, open the terminal and install the imagemagick software: $ sudo apt-get install imagemagick Next, freaking generate the PDF with this simple command! $ convert image1.jpg image2.png image3.bmp output.pdf And there you go!