Add current clock on menubar an when clicked it show a quick view of the calendar.
This file contains 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
#!/bin/sh | |
print_usage() { | |
echo "usage: compress_video <input_file> [half]" | |
echo "supported formats: mp4, webm, mkv, mov, avi, flv" | |
echo "[half] is an optional argument to scale the video to half the width and height" | |
} | |
get_extension() { | |
f="${1##*/}" |
This file contains 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
/* | |
ps aux | grep "ssh -L"|grep -v grep|awk '{print $2}'|xargs kill | |
ssh -L 443:127.0.0.1:443 -N -f root@linode; echo "linode: 443" | |
*/ | |
import dotenv from "dotenv"; | |
dotenv.config({ path: `${process.env.GAP_FOLDER}/.env` }); | |
import fs from "fs"; | |
import got from "got"; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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> | |
<title>Celebration and Holiday - All celebrations and holidays</title> | |
<!-- Meta Tags --> | |
<meta charset="utf-8"> | |
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta name="author" content="Givuma.com"> |
This file contains 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
{ | |
"title": "Personal", | |
"rules": [ | |
{ | |
"description": "Text Shortcut", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "s", | |
"modifiers": { "mandatory": ["right_command"], "optional": ["any"] } |
This file contains 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
Source https://tradinganalysis.com/four-percentile-resource/ | |
Code to put in program | |
IV Percentile On Chart# beginning of code ———————- – | |
# IV% thinkscript code | |
# Display Implied Volatility Percentile as a label on a chart | |
declare upper ; | |
input length = 252 ; # bars to use in implied volatility calculation | |
# If IV data doesn’t exist for a particular period, set it to previous value so it won’t affect the hi/low | |
def ivClean = if IsNaN(imp_volatility()) then ivClean from 1 bar ago |
This file contains 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 imgDiff = require('ffmpeg-image-diff'); | |
const testFolder = './tests/'; | |
const fs = require('fs'); | |
const files = []; | |
const index_exclude = []; | |
(async () => { | |
fs.readdirSync(testFolder).forEach(file => { |
This file contains 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
{ | |
"window.zoomLevel": 0, | |
"workbench.iconTheme": "vscode-icons", | |
"vsicons.projectDetection.disableDetect": true, | |
"editor.formatOnSave": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 12, | |
"editor.fontLigatures": true, |
This file contains 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
#!/bin/bash | |
# Stop cached listeners | |
watchman watch-del-all | |
# Remove installed modules | |
rm -rf node_modules | |
# Remove yarn meta files | |
rm yarn* |
NewerOlder