-
Recent Posts
Recent Comments
Archives
- May 2025
- March 2025
- February 2025
- January 2025
- March 2024
- January 2024
- November 2023
- June 2023
- May 2023
- April 2023
- March 2023
- November 2022
- September 2022
- August 2022
- May 2022
- April 2022
- February 2022
- January 2022
- November 2021
- October 2021
- July 2021
- April 2021
- December 2020
- September 2020
- August 2020
- May 2020
- January 2020
- December 2019
- October 2019
- December 2018
- September 2018
- July 2018
- April 2018
- March 2018
- February 2018
- January 2018
- September 2017
- August 2017
- July 2017
- December 2016
- November 2016
- September 2016
- May 2016
- April 2016
- March 2016
- October 2015
- September 2015
- August 2015
- March 2015
- October 2014
- September 2014
- June 2014
- May 2014
- April 2014
- March 2014
- October 2013
- September 2013
- August 2013
- July 2013
- March 2013
- March 2012
- February 2012
- January 2012
- April 2011
- February 2011
- January 2011
- July 2010
- April 2010
- March 2010
- December 2009
- November 2009
- October 2009
Categories
Meta
Author Archives: tim
Reaction to CUPED article
On September 15, 2024, Craig Sexauer posted “CUPED Explained” where CUPED stands for Controlled-experiment Using Pre-Experiment Data, billed as “one of the most powerful algorithmic tools for increasing the speed and accuracy of experimentation programs.” Here is a list of … Continue reading
Posted in Machine Learning
Comments Off on Reaction to CUPED article
VT-D Very Annoying
I really love my HP Z820 Workstation. Two Xeon CPUs, 256GB of RAM. Runs VMWare. The fans scream like a banshee when it is powered up. However, when the power goes out (happens three+ times a year), it has the … Continue reading
Posted in Computer Builds, Hardware
Comments Off on VT-D Very Annoying
Fix for GraphQL testing
You are here because you are following the “Building a GraphQL service“, and specifically the testing section using GraphQlTest, and you keep getting a runtime error: The fix is in BookController, bookById: simply change “@Argument String id” to be “@Argument(“id”) … Continue reading
Posted in Software Engineering
Comments Off on Fix for GraphQL testing
Fix for ‘remote-git’ is not a git command
Just documenting another weird error message. If you see Then, in your .git/config file, change this line: to this: and try your git command again.
Posted in Software Project
Comments Off on Fix for ‘remote-git’ is not a git command
SSH path canonicalization failed
Yet another “change stuff just to change stuff” explanation and fix. Problem: you see “No such file” or “path canonicalization failed” after an scp command line that used to work correctly. Fix: add a “-O” argument to your “scp” command … Continue reading
Posted in Software Project, Ubuntu
Comments Off on SSH path canonicalization failed
Fix for white label error in tutorial
For those of you who are following https://learnk8s.io/spring-boot-kubernetes-guide (from 2022) When you get the dreaded “Whitelabel Error Page” and you are pulling out your hair, here is your solution: The stack overflow: https://stackoverflow.com/questions/42330870/spring-boot-unable-to-resolve-freemarker-view (from 2020) Which points you to https://github.com/spring-projects/spring-boot/issues/15131 … Continue reading
Posted in Software Project
Comments Off on Fix for white label error in tutorial
Most Obvious AI Quote
… that argues reasoning models were most likely mimicking the data they saw in training rather than actually solving new problems. 2024-12-21, The Wall Street Journal, “The Next Great Leap in AI is behind schedule and crazy expensive” At least … Continue reading
Posted in Machine Learning
Comments Off on Most Obvious AI Quote
Intel 14700K
This is a new computer build. Some facts on the CPU: it is currently #89 on PassMark [53,737] cpubenchmark.net, with a turbo speed of 5.6 GHz and TDP of 125W to 253W. It is 20 cores/28 threads, first seen Q4 … Continue reading
Posted in Computer Builds
Comments Off on Intel 14700K
Better pattern for @Autowired
Just ran across this in a video about Spring Boot by Frank Moley and I thought it deserved a callout. When creating your Beans (e.g. Controller), you can either: @RestController() public class ItemController { @Autowired; private ItemService itemService; Or you … Continue reading
Posted in Software Project, Uncategorized
Comments Off on Better pattern for @Autowired
Argo CD notes
Argo CD (github source) is a Continuous Delivery tool done “GitOps” style. Here, that means keeping all of your (Kubernetes) application definitions and configurations under source code control (git). Assuming you follow GitOps CI/CD best practices of separate repositories (one … Continue reading
Posted in Software Engineering
Comments Off on Argo CD notes