cd C:\Users\${username}\AppData\Local\Microsoft\PowerToys\Keyboard Manager- Backup file existing one of
default.json - Download
default.jsonand add it to the current folder
| key |
|---|
| Esc |
| import { Injectable } from '@angular/core'; | |
| import { AngularFireDatabaseModule, AngularFireDatabase, FirebaseListObservable } from 'angularfire2/database'; | |
| import { AngularFireAuth } from 'angularfire2/auth'; | |
| import { Router } from "@angular/router"; | |
| import * as firebase from 'firebase'; | |
| @Injectable() | |
| export class AuthService { |
| var method = {}; | |
| var parameters = { | |
| short: 12, | |
| long: 26, | |
| signal: 9, | |
| down: -0.001, | |
| up: 0.001, | |
| persistence: 1 | |
| }; |
| // Let's create our own strategy | |
| var strat = {}; | |
| // Prepare everything our strat needs | |
| strat.init = function() { | |
| // start of with no investment | |
| this.currentTrend = 'short'; | |
| // your code! | |
| // add a native MACD | |
| var parameters = {short: 12, long: 26, signal: 9,down = -0.0001, |
ℹ️ There is a newer alternative project that does similar things and more, check it out at https://github.com/stevenilsen123/mac-keyboard-behavior-in-windows
Make Windows PC's shortcut act like macOS (Mac OS X) (using AutoHotkey (ahk) script)
With this AutoHotKey script, you can use most macOS style shortcuts (eg, cmd+c, cmd+v, ...) on Windows with a standard PC keyboard.
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| ) | |
| // Suggestions from golang-nuts | |
| // http://play.golang.org/p/Ctg3_AQisl |