VirtualTam's bookmarks
186 bookmarks found
-
ncdu - NCurses Disk Usage
2018-05-15 -
Xdebug - Debugger and Profiler Tool for PHP
2018-05-10 - https://xdebug.org/docs/
- https://xdebug.org/docs/profiler
- https://stackoverflow.com/questions/21133/simplest-way-to-profile-a-php-script
- http://nickology.com/2014/04/16/view-xdebug-cachegrind-files-on-mac-os/
- https://stackoverflow.com/questions/33094913/how-do-i-read-the-ui-of-qcachegrind
- https://github.com/jokkedk/webgrind
- https://pecl.php.net/package/xhprof
- https://tideways.com/profiler/xhprof-for-php7
- https://github.com/humanmade/query-monitor-flamegraph
-
Linux and ACSM ePub books
2018-04-21 - https://superuser.com/questions/1027608/how-to-read-an-acsm-file-on-linux
- https://askubuntu.com/questions/461409/how-can-i-remove-the-drm-from-an-epub-file
- https://askubuntu.com/questions/299747/converting-epub-files-to-pdf-format
- https://apprenticealf.wordpress.com/
- https://github.com/apprenticeharper/DeDRM_tools
- https://manual.calibre-ebook.com/conversion.html
- https://askubuntu.com/questions/169618/is-there-a-way-to-convert-a-pdf-file-to-epub-format-without-using-calibre
-
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!
-
- https://github.com/ranger/ranger
- https://github.com/ranger/ranger/wiki/Official-user-guide
- https://bloerg.net/2012/10/17/ranger-file-manager.html
- https://www.digitalocean.com/community/tutorials/installing-and-using-ranger-a-terminal-file-manager-on-a-ubuntu-vps
- https://wiki.archlinux.org/index.php/Ranger
-
PyPDF2
2018-04-04 PyPDF2:
- https://pythonhosted.org/PyPDF2/
- https://pythonhosted.org/PyPDF2/PdfFileReader.html
- https://github.com/mstamy2/PyPDF2
Guides:
- http://www.binpress.com/tutorial/manipulating-pdfs-with-python/167
- https://automatetheboringstuff.com/chapter13/
- http://www.blog.pythonlibrary.org/2010/05/15/manipulating-pdfs-with-python-and-pypdf/
- http://www.blog.pythonlibrary.org/2012/07/11/pypdf2-the-new-fork-of-pypdf/
- https://medium.com/@menglishu09/get-bookmarks-from-pdf-using-pypdf2-4166ae8eb6f6
- http://blog.isnotworking.com/2006/08/extract-pdf-title-from-all-files-on.html
Threads:
- https://stackoverflow.com/questions/1918420/split-a-pdf-based-on-outline
- https://stackoverflow.com/questions/8329748/how-to-get-bookmarks-page-number
- https://stackoverflow.com/questions/2431426/extract-toc-of-pdf
- https://stackoverflow.com/questions/911672/extracting-titles-from-pdf-files
- https://stackoverflow.com/questions/10014572/python-open-pdf-file-to-specific-page-section
-
PowerShell Survival Kit
2018-03-07 Home:
- https://docs.microsoft.com/en-us/powershell/
- https://docs.microsoft.com/en-us/powershell/scripting/getting-started/fundamental/using-windows-powershell-for-administration?view=powershell-6
Wikiversity:
- https://en.wikiversity.org/wiki/PowerShell
- https://en.wikiversity.org/wiki/PowerShell/Variables
- https://en.wikiversity.org/wiki/PowerShell/Arrays_and_Hash_Tables
- https://en.wikiversity.org/wiki/PowerShell/Loops
Basics:
- https://stackoverflow.com/questions/1825585/determine-installed-powershell-version
- https://stackoverflow.com/questions/8343767/how-to-get-the-current-directory-of-the-cmdlet-being-executed
- https://superuser.com/questions/237902/how-can-one-show-the-current-directory-in-powershell
- https://stackoverflow.com/questions/6138849/how-do-you-move-files-folders-across-volumes-with-powershell
Commands and executables:
HTTP:
ZIP archives:
- https://serverfault.com/questions/18872/how-to-zip-unzip-files-in-powershell
- https://stackoverflow.com/questions/27768303/how-to-unzip-a-file-in-powershell
- https://www.reddit.com/r/PowerShell/comments/454e4y/how_do_i_unzip_a_zip_file_with_powershell/
- https://github.com/auberginehill/unzip-silently
- To extract silently: https://github.com/auberginehill/unzip-silently/blob/master/Unzip-Silently.ps1#L352
-
Apache Ivy ™
2018-03-05 -
magnusbaeck/logstash-filter-verifier
2018-02-12 - https://github.com/magnusbaeck/logstash-filter-verifier/releases
- https://discuss.elastic.co/t/testing-your-logstash-configuration/53061
- https://discuss.elastic.co/t/logstash-configuration-file-unit-testing/88450
- https://discuss.elastic.co/t/testing-and-benchmarking-log-collection-pipeline/42942
- https://bugs.archlinux.org/task/56039
- https://wiki.archlinux.org/index.php/Java
-
Administration
- https://docs.djangoproject.com/en/2.0/ref/contrib/admin/
- https://docs.djangoproject.com/en/2.0/ref/contrib/admin/admindocs/
Models and Querysets
- https://docs.djangoproject.com/en/2.0/topics/db/models/
- https://docs.djangoproject.com/en/2.0/ref/models/instances/
- https://docs.djangoproject.com/en/2.0/ref/models/fields/
- https://docs.djangoproject.com/en/2.0/topics/db/aggregation/
Static files
User management
- https://docs.djangoproject.com/en/2.0/topics/auth/default/
- https://docs.djangoproject.com/en/2.0/topics/auth/customizing/
- https://docs.djangoproject.com/en/2.0/ref/contrib/auth/
- https://docs.djangoproject.com/en/2.0/ref/settings/#login-redirect-url
URL dispatcher
-
Agile memes
2018-01-16 I have altered the product scope https://conversionxl.com/wp-content/uploads/2017/06/BNqDJGTGxFVpGaitiULiXNa88zNYiPhIkUwMu0sM59NuStK2VLcX-ZxGqlk9mXFG-Nb9hq6wejSNyArRZ1ppGOWhR0L5G8FS7vte-YiiRoxSaSdF72YnMtRSY9NLW4352rQUk6SW.jpg Key stakeholder https://i.pinimg.com/236x/95/82/ec/9582ec2d0801bdc4d9602bc15c3ac250--rick-moranis-ghostbusters-tech-humor.jpg Rebel SCRUM https://memegenerator.net/img/instances/500x/76938443/you-rebel-scrum.jpg Estimates https://pbs.twimg.com/media/BnzVZ4QCAAAh-6X.jpg Kanban Style https://memegenerator.net/img/instances/67497538/kanban-style.jpg Such agile http://weknowmemes.com/generator/uploads/generated/g1392129292595512104.jpg Not the manifesto! https://image.slidesharecdn.com/waterscrumfall2015-151017224509-lva1-app6892/95/waterscrumfall-by-andrew-hiles-26-638.jpg?cb=1445122117 Slices of Waterfall https://theagilesphere.files.wordpress.com/2016/02/aaeaaqaaaaaaaajnaaaajdgymgi1zdczltawytatnda4ys1ingm1lwywzguyn2jiode1mg.jpg We have Gantt charts http://i.qkme.me/3unlv7.jpg
Collections:
- https://twitter.com/agile_memes
- http://anagilemind.net/2015/02/07/collection-of-agile-related-memes/
- http://anagilemind.net/2015/03/12/more-agile-related-memes/
- http://anagilemind.net/2015/07/31/a-few-more-agile-related-memes/
- http://tiny-giant-books.com/blog/agile-memes-part-1/
- https://controlyourchaos.wordpress.com/2012/03/12/agile-memes/