Try to run bin file with and without extension:
.\node_modules\.bin\electron.cmd
.\node_modules\.bin\electron
If it's work with extension but not without, check PATHEXT environment variable.
Try to run bin file with and without extension:
.\node_modules\.bin\electron.cmd
.\node_modules\.bin\electron
If it's work with extension but not without, check PATHEXT environment variable.
{ | |
// Rough modified version of Celeste to darken it up | |
"name": "Celeste Dark", | |
"author": "Sublime HQ Pty Ltd", | |
"variables": | |
{ | |
// These colors are part of the hashed range | |
// and should only be used in non-source | |
"purple": "hsla(260, 50%, 70%, 1)", | |
"blue": "hsla(200, 70%, 55%, 1)", |
#!/bin/sh | |
# Build Zsh from sources on Debian Wheezy. | |
# From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file. | |
# Some packages may be missing | |
sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo | |
git clone git://git.code.sf.net/p/zsh/code zsh | |
cd zsh |
channel spectrum | |
ready | |
SELECT_AP -> ready | |
SCAN -> loading | |
loading | |
CANCEL_SCAN -> ready | |
SCAN_SUCCESS -> chart | |
SCAN_FAILURE -> error | |
chart | |
SELECT_AP -> ready |
code | description |
---|---|
<%_ term %> |
translate with i18n |
<%: term %> |
translate with i18n and escape XML |
<%+ path/to/template %> |
include template from view dir (/usr/lib/lua/luci/view ) |
<%= expression %> |
print expression |
<%# comment %> |
comment |
<%- |
remove whitespaces on the left |
@echo off | |
:: Setup bootstrap script | |
IF NOT [%1]==[--skip-setup] ( | |
:: Allow (, ), ^, <, >, |, ... in the file name | |
:: See https://stackoverflow.com/a/36990712 | |
SETLOCAL EnableDelayedExpansion | |
SET "EXECUTABLE_PATH=%~dpnx0" | |
ECHO AutoRun "!EXECUTABLE_PATH!" |
/** | |
* Convert <input/> to <textarea/> to preserve line-breaks. | |
*/ | |
function replaceInputWithTextarea(input) { | |
if (input.type !== 'text') return; | |
// Create textarea element. | |
const textarea = document.createElement('textarea'); | |
// Copy all input attributes except `value`. |
import { compose, withState, withProps } from 'recompose' | |
function HoCComponent ({a, b, c, setA, setB}) { | |
return ( | |
<div> | |
<span>A: {a}</span> | |
<button onClick={setA}>Update A</button> | |
<span>B: {b}</span> | |
<button onClick={setB}>Update B</button> | |
<span>C: {c}</span> |
brew install ffmpeg
ffmpeg -i input.mp4 -c copy -metadata:s:v:0 rotate=90 output.mp4