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
//@version=5 | |
strategy('Average Interpercentile Range AIR Supertrend','AIR Supertrend', overlay=true, format=format.price) | |
// Moving Averages Types | |
var string SMA = 'Simple Moving Average' | |
var string EMA = 'Exponential Moving Average' | |
var string WMA = 'Weighted Moving Average' | |
var string VWMA = 'Volume Weighted Moving average' | |
var string ALMA = 'Arnaud Legoux Moving Average' | |
var string JURIK = 'Jurik Moving Average' |
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
//@version=5 | |
strategy(title='[tradinghook] - Renko Trend Reversal Strategy', shorttitle='[tradinghook] - Renko TRS', overlay=true) | |
// INPUTS | |
renkoATRLength = input.int(10, minval=1, title='ATR Length') | |
stopLossPct = input.float(1.0, title='Stop Loss Percentage', step=0.1) | |
takeProfitPct = input.float(2.0, title='Take Profit Percentage', step=0.1) | |
startDate = input.time(timestamp("01 Jan 2022 00:00"), title="Start Date") | |
endDate = input.time(timestamp("31 Dec 2022 23:59"), title="End 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
WEBVTT #Elemental Media Engine(TM) 2.1.3.0 | |
X-TIMESTAMP-MAP=LOCAL:79:32:11.151,MPEGTS:180000 | |
99:09:36.525 --> 99:09:36.566 | |
career under the coaching of Des | |
Hasler at the | |
99:09:36.566 --> 99:09:36.786 | |
career under the coaching of Des | |
Hasler at the Sea |
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"?> | |
<tt xmlns="http://www.w3.org/ns/ttml"> | |
<head> | |
<metadata xmlns:ttm="http://www.w3.org/ns/ttml#metadata"> | |
<ttm:title>Sample</ttm:title> | |
</metadata> | |
<styling xmlns:tts="http://www.w3.org/ns/ttml#styling"> | |
<style xml:id="s1" | |
tts:color="white" | |
tts:fontFamily="proportionalSansSerif" |
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
<tt xml:lang="en" | |
xmlns="http://www.w3.org/ns/ttml" | |
xmlns:tts="http://www.w3.org/ns/ttml#styling"> | |
<head> | |
<metadata xmlns:ttm="http://www.w3.org/ns/ttml#metadata"> | |
<ttm:title>TTML Example</ttm:title> | |
<ttm:copyright>Thierry Michel 2015</ttm:copyright> | |
</metadata> |
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"?> | |
<tt xmlns="http://www.w3.org/ns/ttml"> | |
<head> | |
<metadata xmlns:ttm="http://www.w3.org/ns/ttml#metadata"> | |
<ttm:title>Sample</ttm:title> | |
</metadata> | |
<styling xmlns:tts="http://www.w3.org/ns/ttml#styling"> | |
<style xml:id="s1" | |
tts:color="white" | |
tts:fontFamily="proportionalSansSerif" |
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
Subhans-MacBook-Pro:TVMLCatalog.xcodeproj subhanahmed$ xcodebuild -sdk appletvos -configuration Release -workspace project.xcworkspace -scheme TVMLCatalog build CODE_SIGN_STYLE=Manual | |
Build settings from command line: | |
CODE_SIGN_STYLE = Manual | |
SDKROOT = appletvos12.4 | |
note: Using new build system | |
note: Planning build | |
note: Using build description from disk | |
Build system information | |
warning: Provisioning profile "7plus tvOS TopShelf Distribution" for "TopShelf" contains entitlements that aren't in the entitlements file: com.apple.smoot.subscriptionservice. To use these entitlements, add them to your entitlements file. Otherwise, remove unused entitlements from your provisioning profile. (in target 'TopShelf') |
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
import * as Constants from './build-constants'; | |
const environments = { | |
production: Constants.PRODUCTION, | |
staging: Constants.STAGING, | |
dev: Constants.DEV, | |
dev2: Constants.DEV2, | |
}; | |
const currentEnvironment = environments.staging; |
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
isCodeExist(code: string): Observable<Job[]> { | |
return <Observable<Job[]>>this.afs | |
.collection(this.jobsCollection, ref => ref | |
.where('code', '==', code) | |
.limit(1) | |
) | |
.valueChanges() | |
.pipe( | |
flatMap(jobs => jobs), | |
catchError(err => throwError(err) |
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
<?php | |
use Cake\Datasource\ConnectionManager; | |
$datasource_json = ROOT . DS . "plugins" . DS . "Settings" . DS . "config" . DS . "datasource.json"; | |
$content = json_decode(file_get_contents($datasource_json), true); | |
debug($content); | |
if(empty($content['password'])){ | |
$dsn = "mysql://".$content['username']."@".$content['host']."/".$content['database']; | |
} else{ | |
$dsn = "mysql://".$content['username'].":".$content['password']."@".$content['host']."/".$content['database']; |
NewerOlder