Tobi

Results 23 comments of Tobi

Any updates on 3.1 support?

@jvmlet Here's an abstracted version ``` syntax = "proto3"; package org.tobi; option java_package = "org.tobi.grpc"; option java_multiple_files = true; import "....proto"; service MyGrpcService { rpc rpc_method_name(org.tobi...) returns (RpcResponse) {}; }...

@jvmlet seems the problem is the generator, at compile time, compiles to camelCase, however at runtime, the library is not doing this same conversion from snake_case to camelCase

@jvmlet I put this hack in place: ```java private static final Pattern SNAKE_CASE_PATTERN = Pattern.compile("_"); // ... Function filterFactory = name -> method -> { var processedName = SNAKE_CASE_PATTERN.matcher(name).replaceAll(""); return...

@jvmlet ah, so the whole implementation needs to be reworked, because the original implementation simply does an `ignoreCase` comparison. Anyway, I don't have any cases like this so I will...

@jvmlet I get: ``` - Gradle Core Plugins (plugin is not in 'org.gradle' namespace) - Plugin Repositories (could not resolve plugin artifact 'io.github.lognet.grpc-spring-boot:io.github.lognet.grpc-spring-boot.gradle.plugin:4.6.0-SNAPSHOT') Searched in the following repositories: maven(https://repo.spring.io/milestone) maven2(https://repo.spring.io/snapshot)...

@jvmlet I tried > settings.gradle ```gradle pluginManagement { repositories { maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } } } ``` > build.gradle ```gradle plugins { id "io.github.lognet.grpc-spring-boot" version '4.6.0-SNAPSHOT' } ``` which...

Does this API scrape the pirate bay pages?

Succesfully, and quickly, scraped results in chrome. Including other data and options is arbitrary; however, I'm conducting specific searches and only need magnets. ![image](https://cloud.githubusercontent.com/assets/8431888/26685223/5ec57230-46e1-11e7-8de3-05a6614d8b10.png) Proof of concept.