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
| ffmpeg -i %1 -vf "scale=w=-2:h='min(2400,ih)':sws_flags=spline+accurate_rnd:in_range=tv:out_range=tv" -c:v libx264 -colorspace bt709 -color_trc bt709 -color_primaries bt709 -color_range tv -crf 17 -preset slow -tune film -x264-params mvrange=511 -pix_fmt yuv420p -c:a copy -movflags +faststart "%~dpn1-downscaled%~x1" |
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
| // get account info (balance) | |
| 'use strict'; | |
| const RippleAPI = require('ripple-lib').RippleAPI; | |
| const api = new RippleAPI({ | |
| server: 'wss://s1.ripple.com' // Public rippled server | |
| }); | |
| api.connect().then(() => { | |
| // set your address |
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 sys | |
| from ibapi.contract import * | |
| from ibapi.order import Order | |
| from ibapi import wrapper | |
| from ibapi.client import EClient | |
| contract = Contract() | |
| contract.symbol = "SIE" | |
| contract.secType = "STK" |