The world of web design has been transformed in recent years with the emergence of new digital tools that make the design process more efficient, collaborative, and intuitive. One of the most popular and powerful tools for designing websites is Figma, a cloud-based design platform that allows designers to create, share, and collaborate on designs in real-time. Here are ten reasons why Figma is the ultimate tool for your next website project. As a web designer, you know that creating a website from scratch can be a daunting task. There are multiple aspects to consider, such as wireframes, visual designs, interactive prototypes, and animations. Figma is an all-in-one tool that can help you manage all these aspects with ease and create a website that not only looks great but performs efficiently. Here are ten reasons why you should consider using Figma for your next website project. 1. Figma is an all-in-one tool for web design. Figma offers a comprehensive suite of design tool...
Today I was struggling a lot to when I Saw a List of files (276 files) to be merged and extended from single page to 2 page files. All these (276 files) files were extracted from a word file so got serial number at the end for every file.
I got a very simple script to update all those files and merge PAGE-2.pdf to every file.
Here is the script, which eased the job for me :
for i in {51..276};
do
echo "pdftk AP-COMP-ELEX-EXTC-IT-09-03-15.$i.pdf PAGE-2.pdf cat output $i.pdf";
done
Before running the script make sure that You have installed "pdftk" from Ubuntu application center. I am currently using ubuntu14.04 now a days.
Once the output of the program is displayed on command line open other Terminal and paste the output of the above script on the other terminal and hit Enter to see the automation of file.
Once the program is installed, you just have to run the script.
Keep Blogging..!!
Files to be merged with PAGE-2.pdf |
I got a very simple script to update all those files and merge PAGE-2.pdf to every file.
Here is the script, which eased the job for me :
for i in {51..276};
do
echo "pdftk AP-COMP-ELEX-EXTC-IT-09-03-15.$i.pdf PAGE-2.pdf cat output $i.pdf";
done
Before running the script make sure that You have installed "pdftk" from Ubuntu application center. I am currently using ubuntu14.04 now a days.
Once the output of the program is displayed on command line open other Terminal and paste the output of the above script on the other terminal and hit Enter to see the automation of file.
Once the program is installed, you just have to run the script.
Keep Blogging..!!