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
@echo off | |
:: change the path below to match your installed version | |
SET WebStormPath=C:\Program Files\JetBrains\WebStorm 2017.2.2\bin\webstorm64.exe | |
echo Adding file entries | |
@reg add "HKEY_CLASSES_ROOT\*\shell\WebStorm" /t REG_SZ /v "" /d "Open with WebStorm" /f | |
@reg add "HKEY_CLASSES_ROOT\*\shell\WebStorm" /t REG_EXPAND_SZ /v "Icon" /d "%WebStormPath%,0" /f | |
@reg add "HKEY_CLASSES_ROOT\*\shell\WebStorm\command" /t REG_SZ /v "" /d "%WebStormPath% \"%%1\"" /f | |
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
Show hidden characters
{ | |
"presets": ["es2015-node6"], | |
"plugins": [ | |
"transform-async-to-generator", | |
"syntax-async-functions" | |
], | |
"sourceMaps": "inline" | |
} |
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
Online Builder, Basis and Full version | |
al-init $element | |
al-model - proxy for al-value, al-focused, al-checked ... | |
про эвенты и атрибуты - без компонентов | |
@event | |
@keydown.alt.control.shift.meta.enter |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>alight router</title> | |
</head> | |
<body> | |
<div al-router-screen="auth"> | |
<!-- common header --> |
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
alight.filters.throttle = { | |
data: { | |
delay: 0, | |
to: null, | |
scope: null | |
} | |
init: function(delay, scope) { | |
data.delay = Number(delay); | |
data.to = null; | |
data.scope = scope; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace hammingCode | |
{ | |
class Program |
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
// Медианная фильтрация | |
$('#btn-filtering-mediana').click(function (e) { | |
checkImageLoaded(); | |
var gsImage2d = copyGrayScaleImage1dTo2d(window.gsImage); | |
var d = gsImage2d.data; | |
var outputImage = []; | |
var windowSize = parseInt($('#input-filtering-mediana-windowsize').val()) || 3; | |
var wh = windowSize; |
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
.include "m8Adef.inc" ; | |
; = Macro ======================================== | |
.MACRO Reset | |
RAM_Flush: | |
LDI ZL,Low(SRAM_START) | |
LDI ZH,High(SRAM_START) | |
CLR R16 | |
Flush: | |
ST Z+, R16 |
NewerOlder