Commit graph

155 commits

Author SHA1 Message Date
Paul Gauthier
3ff0c7ce35 copy 2024-06-02 09:28:56 -07:00
Paul Gauthier
2cb9a8ddc8 copy 2024-06-01 16:10:55 -07:00
Paul Gauthier
47a3cb8adf copy 2024-06-01 15:05:29 -07:00
Paul Gauthier
2febc663f3 copy 2024-06-01 14:48:12 -07:00
Paul Gauthier
bc4d39ddf2 copy 2024-06-01 11:46:53 -07:00
Paul Gauthier
26edbcc8f1 copy 2024-06-01 11:26:16 -07:00
Paul Gauthier
fcc62ebffc copy 2024-06-01 07:34:30 -07:00
Paul Gauthier
07d36b22c0 copy 2024-06-01 07:23:25 -07:00
Paul Gauthier
7623b8e2e6 copy 2024-06-01 07:03:58 -07:00
Paul Gauthier
6a2d7e08c2 copy 2024-05-31 13:32:20 -07:00
Paul Gauthier
2c6b472946 copy 2024-05-31 11:28:38 -07:00
Paul Gauthier
38ac9de678 use underscores in graph fnames 2024-05-31 09:44:33 -07:00
Paul Gauthier
0120d434ff added draft article 2024-05-31 09:33:31 -07:00
Paul Gauthier
6966936316 Updated graph to use pass@1 unhinted results from other agents 2024-05-30 15:29:33 -07:00
Paul Gauthier
d5ca9b3696 updated autocoderover results 2024-05-30 09:45:02 -07:00
Paul Gauthier
689786a875 copy 2024-05-25 12:14:48 -07:00
Paul Gauthier
de1c4cfb9e added blog post 2024-05-24 09:59:59 -07:00
Paul Gauthier
17381bed58 copy 2024-05-23 13:13:34 -07:00
Paul Gauthier
c0f5cbb9b5 copy 2024-05-23 10:03:43 -07:00
Paul Gauthier
484f625b2c copy 2024-05-23 09:49:47 -07:00
Paul Gauthier
15669b7ae8 copy 2024-05-23 08:28:42 -07:00
Paul Gauthier
2f3baf7cdd copy 2024-05-23 08:04:37 -07:00
Paul Gauthier
15c228097b copy 2024-05-23 07:45:54 -07:00
Paul Gauthier
cdf4969c01 copy 2024-05-22 20:24:10 -07:00
Paul Gauthier
5b8bbdbe5f copy 2024-05-22 16:08:51 -07:00
Paul Gauthier
9f2554fed7 copy 2024-05-22 15:33:11 -07:00
Paul Gauthier
0b01b7caf5 copy 2024-05-22 15:26:16 -07:00
Paul Gauthier
29e92b2398 Updated HISTORY, added linting image 2024-05-22 12:08:50 -07:00
Paul Gauthier
8a960083c7 updated chat transcript divs 2024-05-17 12:51:13 -07:00
Paul Gauthier
6fe67d1132 added blog 2024-05-16 18:06:04 -07:00
Paul Gauthier
74c0df8df8 svg 2024-05-15 11:54:00 -07:00
Paul Gauthier
590cbbddfd Added models over time to leaderboard page 2024-05-15 11:51:28 -07:00
Paul Gauthier
cd10e0bf03 make all highlight_images jpg 2024-05-09 09:50:05 -07:00
Paul Gauthier
ccb8be7adf use jpg as highlight 2024-05-09 09:07:01 -07:00
Paul Gauthier
64938eafee Use highlight as og:image if present 2024-05-06 16:21:22 -07:00
Paul Gauthier
3289383cbe new video 2024-05-02 10:52:12 -07:00
Paul Gauthier
7c2e9a394c browser blog post 2024-05-02 10:39:33 -07:00
Paul Gauthier
0185e02a92 updated favicon paths 2024-05-01 09:14:53 -07:00
Paul Gauthier
4b87f2b40f updated icons 2024-04-29 11:00:23 -07:00
Paul Gauthier
80d299cb28 favicon 2024-04-28 14:30:05 -07:00
Paul Gauthier
0b29ffaa65 copy 2024-04-20 17:06:56 -07:00
Paul Gauthier
27adaa7f6f copy 2024-04-20 17:04:15 -07:00
Paul Gauthier
7875418183 fix column order 2024-04-09 18:11:08 -07:00
Paul Gauthier
00f1cdb561 Added gpt-4-turbo vision blog post 2024-04-09 16:55:35 -07:00
Paul Gauthier
ac39791fee fixed mislabelled gpt-4 column 2024-03-09 08:20:27 -08:00
Paul Gauthier
66d3852fa0 copy 2024-03-08 08:23:10 -08:00
Paul Gauthier
7fbd9e2be4 Added claude post 2024-03-08 08:00:41 -08:00
Paul Gauthier
57fe7b2c81 layout 2024-02-19 17:53:04 -08:00
Paul Gauthier
fd2a545803 layout 2024-02-19 14:58:50 -08:00
Paul Gauthier
799ab3d63e aider: Increase highlight image size on mobile using em units for better responsiveness.
# Aider chat conversation:

USER: can the highlight image be bigger on mobile? does it make sense to use em not pixels to size it?

ASSISTANT: Using `em` units for the highlight image size can be beneficial for responsiveness, as `em` units are relative to the font-size of the element (or the body if not set), which can scale better across different screen sizes and maintain the design's typographic harmony.

To make the highlight image bigger on mobile, we can use a media query that targets smaller screen sizes and increases the `max-width` of the `.post-highlight` class in `em` units. Here's the diff for the changes:

```diff
--- assets/css/style.scss
+++ assets/css/style.scss
@@ ... @@
 .post-highlight {
-  max-width: 200px;
+  max-width: 12.5em; /* Assuming the base font-size is 16px, 12.5em is equivalent to 200px */
   margin-right: 1em;
 }

+@media (max-width: 768px) {
+  .post-highlight {
+    max-width: 18em; /* Larger size on mobile */
+  }
+}
+
 .post-content {
   display: flex;
   align-items: flex-start;
```

This change assumes that the base font size is 16px, which is a common default for browsers. If the base font size is different, you may need to adjust the `em` values accordingly. The media query targets screens with a maximum width of 768px, which is a common breakpoint for tablets and mobile devices.
2024-02-19 14:56:29 -08:00