Skip to content

Instantly share code, notes, and snippets.

View KavyrshinR's full-sized avatar

Roman Kavyrshin KavyrshinR

View GitHub Profile
in Dockerfile
other steps...
RUN --mount=type=secret,id=sentry_auth_token,env=SENTRY_AUTH_TOKEN \
./gradlew --no-daemon build
... other steps
build command
@KavyrshinR
KavyrshinR / gist:02b4949be3900636bb3bd595fbafae0b
Created December 4, 2025 05:58
logs setting for debugging sql and hibernate
logs for debugging sql and hibernate
java
logging.level.org.hibernate.SQL=DEBUG
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
import java.util.Scanner;
public class SpiralCicle {
private static int n = 0;
private static int[][] array;
public static void main(String [] args) {
Scanner in = new Scanner(System.in);
n = in.nextInt();