lookbusy1344

Results 6 issues of lookbusy1344

I was trying the hello world example with VS2022 and Address Sanitizer. When I request 127:0.0.1:18080 in Edge browser, I get an Asan error. Its caused by the request for...

## Description The documentation for `htmx.config.getCacheBusterParam` can be confusing. Colleagues and I expected an ephemeral timestamp or random number, not the target element id. I have tried to clarify its...

Regarding `htmx.config.getCacheBusterParam` the documentation says “defaults to false, if set to true htmx will include a cache-busting parameter in GET requests to avoid caching partial responses by the browser” But...

Is it possible to check records for field types that lack a customised Equals override, or that use reference equality? These fields can cause subtle bugs, and I’m not aware...

02_end_to_end_machine_learning_project.ipynb contains a bug in calls to DataFrame.corr(), eg the line ``` corr_matrix = housing.corr() ``` Should be ``` corr_matrix = housing.corr(numeric_only=True) ``` Running it on colab gives a warning,...

in 02_end_to_end these lines give an error: ``` cat_encoder = OneHotEncoder() housing_cat_1hot = cat_encoder.fit_transform(housing_cat) ``` "Pandas output does not support sparse data." The fix seems to be: ``` cat_encoder =...