Cody Casterline

Results 147 issues of Cody Casterline

Background ------------ We noticed that some log messages were never delivered to SumoLogic. Those same log messages *did* end up in StackDriver, despite similar log collection setups. (k8s -> fluentd...

enhancement

Steps to reproduce: 1. Check out this commit: https://github.com/NfNitLoop/feoblog-client/commit/ba0de8f73f47f726307edae5a90006e00d5e52d1 2. run `deno task build-npm` Output: ``` PS C:\Users\Cody\code\feoblog-client> deno task build-npm Warning deno task is unstable and may drastically change...

bug

The current client-side search is a bit of a hack. It's a brute-force search back through history, so is O(n) and uses O(n) network requests. (And network traffic, if you...

To reproduce: 1. On the feed page, start a text-based search. 2. when an item shows up, click the link to navigate to its page. 3. View the network control...

bug

See: https://gomakethings.com/fixing-safaris-back-button-browser-cache-issue-with-vanilla-js/ which recommends: ```javascript /** * If browser back button was used, flush cache * This ensures that user will always see an accurate, up-to-date view based on their...

next-release

Our Jenkins server groups lots of builds by folders, but `jenkins jobs` only shows the 2 top-level jobs we've defined. When using [Jenkinsfiles](https://jenkins.io/doc/book/pipeline-as-code/) I don't think we even have the...

I read a [blog post] that included a simplified middleware so I wrote one of my own: ```rust /// Middleware that disables browser caching by default. async fn no_store) ->...

enhancement

### Describe the bug In a component, a reactive update like this: ```typescript $: bar := foo.clone() ``` Ends up causing reactivity to treat `foo` as updated when it hasn't...

shows links in the format `{@link SomeClass#method}`, but deno_doc (or deno.land?) doesn't seem to support that format. For example, at I just see ![image](https://user-images.githubusercontent.com/339075/226075297-f5c5fe34-b3eb-4785-8127-db6795351d2c.png) which is getting rendered as: ![image](https://user-images.githubusercontent.com/339075/226075310-1ec5dc55-abfe-456a-a286-ff8449f6c030.png)

Use Case ---------- I'm writing a library that I want to publish to deno.land because Deno's great, and I get free API doc web pages there. But, I'm not super...