/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

blog.ideotec.es
| | www.dannyvankooten.com
3.1 parsecs away

Travel
| | [AI summary] A tutorial on setting up a cheap VPS to host static sites using Debian, Nginx, and Certbot for serving websites and enabling HTTPS.
| | blog.basementcommunity.com
3.8 parsecs away

Travel
| | There's an overwhelming amount of options today for deploying something to the Internet. You've got services like and that allow you to deploy worldwide wi...
| | ericlathrop.com
3.0 parsecs away

Travel
| | I often need to view a bunch of static HTML files in my browser locally, and I often need to open them with http:// rather than file:// URLs so related CSS or JavaScript files load correctly. Luckily, Python provides a simple web server, and most Linux distros include Python.
| | miparnisariblog.wordpress.com
29.0 parsecs away

Travel
| PatternDescriptionExample usagesWorks onTwo pointersIterate over an array or multiple arrays to achieve some goal, faster than O(n^2)Finding palindromes, merging two arrays, subsequences in stringsUnsorted arrays, sorted arrays, stringsSliding windowFind a subarray that satisfies some numerical constraint. (If the constraint involves counting, use a hashmap).Add elements from the right until the constraint is broken, then remove...