Posts

Showing posts from October, 2021

Keepass - Open a database stored in Google Drive

Steps Get the link to the file from Google Drive (make sure the file is available to everyone with the link). You'll get something like this: https://drive.google.com/file/d/ <file_id> /view?usp=sharing Transform the URL into this: https://drive.google.com/uc?export=download&id= <file_id> In Keepass, go to File -> Open URL and input in the URL field the above link Unlock the database with its Master Key

Add KanBan style task manager to Outlook

Check this page:  GitHub - evrenvarol/outlook-taskboard: Kanban Board for Microsoft Outlook Tasks

Icons automatically pinned to taskbar after every reboot in Windows 10

From https://superuser.com/questions/1460439/icons-automatically-pinned-to-taskbar-after-every-reboot-in-windows-10 From this documentation:  https://docs.microsoft.com/en-us/windows/configuration/configure-windows-10-taskbar In my case I find: C:\Users\Default\AppData\Local\Microsoft\Windows\Shell\LayoutModification.xml here i have this line: CustomTaskbarLayoutCollection PinListPlacement="Replace" -> the items in this PinList will be pinned to the taskbar on every logon (through explorer.exe as far I understand). Even if I remove the items and logon again with same profile the items will be pinned aside manually pinned items. The part of the xml that defines the StartMenu will only apply on first logon.

How to generate .key and .crt file from JKS file for httpd apache server

From https://serverfault.com/questions/715827/how-to-generate-key-and-crt-file-from-jks-file-for-httpd-apache-server How to generate .key and .crt file from JKS file for httpd apache server Here is what I do, First export the key ( on windows with a jdk ): keytool -importkeystore -srckeystore mycert.jks -destkeystore keystore.p12 -deststoretype PKCS12 For apache ssl certificate file you need certificate only ( using cygwin ): openssl pkcs12 -in keystore.p12 -nokeys -out my_key_store.crt For ssl key file you need only keys ( using cygwin ): openssl pkcs12 -in keystore.p12 -nocerts -nodes -out my_store.key