A Pen by Yuriy Bachevskiy on CodePen.
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
// ==UserScript== | |
// @name AutoCompleterForRedmine | |
// @version 0.5 | |
// @description Complete task in Redmine | |
// @author YuriyB | |
// @match http://ic-engine.ru/issues/* | |
// @run-at document-body | |
// ==/UserScript== | |
// объявлем нужные переменные |
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
const path = require('path'); | |
// Для работы с HTML | |
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
// Для создания css файла | |
const MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
// Для отчистки дериктории назначения перед созданием сборки | |
const CleanWebpackPlugin = require('clean-webpack-plugin'); |
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
/* | |
* Copyright (c) 2013 midgardabc.com | |
*/ | |
package FinalVersionOfProgramms; | |
import javax.swing.*; | |
import java.awt.*; | |
import java.util.Random; | |
/** |
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
package Lesson3.KeyPoint5; | |
import jdk.nashorn.internal.ir.IfNode; | |
import java.util.Arrays; | |
/** | |
* Created by Юрий on 14.01.2016. | |
*/ | |
public class StructureOfData { |
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
package Lesson3.KeyPoint5; | |
import java.util.Arrays; | |
/** | |
* Created by Юрий on 14.01.2016. | |
*/ | |
public class PrintArrayVoid { | |
public static void main(String[] args) { | |
String[][] nul = new String[2][]; |
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
package Lesson3.KeyPoint5; | |
/** | |
* Created by Юрий on 12.01.2016. | |
*/ | |
public class Factorial { | |
public static void main(String[] args) { | |
System.out.println(factorial(5)); | |
System.out.println(factorial(1)); | |
System.out.println(factorial(3)); |
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
package Lesson3.KeyPoint5; | |
import java.util.Arrays; | |
/** | |
* Created by Юрий on 12.01.2016. | |
*/ | |
public class StringInverse { | |
public static void main(String[] args) { |
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
package Lesson3.KeyPoint5; | |
import java.util.Arrays; | |
/** | |
* Created by Юрий on 08.01.2016. | |
*/ | |
public class CopyArray { | |
public static void main(String[] args) { |
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
package Lesson3.KeyPoint5; | |
import java.util.Arrays; | |
/** | |
* Created by Юрий on 08.01.2016. | |
*/ | |
public class FindElement { | |
public static void main(String[] args) { | |
NewerOlder