Skip to content

Instantly share code, notes, and snippets.

@eywu
eywu / golang-templ-cli-on-mac.md
Last active March 13, 2024 22:48
Installing golang Templ CLI on Mac using Nix
@eywu
eywu / seo-faq-_semantic.html
Last active March 2, 2023 19:41
Various HTML patterns found for FAQ markup
<!-- Unordered List Semantic Markup (Recommended) //-->
<h3>Frequently Asked Questions (FAQ)</h3>
<ul>
<li class="faqItem">
<p class="question">This is a question?</p>
<p class="answer">This is an answer</p>
</li>
<li class="faqItem">
<p class="question">This is a question?</p>
@eywu
eywu / goodbots-animated-gif
Last active August 2, 2021 00:32
Animated gif for Goodbots
Animated gif for Goodbots

Keybase proof

I hereby claim:

  • I am eywu on github.
  • I am eywu (https://keybase.io/eywu) on keybase.
  • I have a public key ASDPSb7LeiVGXUOdOZBQL_QRV_C8cKiV_x-cflkFrhibmgo

To claim this, I am signing this object:

{
{I have|I've} been {surfing|browsing} online more than {three|3|2|4} hours today, yet I never found any interesting article like yours. {It's|It is} pretty worth enough for me. {In my opinion|Personally|In my view}, if all {webmasters|site owners|website owners|web owners} and bloggers made good content as you did, the {internet|net|web} will be {much more|a lot more} useful than ever before.|
I {couldn't|could not} {resist|refrain from} commenting. {Very well|Perfectly|Well|Exceptionally well} written!|
{I will|I'll} {right away|immediately} {take hold of|grab|clutch|grasp|seize|snatch} your {rss|rss feed} as I {can not|can't} {in finding|find|to find} your {email|e-mail} subscription {link|hyperlink} or {newsletter|e-newsletter} service. Do {you have|you've} any? {Please|Kindly} {allow|permit|let} me {realize|recognize|understand|recognise|know} {so that|in order that} I {may just|may|could} subscribe. Thanks.|
{It is|It's} {appropriate|perfect|the best} time to make some plans for the future and {it is|i
@eywu
eywu / urls.sh
Created October 31, 2012 23:43
Simple Script to Iterate over a List of URLs and Output their Status Code
#!/bin/bash
while read URL; do
curl -o /dev/null --silent --head --write-out '%{url_effective}\t%{http_code}\t%{redirect_url}\n' "$URL"
done < urls.txt