If you don't have prior programming experience some Java (or Python, C#, ...) courses would help to get the basics, for example:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/home/kell18/.oh-my-zsh" | |
| export LANG=ru_RU.UTF-8 | |
| export LC_CTYPE=ru_RU.UTF-8 | |
| # Set name of the theme to load --- if set to "random", it will |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [error] [LWJGL] GLFW_PLATFORM_ERROR error | |
| [error] Description : WGL: Failed to make context current: The requested resource is in use. | |
| [error] Stacktrace : | |
| [error] org.lwjgl.glfw.GLFW.glfwMakeContextCurrent(GLFW.java:4492) | |
| [error] zio3d.core.glfw.GLFW$Live$$anon$1.$anonfun$makeContextCurrent$1(GLFW.scala:155) | |
| [error] scala.runtime.java8.JFunction0$mcV$sp.apply(JFunction0$mcV$sp.scala:18) | |
| [error] zio.internal.FiberContext.evaluateNow(FiberContext.scala:386) | |
| [error] zio.internal.FiberContext.$anonfun$evaluateLater$1(FiberContext.scala:661) | |
| [error] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) | |
| [error] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * При событии formSubmit берёт шаблон документа и заменяет все переменные (строки между << и >>) на то что | |
| * пришло с формы и ложит это в папку с названием МЕСЯЦ.ГОД (если не существует то создаёт новую папку) | |
| * @param formSubmitE документация https://developers.google.com/apps-script/guides/triggers/events#form-submit | |
| */ | |
| function autoFillDocFromForm(formSubmitE) { | |
| const patternOpenSymbols = '<<'; | |
| const patternCloseSymbols = '>>'; | |
| const arraySplitSymbol = ", "; // Некоторые поляи на формах имеют множественный выбор, склеиваем их в одну строку через этот символ | |
| const timestamp = new Date(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .ngkc_custom-donation-activ, | |
| .ngkc_standard_dontation_active { | |
| background-color: #6b2217 !important; | |
| color: #f8edda !important; | |
| background-image: none !important; | |
| font-weight: 550 !important; | |
| } | |
| </style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <annotations> | |
| <version>1.1</version> | |
| <meta> | |
| <job> | |
| <id>1</id> | |
| <size>4</size> | |
| <mode>annotation</mode> | |
| <overlap>0</overlap> | |
| <bugtracker></bugtracker> |
OlderNewer