зеркало из
https://github.com/iharh/notes.git
synced 2025-10-29 20:56:06 +02:00
m
Этот коммит содержится в:
родитель
1b0523221c
Коммит
eb174f3aff
39
pl/cross/io/fileformats/parse/antlr4.txt
Обычный файл
39
pl/cross/io/fileformats/parse/antlr4.txt
Обычный файл
@ -0,0 +1,39 @@
|
||||
https://www.antlr.org/
|
||||
|
||||
https://github.com/antlr/antlr4
|
||||
https://github.com/antlr/grammars-v4
|
||||
|
||||
https://github.com/antlr/antlr4/tree/4.6/doc
|
||||
https://github.com/antlr/antlr4/blob/master/doc/index.md
|
||||
https://github.com/antlr/antlr4/blob/master/doc/getting-started.md
|
||||
https://github.com/antlr/antlr4/blob/master/doc/faq/index.md
|
||||
https://github.com/antlr/antlr4/blob/master/doc/tool-options.md
|
||||
https://github.com/antlr/antlr4/blob/4.6/doc/listeners.md
|
||||
|
||||
https://github.com/antlr/antlr4/blob/4.6/doc/resources.md
|
||||
https://github.com/antlr/antlr4/blob/4.6/doc/antlr-project-testing.md
|
||||
|
||||
articles
|
||||
2021
|
||||
https://habr.com/ru/company/sberdevices/blog/597553/
|
||||
https://github.com/timurnav/gradle-antlr4
|
||||
2020
|
||||
https://habr.com/ru/articles/486824/
|
||||
2013
|
||||
https://dzone.com/articles/creating-external-dsls-using
|
||||
???
|
||||
https://docs.google.com/document/d/1gQ2lsidvN2cDUUsHEkT05L-wGbX5mROB7d70Aaj3R64/edit?pli=1
|
||||
http://www.theendian.com/blog/antlr-4-lexer-parser-and-listener-with-example-grammar/
|
||||
|
||||
books
|
||||
https://pragprog.com/search/?q=the-definitive-antlr-4-reference
|
||||
2013
|
||||
Parr - The Definitive ANTLR 4 Reference
|
||||
|
||||
gradle plugin
|
||||
https://docs.gradle.org/current/userguide/antlr_plugin.html
|
||||
https://github.com/melix/antlr4-gradle-plugin
|
||||
|
||||
idea plugin
|
||||
https://plugins.jetbrains.com/plugin/7358-antlr-v4
|
||||
|
||||
@ -0,0 +1,14 @@
|
||||
https://plugins.jetbrains.com/plugin/12206-new-relic-codestream
|
||||
https://github.com/TeamCodeStream/codestream
|
||||
|
||||
https://www.codestream.com/
|
||||
->
|
||||
https://newrelic.com/codestream
|
||||
|
||||
https://one.newrelic.com/admin-portal/api-keys
|
||||
https://one.newrelic.com/launcher/api-keys-ui.api-keys-launcher
|
||||
|
||||
https://docs.newrelic.com/docs/codestream/start-here/what-is-codestream/
|
||||
https://docs.newrelic.com/docs/codestream/how-use-codestream/performance-monitoring/
|
||||
https://newrelic.com/blog/nerdlog/announcing-new-relic-codestream
|
||||
https://newrelic.com/blog/nerdlog/codestream-ide-integration
|
||||
5
pl/cross/tools/ide/jetbrains/idea/plugins/re-pomsky.txt
Обычный файл
5
pl/cross/tools/ide/jetbrains/idea/plugins/re-pomsky.txt
Обычный файл
@ -0,0 +1,5 @@
|
||||
https://pomsky-lang.org/
|
||||
https://github.com/pomsky-lang/pomsky
|
||||
|
||||
https://github.com/lppedd/idea-pomsky
|
||||
https://plugins.jetbrains.com/plugin/21332-pomsky
|
||||
2
pl/cross/tools/ide/vscode/ext/theme/intellij.txt
Обычный файл
2
pl/cross/tools/ide/vscode/ext/theme/intellij.txt
Обычный файл
@ -0,0 +1,2 @@
|
||||
https://marketplace.visualstudio.com/items?itemName=hyperdarker.intellij-neo-dark
|
||||
https://github.com/hyperdarker/intellij-neo-dark-theme
|
||||
@ -1,51 +0,0 @@
|
||||
articles
|
||||
2021
|
||||
https://habr.com/ru/company/sberdevices/blog/597553/
|
||||
|
||||
books
|
||||
2013
|
||||
Parr - The Definitive ANTLR 4 Reference
|
||||
|
||||
|
||||
$ grun ArrayInit init -tokens
|
||||
{99, 3, 451}
|
||||
EOF
|
||||
|
||||
[@0,0:0='{',<1>,1:0]
|
||||
[@1,1:2='99',<4>,1:1]
|
||||
[@2,3:3=',',<2>,1:3]
|
||||
[@3,5:5='3',<4>,1:5]
|
||||
[@4,6:6=',',<2>,1:6]
|
||||
[@5,8:10='451',<4>,1:8]
|
||||
[@6,11:11='}',<3>,1:11]
|
||||
[@7,13:12='<EOF>',<-1>,2:0]
|
||||
|
||||
[@5,8:10='451',<4>,1:8] indicates that it’s the token
|
||||
at index 5 (indexed from 0),
|
||||
, goes from character position 8 to 10 (inclusive starting from 0)
|
||||
, has text 451, has token type 4 (INT)
|
||||
, is on line 1 (from 1)
|
||||
, and is at character position 8 (starting from zero and counting tabs as a single character).
|
||||
|
||||
|
||||
$ grun ArrayInit init -tree
|
||||
{99, 3, 451}
|
||||
EOF
|
||||
(init { (value 99) , (value 3) , (value 451) })
|
||||
|
||||
|
||||
Cb_ruleContext extends ParserRuleContext
|
||||
ParserRuleContext extends RuleContext
|
||||
RuleContext implements RuleNode
|
||||
tree.RuleNode extends tree.ParseTree
|
||||
|
||||
|
||||
CommonLexerRules.g4:
|
||||
lexer grammar CommonLexerRules;
|
||||
|
||||
LibExpr.g4:
|
||||
grammar LibExpr;
|
||||
import CommonLexerRules;
|
||||
|
||||
gradle plugin:
|
||||
https://github.com/melix/antlr4-gradle-plugin
|
||||
1
pl/java/libfws/micro/ibm-quarkus/dev-ui.txt
Обычный файл
1
pl/java/libfws/micro/ibm-quarkus/dev-ui.txt
Обычный файл
@ -0,0 +1 @@
|
||||
https://quarkus.io/guides/dev-ui-v2
|
||||
1
pl/java/libfws/micro/ibm-quarkus/docs/cheatsheet.txt
Обычный файл
1
pl/java/libfws/micro/ibm-quarkus/docs/cheatsheet.txt
Обычный файл
@ -0,0 +1 @@
|
||||
https://lordofthejars.github.io/quarkus-cheat-sheet/
|
||||
1
pl/java/libfws/micro/ibm-quarkus/docs/guides.txt
Обычный файл
1
pl/java/libfws/micro/ibm-quarkus/docs/guides.txt
Обычный файл
@ -0,0 +1 @@
|
||||
https://quarkus.io/guides/
|
||||
@ -1 +1,8 @@
|
||||
https://quarkus.io/guides/native-reference
|
||||
https://quarkus.io/guides/config-reference
|
||||
https://quarkus.io/guides/cdi-reference
|
||||
https://quarkus.io/guides/class-loading-reference
|
||||
https://quarkus.io/guides/http-reference
|
||||
|
||||
https://quarkus.io/guides/logging
|
||||
https://quarkus.io/guides/datasource
|
||||
|
||||
2
pl/java/libfws/micro/ibm-quarkus/features/cdi.txt
Обычный файл
2
pl/java/libfws/micro/ibm-quarkus/features/cdi.txt
Обычный файл
@ -0,0 +1,2 @@
|
||||
https://quarkus.io/guides/cdi-reference
|
||||
https://jakarta.ee/specifications/cdi/4.0/jakarta-cdi-spec-4.0.html
|
||||
@ -0,0 +1,2 @@
|
||||
https://quarkus.io/guides/hibernate-orm
|
||||
https://quarkus.io/guides/hibernate-orm-panache
|
||||
1
pl/java/libfws/micro/ibm-quarkus/features/picocli.txt
Обычный файл
1
pl/java/libfws/micro/ibm-quarkus/features/picocli.txt
Обычный файл
@ -0,0 +1 @@
|
||||
https://quarkus.io/guides/picocli
|
||||
23
pl/java/libfws/micro/ibm-quarkus/features/security.txt
Обычный файл
23
pl/java/libfws/micro/ibm-quarkus/features/security.txt
Обычный файл
@ -0,0 +1,23 @@
|
||||
https://quarkus.io/guides/security-overview
|
||||
https://quarkus.io/guides/security-authentication-mechanisms
|
||||
https://quarkus.io/guides/security-basic-authentication-tutorial
|
||||
|
||||
oids
|
||||
https://quarkus.io/guides/security-jwt-build
|
||||
https://smallrye.io/docs/smallrye-jwt/index.html
|
||||
https://github.com/smallrye/smallrye-jwt
|
||||
|
||||
https://quarkus.io/guides/security-keycloak-authorization
|
||||
https://quarkus.io/guides/security-keycloak-admin-client
|
||||
https://www.keycloak.org/docs/latest/authorization_services/index.html
|
||||
|
||||
https://quarkus.io/guides/security-openid-connect-client
|
||||
https://quarkus.io/guides/security-openid-connect-dev-services
|
||||
https://quarkus.io/guides/security-openid-connect-client-reference
|
||||
https://quarkus.io/guides/security-openid-connect-providers
|
||||
|
||||
https://quarkus.io/guides/security-oidc-bearer-token-authentication
|
||||
https://quarkus.io/guides/security-oidc-code-flow-authentication
|
||||
https://quarkus.io/guides/security-oidc-bearer-token-authentication
|
||||
https://quarkus.io/guides/security-oidc-bearer-token-authentication-tutorial
|
||||
https://quarkus.io/guides/security-oidc-configuration-properties-reference
|
||||
@ -0,0 +1,2 @@
|
||||
https://quarkus.io/guides/stork
|
||||
https://smallrye.io/smallrye-stork
|
||||
2
pl/java/libfws/micro/ibm-quarkus/integration/idea-plugin.txt
Обычный файл
2
pl/java/libfws/micro/ibm-quarkus/integration/idea-plugin.txt
Обычный файл
@ -0,0 +1,2 @@
|
||||
https://plugins.jetbrains.com/plugin/13234-quarkus-tools
|
||||
https://github.com/redhat-developer/intellij-quarkus
|
||||
@ -1,2 +1,3 @@
|
||||
2020
|
||||
https://piotrminkowski.com/2020/08/09/guide-to-quarkus-with-kotlin/
|
||||
https://hazelcast.com/blog/announcing-quarkus-hazelcast-client-integration/
|
||||
1
pl/java/libfws/micro/ibm-quarkus/smallrye.txt
Обычный файл
1
pl/java/libfws/micro/ibm-quarkus/smallrye.txt
Обычный файл
@ -0,0 +1 @@
|
||||
https://smallrye.io/projects/
|
||||
15
pl/web/browsers/firefox/tools/web-developer.txt
Обычный файл
15
pl/web/browsers/firefox/tools/web-developer.txt
Обычный файл
@ -0,0 +1,15 @@
|
||||
https://firefox-source-docs.mozilla.org/devtools-user/network_monitor/toolbar/index.html
|
||||
|
||||
https://firefox-source-docs.mozilla.org/devtools-user/network_monitor/request_list/
|
||||
https://firefox-source-docs.mozilla.org/devtools-user/network_monitor/request_list/#filtering-by-properties
|
||||
C+F
|
||||
domain:bla.bla
|
||||
status-code:
|
||||
mime-type
|
||||
cause:img
|
||||
|
||||
regexp:\d{5}
|
||||
regexp:mdn|mozilla
|
||||
https://en.wikipedia.org/wiki/Regular_expression
|
||||
https://regexone.com/
|
||||
https://regexper.com
|
||||
Загрузка…
x
Ссылка в новой задаче
Block a user