- Install WSL
- Run from Admin
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
- Restart
- Install Linux Distr from Microsoft Store
- Run from Admin
- Git
- Download exe from https://github.com/andy-5/wslgit
- Put file into
%LOCALAPPDATA%\Programs\Common
, rename togit.exe
- Add path to
PATH
env variable
- Terminal
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
/* | |
* This file is part of INAV. | |
* | |
* INAV is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* INAV is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
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
directive @extend(generatedTypeName: String, interface: String, is: ExtendIsArgument, when: ExtendWhenArgument) on INTERFACE | |
directive @field(at: FieldAtArgument!, default: FieldDefaultArgument) on FIELD_DEFINITION | |
directive @relation(kind: String, name: String, nodeType: String) on FIELD_DEFINITION | |
type API implements IAPI & IEntity & Node & Ownable { | |
consumers(after: String, before: String, first: Int, last: Int): ComponentConnection | |
definition: String! | |
description: 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
[ | |
{ | |
"x": 0, | |
"y": 2.531424272351668 | |
}, | |
{ | |
"x": 1, | |
"y": 2.852312746541452 | |
}, | |
{ |
This file has been truncated, but you can view the full file.
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
[ | |
["mui-org/material-ui", 65985], | |
["pixijs/pixi.js", 32186], | |
["preactjs/preact", 28520], | |
["dkhamsing/open-source-ios-apps", 26717], | |
["formium/formik", 26609], | |
["hasura/graphql-engine", 20948], | |
["SeleniumHQ/selenium", 20316], | |
["mongodb/mongo", 19440], | |
["react-hook-form/react-hook-form", 19154], |
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
[ | |
["effector/effector", 3062], | |
["artalar/reatom", 566], | |
["dai-shi/will-this-react-global-state-work-in-concurrent-mode", 263], | |
["howtocards/frontend", 191], | |
["goupaz/goupaz.com", 163], | |
["mg901/effector-react-realworld-example-app", 119], | |
["goodmind/treact", 110], | |
["effector/patronum", 104], | |
["Nitrino/easysubs", 103], |
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
declare module 'babel-plugin-minify-dead-code-elimination' { | |
const plugin: (options: { | |
types: typeof import('@babel/types'); | |
traverse: typeof import('@babel/traverse').default; | |
}) => { name: string; visitor: import('@babel/traverse').Visitor }; | |
export default plugin; | |
} |
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
// imported from https://github.com/heygrady/Units | |
let preCalculated = false; | |
let computedValueBug = false; | |
const defaultView = document.defaultView; | |
const getComputedStyle = defaultView && defaultView.getComputedStyle; | |
const runit = /^(-?[\d+\.\-]+)([a-z]+|%)$/i; | |
const convert = { | |
mm2px: 1/25.4, |