Skip to content

Instantly share code, notes, and snippets.

@GROX13
GROX13 / application.log
Created June 14, 2022 13:22
Spring auth server application log
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.7.0)
2022-06-14 17:19:37.541 INFO 31424 --- [ restartedMain] ge.example.auth.AuthApplicationKt : Starting AuthApplicationKt using Java 17 on Home-HP-Pavilion-Gaming with PID 31424 (D:\Work\million_dollar_idea\dev\auth\build\classes\kotlin\main started by giorg in D:\Work\million_dollar_idea\dev)
2022-06-14 17:19:37.542 INFO 31424 --- [ restartedMain] ge.example.auth.AuthApplicationKt : The following 1 profile is active: "local"
92046 silly gunzTarPerm modified mode [ 'test/number/max-safe-integer/is-implemented.js', 438, 436 ]
92047 silly gunzTarPerm extractEntry test/number/min-safe-integer/implement.js
92048 silly gunzTarPerm modified mode [ 'test/number/min-safe-integer/implement.js', 438, 436 ]
92049 silly gunzTarPerm extractEntry docs/namespace_bot_userAgent.html
92050 silly gunzTarPerm modified mode [ 'docs/namespace_bot_userAgent.html', 416, 436 ]
92051 silly gunzTarPerm extractEntry docs/namespace_webdriver.html
92052 silly gunzTarPerm modified mode [ 'docs/namespace_webdriver.html', 416, 436 ]
92053 silly gunzTarPerm extractEntry toLower.js
92054 silly gunzTarPerm modified mode [ 'toLower.js', 420, 436 ]
92055 silly gunzTarPerm extractEntry _baseDelay.js
@GROX13
GROX13 / Checkstyle pre-commit hook
Created April 8, 2016 07:38 — forked from gkzhong/Checkstyle pre-commit hook
Pre Commit Hook for running checkstyle on changed files
#!/usr/bin/perl
#
# Pre-commit hook for running checkstyle on changed Java sources
#
# To use this you need:
# 1. checkstyle's jar file somewhere
# 2. a checkstyle XML check file somewhere
# 3. To configure git:
# * git config --add checkstyle.jar <location of jar>
# * git config --add checkstyle.checkfile <location of checkfile>