- Windows 10 Build 18917+ (only as Windows Insider 09/2019)
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
| { | |
| "name": "svelte-package-unpack", | |
| "description": "the gist to run it with npx command", | |
| "version": "0.1.0", | |
| "type":"module", | |
| "bin": "./unpack.js" | |
| } |
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
| @see: https://linuxize.com/post/how-to-install-xrdp-on-ubuntu-20-04/ | |
| In short: | |
| ``` | |
| sudo apt update | |
| sudo apt install --no-install-recommends ubuntu-desktop # or for xcfe sudo apt install --no-install-recommends xubuntu-desktop | |
| sudo apt install xrdp | |
| sudo adduser xrdp ssl-cert | |
| sudo systemctl restart xrdp |
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": "4.9.3", | |
| "description": "Standalone binary inspection tool for android apps (APK).", | |
| "homepage": "https://github.com/google/android-classyshark/", | |
| "license": "Apache-2.0", | |
| "url": "http://www.antlr.org/download/antlr-4.9.3-complete.jar#/antlr.jar", | |
| "installer": { | |
| "script": [ | |
| "Set-Content \"$dir\\antlrv4.bat\" (@(\"@java -Xmx500M -cp $dir/antlr.jar org.antlr.v4.Tool %*\") -join \"`r`n\") -Encoding ASCII", | |
| "Set-Content \"$dir\\antlrgrun.bat\" (@(\"@java -Xmx500M -cp .;$dir/antlr.jar org.antlr.v4.gui.TestRig %*\") -join \"`r`n\") -Encoding ASCII" |
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": "2.0.1", | |
| "description": "Micronaut Launch- Generates Micronaut applications.", | |
| "homepage": "https://github.com/micronaut-projects/micronaut-starter", | |
| "license": "Apache-2.0", | |
| "url": "https://github.com/micronaut-projects/micronaut-starter/releases/download/v2.0.1/mn-win-amd64-v2.0.1.zip", | |
| "hash":"AAFBF8C0FFA997C06D16EAF27C33674EB807FC146F6989A99113D24F94987657", | |
| "extract_dir": "mn-win-amd64-v2.0.1", | |
| "bin": "bin\\mn.exe", | |
| "env_set": { |
I hereby claim:
- I am tkvw on github.
- I am tkvw (https://keybase.io/tkvw) on keybase.
- I have a public key ASD3yR6kJp94vgxUzrV6s7O_PaCQV5SJKx7rRPEGyFiyTQo
To claim this, I am signing this object:
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
| # Install node version manager | |
| # Install Docker (https://docs.docker.com/install/linux/docker-ce/ubuntu/#install-docker-ce) | |
| sudo apt-get remove docker docker-engine docker.io | |
| sudo apt-get update | |
| sudo apt-get --assume-yes install \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ |
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
| # Script commands | |
| alias -- qq-update="rm ~/.bashrc_remote && exit 0" | |
| # Basic OS aliases | |
| alias ls="ls -la" | |
| # Ubuntu Desktop aliases | |
| alias -- qq-open-file="xdg-open" | |
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 React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import debounce from 'lodash/debounce'; | |
| class OnChangeDebounce extends React.Component{ | |
| constructor(props){ | |
| super(props); | |
| this.isValueSourceProps = this.props.hasOwnProperty(this.props.valueProperty); | |
| this._createDebounceFunction(props); | |
NewerOlder
