Configure and download PrismJS No plugin required! Download prism.js and prism.cssfrom https://prismjs.com/download.html. Select Compression level, Theme of your choice, then Languages. You can also select Plugins if you want. Once you’re satisfied with the configurations, click on the Download JS and Download CSS buttons to download your PrismJS syntax highlighter javascript and css files as […]
Download an Entire Website for Offline Viewing
Both –no-clobber and –convert-links were specified, only –convert-links will be used. Explanation of the options: –recursive: download the entire Web site. –domains YourDomain.com: don’t follow links outside YourDomain.com. –no-parent: don’t follow links outside the directory /. –page-requisites: get all the elements that compose the page (images, CSS and so on). –html-extension: save files with the […]
How to color highlight .htaccess files in Xed/Gedit
How to add new language highlighting to XED? httpd.conf https://wiki.gnome.org/Projects/GtkSourceView https://wiki.gnome.org/Projects/GtkSourceView/LanguageDefinitions Source page apache.lang: Apache configuration files apache.lang page: https://wiki.gnome.org/Projects/GtkSourceView/LanguageDefinitions?action=AttachFile&do=view&target=apache.lang download: https://wiki.gnome.org/Projects/GtkSourceView/LanguageDefinitions?action=AttachFile&do=get&target=apache.lang pascal.lang etc files under user/share/gtksourceview-3.0/language-specs. Xed/Gedit color scheme/Theme https://wiki.gnome.org/Projects/GtkSourceView/StyleSchemes How to install To install a style just place its XML file into a folder of the style search path. GtkSourceView 2 A typical […]
How do I join two images using command-line
To join images horizontally (in alphabetical order): convert +append *.png out.png To stack images vertically: convert -append *.png out.png That should be run in a terminal into the folder containing png files to join them all.https://askubuntu.com/questions/226054/how-do-i-join-two-images-in-ubuntu A gui for that would be:a file manager context menu to join selected images. An easy way when it […]
FileBot-Naming-Syntax
FileBot-Naming-Syntax 2016 {n.space(‘ ‘)} ({y})/{n.space(‘ ‘)} ({y}) {vf} {”+source} {vc} The Conjuring 2 (2016)/The Conjuring 2 (2016) 720p BluRay x264 {folder.name} – S01E{i.pad(3)} – {fn} Folder Name – S01E{i.pad(3)} – {fn} GFR 12-14 – S01E{i.pad(3)} – {n.replaceAll(/\p{Punct}+/, ‘ ‘)} Rename movie with folder, resolution, rating, audio channel: {n} ({y}) {”+source+”}/{n} {y} [{fn.match(/3D/)+’, ‘}{vf}, {ac}, {af}]{[certification, […]
Linux mint gnome-screenshot file naming without colon (:)
here’s a workaround to rename the files afterwards. All you need to do is to navigate to the directory and run the following command rename ‘s/\:/\-/g’ *.png This will replace all colons with dashes in all file names ending in .png of the ones present in the current directory. Take all the screenshots you need, […]