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
# Mobius | |
# SuperTrend | |
# Chat Room Request | |
input AtrMult = 1.0; | |
input nATR = 4; | |
input AvgType = AverageType.HULL; | |
input PaintBars = yes; | |
def ATR = MovingAverage(AvgType, TrueRange(high, close, low), nATR); | |
def UP = HL2 + (AtrMult * ATR); | |
def DN = HL2 + (-AtrMult * ATR); |
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
# Moving Average Crossover With Arrows, Alerts, Crossing Count and Bubble at Cross | |
# Mobius | |
# Chat Room Request 01.25.2017 | |
# Modified a bit by BenTen | |
input price = close; | |
input fastLength = 34; | |
input slowLength = 50; | |
input averageType = AverageType.EXPONENTIAL; |
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
For | |
* ES5 | |
* ES6 | |
* CoffeeScript |
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 VKDownloadMedia | |
// @description Скачать фото/аудио/видео-файлы с соц. сети ВКонтакте. | |
// @namespace https://github.com/KJ86/VKDownloadMedia | |
// @version 5.5 | |
// @date 2018-04-10 | |
// @author KJ86 | |
// @icon data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjODI4YTk5IiBkPSJtIDEwLDYgaCA0IHYgNiBoIDMgbCAtNSw2IC01LC02IGggMyB6IiBwYWludC1vcmRlcj0ibWFya2VycyBzdHJva2UgZmlsbCIvPjwvc3ZnPg== | |
// @homepage https://greasyfork.org/ru/scripts/7385-vkdownloadmedia | |
// @downloadURL https://greasyfork.org/scripts/7385-vkdownloadmedia/code/VKDownloadMedia.user.js |
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
#define AppId "{INSERT HERE YOUR GUID}" | |
#define AppName "My App" | |
#define AppVersion "1.7" | |
[CustomMessages] | |
english.NewerVersionExists=A newer version of {#AppName} is already installed.%n%nInstaller version: {#AppVersion}%nCurrent version: | |
[Code] | |
// find current version before installation | |
function InitializeSetup: Boolean; | |
var Version: String; |
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
#define ProjectURL "http://www.google.fr" | |
[CustomMessages] | |
english.Website=Website | |
[Code] | |
// link in installer footer | |
procedure URLLabelOnClick(Sender: TObject); | |
var | |
ErrorCode: Integer; |
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
[Code] | |
function LoadValueFromXML(const AFileName, APath: string): string; | |
var | |
XMLNode: Variant; | |
XMLDocument: Variant; | |
begin | |
Log('Get Xml text node: ' + AFileName); | |
Result := ''; |
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
[Code] | |
{ | |
// http://www.kynosarges.de/DotNetVersion.html | |
Indicates whether the specified version and service pack of the .NET Framework is installed. | |
version -- Specify one of these strings for the required .NET Framework version: | |
'v1.1.4322' .NET Framework 1.1 | |
'v2.0.50727' .NET Framework 2.0 | |
'v3.0' .NET Framework 3.0 |
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
; Defines | |
#define MyAppVersion "1.0.0" | |
#define MyAppVersionInfoVersion "1.0.0" | |
#define MyAppName "My Superb App That Will Save The World" | |
#define MyAppPublisher "Superb, Inc." | |
#define MyAppURL "http://www.a-very-superb-url-to-my-app.com/" | |
#define MyAppCopyright "Copyright (C) Copyright 3056. All rights reserved." | |
#define MyAppId "{{88C6A6D9-324C-46E8-BA87-563D14021442}" | |
#define MyAppPath "{pf}\Superb\WorldSavingApp" |
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
; SHFileOperationまわりの定義を外部ファイルに分離している | |
#include "SHFileOperationModule.iss" | |
[Setup] | |
AppId=SHFileOperationExample | |
AppName=SHFileOperationExample | |
AppVersion=1.0.0 | |
VersionInfoVersion=1.0.0 |