- Install
azure-cli
npm install -g azure-cli
- Create
.deployment
anddeploy.cmd
files
cd your/folder/
// ==UserScript== | |
// @name webm4pifu | |
// @namespace http://github.com/petetnt | |
// @description webm pifulle embed (greasemonkey/tampermonkey) | |
// @include http://www.punkinfinland.net/forum/* | |
// @version 0.0.1 | |
// ==/UserScript== | |
(function () { | |
'use strict'; |
azure-cli
npm install -g azure-cli
.deployment
and deploy.cmd
files cd your/folder/
{ | |
"done": [ | |
{ | |
"ranges": [ | |
{ | |
"anchor": { | |
"line": 34, | |
"ch": 34 | |
}, | |
"head": { |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
shouldBeHidden:'Without space: This shouldn\'t get unbounded', | |
shouldBeHiddenToo:'With space: This shouldn\'t get unbounded', | |
}); |
;(window.alert("foo"))(); |
I hereby claim:
To claim this, I am signing this object:
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
shouldBeHidden:'Without space: This shouldn\'t get unbounded', | |
shouldBeHiddenToo:'With space: This shouldn\'t get unbounded', | |
}); |
@sindresorhus posted this tweet today about a thing I remember writing about beforehand too (or at least have thought about it a lot): staleness
Controversial opinion: Stale issues in open source projects are fine. Auto-closing issues based on staleness is an annoyance to users and can drive potential contributors away. There must be a better way of handling issue overload.
@sindresorhus (https://twitter.com/sindresorhus/status/1082145283285250048)
Here's a couple of short thoughts I have on the issue of staleness after maintaining things like brackets and our own projects for years.
# For some reason it's super hard to find package names and their application IDs for Windows | |
# if you need one (for example for GloSC). Luckily you can also use this PowerShell oneliner | |
# | |
# Step: | |
# 1. Open PowerShell | |
# 2. Run the following command, replace the ApplicationName with your app name (eg. Gears 5, OuterWorlds, BloodStained) | |
$AppToFind="<ApplicationName>";"$(Get-AppPackage -Name "*$AppToFind*")!$((Get-AppxPackage -Name "*$AppToFind*" | Get-AppxPackageManifest).package.applications.application.id)" |