This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Down home country style and cottagecore have some overlap but distinct differences in their origins, aesthetics, and cultural contexts: | |
Down Home Country Style: | |
Rooted in authentic rural American life and traditions | |
Emphasizes practicality and function over aesthetics | |
Features weathered wood, vintage farm equipment, mason jars, quilts | |
Colors tend to be more muted - barn reds, faded blues, natural wood tones | |
Often includes elements like galvanized metal, burlap, and repurposed items | |
Celebrates actual farming/ranching heritage and rural lifestyle | |
More masculine or gender-neutral in presentation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
golangci-lint is not very good. | |
https://github.com/golangci/golangci-lint/issues/2859 | |
https://github.com/golangci/golangci-lint/pull/5487#issuecomment-2751517605 | |
https://gophers.slack.com/archives/CBL6Z5U7J/p1744203950249799 | |
https://gophers.slack.com/archives/CBL6Z5U7J/p1742409789576719?thread_ts=1742400174.605149&cid=CBL6Z5U7J | |
https://github.com/dominikh/go-tools/issues/1474#issuecomment-1850760813 | |
https://github.com/dominikh/go-tools/issues/1373 | |
https://github.com/golangci/golangci-lint/issues/369 | |
https://github.com/golangci/golangci-lint/issues/1379#issuecomment-782788069 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> I am standing on a cliff 307 meters above the water. If a canon shoots a ball with a mass of 40KG, | |
... at an angle of 37deg with an acceleration of 800 m/s^2, how far from the cliff will the ball strike | |
... the water assuming no air resistance? | |
<think> | |
Alright, so I'm standing on a cliff that's 307 meters above the water. Someone is shooting a | |
cannonball with a mass of 40 kilograms using a cannon. The cannon fires the ball at an angle of | |
37 degrees and accelerates it to a speed squared acceleration of 800 m/sยฒ. I need to figure out | |
how far from the cliff the ball will land in the water, assuming there's no air resistance. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package wikiquote | |
import ( | |
"encoding/xml" | |
"iter" | |
"log" | |
"os" | |
"strings" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parsing: lvchange -vvv -a y datavg/movies3 | |
Recognised command lvchange_activate (id 4 / enum 6). | |
Sysfs filter initialised. | |
Internal filter initialised. | |
LVM type filter initialised. | |
Usable device filter initialised (scan_lvs 0). | |
mpath filter initialised. | |
Partitioned filter initialised. | |
signature filter initialised. | |
MD filter initialised. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl 'https://www.treasurydirect.gov/TA_WS/securities/auctioned?format=json&type=Bill' | jq -C '.[]|select(.securityTerm=="17-Week")|{issueDate,highInvestmentRate,highPrice,lowDiscountRate,pricePer100}' | less |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 bytes from 192.168.0.101: icmp_seq=1479 ttl=64 time=4.459 ms | |
64 bytes from 192.168.0.101: icmp_seq=1480 ttl=64 time=4.524 ms | |
64 bytes from 192.168.0.101: icmp_seq=1481 ttl=64 time=4.343 ms | |
64 bytes from 192.168.0.101: icmp_seq=1482 ttl=64 time=7.819 ms | |
64 bytes from 192.168.0.101: icmp_seq=1483 ttl=64 time=56.858 ms | |
64 bytes from 192.168.0.101: icmp_seq=1484 ttl=64 time=101.132 ms | |
64 bytes from 192.168.0.101: icmp_seq=1485 ttl=64 time=149.516 ms | |
64 bytes from 192.168.0.101: icmp_seq=1486 ttl=64 time=196.145 ms | |
64 bytes from 192.168.0.101: icmp_seq=1487 ttl=64 time=240.002 ms | |
64 bytes from 192.168.0.101: icmp_seq=1488 ttl=64 time=283.175 ms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
My MacBook had load over 600, even after a reboot it was unusable (load still 500+). | |
I looked at Activity Monitor and noticed kernel_task was maxing out as much as it can and so was syslogd. | |
I looked at recent writes to log files in /var/log and noticed junk from acnvmagent. | |
I killed that process. It came back. | |
I ran `sudo chmod 0 /opt/cisco/anyconnect/NVM/bin/acnvmagent` and killed the process. | |
It did not come back. Now my laptop is usable again. | |
Possibly relevant log message: | |
``` Apr 14 16:13:03 JAWREN-M-455A vpnagentd[85]: [acnvmagent] Function: killNVMIfPresent Thread Id: 0xCFA5000 File: /tmp/build/thehoff/Phoenix_MR10.310731736127/Phoenix_MR1/NVM/ServicePlugin/Unix/NVMServicePluginImpl.cpp Line: 165 :: Verifying process is not already running... Apr 14 16:13:03 JAWREN-M-455A vpnagentd[85]: [acnvmagent] Function: StartService Thread Id: 0xCFA5000 File: /tmp/build/thehoff/Phoenix_MR10.310731736127/Phoenix_MR1/NVM/ServicePlugin/Unix/NVMServicePluginImpl.cpp Line: 118 :: 'acnvmagent' service started, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"errors" | |
"io" | |
"log" | |
"net/http" | |
"os" | |
"strconv" | |
"time" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 | |
# Lifted from unminimize. | |
RUN set -e; if [ -f /etc/dpkg/dpkg.cfg.d/excludes ] || [ -f /etc/dpkg/dpkg.cfg.d/excludes.dpkg-tmp ]; then \ | |
echo "Re-enabling installation of all documentation in dpkg..." ;\ | |
if [ -f /etc/dpkg/dpkg.cfg.d/excludes ]; then \ | |
mv /etc/dpkg/dpkg.cfg.d/excludes /etc/dpkg/dpkg.cfg.d/excludes.dpkg-tmp ;\ | |
fi ;\ | |
echo "Updating package list and upgrading packages..." ;\ | |
apt-get update ;\ | |
# apt-get upgrade asks for confirmation before upgrading packages to let the user stop here |
NewerOlder