This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Program purpose: | |
# analyze output of `ldd some-program` to find relevant packages in the configured APT repositories. | |
# To ease the analysis one can run it with filter `$0 ldd_output | grep Warning` to get only missed libraries/packages. | |
# | |
# Note: having `linux-vdso.so.1` in the output is normal, it belong C library on the linker level. | |
if [ "$#" -ne 1 ]; then | |
echo "This program should be run with one argument - '$0 ldd_output', where ldd_output is output of 'ldd' command for some executable." | |
exit 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# Start Lock Screen menu item for Caja, shown only on ~/Desktop | |
# | |
# Copyleft 2021, Norbert | |
# | |
# Based on dejadup.py from deja-dup-caja deb-package. | |
import subprocess, os | |
# Python 2 or 3 | |
try: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This test script is a result of a discussion on AskUbuntu (https://askubuntu.com/q/1265756/66509 ) about using Intel MKL in Ubuntu | |
# | |
# Modern Ubuntu versions include Intel MKL libraries since Ubuntu 19.10 (such as https://packages.ubuntu.com/focal/libmkl-full-dev ) | |
# and it is expected that this library may be used by some scientific applicaitons like Octave, Scilab and others. | |
# | |
# Test method: | |
# 1. Execute this script with default mathematical libraries, save the results | |
# 2. Install the Intel MKL library with `sudo apt-get install libmkl-full-dev` confirming its usage as default math libraries alternative | |
# 3. Execute this script again after Intel MKL installation to compare the results |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env playonlinux-bash | |
[ "$PLAYONLINUX" = "" ] && exit 0 | |
source "$PLAYONLINUX/lib/sources" | |
TITLE="Adobe Acrobat Reader DC" | |
PREFIX="AdobeAcrobatReaderDC" | |
WINEVERSION="4.0.3" | |
EDITOR="Adobe Systems Inc." | |
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# meld script for caja, place it to ~/.config/caja/scripts | |
# | |
# Copyright 2014 Norbert ..... <norbert@Entwicklung> | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Optional Dockerfile for compilation of gtk3-mushrooms on Ubuntu. | |
# Change codename to necessary version (this file is for 20.04 LTS *focal*) | |
# | |
FROM ubuntu:focal | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN echo "deb-src http://archive.ubuntu.com/ubuntu/ focal main multiverse multiverse restricted" >> /etc/apt/sources.list | |
RUN echo "deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main multiverse multiverse restricted" >> /etc/apt/sources.list |