VirtualTam's bookmarks
20 bookmarks found
Page 1 of 1
-
- From Map to Reality: Using PostGIS in Warfare (PDF)
- NASA Earthdata - Full and open access to NASA’s collection of Earth science data for understanding and protecting our home planet
- Visible Infrared Imaging Radiometer Suite (VIIRS) Active Fire detection
- PostgreSQL - GiST - Generalized Search Tree
- PostgreSQL - SP-GiST - Space-partitioned GiST
- H3 - Hexagonal hierarchical geospatial indexing system
- zachasme/h3-pg - PostgreSQL bindings for H3
-
-
-
Here are the steps I used to migrate a CentOS 7 VM from (presumably?) an ESXi server, to a local VirtualBox environment.
The LVM volumes were not detected at boot, and after the boot timeout, the OS fell back to the Dracut emergency shell.
- get a CentOS minimal installation CD
- check the VM's resources and peripherals:
- ensure there are no floppy drives (!)
- setup CPU and RAM resources
- check virtual drives
- add an SCSI optical drive if needed
- optional: convert the virtual drive images from VMDK to VDI
- mount the CentOS installation disc
- boot on the installation disc:
- select "Troubleshooting", then "Rescue"
- let the rescue utility detect filesystems and mountpoints
$ chroot
to the detected environment- backup files:
/etc/fstab
/boot/grub/grub.cfg
- under /boot, backup the initrd and initramfs for the current configuration (these will be overwritten)
- compare the current
/etc/fstab
with the output of$ lsblk
and$ blkid
- if needed, manually edit /etc/fstab to use the appropriate block device UUIDs, identifiers and mountpoints
- regenerate GRUB configuration:
$ grub2-mkconfig -o /boot/grub2/grub.cfg
- if needed, reinstall GRUB:
$ grub-install /dev/sda
- rebuild initrd:
$ mkinitrd --force /boot/<initrd_image> <kernel_version>
- rebuild initramfs:
$ dracut --force <kernel_version>
- exit the chroot
- unmount the installation disc
- reboot
- optional but highly recommended: cross your fingers
- ...
- profit!
-
Publicly Available Spam Filter Training Sets
2017-05-05 - http://www.paulgraham.com/spamarchives.html
- http://untroubled.org/spam/
- https://spamassassin.apache.org/old/publiccorpus/
- https://github.com/dmitrynogin/SpamAssassin
- http://archive.ics.uci.edu/ml/datasets/Spambase + http://statweb.stanford.edu/~tibs/ElemStatLearn/
- https://inclass.kaggle.com/c/adcg-ss14-challenge-02-spam-mails-detection
- https://www.kaggle.com/rtatman/fraudulent-email-corpus
- https://www.kaggle.com/veleon/ham-and-spam-dataset
- https://www.kaggle.com/beatoa/spamassassin-public-corpus
- http://www.csmining.org/index.php/spam-assassin-datasets.html
- http://artinvoice.hu/spams/
- http://www2.aueb.gr/users/ion/data/enron-spam/
- https://security.stackexchange.com/questions/223731/spamassassin-public-corpus
-
Reading game frames in Python with OpenCV - Python Plays GTA V | Python Programming Tutorials
2017-04-11 SCOOTER BROTHERS! WE'RE SCOOTER BROTHERS!
Scooter champ' algorithm:
- capture video with OpenCV
- process frames: region of interest, edge detection
- send DirectInput controls
- watch & enjoy!
src https://github.com/sentdex/pygta5/ via https://www.reddit.com/r/Python/comments/64l4pp/python_plays_gta_v_tutorial_series_creating_a/
-
Postfix / Dovecot / ClamAV / Spamassassin
2016-12-12 A whole buncha' links with contradictory information on how to properly set up a mail server ;-)
Disclaimer - My primary goal is to add proper Spamassassin (SA) filtering to an existing Postfix / Dovecot / roundcube installation, i.e.:
- use SA as a milter (mail filter) to attribute a spam score to incoming mail
- keep SA up-to-date
- train SA with spam/ham from the users' virtual mailboxes
- train SA according to user decisions (actual user or trained mail client with automatic/trained spam detection)
Here we go!
Most useful links; I stumbled upon them as soon as I knew what to look for:
- https://workaround.org/ispmail/jessie/spamassassin
- https://lelutin.ca/posts/installing_postfix_-_clamav_-_spamassassin_-_dovecot_-_postfixadmin_on_debian_squeeze/
Official:
- https://spamassassin.apache.org
- https://spamassassin.apache.org/gtube/
- https://wiki.apache.org/spamassassin/FrequentlyAskedQuestions
Debian:
- https://wiki.debian.org/DebianSpamAssassin
- http://www.stefan-seelmann.de/wiki/mailserver-postfix-dovecot (wheezy)
- https://www.christianroessler.net/tech/2015/spamassassin-dovecot-postfix.html
- https://www.digitalocean.com/community/tutorials/how-to-configure-a-mail-server-using-postfix-dovecot-mysql-and-spamassassin
CentOS:
- https://www.rosehosting.com/blog/how-to-install-and-integrate-spamassassin-with-postfix-on-a-centos-6-vps/
- https://www.rosehosting.com/blog/how-to-set-up-server-side-email-filtering-with-dovecot-sieve-and-roundcube-on-a-centos-6-vps/
- http://shisaa.jp/postset/mailserver-1.html - a bit outdated but plenty of useful information regarding how components interact with each other
- http://wiki2.dovecot.org/HowTo
RHEL:
- https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/ch-Mail_Servers.html
- https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/s1-email-mta.html
- https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/s1-email-mda.html
-
Linux: list detected soundcards
2015-01-08 # list USB devices $ lsusb # list cards detected by ALSA $ cat /proc/asound/cards # list cards supported by PulseAudio $ pacmd list-cards | grep name:
-
FindBugs - Find Bugs in Java Programs
2014-07-24 http://lib.tkk.fi/Dipl/2012/urn100637.pdf
Evaluating and enhancing FindBugs to detect bugs from mature software: Case study in Valuatum
Page 1 of 1