This file contains 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
package ru.ezhov; | |
import sun.misc.BASE64Encoder; | |
import java.io.BufferedInputStream; | |
import java.io.FileInputStream; | |
import java.io.FileWriter; | |
import java.util.ArrayList; | |
import java.util.List; |
This file contains 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
import java.util.concurrent.TimeUnit; | |
public class TestConsole { | |
public static void main(String[] args) { | |
int start = 100; | |
int delimMode; | |
if (start <= 21) { |
This file contains 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
package ru.ezhov.github; | |
import org.codehaus.jackson.map.ObjectMapper; | |
import org.eclipse.egit.github.core.Gist; | |
import org.eclipse.egit.github.core.GistFile; | |
import org.eclipse.egit.github.core.client.GitHubClient; | |
import org.eclipse.egit.github.core.client.PageIterator; | |
import org.eclipse.egit.github.core.service.GistService; | |
import java.io.*; |
This file contains 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
@echo off | |
chcp 855 | |
rem SET VARIABLES======================================================================== | |
if "%~1" == "" goto no_param | |
if "%~2" == "" goto no_param | |
if "%~3" == "" goto no_param | |
SET ZIP_FOLDER=%~1\* |
This file contains 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
Если происходит ошибка: Project is unviewable при открытии проекта VBA, необходимо: | |
1. Закрыть все Excel | |
2. Открыть сломанный файл | |
3. Перейти на вкладку "Рецензирование" | |
4. Нажать "Доступ к книге" | |
5. В открывшемся окне снять галочку с пункта "Разрешить изменять файл нескольким пользователям одновременно" | |
6. Нажать "OK" | |
7. Подтвердить невозможность после этой операции далее вносить изменения несколькими пользователями даже в случае установки галочки обратно. | |
Игнорируем и жмем "Да". | |
8. Сохранить макрос |
This file contains 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
@echo off | |
echo Started script: E:\_git_local_data_\trunk\java\groovy-scripts\src\main\groovy\ru\ezhov\groovy\appRunnable.groovy | |
echo "=================================================================================" | |
E:\java_library\groovy-2.4.12\bin\groovy.bat E:\_git_local_data_\trunk\java\groovy-scripts\src\main\groovy\ru\ezhov\groovy\appRunnable.groovy |
This file contains 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
package ru.ezhov.runner; | |
import javax.swing.*; | |
import java.awt.*; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class App { | |
public static void main(String[] args) { | |
SwingUtilities.invokeLater(() -> { |
This file contains 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
https://docs.oracle.com/javase/8/docs/technotes/tools/windows/keytool.html |
This file contains 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
http://hints.prbr.in/2014/08/attach-bat-file-to-taskbar/ | |
Создаем ярлык для своего скрипта, затем заходим в его свойства и в | |
поле Объект приписываем cmd /c перед именем файла. | |
Если скрипт запускается с параметрами, которые заключены в кавычки, | |
то все что идет после cmd /c следует обернуть в кавычки еще раз. | |
Пример: | |
cmd /c "c:\1.bat "Первый параметр"" |
This file contains 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
https://www.white-windows.ru/kak-v-windows-10-aktivirovat-panel-bystrogo-zapuska/ | |
-> Кликните по пустому месту панели задач и в контекстном меню выберите Toolbars -> New Toolbar. | |
-> При этом откроется диалоговое окно, в котором вам будет предложено выбрать папку. | |
-> В поле Folder вставьте сокращение shell:Quick Launch и нажмите «Sеlect Folder». | |
После этого в правой части панели задач у вас появится разделитель с надписью «Quick Launch». | |
-> Через контекстное меню открепите панель задач и перетащите разделитель поближе к кнопке Пуск. | |
Затем вновь вызовите меню, снимите галочки с пунктов «Show title» и «Show text», а затем вновь закрепите панель задач. |
OlderNewer