This file contains 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
[no Search()] nuget.exe list | |
[no Search()] nuget.exe list -allversions | |
[no Search(), no IsAbsoluteLatestVersion] nuget.exe list | |
[no Search(), no IsAbsoluteLatestVersion] nuget.exe list -allversions | |
GET /api/v2/Packages HTTP/1.1 | |
GET /api/v2/Packages?$skip=100 HTTP/1.1 | |
[no Search()] nuget.exe list -allversions -prerelease | |
[no Search(), no IsAbsoluteLatestVersion] nuget.exe list -allversions -prerelease | |
GET /api/v2/Packages()?$orderby=Id&$skip=0&$top=30 HTTP/1.1 |
This file contains 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
// /etc/polkit-1/rules.d/10-rules.rules | |
// PolKit rules to allow mounting, rebooting and network management without a password. | |
// User needs to be in root group. | |
polkit.addRule(function(action, subject) { | |
if (action.id.match("org.freedesktop.udisks2.") && subject.isInGroup("root")) { | |
return polkit.Result.YES; | |
} | |
}); |
This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |