VirtualTam's bookmarks
24 bookmarks found
-
-
- https://rachelbythebay.com/w/2020/03/07/costly/
- https://docs.gunicorn.org/en/stable/faq.html#does-gunicorn-suffer-from-the-thundering-herd-problem
- https://uwsgi-docs.readthedocs.io/en/latest/articles/SerializingAccept.html
- https://uwsgi-docs.readthedocs.io/en/latest/Options.html
- https://web.archive.org/web/20160117023812/http://cramer.io/2013/06/27/serving-python-web-applications
- https://circus.readthedocs.io/en/latest/
-
GitHub Enterprise Backup Utilities
2019-09-19 -
pat: Prometheus Alert Testing utility
2018-10-22 -
libGDX - DragAndDrop
2018-04-29 - https://github.com/libgdx/libgdx/blob/master/tests/gdx-tests/src/com/badlogic/gdx/tests/DragAndDropTest.java
- https://libgdx.badlogicgames.com/nightlies/docs/api/com/badlogic/gdx/scenes/scene2d/utils/DragAndDrop.html
- https://stackoverflow.com/questions/16287759/how-to-drag-and-drop-actors-on-libgdx-scene2d
- https://stackoverflow.com/questions/21426845/libgdx-drag-and-drop
- https://gamedev.stackexchange.com/questions/87378/drag-and-drop-in-libgdx-target-and-source
- https://gamedev.stackexchange.com/questions/134666/how-to-drag-and-drop-objects-in-libgdx
- http://www.java-gaming.org/index.php?topic=33266.0
- http://www.badlogicgames.com/forum/viewtopic.php?t=3023
- http://www.badlogicgames.com/forum/viewtopic.php?t=16932
- https://www.reddit.com/r/gamedev/comments/24q3ms/drag_and_drop_inventory_tutorials_with_libgdx/
-
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!
-
Sphinx, apidoc and Django
2018-01-28 - https://stackoverflow.com/questions/34461088/sphinx-apidoc-on-django-build-html-failure-on-django-core-exceptions-appregistr
- https://stackoverflow.com/questions/19037649/using-sphinxs-sphinx-apidoc-utility-to-autogenerate-documentation-from-python-c
- https://stackoverflow.com/questions/46375983/sphinx-apidoc-strange-output-for-django-app-models-py
- http://www.sphinx-doc.org/en/stable/man/sphinx-apidoc.html
- https://github.com/sphinx-doc/sphinx/issues/2095
- https://samnicholls.net/2016/06/15/how-to-sphinx-readthedocs/
- http://www.sphinx-doc.org/en/stable/ext/napoleon.html
-
And more generally, "emacs as a <language> IDE":
- code completion
- snippet / templates
- project view
- syntax checking
- test harness utilities
See also: