hersam.com is a domain that was created on 1999-02-25,making it 25 years ago. It has several subdomains, such as dan.hersam.com , among others.
Description:Commentary on news, Linux, programming, music, web design, trivia, humor, usability and whatever else strikes his fancy at the...
Keywords:dan hersam, web log, blog, linux, jaden, web design, web hosting, reviews, software engineer,...
Discover hersam.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site
HomePage size: 19.568 KB |
Page Load Time: 0.322666 Seconds |
Website IP Address: 172.67.133.183 |
Tech Notes Desk - Active Directory, PowerShell, How To, Windows, Linux, RaspberryPi, Docker,Troubles blog.technotesdesk.com |
Port Aransas - Beachcomber Vacation Rentals, Sea Sands, Rental House Port Aransas, Port Aransas Vaca seasands.stayinporta.com |
Docker Hub hub.docker.com |
Acoustic Treatment Exposed exposed.ethanwiner.com |
Port Chester Daily Voice | Your Local News for Port Chester, New York portchester.dailyvoice.com |
Local Docker Port Exposed dan.hersam.com |
Events | Docker 2017.dockercon.com |
OpenShift, Kubernetes, Docker Cheat sheet | Comprehensive CLI Cheat sheet for OpenShift, okd.iamgini.com |
?️ Getting Started with Docker | dockerlabs.collabnix.com |
Local Docker Port Exposed https://dan.hersam.com/ |
Amidst a tangled web https://dan.hersam.com/archive/ |
Daily Comics for Thursday, May 16th, 2024 https://dan.hersam.com/comics/ |
Show - Riddles and Brain Teasers https://dan.hersam.com/riddles.php |
Amidst a tangled web https://dan.hersam.com/category/humor/ |
Amidst a tangled web https://dan.hersam.com/2003/01/ |
Amidst a tangled web https://dan.hersam.com/2007/02/ |
Amidst a tangled web https://dan.hersam.com/2003/08/ |
Amidst a tangled web https://dan.hersam.com/2002/12/ |
Local Docker Port Exposed - Hersam http://hersam.com/ |
SnapTimer - Free Windows Countdown Timer - Hersam https://dan.hersam.com/software/snaptimer/ |
Calculate a word's value - Hersam https://dan.hersam.com/tools/word-value.php |
Replace smart quotes with regular straight quotes - Hersam https://dan.hersam.com/tools/smart-quotes.php |
Time calculator - Hersam https://dan.hersam.com/tools/time-calc.php |
Sum a list of numbers - Hersam https://dan.hersam.com/tools/sum.php |
A hersam.com. 300 IN A 104.21.5.184 |
AAAA hersam.com. 300 IN AAAA 2606:4700:3031::6815:5b8 |
MX hersam.com. 300 IN MX 10 in1-smtp.messagingengine.com. |
NS hersam.com. 86400 IN NS amit.ns.cloudflare.com. |
TXT hersam.com. 300 IN TXT v=spf1 include:spf.messagingengine.com -all |
SOA hersam.com. 1800 IN SOA amit.ns.cloudflare.com. dns.cloudflare.com. 2340735513 10000 2400 604800 1800 |
Date: Tue, 14 May 2024 18:30:46 GMT |
Content-Type: text/html; charset=UTF-8 |
Transfer-Encoding: chunked |
Connection: keep-alive |
link: https://dan.hersam.com/wp-json/; rel="https://api.w.org/" |
vary: Accept-Encoding, Cookie |
x-frame-options: SAMEORIGIN |
x-xss-protection: 1; mode=block |
x-content-type-options: nosniff |
CF-Cache-Status: DYNAMIC |
Report-To: "endpoints":["url":"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=tHLzWEAkRI0f3C6rGSzTl7P43SbLVY8lKXM5mCvrNnXuvM6WuKSikDTnOpOzMy%2FaenzDpR4kd4anLGPXt%2FFHN9hOcJsoPFpIr2rWWr1OqtIdUru0aJ%2BDPeVwBY1wWxDP0bydtO01lbFjswTYKQ%3D%3D"],"group":"cf-nel","max_age":604800 |
NEL: "success_fraction":0,"report_to":"cf-nel","max_age":604800 |
Server: cloudflare |
CF-RAY: 883cf6197c0b940a-LHR |
alt-svc: h3=":443"; ma=86400 |
charset="utf-8"/ |
content="width=device-width, initial-scale=1" name="viewport"/ |
content="Dan Hersam" name="author"/ |
content="US" name="geo.country"/ |
content="en" name="dc.language"/ |
content="/ew3H4+6tN1D2xeMpx2Dmc4BLpFGZUNNWcPurH7Wdnk=" name="verify-v1"/ |
content="index,follow" name="robots"/ |
content="Commentary on news, Linux, programming, music, web design, trivia, humor, usability and whatever else strikes his fancy at the time." name="description"/ |
content="dan hersam, web log, blog, linux, jaden, web design, web hosting, reviews, software engineer, funny lists, humor, web browsers, productivity" name="keywords"/ |
Amidst a tangled web If you’re using docker with ufw (Ubuntu Firewall), your local ports may be exposed to the outside world. I recently read about this issue and when I checked, sure enough, the local ports of all of my docker containers were readily accessible. It felt like being caught with my fly down. Why in the world docker does this by default is beyond me. And it’s not as if they’re not aware of it. This GitHub issue clearly lays out the problem. It’s disappointing the issue has existed for so long and the Docker team isn’t willing to fix it. It’s a major violation of the secure by default principle. If you too are learning about this, here’s the fix. 1. Create /etc/docker/daemon.json if it doesn’t already exist 2. Add the following content to the file { "iptables": false } 3. Restart docker sudo service docker restart Who knows if there are other docker vulnerabilities I’m not aware of, but at least in this case, my servers have zipped up. Update: I discovered that disabling iptables has the side effect of blocking outgoing network requests from your containers due to ufw’s default behavior. If this creates a problem, you can leave iptables enabled, but bind your ports to localhost. For example, instead of using 3001:3001 for your ports, use localhost:3001:3001. Alternatively, you can make ufw allow outbound requests. SecurityHow to Speed Up Ansible Playbooks If you’re using Ansible to maintain server configurations, you’re probably quite aware that speed is not something often used to describe Ansible. But I recently came across a plugin that had an amazing 82% performance improvement. And it took a single command and two lines in the ansible.cfg. The plugin is Mitogen , more specifically Mitogen for Ansible . On my Ubuntu Ansible controller server I installed it with pip3 install mitogen , then added these two lines to ansible.cfg: strategy_plugins = /usr/local/lib/python3.8/dist-packages/ansible_mitogen/plugins/strategy strategy = mitogen_linear Now a simple playbook that used to take 45 seconds takes 7 seconds. And a larger playbook that used to take ~3 1/2 minutes finished in just over 32 seconds. It’s rare to get such a massive performance improvement without any downsides (at least none I’m aware of). So if you’re a fellow Ansible user, I highly recommend adding Mitogen. Useful , Web hostingChrome 85 Causing Login Failures Google Chrome recently updated to Version 85.0.4183.83 on my machines, but unlike most updates, there was a rather unfortunate downside to the update. I was no longer able to log in to certain web sites. The problem manifested in two ways that I saw. One, an infinite redirect loop and two, a failed login even though I’d entered valid credentials. The fix was not at all obvious, hence this blog post. I had to disable the SameSite by default cookies” flag. 1) Open this URL in Chrome: chrome://flags/#same-site-by-default-cookies 2) Select Disabled” in the dropdown. 3) Restart Chrome (the entire browser, not just the tab or window) I was able to log in to the aforementioned sites in Firefox, so my guess is the Chrome team is using their monopoly to push a more restrictive security feature that ends up breaking sites that haven’t gotten the memo. Hopefully this is a temporary fix and the flag can be enabled again once sites realize their users can’t log in with Chrome. Web browsersCleaning Up The Web As web pages get more cluttered, even ad blockers don’t cut it. Medium.com pages are particularly hard to read with the huge notice they add on the bottom of the page, covering up the content and making it difficult to read. My solution has continued to work surprisingly well for the past few years. It’s a bookmarklet that removes all sticky elements (ones that stay visible when you scroll). The bookmarklet in action on a random Medium.com page To use it, drag the link below to your browser’s bookmarks bar then click on it whenever a web page looks a little cluttered. -sticky UsefulFree Printable Weekly and Daily Planners I searched high and low for free, printable PDF weekly and daily planners for my kids to be able to schedule their days and weeks. I expected to find dozens of options but was surprised to find very few. Of those few, some plastered their logos all over or declared the document could only be used by students of a particular university. Others wanted you to create an account or trade your email for the document. And others were close to what I wanted, but didn’t have 1/2 hour increments or some other small detail. It all seemed excessive for such a simple document. So I created two planners that can be freely downloaded and used for whatever purposes you can come up with. Download Weekly Planner Download Daily Planner Happy planning! ProductivityRead more posts » - home my projects blog archives docs entertainment funny lists humor tools software Most Popular Pages Riddles Brain teasers Trivia Pickup lines Not bright one liners Search blog archives Random quote Don’t let the past dictate who you are, let it dictate who you will become. ( See all the quotes ) Page loaded in 0.0044...
Domain Name: HERSAM.COM Registry Domain ID: 3884118_DOMAIN_COM-VRSN Registrar WHOIS Server: whois.porkbun.com Registrar URL: http://porkbun.com Updated Date: 2024-02-26T08:01:53Z Creation Date: 1999-02-25T05:00:00Z Registry Expiry Date: 2025-02-25T05:00:00Z Registrar: Porkbun LLC Registrar IANA ID: 1861 Registrar Abuse Contact Email: abuse@porkbun.com Registrar Abuse Contact Phone: 5038508351 Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Name Server: AMIT.NS.CLOUDFLARE.COM Name Server: ROBIN.NS.CLOUDFLARE.COM DNSSEC: signedDelegation DNSSEC DS Data: 2371 13 2 5C3976B799E57EF0BEFCAF70BCC5B61900DCE2DA5E750ACD8F9D572440A13746 >>> Last update of whois database: 2024-05-17T20:53:11Z <<<