Opening odt files in Midnight Commander on MacOS
regex/\.(.*)$
Open=(open %f &)
#mac #mc
Resize all images in dir
for file in *.jpeg; do convert $file -resize 500x $file; done
#linux #bash
LibreOffice transpose rows to columns
Rotating Tables (Transposing) - LibreOffice Help
#libreoffice
Automatic change of linux configuration files
sed -i 's/#Port 22/Port 123/' /etc/ssh/sshd_config
#linux
Dictionary of values with choices for select.
from enum import Enum
class ResourceType(Enum):
HTML = 0
VIDEO = 1
AUDIO = 2
IMAGE = 3
PDF = 4
HTTP = 5
EPUB = 6
def get_choices():
return [(r.value, r.name) for r in ResourceType]
Creating unit tests for Flask.
import unittest
from app import create_app, db
from config_tests import Config
class MmTestCase(unittest.TestCase):
def setUp(self):
self.app = create_app(Config)
self.appctx = self.app.app_context()
self.appctx.push()
db.create_all()
self.client = self.app.test_client()
def tearDown(self):
db.drop_all()
self.appctx.pop()
self.app = None
self.appctx = None
self.client = None
Downloading backups from remote hosts
rsync -a --progress --delete -e 'ssh -p 223' user@host:/dir1 local_dir
- v verbose
#soft #linux
Symetric ant anti-symetric wave function
http://hyperphysics.phy-astr.gsu.edu/hbase/molecule/hmol.html
How to Detect if Your Linux System has been Hacked
How To Tell If Your Linux Server Has Been Compromised
who
iftop
last
chkrootkit
#linux