vladd11
vladd11
Hello. I'd like to rewrite simple MySQL query: ``` INSERT INTO users(id, phone, sms_code, sms_code_expiration) VALUES (?id, ?phone, ?sms_code, ?sms_code_expiration) ON DUPLICATE KEY UPDATE sms_code=?sms_code, sms_code_expiration=?sms_code_expiration; ``` I see that...
Hello. I'm talking about this [block of code](https://github.com/google-ar/arcore-android-sdk/blob/c684bbda37e44099c273c3e5274fae6fccee293c/samples/hello_ar_c/app/src/main/java/com/google/ar/core/examples/c/helloar/HelloArActivity.java#L239): ``` @Override public void onSurfaceChanged(GL10 gl, int width, int height) { viewportWidth = width; viewportHeight = height; viewportChanged = true; } @Override...
Hello. I want to use YDB (serverless) console inside [IntelliJ IDEA](https://www.jetbrains.com/idea/) so I added new driver (ydb-sdk-jdbc-uberjar-1.8.0.jar) there and select "com.yandex.ydb.jdbc.YdbDriver" class. I take IAM token: `yc iam create-token >...