Posts

Tricks : Getting Image URL When Page Doesn't Want You To!

This one for example. Why? A good reason I guess... Thankfully , what one can invent, another can discover as Dr. Doyle puts it.. Open Chrome Developer Tools (Right-click > Inspect) Expose the Application menu (might need the right pointing chevron >> ) This gives you a new left panel that has menus like Manifest, Storage, Cache, etc. Scroll down and use the expansion arrow under Frames Then expand Images If, after this you don't k how to grab the URL, hey, McD is hiring 😊

Controlling Blogger (Blogspot) Post Body Width

Thank you Upwork and Md. Sumon :  The GUI for tweaking the template has no option for adjusting Page Body Container size. Only custom CSS code in the HTML of the template can do it. Look for (this is after you've gone into Theme > Edit HTML) : ]]></b:skin> And, just above that, add this code : body.item-view .Blog .post-body { margin-bottom: 0; margin-right: 0; } body.item-view .Blog .post-body-container { padding-right: 0; position: relative; margin-left: 0; margin-top: 20px; margin-bottom: 32px; } This now takes up all the available space. If you want to tweak further : body.item-view .Blog .post-body-container { padding-right: 0; position: relative; margin-left: auto; margin-top: 20px; margin-bottom: 32px; margin-right: auto; max-width: 1100px; } How do you find this out? You go into Chrome's Developer Tools and then start tweaking elements.

Dual Key Caesar Cipher

Thank you Tamer Abd Alrazaq ! One of the best Upwork engagements ever. Message : key 1 + - key 2 + - Encrypt ↓ Decrypt ↑ Ciphertext : Finally, the world has a web app that lets a user encode text using the Caesar cipher and two keys. Chars in odd positions are encrypted using Key1 and those in even positions with key2. Done March 2023, but I don't know how to keep the style specific to this app from interfering with other posts.....