Mikael Gueck

Results 11 comments of Mikael Gueck

Another idea I've been toying with has been approaching the problem from a genetic algorithm perspective, where you have a crawler that starts from the bottom left side of the...

I have a similar use case. I'd like to run deep learning inference tasks on CUDA-capable GPUs on Fargate (edit: or Lambda), and pay per second of usage. The specific...

Now that we're in the world of Java 8, how about... ```java @Test public void testConditional() throws Exception { final UrlBuilder ub1 = UrlBuilder.empty().withScheme("https"); final UrlBuilder ub2 = ub1.conditional( (x)...

Bumped into this issue in a project where I'm trying to replace GSON for JSON and xstream for XML with Jackson. Since I can't wrap the objects, I'll try to...

@RikkiGibson Yes, but since this was the very last commit I made for my previous employer, I don't have access to the partial implementation which I got semi-working. Customizing collection...

So far I've had the best latency results with rtw89_8852ae with kernel 6.0.0rc6 and all modprobe options for the module removed. 01:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8852AE 802.11ax...

Bumped into this today, slf4j is the only BOM-less dependency in the project.

I suppose one workaround might be to set up a separate build and publish infrastructure to automatically create a importable POM that has the kind of scope settings every other...

```python import requests import pandas as pd import numpy as np aq_fields = { 'fmisid': np.int32, 'time': np.datetime64, 'AQINDEX_PT1H_avg': np.float64, 'PM10_PT1H_avg': np.float64, 'PM25_PT1H_avg': np.float64, 'O3_PT1H_avg': np.float64, 'CO_PT1H_avg': np.float64, 'SO2_PT1H_avg': np.float64,...

Never mind, they cut down access to the data through this endpoint, to seven previous days.